mongo 2.11.6 → 2.12.0.rc0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +2 -2
  3. data.tar.gz.sig +0 -0
  4. data/CONTRIBUTING.md +1 -1
  5. data/lib/mongo.rb +3 -0
  6. data/lib/mongo/address.rb +13 -2
  7. data/lib/mongo/auth.rb +1 -0
  8. data/lib/mongo/auth/credential_cache.rb +51 -0
  9. data/lib/mongo/auth/scram/conversation.rb +20 -16
  10. data/lib/mongo/auth/user.rb +0 -8
  11. data/lib/mongo/auth/user/view.rb +4 -4
  12. data/lib/mongo/background_thread.rb +1 -1
  13. data/lib/mongo/bulk_write.rb +5 -5
  14. data/lib/mongo/client.rb +126 -11
  15. data/lib/mongo/client_encryption.rb +103 -0
  16. data/lib/mongo/cluster.rb +2 -2
  17. data/lib/mongo/cluster/reapers/cursor_reaper.rb +18 -6
  18. data/lib/mongo/cluster/sdam_flow.rb +54 -58
  19. data/lib/mongo/cluster/srv_monitor.rb +1 -1
  20. data/lib/mongo/collection.rb +3 -3
  21. data/lib/mongo/collection/view.rb +1 -1
  22. data/lib/mongo/collection/view/aggregation.rb +1 -1
  23. data/lib/mongo/collection/view/change_stream.rb +12 -3
  24. data/lib/mongo/collection/view/iterable.rb +14 -5
  25. data/lib/mongo/collection/view/map_reduce.rb +2 -2
  26. data/lib/mongo/collection/view/readable.rb +7 -9
  27. data/lib/mongo/collection/view/writable.rb +7 -7
  28. data/lib/mongo/crypt.rb +33 -0
  29. data/lib/mongo/crypt/auto_decryption_context.rb +42 -0
  30. data/lib/mongo/crypt/auto_encrypter.rb +169 -0
  31. data/lib/mongo/crypt/auto_encryption_context.rb +44 -0
  32. data/lib/mongo/crypt/binary.rb +155 -0
  33. data/lib/mongo/crypt/binding.rb +1162 -0
  34. data/lib/mongo/crypt/context.rb +135 -0
  35. data/lib/mongo/crypt/data_key_context.rb +162 -0
  36. data/lib/mongo/crypt/encryption_io.rb +283 -0
  37. data/lib/mongo/crypt/explicit_decryption_context.rb +40 -0
  38. data/lib/mongo/crypt/explicit_encrypter.rb +117 -0
  39. data/lib/mongo/crypt/explicit_encryption_context.rb +89 -0
  40. data/lib/mongo/crypt/handle.rb +293 -0
  41. data/lib/mongo/crypt/hooks.rb +90 -0
  42. data/lib/mongo/crypt/kms_context.rb +67 -0
  43. data/lib/mongo/crypt/status.rb +131 -0
  44. data/lib/mongo/cursor.rb +64 -32
  45. data/lib/mongo/database.rb +13 -6
  46. data/lib/mongo/database/view.rb +13 -4
  47. data/lib/mongo/dbref.rb +9 -2
  48. data/lib/mongo/error.rb +5 -1
  49. data/lib/mongo/error/crypt_error.rb +31 -0
  50. data/lib/mongo/error/{failed_stringprep_validation.rb → failed_string_prep_validation.rb} +0 -0
  51. data/lib/mongo/error/invalid_cursor_operation.rb +27 -0
  52. data/lib/mongo/error/kms_error.rb +22 -0
  53. data/lib/mongo/error/max_bson_size.rb +14 -3
  54. data/lib/mongo/error/mongocryptd_spawn_error.rb +22 -0
  55. data/lib/mongo/error/no_server_available.rb +8 -3
  56. data/lib/mongo/error/operation_failure.rb +1 -0
  57. data/lib/mongo/grid/file.rb +0 -5
  58. data/lib/mongo/grid/file/chunk.rb +0 -2
  59. data/lib/mongo/grid/file/info.rb +2 -1
  60. data/lib/mongo/grid/fs_bucket.rb +13 -15
  61. data/lib/mongo/grid/stream/write.rb +3 -9
  62. data/lib/mongo/index/view.rb +3 -3
  63. data/lib/mongo/monitoring/event/command_started.rb +6 -1
  64. data/lib/mongo/operation/collections_info.rb +6 -3
  65. data/lib/mongo/operation/delete/op_msg.rb +1 -1
  66. data/lib/mongo/operation/find/op_msg.rb +4 -1
  67. data/lib/mongo/operation/get_more/op_msg.rb +4 -1
  68. data/lib/mongo/operation/insert/command.rb +2 -2
  69. data/lib/mongo/operation/insert/legacy.rb +2 -2
  70. data/lib/mongo/operation/insert/op_msg.rb +3 -3
  71. data/lib/mongo/operation/result.rb +36 -27
  72. data/lib/mongo/operation/shared/executable.rb +10 -8
  73. data/lib/mongo/operation/shared/executable_no_validate.rb +2 -2
  74. data/lib/mongo/operation/shared/op_msg_or_command.rb +2 -2
  75. data/lib/mongo/operation/shared/op_msg_or_find_command.rb +2 -2
  76. data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +2 -2
  77. data/lib/mongo/operation/shared/write.rb +17 -10
  78. data/lib/mongo/operation/update/op_msg.rb +1 -1
  79. data/lib/mongo/protocol/compressed.rb +6 -5
  80. data/lib/mongo/protocol/insert.rb +3 -1
  81. data/lib/mongo/protocol/message.rb +72 -8
  82. data/lib/mongo/protocol/msg.rb +191 -37
  83. data/lib/mongo/protocol/query.rb +7 -9
  84. data/lib/mongo/protocol/serializers.rb +6 -2
  85. data/lib/mongo/server.rb +10 -4
  86. data/lib/mongo/server/connection.rb +20 -9
  87. data/lib/mongo/server/connection_base.rb +81 -12
  88. data/lib/mongo/server/connection_common.rb +61 -0
  89. data/lib/mongo/server/connection_pool.rb +37 -1
  90. data/lib/mongo/server/description.rb +9 -11
  91. data/lib/mongo/server/monitor.rb +2 -0
  92. data/lib/mongo/server/monitor/connection.rb +3 -18
  93. data/lib/mongo/server/pending_connection.rb +2 -1
  94. data/lib/mongo/session.rb +2 -2
  95. data/lib/mongo/session/session_pool.rb +8 -3
  96. data/lib/mongo/socket.rb +29 -16
  97. data/lib/mongo/socket/ssl.rb +23 -8
  98. data/lib/mongo/socket/tcp.rb +12 -3
  99. data/lib/mongo/timeout.rb +49 -0
  100. data/lib/mongo/uri.rb +30 -1
  101. data/lib/mongo/version.rb +1 -1
  102. data/mongo.gemspec +1 -1
  103. data/spec/README.md +134 -7
  104. data/spec/integration/auth_spec.rb +53 -0
  105. data/spec/integration/{client_options_spec.rb → client_authentication_options_spec.rb} +10 -10
  106. data/spec/integration/client_construction_spec.rb +76 -1
  107. data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +351 -0
  108. data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +301 -0
  109. data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +71 -0
  110. data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +76 -0
  111. data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +216 -0
  112. data/spec/integration/client_side_encryption/auto_encryption_spec.rb +600 -0
  113. data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +183 -0
  114. data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +74 -0
  115. data/spec/integration/client_side_encryption/client_close_spec.rb +59 -0
  116. data/spec/integration/client_side_encryption/corpus_spec.rb +228 -0
  117. data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +132 -0
  118. data/spec/integration/client_side_encryption/data_key_spec.rb +163 -0
  119. data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +114 -0
  120. data/spec/integration/client_side_encryption/external_key_vault_spec.rb +137 -0
  121. data/spec/integration/client_side_encryption/views_spec.rb +42 -0
  122. data/spec/integration/client_update_spec.rb +120 -0
  123. data/spec/integration/command_monitoring_spec.rb +3 -1
  124. data/spec/integration/command_spec.rb +44 -10
  125. data/spec/integration/connection_spec.rb +57 -0
  126. data/spec/integration/reconnect_spec.rb +7 -6
  127. data/spec/integration/size_limit_spec.rb +94 -0
  128. data/spec/integration/srv_monitoring_spec.rb +14 -6
  129. data/spec/lite_spec_helper.rb +31 -22
  130. data/spec/mongo/auth/cr_spec.rb +8 -0
  131. data/spec/mongo/auth/ldap_spec.rb +5 -1
  132. data/spec/mongo/auth/scram/conversation_spec.rb +5 -6
  133. data/spec/mongo/auth/scram/negotiation_spec.rb +74 -75
  134. data/spec/mongo/auth/scram_spec.rb +45 -35
  135. data/spec/mongo/auth/x509_spec.rb +5 -1
  136. data/spec/mongo/client_construction_spec.rb +206 -3
  137. data/spec/mongo/client_encryption_spec.rb +408 -0
  138. data/spec/mongo/cluster/cursor_reaper_spec.rb +12 -8
  139. data/spec/mongo/cluster/socket_reaper_spec.rb +14 -3
  140. data/spec/mongo/collection/view/aggregation_spec.rb +0 -2
  141. data/spec/mongo/collection/view/change_stream_spec.rb +7 -7
  142. data/spec/mongo/collection/view/map_reduce_spec.rb +3 -3
  143. data/spec/mongo/collection/view_spec.rb +1 -1
  144. data/spec/mongo/collection_spec.rb +4 -33
  145. data/spec/mongo/crypt/auto_decryption_context_spec.rb +90 -0
  146. data/spec/mongo/crypt/auto_encrypter_spec.rb +182 -0
  147. data/spec/mongo/crypt/auto_encryption_context_spec.rb +107 -0
  148. data/spec/mongo/crypt/binary_spec.rb +115 -0
  149. data/spec/mongo/crypt/binding/binary_spec.rb +56 -0
  150. data/spec/mongo/crypt/binding/context_spec.rb +257 -0
  151. data/spec/mongo/crypt/binding/helpers_spec.rb +46 -0
  152. data/spec/mongo/crypt/binding/mongocrypt_spec.rb +144 -0
  153. data/spec/mongo/crypt/binding/status_spec.rb +99 -0
  154. data/spec/mongo/crypt/binding/version_spec.rb +22 -0
  155. data/spec/mongo/crypt/binding_unloaded_spec.rb +20 -0
  156. data/spec/mongo/crypt/data_key_context_spec.rb +213 -0
  157. data/spec/mongo/crypt/encryption_io_spec.rb +136 -0
  158. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +72 -0
  159. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +170 -0
  160. data/spec/mongo/crypt/handle_spec.rb +198 -0
  161. data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +108 -0
  162. data/spec/mongo/crypt/status_spec.rb +152 -0
  163. data/spec/mongo/cursor_spec.rb +24 -4
  164. data/spec/mongo/database_spec.rb +20 -0
  165. data/spec/mongo/error/crypt_error_spec.rb +26 -0
  166. data/spec/mongo/error/max_bson_size_spec.rb +35 -0
  167. data/spec/mongo/error/no_server_available_spec.rb +11 -1
  168. data/spec/mongo/error/operation_failure_spec.rb +6 -6
  169. data/spec/mongo/operation/aggregate_spec.rb +1 -1
  170. data/spec/mongo/operation/collections_info_spec.rb +1 -1
  171. data/spec/mongo/operation/command_spec.rb +3 -3
  172. data/spec/mongo/operation/create_index_spec.rb +3 -3
  173. data/spec/mongo/operation/create_user_spec.rb +3 -3
  174. data/spec/mongo/operation/delete/bulk_spec.rb +6 -6
  175. data/spec/mongo/operation/delete/op_msg_spec.rb +1 -6
  176. data/spec/mongo/operation/delete_spec.rb +7 -7
  177. data/spec/mongo/operation/drop_index_spec.rb +2 -2
  178. data/spec/mongo/operation/find/legacy_spec.rb +1 -1
  179. data/spec/mongo/operation/get_more_spec.rb +1 -1
  180. data/spec/mongo/operation/indexes_spec.rb +1 -1
  181. data/spec/mongo/operation/insert/bulk_spec.rb +7 -7
  182. data/spec/mongo/operation/insert/op_msg_spec.rb +3 -6
  183. data/spec/mongo/operation/insert_spec.rb +12 -12
  184. data/spec/mongo/operation/map_reduce_spec.rb +2 -2
  185. data/spec/mongo/operation/remove_user_spec.rb +3 -3
  186. data/spec/mongo/operation/update/bulk_spec.rb +6 -6
  187. data/spec/mongo/operation/update/op_msg_spec.rb +3 -6
  188. data/spec/mongo/operation/update_spec.rb +7 -7
  189. data/spec/mongo/operation/update_user_spec.rb +1 -1
  190. data/spec/mongo/protocol/compressed_spec.rb +2 -3
  191. data/spec/mongo/protocol/delete_spec.rb +9 -8
  192. data/spec/mongo/protocol/get_more_spec.rb +9 -8
  193. data/spec/mongo/protocol/insert_spec.rb +9 -8
  194. data/spec/mongo/protocol/kill_cursors_spec.rb +6 -5
  195. data/spec/mongo/protocol/msg_spec.rb +57 -53
  196. data/spec/mongo/protocol/query_spec.rb +12 -12
  197. data/spec/mongo/protocol/registry_spec.rb +1 -1
  198. data/spec/mongo/protocol/reply_spec.rb +1 -1
  199. data/spec/mongo/protocol/update_spec.rb +10 -9
  200. data/spec/mongo/server/connection_pool_spec.rb +1 -1
  201. data/spec/mongo/server/connection_spec.rb +28 -7
  202. data/spec/mongo/socket_spec.rb +1 -1
  203. data/spec/mongo/timeout_spec.rb +85 -0
  204. data/spec/mongo/uri/srv_protocol_spec.rb +2 -2
  205. data/spec/mongo/uri_spec.rb +52 -5
  206. data/spec/mongo/write_concern_spec.rb +13 -1
  207. data/spec/{support → runners}/auth.rb +14 -1
  208. data/spec/{support → runners}/change_streams.rb +1 -1
  209. data/spec/{support → runners}/change_streams/operation.rb +0 -0
  210. data/spec/{support → runners}/cmap.rb +1 -1
  211. data/spec/{support → runners}/cmap/verifier.rb +0 -0
  212. data/spec/{support → runners}/command_monitoring.rb +0 -0
  213. data/spec/runners/connection_string.rb +358 -4
  214. data/spec/{support → runners}/crud.rb +9 -9
  215. data/spec/{support → runners}/crud/context.rb +0 -0
  216. data/spec/{support → runners}/crud/operation.rb +7 -3
  217. data/spec/{support → runners}/crud/outcome.rb +0 -0
  218. data/spec/{support → runners}/crud/requirement.rb +1 -1
  219. data/spec/{support → runners}/crud/spec.rb +12 -1
  220. data/spec/{support → runners}/crud/test.rb +0 -0
  221. data/spec/{support → runners}/crud/test_base.rb +0 -0
  222. data/spec/{support → runners}/crud/verifier.rb +10 -12
  223. data/spec/{support → runners}/gridfs.rb +0 -0
  224. data/spec/{support → runners}/sdam_monitoring.rb +0 -0
  225. data/spec/{support → runners}/server_discovery_and_monitoring.rb +0 -0
  226. data/spec/{support → runners}/server_selection.rb +0 -0
  227. data/spec/{support → runners}/server_selection_rtt.rb +0 -0
  228. data/spec/{support → runners}/transactions.rb +4 -4
  229. data/spec/{support → runners}/transactions/context.rb +0 -0
  230. data/spec/{support → runners}/transactions/operation.rb +0 -0
  231. data/spec/{support → runners}/transactions/spec.rb +0 -0
  232. data/spec/{support → runners}/transactions/test.rb +37 -5
  233. data/spec/spec_helper.rb +0 -5
  234. data/spec/spec_tests/auth_spec.rb +3 -3
  235. data/spec/spec_tests/client_side_encryption_spec.rb +13 -0
  236. data/spec/spec_tests/connection_string_spec.rb +1 -1
  237. data/spec/spec_tests/data/auth/connection-string.yml +13 -0
  238. data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
  239. data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
  240. data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
  241. data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
  242. data/spec/spec_tests/data/client_side_encryption/bulk.yml +85 -0
  243. data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
  244. data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
  245. data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
  246. data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
  247. data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
  248. data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
  249. data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
  250. data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
  251. data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
  252. data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
  253. data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
  254. data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
  255. data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
  256. data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
  257. data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
  258. data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
  259. data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
  260. data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
  261. data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
  262. data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +61 -0
  263. data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
  264. data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
  265. data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
  266. data/spec/spec_tests/data/client_side_encryption/updateOne.yml +168 -0
  267. data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +1 -4
  268. data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +21 -0
  269. data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +2 -4
  270. data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +1 -1
  271. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
  272. data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +1 -2
  273. data/spec/spec_tests/data/sdam/rs/repeated.yml +101 -0
  274. data/spec/spec_tests/data/sdam/rs/{primary_address_change.yml → ruby_primary_address_change.yml} +2 -0
  275. data/spec/spec_tests/data/sdam/rs/{secondary_wrong_set_name_with_primary_second.yml → ruby_secondary_wrong_set_name_with_primary_second.yml} +0 -0
  276. data/spec/spec_tests/data/sdam/sharded/ruby_discovered_single_mongos.yml +27 -0
  277. data/spec/spec_tests/data/sdam/sharded/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
  278. data/spec/spec_tests/data/sdam/sharded/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
  279. data/spec/spec_tests/data/sdam/single/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
  280. data/spec/spec_tests/data/sdam/single/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
  281. data/spec/spec_tests/data/sdam_monitoring/{replica_set_with_primary_change.yml → replica_set_primary_address_change.yml} +27 -5
  282. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +26 -74
  283. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +20 -16
  284. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
  285. data/spec/spec_tests/data/transactions/pin-mongos.yml +2 -3
  286. data/spec/spec_tests/data/uri_options/auth-options.yml +10 -0
  287. data/spec/spec_tests/data/uri_options/tls-options.yml +75 -4
  288. data/spec/spec_tests/read_write_concern_connection_string_spec.rb +1 -1
  289. data/spec/spec_tests/uri_options_spec.rb +6 -8
  290. data/spec/stress/connection_pool_timing_spec.rb +6 -3
  291. data/spec/support/certificates/README.md +4 -0
  292. data/spec/support/certificates/server-second-level-bundle.pem +77 -77
  293. data/spec/support/certificates/server-second-level.crt +52 -52
  294. data/spec/support/certificates/server-second-level.key +25 -25
  295. data/spec/support/certificates/server-second-level.pem +77 -77
  296. data/spec/support/client_registry.rb +19 -3
  297. data/spec/support/cluster_config.rb +9 -1
  298. data/spec/support/common_shortcuts.rb +12 -0
  299. data/spec/support/constraints.rb +16 -0
  300. data/spec/support/crypt.rb +140 -0
  301. data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
  302. data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
  303. data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
  304. data/spec/support/crypt/corpus/corpus.json +3657 -0
  305. data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
  306. data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
  307. data/spec/support/crypt/data_keys/key_document_local.json +31 -0
  308. data/spec/support/crypt/external/external-key.json +31 -0
  309. data/spec/support/crypt/external/external-schema.json +19 -0
  310. data/spec/support/crypt/limits/limits-doc.json +102 -0
  311. data/spec/support/crypt/limits/limits-key.json +31 -0
  312. data/spec/support/crypt/limits/limits-schema.json +1405 -0
  313. data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
  314. data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
  315. data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
  316. data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
  317. data/spec/support/lite_constraints.rb +17 -1
  318. data/spec/support/matchers.rb +19 -0
  319. data/spec/support/shared/protocol.rb +2 -0
  320. data/spec/support/spec_config.rb +43 -13
  321. data/spec/support/utils.rb +132 -10
  322. metadata +277 -81
  323. metadata.gz.sig +0 -0
  324. data/spec/integration/grid_fs_bucket_spec.rb +0 -48
  325. data/spec/integration/zlib_compression_spec.rb +0 -25
  326. data/spec/spec_tests/data/sdam/sharded/single_mongos.yml +0 -33
  327. data/spec/support/connection_string.rb +0 -354
@@ -0,0 +1,4152 @@
1
+ // 20200303231710
2
+ // https://raw.githubusercontent.com/mongodb/specifications/master/source/client-side-encryption/corpus/corpus-encrypted.json
3
+
4
+ {
5
+ "_id": "client_side_encryption_corpus",
6
+ "altname_aws": "aws",
7
+ "altname_local": "local",
8
+ "aws_double_rand_auto_id": {
9
+ "kms": "aws",
10
+ "type": "double",
11
+ "algo": "rand",
12
+ "method": "auto",
13
+ "identifier": "id",
14
+ "allowed": true,
15
+ "value": {
16
+ "$binary": {
17
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAABchrWPF5OPeuFpk4tUV325TmoNpGW+L5iPSXcLQIr319WJFIp3EDy5QiAHBfz2rThI7imU4eLXndIUrsjM0S/vg==",
18
+ "subType": "06"
19
+ }
20
+ }
21
+ },
22
+ "aws_double_rand_auto_altname": {
23
+ "kms": "aws",
24
+ "type": "double",
25
+ "algo": "rand",
26
+ "method": "auto",
27
+ "identifier": "altname",
28
+ "allowed": true,
29
+ "value": {
30
+ "$binary": {
31
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAABga5hXFiFvH/wOr0wOHSHFWRZ4pEs/UCC1XJWf46Dod3GY9Ry5j1ZyzeHueJxc4Ym5M8UHKSmJuXmNo9m9ZnkiA==",
32
+ "subType": "06"
33
+ }
34
+ }
35
+ },
36
+ "aws_double_rand_explicit_id": {
37
+ "kms": "aws",
38
+ "type": "double",
39
+ "algo": "rand",
40
+ "method": "explicit",
41
+ "identifier": "id",
42
+ "allowed": true,
43
+ "value": {
44
+ "$binary": {
45
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAABjTYZbsro/YxLWBb88qPXEIDQdzY7UZyK4UaZZ8h62OTxp43Zp9j6WvOEzKhXt4oJPMxlAxyTdqO6MllX5bsDrw==",
46
+ "subType": "06"
47
+ }
48
+ }
49
+ },
50
+ "aws_double_rand_explicit_altname": {
51
+ "kms": "aws",
52
+ "type": "double",
53
+ "algo": "rand",
54
+ "method": "explicit",
55
+ "identifier": "altname",
56
+ "allowed": true,
57
+ "value": {
58
+ "$binary": {
59
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAABqkyXdeS3aWH2tRFoKxsIIL3ZH05gkiAEbutrjrdfw0b110iPhuCCOb0gP/nX/NRNCg1kCFZ543Vu0xZ0BRXlvQ==",
60
+ "subType": "06"
61
+ }
62
+ }
63
+ },
64
+ "aws_double_det_explicit_id": {
65
+ "kms": "aws",
66
+ "type": "double",
67
+ "algo": "det",
68
+ "method": "explicit",
69
+ "identifier": "id",
70
+ "allowed": false,
71
+ "value": {
72
+ "$numberDouble": "1.234"
73
+ }
74
+ },
75
+ "aws_double_det_explicit_altname": {
76
+ "kms": "aws",
77
+ "type": "double",
78
+ "algo": "det",
79
+ "method": "explicit",
80
+ "identifier": "altname",
81
+ "allowed": false,
82
+ "value": {
83
+ "$numberDouble": "1.234"
84
+ }
85
+ },
86
+ "aws_string_rand_auto_id": {
87
+ "kms": "aws",
88
+ "type": "string",
89
+ "algo": "rand",
90
+ "method": "auto",
91
+ "identifier": "id",
92
+ "allowed": true,
93
+ "value": {
94
+ "$binary": {
95
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAACAsI5E0rVT8TpIONY3TnbRvIxUjKsiy9ynVd/fE7U1lndE7KR6dTzs8QWK13kdKxO+njKPeC2ObBX904QmJ65Sw==",
96
+ "subType": "06"
97
+ }
98
+ }
99
+ },
100
+ "aws_string_rand_auto_altname": {
101
+ "kms": "aws",
102
+ "type": "string",
103
+ "algo": "rand",
104
+ "method": "auto",
105
+ "identifier": "altname",
106
+ "allowed": true,
107
+ "value": {
108
+ "$binary": {
109
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAACgBE6J6MRxPSDe+gfJPL8nBvuEIRBYxNS/73LqBTDJYyN/lsHQ6UlFDT5B4EkIPmHPTe+UBMOhZQ1bsP+DK8Aog==",
110
+ "subType": "06"
111
+ }
112
+ }
113
+ },
114
+ "aws_string_rand_explicit_id": {
115
+ "kms": "aws",
116
+ "type": "string",
117
+ "algo": "rand",
118
+ "method": "explicit",
119
+ "identifier": "id",
120
+ "allowed": true,
121
+ "value": {
122
+ "$binary": {
123
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAACbdTVDBWn35M5caKZgLFoiSVeFGKRj5K/QtupKNc8/dPIyCE+/a4PU51G/YIzFpYmp91nLpyq7lD/eJ/V0q66Zw==",
124
+ "subType": "06"
125
+ }
126
+ }
127
+ },
128
+ "aws_string_rand_explicit_altname": {
129
+ "kms": "aws",
130
+ "type": "string",
131
+ "algo": "rand",
132
+ "method": "explicit",
133
+ "identifier": "altname",
134
+ "allowed": true,
135
+ "value": {
136
+ "$binary": {
137
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAACa4O+kE2BaqM0E+yiBrbCuE0YEGTrZ7L/+SuWm9gN3UupxwAQpRfxXAuUCTc9u1CXnvL+ga+VJMcWD2bawnn/Rg==",
138
+ "subType": "06"
139
+ }
140
+ }
141
+ },
142
+ "aws_string_det_auto_id": {
143
+ "kms": "aws",
144
+ "type": "string",
145
+ "algo": "det",
146
+ "method": "auto",
147
+ "identifier": "id",
148
+ "allowed": true,
149
+ "value": {
150
+ "$binary": {
151
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAACyvOW8NcqRkZYzujivwVmYptJkic27PWr3Nq3Yv5Njz8cJdoyesVaQan6mn+U3wdfGEH8zbUUISdCx5qgvXEpvw==",
152
+ "subType": "06"
153
+ }
154
+ }
155
+ },
156
+ "aws_string_det_explicit_id": {
157
+ "kms": "aws",
158
+ "type": "string",
159
+ "algo": "det",
160
+ "method": "explicit",
161
+ "identifier": "id",
162
+ "allowed": true,
163
+ "value": {
164
+ "$binary": {
165
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAACyvOW8NcqRkZYzujivwVmYptJkic27PWr3Nq3Yv5Njz8cJdoyesVaQan6mn+U3wdfGEH8zbUUISdCx5qgvXEpvw==",
166
+ "subType": "06"
167
+ }
168
+ }
169
+ },
170
+ "aws_string_det_explicit_altname": {
171
+ "kms": "aws",
172
+ "type": "string",
173
+ "algo": "det",
174
+ "method": "explicit",
175
+ "identifier": "altname",
176
+ "allowed": true,
177
+ "value": {
178
+ "$binary": {
179
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAACyvOW8NcqRkZYzujivwVmYptJkic27PWr3Nq3Yv5Njz8cJdoyesVaQan6mn+U3wdfGEH8zbUUISdCx5qgvXEpvw==",
180
+ "subType": "06"
181
+ }
182
+ }
183
+ },
184
+ "aws_object_rand_auto_id": {
185
+ "kms": "aws",
186
+ "type": "object",
187
+ "algo": "rand",
188
+ "method": "auto",
189
+ "identifier": "id",
190
+ "allowed": true,
191
+ "value": {
192
+ "$binary": {
193
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAADI+/afY6Eka8j1VNThWIeGkDZ7vo4/l66a01Z+lVUFFnVLeUV/nz9kM6uTTplNRUa+RXmNmwkoR/BHRnGc7wRNA==",
194
+ "subType": "06"
195
+ }
196
+ }
197
+ },
198
+ "aws_object_rand_auto_altname": {
199
+ "kms": "aws",
200
+ "type": "object",
201
+ "algo": "rand",
202
+ "method": "auto",
203
+ "identifier": "altname",
204
+ "allowed": true,
205
+ "value": {
206
+ "$binary": {
207
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAADzN4hVXWXKerhggRRtwWnDu2W2wQ5KIWb/X1WCZJKTjQSQ5LNHVasabBCa4U1q46PQ5pDDM1PkVjW6o+zzl/4xw==",
208
+ "subType": "06"
209
+ }
210
+ }
211
+ },
212
+ "aws_object_rand_explicit_id": {
213
+ "kms": "aws",
214
+ "type": "object",
215
+ "algo": "rand",
216
+ "method": "explicit",
217
+ "identifier": "id",
218
+ "allowed": true,
219
+ "value": {
220
+ "$binary": {
221
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAADhSs5zKFMuuux3fqFFuPito3N+bp5TgmkUtJtFXjmA/EnLuexGARvEeGUsMJ/n0VzKbbsiE8+AsUNY3o9YXutqQ==",
222
+ "subType": "06"
223
+ }
224
+ }
225
+ },
226
+ "aws_object_rand_explicit_altname": {
227
+ "kms": "aws",
228
+ "type": "object",
229
+ "algo": "rand",
230
+ "method": "explicit",
231
+ "identifier": "altname",
232
+ "allowed": true,
233
+ "value": {
234
+ "$binary": {
235
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAADpj8MSov16h26bFDrHepsNkW+tOLOjRP7oj1Tnj75qZ+uqxxVkQ5B/t/Ihk5fikHTJGAcRBR5Vv6kJ/ulMaDnvQ==",
236
+ "subType": "06"
237
+ }
238
+ }
239
+ },
240
+ "aws_object_det_explicit_id": {
241
+ "kms": "aws",
242
+ "type": "object",
243
+ "algo": "det",
244
+ "method": "explicit",
245
+ "identifier": "id",
246
+ "allowed": false,
247
+ "value": {
248
+ "x": {
249
+ "$numberInt": "1"
250
+ }
251
+ }
252
+ },
253
+ "aws_object_det_explicit_altname": {
254
+ "kms": "aws",
255
+ "type": "object",
256
+ "algo": "det",
257
+ "method": "explicit",
258
+ "identifier": "altname",
259
+ "allowed": false,
260
+ "value": {
261
+ "x": {
262
+ "$numberInt": "1"
263
+ }
264
+ }
265
+ },
266
+ "aws_array_rand_auto_id": {
267
+ "kms": "aws",
268
+ "type": "array",
269
+ "algo": "rand",
270
+ "method": "auto",
271
+ "identifier": "id",
272
+ "allowed": true,
273
+ "value": {
274
+ "$binary": {
275
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAETWDOZ6zV39H2+W+BkwZIoxI3BNF6phKoiBZ9+i4T9uEoyU3TmoTPjuI0YNwR1v/p5/9rlVCG0KLZd16eeMb3zxZXjqh6IAJqfhsBQ7bzBYI=",
276
+ "subType": "06"
277
+ }
278
+ }
279
+ },
280
+ "aws_array_rand_auto_altname": {
281
+ "kms": "aws",
282
+ "type": "array",
283
+ "algo": "rand",
284
+ "method": "auto",
285
+ "identifier": "altname",
286
+ "allowed": true,
287
+ "value": {
288
+ "$binary": {
289
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAE1xeHbld2JjUiPB1k+xMZuIzNSai7mv1iusCswxKEfYCZ7YtR0GDQTxN4676CwhcodSDiysjgOxSFIGlptKCvl0k46LNq0EGypP9yWBLvdjQ=",
290
+ "subType": "06"
291
+ }
292
+ }
293
+ },
294
+ "aws_array_rand_explicit_id": {
295
+ "kms": "aws",
296
+ "type": "array",
297
+ "algo": "rand",
298
+ "method": "explicit",
299
+ "identifier": "id",
300
+ "allowed": true,
301
+ "value": {
302
+ "$binary": {
303
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAEFVa4U2uW65MGihhdOmpZFgnwGTs3VeN5TXXbXJ5cfm0CwXF3EPlzAVjy5WO/+lbvFufpQnIiLH59/kVygmwn+2P9zPNJnSGIJW9gaV8Vye8=",
304
+ "subType": "06"
305
+ }
306
+ }
307
+ },
308
+ "aws_array_rand_explicit_altname": {
309
+ "kms": "aws",
310
+ "type": "array",
311
+ "algo": "rand",
312
+ "method": "explicit",
313
+ "identifier": "altname",
314
+ "allowed": true,
315
+ "value": {
316
+ "$binary": {
317
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAE11VXbfg7DJQ5/CB9XdBO0hCrxOkK3RrEjPGJ0FXlUo76IMna1uo+NVmDnM63CRlGE3/TEbZPpp0w0jn4vZLKvBmGr7o7WQusRY4jnRf5oH4=",
318
+ "subType": "06"
319
+ }
320
+ }
321
+ },
322
+ "aws_array_det_explicit_id": {
323
+ "kms": "aws",
324
+ "type": "array",
325
+ "algo": "det",
326
+ "method": "explicit",
327
+ "identifier": "id",
328
+ "allowed": false,
329
+ "value": [
330
+ {
331
+ "$numberInt": "1"
332
+ },
333
+ {
334
+ "$numberInt": "2"
335
+ },
336
+ {
337
+ "$numberInt": "3"
338
+ }
339
+ ]
340
+ },
341
+ "aws_array_det_explicit_altname": {
342
+ "kms": "aws",
343
+ "type": "array",
344
+ "algo": "det",
345
+ "method": "explicit",
346
+ "identifier": "altname",
347
+ "allowed": false,
348
+ "value": [
349
+ {
350
+ "$numberInt": "1"
351
+ },
352
+ {
353
+ "$numberInt": "2"
354
+ },
355
+ {
356
+ "$numberInt": "3"
357
+ }
358
+ ]
359
+ },
360
+ "aws_binData=00_rand_auto_id": {
361
+ "kms": "aws",
362
+ "type": "binData=00",
363
+ "algo": "rand",
364
+ "method": "auto",
365
+ "identifier": "id",
366
+ "allowed": true,
367
+ "value": {
368
+ "$binary": {
369
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFpZYSktIHzGLZ6mcBFxywICqxdurqLVJcQR34ngix5YIOOulCYEhBSDzzSEyixEPCuU6cEzeuafpZRHX4qgcr9Q==",
370
+ "subType": "06"
371
+ }
372
+ }
373
+ },
374
+ "aws_binData=00_rand_auto_altname": {
375
+ "kms": "aws",
376
+ "type": "binData=00",
377
+ "algo": "rand",
378
+ "method": "auto",
379
+ "identifier": "altname",
380
+ "allowed": true,
381
+ "value": {
382
+ "$binary": {
383
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFshzESR9SyR++9r2yeaEjJYScMDez414s8pZkB3C8ihDa+rsyaxNy4yrF7qNEWjFrdFaH7zD2LdlPx+TKZgROlg==",
384
+ "subType": "06"
385
+ }
386
+ }
387
+ },
388
+ "aws_binData=00_rand_explicit_id": {
389
+ "kms": "aws",
390
+ "type": "binData=00",
391
+ "algo": "rand",
392
+ "method": "explicit",
393
+ "identifier": "id",
394
+ "allowed": true,
395
+ "value": {
396
+ "$binary": {
397
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFpYwZRPDom7qyAe5WW/QNSq97/OYgRT8xUEaaR5pkbQEFd/Cwtl8Aib/3Bs1CT3MVaHVWna2u5Gcc4s/v18zLhg==",
398
+ "subType": "06"
399
+ }
400
+ }
401
+ },
402
+ "aws_binData=00_rand_explicit_altname": {
403
+ "kms": "aws",
404
+ "type": "binData=00",
405
+ "algo": "rand",
406
+ "method": "explicit",
407
+ "identifier": "altname",
408
+ "allowed": true,
409
+ "value": {
410
+ "$binary": {
411
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFBq1RIU1YGHKAS1SAtS42fKtQBHQ/BCQzRutirNdvWlrXxF81LSaS7QgQyycZ2ePiOLsSm2vZS4xaQETeCgRC4g==",
412
+ "subType": "06"
413
+ }
414
+ }
415
+ },
416
+ "aws_binData=00_det_auto_id": {
417
+ "kms": "aws",
418
+ "type": "binData=00",
419
+ "algo": "det",
420
+ "method": "auto",
421
+ "identifier": "id",
422
+ "allowed": true,
423
+ "value": {
424
+ "$binary": {
425
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAF6SJGmfD3hLVc4tLPm4v2zFuHoRxUDLumBR8Q0AlKK2nQPyvuHEPVBD3vQdDi+Q7PwFxmovJsHccr59VnzvpJeg==",
426
+ "subType": "06"
427
+ }
428
+ }
429
+ },
430
+ "aws_binData=00_det_explicit_id": {
431
+ "kms": "aws",
432
+ "type": "binData=00",
433
+ "algo": "det",
434
+ "method": "explicit",
435
+ "identifier": "id",
436
+ "allowed": true,
437
+ "value": {
438
+ "$binary": {
439
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAF6SJGmfD3hLVc4tLPm4v2zFuHoRxUDLumBR8Q0AlKK2nQPyvuHEPVBD3vQdDi+Q7PwFxmovJsHccr59VnzvpJeg==",
440
+ "subType": "06"
441
+ }
442
+ }
443
+ },
444
+ "aws_binData=00_det_explicit_altname": {
445
+ "kms": "aws",
446
+ "type": "binData=00",
447
+ "algo": "det",
448
+ "method": "explicit",
449
+ "identifier": "altname",
450
+ "allowed": true,
451
+ "value": {
452
+ "$binary": {
453
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAF6SJGmfD3hLVc4tLPm4v2zFuHoRxUDLumBR8Q0AlKK2nQPyvuHEPVBD3vQdDi+Q7PwFxmovJsHccr59VnzvpJeg==",
454
+ "subType": "06"
455
+ }
456
+ }
457
+ },
458
+ "aws_binData=04_rand_auto_id": {
459
+ "kms": "aws",
460
+ "type": "binData=04",
461
+ "algo": "rand",
462
+ "method": "auto",
463
+ "identifier": "id",
464
+ "allowed": true,
465
+ "value": {
466
+ "$binary": {
467
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFM5685zqlM8pc3xubtCFuf724g/bWXsebpNzw5E5HrxUqSBBVOvjs3IJH74+Supe169qejY358nOG41mLZvO2wJByvT14qmgUGpgBaLaxPR0=",
468
+ "subType": "06"
469
+ }
470
+ }
471
+ },
472
+ "aws_binData=04_rand_auto_altname": {
473
+ "kms": "aws",
474
+ "type": "binData=04",
475
+ "algo": "rand",
476
+ "method": "auto",
477
+ "identifier": "altname",
478
+ "allowed": true,
479
+ "value": {
480
+ "$binary": {
481
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFfLqOzpfjz/XYHDLnliUAA5ehi6s+OIjvrLa59ubqEf8DuoCEWlO13Dl8X42IBB4hoSsO2RUeWtc9MeH4SdIUh/xJN3qS7qzjh/H+GvZRdAM=",
482
+ "subType": "06"
483
+ }
484
+ }
485
+ },
486
+ "aws_binData=04_rand_explicit_id": {
487
+ "kms": "aws",
488
+ "type": "binData=04",
489
+ "algo": "rand",
490
+ "method": "explicit",
491
+ "identifier": "id",
492
+ "allowed": true,
493
+ "value": {
494
+ "$binary": {
495
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFkmKfKAbz9tqVaiM9MRhYttiY3vgDwXpdYLQ4uUgWX89KRayLADWortYL+Oq+roFhO3oiwB9vjeWGIdgbj5wSh/50JT/2Gs85TXFe1GFjfWs=",
496
+ "subType": "06"
497
+ }
498
+ }
499
+ },
500
+ "aws_binData=04_rand_explicit_altname": {
501
+ "kms": "aws",
502
+ "type": "binData=04",
503
+ "algo": "rand",
504
+ "method": "explicit",
505
+ "identifier": "altname",
506
+ "allowed": true,
507
+ "value": {
508
+ "$binary": {
509
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAFKbufv83ddN+07Q5Ocq0VxUEV+BesSrVM7Bol3cMlWjHi7P+MrdwhNEa94xlxlDwU3b+RD6kW+AuNEQ2byA3CX2JjZE1gHwN7l0ukXuqpD0A=",
510
+ "subType": "06"
511
+ }
512
+ }
513
+ },
514
+ "aws_binData=04_det_auto_id": {
515
+ "kms": "aws",
516
+ "type": "binData=04",
517
+ "algo": "det",
518
+ "method": "auto",
519
+ "identifier": "id",
520
+ "allowed": true,
521
+ "value": {
522
+ "$binary": {
523
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAFlg7ceq9w/JMhHcNzQks6UrKYAffpUyeWuBIpcuLoB7YbFO61Dphseh77pzZbk3OvmveUq6EtCP2pmsq7hA+QV4hkv6BTn4m6wnXw6ss/qfE=",
524
+ "subType": "06"
525
+ }
526
+ }
527
+ },
528
+ "aws_binData=04_det_explicit_id": {
529
+ "kms": "aws",
530
+ "type": "binData=04",
531
+ "algo": "det",
532
+ "method": "explicit",
533
+ "identifier": "id",
534
+ "allowed": true,
535
+ "value": {
536
+ "$binary": {
537
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAFlg7ceq9w/JMhHcNzQks6UrKYAffpUyeWuBIpcuLoB7YbFO61Dphseh77pzZbk3OvmveUq6EtCP2pmsq7hA+QV4hkv6BTn4m6wnXw6ss/qfE=",
538
+ "subType": "06"
539
+ }
540
+ }
541
+ },
542
+ "aws_binData=04_det_explicit_altname": {
543
+ "kms": "aws",
544
+ "type": "binData=04",
545
+ "algo": "det",
546
+ "method": "explicit",
547
+ "identifier": "altname",
548
+ "allowed": true,
549
+ "value": {
550
+ "$binary": {
551
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAFlg7ceq9w/JMhHcNzQks6UrKYAffpUyeWuBIpcuLoB7YbFO61Dphseh77pzZbk3OvmveUq6EtCP2pmsq7hA+QV4hkv6BTn4m6wnXw6ss/qfE=",
552
+ "subType": "06"
553
+ }
554
+ }
555
+ },
556
+ "aws_undefined_rand_explicit_id": {
557
+ "kms": "aws",
558
+ "type": "undefined",
559
+ "algo": "rand",
560
+ "method": "explicit",
561
+ "identifier": "id",
562
+ "allowed": false,
563
+ "value": {
564
+ "$undefined": true
565
+ }
566
+ },
567
+ "aws_undefined_rand_explicit_altname": {
568
+ "kms": "aws",
569
+ "type": "undefined",
570
+ "algo": "rand",
571
+ "method": "explicit",
572
+ "identifier": "altname",
573
+ "allowed": false,
574
+ "value": {
575
+ "$undefined": true
576
+ }
577
+ },
578
+ "aws_undefined_det_explicit_id": {
579
+ "kms": "aws",
580
+ "type": "undefined",
581
+ "algo": "det",
582
+ "method": "explicit",
583
+ "identifier": "id",
584
+ "allowed": false,
585
+ "value": {
586
+ "$undefined": true
587
+ }
588
+ },
589
+ "aws_undefined_det_explicit_altname": {
590
+ "kms": "aws",
591
+ "type": "undefined",
592
+ "algo": "det",
593
+ "method": "explicit",
594
+ "identifier": "altname",
595
+ "allowed": false,
596
+ "value": {
597
+ "$undefined": true
598
+ }
599
+ },
600
+ "aws_objectId_rand_auto_id": {
601
+ "kms": "aws",
602
+ "type": "objectId",
603
+ "algo": "rand",
604
+ "method": "auto",
605
+ "identifier": "id",
606
+ "allowed": true,
607
+ "value": {
608
+ "$binary": {
609
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAHASE+V+LlkmwgF9QNjBK8QBvC973NaTMk6wbd57VB2EpQzrgxMtR5gYzVeqq4xaaHqrncyZCOIxDJkFlaim2NqA==",
610
+ "subType": "06"
611
+ }
612
+ }
613
+ },
614
+ "aws_objectId_rand_auto_altname": {
615
+ "kms": "aws",
616
+ "type": "objectId",
617
+ "algo": "rand",
618
+ "method": "auto",
619
+ "identifier": "altname",
620
+ "allowed": true,
621
+ "value": {
622
+ "$binary": {
623
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAHf/+9Qj/ozcDoUb8RNBnajU1d9hJ/6fE17IEZnw+ma6v5yH8LqZk9w3dtm6Sfw1unMhcMKrmIgs6kxqRWhNREJg==",
624
+ "subType": "06"
625
+ }
626
+ }
627
+ },
628
+ "aws_objectId_rand_explicit_id": {
629
+ "kms": "aws",
630
+ "type": "objectId",
631
+ "algo": "rand",
632
+ "method": "explicit",
633
+ "identifier": "id",
634
+ "allowed": true,
635
+ "value": {
636
+ "$binary": {
637
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAHzX8ejVLhoarQ5xgWsJitU/9eBm/Hlt2IIbZtS0SBc80qzkkWTaP9Zl9wrILH/Hwwx8RFnts855eKII3NJFa3BA==",
638
+ "subType": "06"
639
+ }
640
+ }
641
+ },
642
+ "aws_objectId_rand_explicit_altname": {
643
+ "kms": "aws",
644
+ "type": "objectId",
645
+ "algo": "rand",
646
+ "method": "explicit",
647
+ "identifier": "altname",
648
+ "allowed": true,
649
+ "value": {
650
+ "$binary": {
651
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAHG5l6nUCY8f/6xO6TsPDrZHcdPRyMe3muMlY2DxHwv9GJNDR5Ne5VEAzUjnbgoy+B29SX4oY8cXJ6XhVz8mt3Eg==",
652
+ "subType": "06"
653
+ }
654
+ }
655
+ },
656
+ "aws_objectId_det_auto_id": {
657
+ "kms": "aws",
658
+ "type": "objectId",
659
+ "algo": "det",
660
+ "method": "auto",
661
+ "identifier": "id",
662
+ "allowed": true,
663
+ "value": {
664
+ "$binary": {
665
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAHTMY2l+gY8glm4HeSsGfCSfOsTVTzYU8qnQV8iqEFHrO5SBJac59gv3N/jukMwAnt0j6vIIQrROkVetU24YY7sQ==",
666
+ "subType": "06"
667
+ }
668
+ }
669
+ },
670
+ "aws_objectId_det_explicit_id": {
671
+ "kms": "aws",
672
+ "type": "objectId",
673
+ "algo": "det",
674
+ "method": "explicit",
675
+ "identifier": "id",
676
+ "allowed": true,
677
+ "value": {
678
+ "$binary": {
679
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAHTMY2l+gY8glm4HeSsGfCSfOsTVTzYU8qnQV8iqEFHrO5SBJac59gv3N/jukMwAnt0j6vIIQrROkVetU24YY7sQ==",
680
+ "subType": "06"
681
+ }
682
+ }
683
+ },
684
+ "aws_objectId_det_explicit_altname": {
685
+ "kms": "aws",
686
+ "type": "objectId",
687
+ "algo": "det",
688
+ "method": "explicit",
689
+ "identifier": "altname",
690
+ "allowed": true,
691
+ "value": {
692
+ "$binary": {
693
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAHTMY2l+gY8glm4HeSsGfCSfOsTVTzYU8qnQV8iqEFHrO5SBJac59gv3N/jukMwAnt0j6vIIQrROkVetU24YY7sQ==",
694
+ "subType": "06"
695
+ }
696
+ }
697
+ },
698
+ "aws_bool_rand_auto_id": {
699
+ "kms": "aws",
700
+ "type": "bool",
701
+ "algo": "rand",
702
+ "method": "auto",
703
+ "identifier": "id",
704
+ "allowed": true,
705
+ "value": {
706
+ "$binary": {
707
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAISm4UFt1HC2j0ObpTBg7SvF2Dq31i9To2ED4F3JcTihhq0fVzaSCsUz9VTJ0ziHmeNPNdfPPZO6qA/CDEZBO4jg==",
708
+ "subType": "06"
709
+ }
710
+ }
711
+ },
712
+ "aws_bool_rand_auto_altname": {
713
+ "kms": "aws",
714
+ "type": "bool",
715
+ "algo": "rand",
716
+ "method": "auto",
717
+ "identifier": "altname",
718
+ "allowed": true,
719
+ "value": {
720
+ "$binary": {
721
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAIj93KeAa96DmZXdB8boFvW19jhJSMmtSs5ag5FDSkH8MdKG2d2VoBOdUlBrL+LHYELqeDHCszY7qCirvb5mIgZg==",
722
+ "subType": "06"
723
+ }
724
+ }
725
+ },
726
+ "aws_bool_rand_explicit_id": {
727
+ "kms": "aws",
728
+ "type": "bool",
729
+ "algo": "rand",
730
+ "method": "explicit",
731
+ "identifier": "id",
732
+ "allowed": true,
733
+ "value": {
734
+ "$binary": {
735
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAIMbDFEuHIl5MNEsWnYLIand1vpK6EMv7Mso6qxrN4wHSVVwmxK+GCPgrKoUQsNuTssFWNCu0IhwrXOagDEfmlxw==",
736
+ "subType": "06"
737
+ }
738
+ }
739
+ },
740
+ "aws_bool_rand_explicit_altname": {
741
+ "kms": "aws",
742
+ "type": "bool",
743
+ "algo": "rand",
744
+ "method": "explicit",
745
+ "identifier": "altname",
746
+ "allowed": true,
747
+ "value": {
748
+ "$binary": {
749
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAIkIaWfmPdxgAV5Rtb6on6T0NGt9GPFDScQD5I/Ch0ngiTCCKceJOjU0ljd3YTgfWRA1p/MlMIV0I5YAWZXKTHlg==",
750
+ "subType": "06"
751
+ }
752
+ }
753
+ },
754
+ "aws_bool_det_explicit_id": {
755
+ "kms": "aws",
756
+ "type": "bool",
757
+ "algo": "det",
758
+ "method": "explicit",
759
+ "identifier": "id",
760
+ "allowed": false,
761
+ "value": true
762
+ },
763
+ "aws_bool_det_explicit_altname": {
764
+ "kms": "aws",
765
+ "type": "bool",
766
+ "algo": "det",
767
+ "method": "explicit",
768
+ "identifier": "altname",
769
+ "allowed": false,
770
+ "value": true
771
+ },
772
+ "aws_date_rand_auto_id": {
773
+ "kms": "aws",
774
+ "type": "date",
775
+ "algo": "rand",
776
+ "method": "auto",
777
+ "identifier": "id",
778
+ "allowed": true,
779
+ "value": {
780
+ "$binary": {
781
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAJz1VG4+QnQXEE+TGu/pzfPugGMVTiC1xnenG1ByRdPvsERVw9WComWl1tb9tt9oblD7H/q0y1+y8HevkDqohB2Q==",
782
+ "subType": "06"
783
+ }
784
+ }
785
+ },
786
+ "aws_date_rand_auto_altname": {
787
+ "kms": "aws",
788
+ "type": "date",
789
+ "algo": "rand",
790
+ "method": "auto",
791
+ "identifier": "altname",
792
+ "allowed": true,
793
+ "value": {
794
+ "$binary": {
795
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAJa1kI2mIIYWjf7zjf5dD9+psvAQpjZ3nnsoXA5upcIwEtZaC8bxKKHVpOLOP3rTbvT5EV6vLhXkferGoyaqd/8w==",
796
+ "subType": "06"
797
+ }
798
+ }
799
+ },
800
+ "aws_date_rand_explicit_id": {
801
+ "kms": "aws",
802
+ "type": "date",
803
+ "algo": "rand",
804
+ "method": "explicit",
805
+ "identifier": "id",
806
+ "allowed": true,
807
+ "value": {
808
+ "$binary": {
809
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAJ9Q5Xe4UuOLQTUwosk47A6xx40XJcNoICCNtKrHqsUYy0QLCFRc5v4nA0160BVghURizbUtX8iuIp11pnsDyRtA==",
810
+ "subType": "06"
811
+ }
812
+ }
813
+ },
814
+ "aws_date_rand_explicit_altname": {
815
+ "kms": "aws",
816
+ "type": "date",
817
+ "algo": "rand",
818
+ "method": "explicit",
819
+ "identifier": "altname",
820
+ "allowed": true,
821
+ "value": {
822
+ "$binary": {
823
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAJkHOdUc/4U82wxWJZ0SYABkJjQqNApkH2Iy/5S+PoatPgynoeSFTU9FmAbuWV/gbtIfBiaCOIjlsdonl/gf9+5w==",
824
+ "subType": "06"
825
+ }
826
+ }
827
+ },
828
+ "aws_date_det_auto_id": {
829
+ "kms": "aws",
830
+ "type": "date",
831
+ "algo": "det",
832
+ "method": "auto",
833
+ "identifier": "id",
834
+ "allowed": true,
835
+ "value": {
836
+ "$binary": {
837
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAJEEpQNsiqMWPqD4lhMkiOJHGE8FxOeYrKPiiAp/bZTrLKyCSS0ZL1WT9H3cGzxWPm5veihCjKqWhjatC/pjtzbQ==",
838
+ "subType": "06"
839
+ }
840
+ }
841
+ },
842
+ "aws_date_det_explicit_id": {
843
+ "kms": "aws",
844
+ "type": "date",
845
+ "algo": "det",
846
+ "method": "explicit",
847
+ "identifier": "id",
848
+ "allowed": true,
849
+ "value": {
850
+ "$binary": {
851
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAJEEpQNsiqMWPqD4lhMkiOJHGE8FxOeYrKPiiAp/bZTrLKyCSS0ZL1WT9H3cGzxWPm5veihCjKqWhjatC/pjtzbQ==",
852
+ "subType": "06"
853
+ }
854
+ }
855
+ },
856
+ "aws_date_det_explicit_altname": {
857
+ "kms": "aws",
858
+ "type": "date",
859
+ "algo": "det",
860
+ "method": "explicit",
861
+ "identifier": "altname",
862
+ "allowed": true,
863
+ "value": {
864
+ "$binary": {
865
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAJEEpQNsiqMWPqD4lhMkiOJHGE8FxOeYrKPiiAp/bZTrLKyCSS0ZL1WT9H3cGzxWPm5veihCjKqWhjatC/pjtzbQ==",
866
+ "subType": "06"
867
+ }
868
+ }
869
+ },
870
+ "aws_null_rand_explicit_id": {
871
+ "kms": "aws",
872
+ "type": "null",
873
+ "algo": "rand",
874
+ "method": "explicit",
875
+ "identifier": "id",
876
+ "allowed": false,
877
+ "value": null
878
+ },
879
+ "aws_null_rand_explicit_altname": {
880
+ "kms": "aws",
881
+ "type": "null",
882
+ "algo": "rand",
883
+ "method": "explicit",
884
+ "identifier": "altname",
885
+ "allowed": false,
886
+ "value": null
887
+ },
888
+ "aws_null_det_explicit_id": {
889
+ "kms": "aws",
890
+ "type": "null",
891
+ "algo": "det",
892
+ "method": "explicit",
893
+ "identifier": "id",
894
+ "allowed": false,
895
+ "value": null
896
+ },
897
+ "aws_null_det_explicit_altname": {
898
+ "kms": "aws",
899
+ "type": "null",
900
+ "algo": "det",
901
+ "method": "explicit",
902
+ "identifier": "altname",
903
+ "allowed": false,
904
+ "value": null
905
+ },
906
+ "aws_regex_rand_auto_id": {
907
+ "kms": "aws",
908
+ "type": "regex",
909
+ "algo": "rand",
910
+ "method": "auto",
911
+ "identifier": "id",
912
+ "allowed": true,
913
+ "value": {
914
+ "$binary": {
915
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAALnhViSt3HqTDzyLN4mWO9srBU8TjRvPWsAJYfj/5sgI/yFuWdrggMs3Aq6G+K3tRrX3Yb+osy5CLiFCxq9WIvAA==",
916
+ "subType": "06"
917
+ }
918
+ }
919
+ },
920
+ "aws_regex_rand_auto_altname": {
921
+ "kms": "aws",
922
+ "type": "regex",
923
+ "algo": "rand",
924
+ "method": "auto",
925
+ "identifier": "altname",
926
+ "allowed": true,
927
+ "value": {
928
+ "$binary": {
929
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAALbL2RS2tGQLBZ+6LtXLKAWFKcoKui+u4+gMIlFemLgpdO2eLqrMJB53ccqZImX8ons9UgAwDkiD68hWy8e7KHfg==",
930
+ "subType": "06"
931
+ }
932
+ }
933
+ },
934
+ "aws_regex_rand_explicit_id": {
935
+ "kms": "aws",
936
+ "type": "regex",
937
+ "algo": "rand",
938
+ "method": "explicit",
939
+ "identifier": "id",
940
+ "allowed": true,
941
+ "value": {
942
+ "$binary": {
943
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAALa0+ftF6W/0Ul4J9VT/3chXFktE1o+OK4S14h2kyOqDVNA8yMKuyCK5nWl1yZvjJ76TuhEABte23oxcBP5QwalQ==",
944
+ "subType": "06"
945
+ }
946
+ }
947
+ },
948
+ "aws_regex_rand_explicit_altname": {
949
+ "kms": "aws",
950
+ "type": "regex",
951
+ "algo": "rand",
952
+ "method": "explicit",
953
+ "identifier": "altname",
954
+ "allowed": true,
955
+ "value": {
956
+ "$binary": {
957
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAALS4Yo9Fwk6OTx2CWdnObFT2L4rHngeIbdCyT4/YMJYd+jLU3mph14M1ptZZg+TBIgSPHq+BkvpRDifbMmOVr/Hg==",
958
+ "subType": "06"
959
+ }
960
+ }
961
+ },
962
+ "aws_regex_det_auto_id": {
963
+ "kms": "aws",
964
+ "type": "regex",
965
+ "algo": "det",
966
+ "method": "auto",
967
+ "identifier": "id",
968
+ "allowed": true,
969
+ "value": {
970
+ "$binary": {
971
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAALpwNlokiTCUtTa2Kx9NVGvXR/aKPGhR5iaCT7nHEk4BOiZ9Kr4cRHdPCeZ7A+gjG4cKoT62sm3Fj1FwSOl8J8aQ==",
972
+ "subType": "06"
973
+ }
974
+ }
975
+ },
976
+ "aws_regex_det_explicit_id": {
977
+ "kms": "aws",
978
+ "type": "regex",
979
+ "algo": "det",
980
+ "method": "explicit",
981
+ "identifier": "id",
982
+ "allowed": true,
983
+ "value": {
984
+ "$binary": {
985
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAALpwNlokiTCUtTa2Kx9NVGvXR/aKPGhR5iaCT7nHEk4BOiZ9Kr4cRHdPCeZ7A+gjG4cKoT62sm3Fj1FwSOl8J8aQ==",
986
+ "subType": "06"
987
+ }
988
+ }
989
+ },
990
+ "aws_regex_det_explicit_altname": {
991
+ "kms": "aws",
992
+ "type": "regex",
993
+ "algo": "det",
994
+ "method": "explicit",
995
+ "identifier": "altname",
996
+ "allowed": true,
997
+ "value": {
998
+ "$binary": {
999
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAALpwNlokiTCUtTa2Kx9NVGvXR/aKPGhR5iaCT7nHEk4BOiZ9Kr4cRHdPCeZ7A+gjG4cKoT62sm3Fj1FwSOl8J8aQ==",
1000
+ "subType": "06"
1001
+ }
1002
+ }
1003
+ },
1004
+ "aws_dbPointer_rand_auto_id": {
1005
+ "kms": "aws",
1006
+ "type": "dbPointer",
1007
+ "algo": "rand",
1008
+ "method": "auto",
1009
+ "identifier": "id",
1010
+ "allowed": true,
1011
+ "value": {
1012
+ "$binary": {
1013
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAMfCVAnMNbRGsThnoVGb2KDsCIU2ehcPtebk/TFG4GZvEmculscLLih813lEz5NHS2sAXBn721EzUS7d0TKAPbmEYFwUBnijIQIPvUoUO8AQM=",
1014
+ "subType": "06"
1015
+ }
1016
+ }
1017
+ },
1018
+ "aws_dbPointer_rand_auto_altname": {
1019
+ "kms": "aws",
1020
+ "type": "dbPointer",
1021
+ "algo": "rand",
1022
+ "method": "auto",
1023
+ "identifier": "altname",
1024
+ "allowed": true,
1025
+ "value": {
1026
+ "$binary": {
1027
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAMvYJ5BtaMLVXV+qj85q5WqKRlzlHOBIIxZfUE/BBXUwqSTpJLdQQD++DDh6F2dtorBeYa3oUv2ef3ImASk5j23joU35Pm3Zt9Ci1pMNGodWs=",
1028
+ "subType": "06"
1029
+ }
1030
+ }
1031
+ },
1032
+ "aws_dbPointer_rand_explicit_id": {
1033
+ "kms": "aws",
1034
+ "type": "dbPointer",
1035
+ "algo": "rand",
1036
+ "method": "explicit",
1037
+ "identifier": "id",
1038
+ "allowed": true,
1039
+ "value": {
1040
+ "$binary": {
1041
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAMdsmYtPDw8kKjfB2kWfx5W1oNEkWWct1lRpesN303pUWsawDJpfBx40lg18So2X/g4yGIwpY3qfEKQZA4vCJeT+MTjhRXFjXA7eS/mxv8f3E=",
1042
+ "subType": "06"
1043
+ }
1044
+ }
1045
+ },
1046
+ "aws_dbPointer_rand_explicit_altname": {
1047
+ "kms": "aws",
1048
+ "type": "dbPointer",
1049
+ "algo": "rand",
1050
+ "method": "explicit",
1051
+ "identifier": "altname",
1052
+ "allowed": true,
1053
+ "value": {
1054
+ "$binary": {
1055
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAM0hcvS5zmY3mlTp0SfME/rINlflF/sx2KvP0eJTdH+Uk0WHuTkFIJAza+bXvV/gB7iNC350qyzUX3M6NHx/9s/5yBpY8MawTZTZ7WCQIA+ZI=",
1056
+ "subType": "06"
1057
+ }
1058
+ }
1059
+ },
1060
+ "aws_dbPointer_det_auto_id": {
1061
+ "kms": "aws",
1062
+ "type": "dbPointer",
1063
+ "algo": "det",
1064
+ "method": "auto",
1065
+ "identifier": "id",
1066
+ "allowed": true,
1067
+ "value": {
1068
+ "$binary": {
1069
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAMp4QxbaEOij66L+RtaMekrDSm6QbfJBTQ8lQFhxfq9n7SVuQ9Zwdy14Ja8tyI3cGgQzQ/73rHUJ3CKA4+OYr63skYUkkkdlHxUrIMd5j5woc=",
1070
+ "subType": "06"
1071
+ }
1072
+ }
1073
+ },
1074
+ "aws_dbPointer_det_explicit_id": {
1075
+ "kms": "aws",
1076
+ "type": "dbPointer",
1077
+ "algo": "det",
1078
+ "method": "explicit",
1079
+ "identifier": "id",
1080
+ "allowed": true,
1081
+ "value": {
1082
+ "$binary": {
1083
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAMp4QxbaEOij66L+RtaMekrDSm6QbfJBTQ8lQFhxfq9n7SVuQ9Zwdy14Ja8tyI3cGgQzQ/73rHUJ3CKA4+OYr63skYUkkkdlHxUrIMd5j5woc=",
1084
+ "subType": "06"
1085
+ }
1086
+ }
1087
+ },
1088
+ "aws_dbPointer_det_explicit_altname": {
1089
+ "kms": "aws",
1090
+ "type": "dbPointer",
1091
+ "algo": "det",
1092
+ "method": "explicit",
1093
+ "identifier": "altname",
1094
+ "allowed": true,
1095
+ "value": {
1096
+ "$binary": {
1097
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAMp4QxbaEOij66L+RtaMekrDSm6QbfJBTQ8lQFhxfq9n7SVuQ9Zwdy14Ja8tyI3cGgQzQ/73rHUJ3CKA4+OYr63skYUkkkdlHxUrIMd5j5woc=",
1098
+ "subType": "06"
1099
+ }
1100
+ }
1101
+ },
1102
+ "aws_javascript_rand_auto_id": {
1103
+ "kms": "aws",
1104
+ "type": "javascript",
1105
+ "algo": "rand",
1106
+ "method": "auto",
1107
+ "identifier": "id",
1108
+ "allowed": true,
1109
+ "value": {
1110
+ "$binary": {
1111
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAN3HzAC9BTD7Jgi0PR4RS/Z6L6QtAQ7VhbKRbX+1smmnYniH6jVBM6zyxMDM8h9YjMPNs8EJrGDnisuf33w5KI/A==",
1112
+ "subType": "06"
1113
+ }
1114
+ }
1115
+ },
1116
+ "aws_javascript_rand_auto_altname": {
1117
+ "kms": "aws",
1118
+ "type": "javascript",
1119
+ "algo": "rand",
1120
+ "method": "auto",
1121
+ "identifier": "altname",
1122
+ "allowed": true,
1123
+ "value": {
1124
+ "$binary": {
1125
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAANJpw+znlu3ecSiNyZ0EerVsow4aDRF2auI3Wy69EVexJkQlHO753PjRn8hG/x2kY8ROy5IUU43jaugP5AN1bwNQ==",
1126
+ "subType": "06"
1127
+ }
1128
+ }
1129
+ },
1130
+ "aws_javascript_rand_explicit_id": {
1131
+ "kms": "aws",
1132
+ "type": "javascript",
1133
+ "algo": "rand",
1134
+ "method": "explicit",
1135
+ "identifier": "id",
1136
+ "allowed": true,
1137
+ "value": {
1138
+ "$binary": {
1139
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAANzoDiq8uI0+l8COY8YdM9S3rpLvPOHOWmJqJNtOyS0ZXUx1SB5paRJ4W3Eg8KuXEeoFwvBDe9cW9YT66CzkjlBw==",
1140
+ "subType": "06"
1141
+ }
1142
+ }
1143
+ },
1144
+ "aws_javascript_rand_explicit_altname": {
1145
+ "kms": "aws",
1146
+ "type": "javascript",
1147
+ "algo": "rand",
1148
+ "method": "explicit",
1149
+ "identifier": "altname",
1150
+ "allowed": true,
1151
+ "value": {
1152
+ "$binary": {
1153
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAN/JhtRongJweLC5SdrXHhsFz3p82q3cwXf8Sru21DK6S39S997y3uhVLn0xlX5d94PxK1XVYSjz1oVuMxZouZ7Q==",
1154
+ "subType": "06"
1155
+ }
1156
+ }
1157
+ },
1158
+ "aws_javascript_det_auto_id": {
1159
+ "kms": "aws",
1160
+ "type": "javascript",
1161
+ "algo": "det",
1162
+ "method": "auto",
1163
+ "identifier": "id",
1164
+ "allowed": true,
1165
+ "value": {
1166
+ "$binary": {
1167
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAANE39aEGiuUZ1WyakVEBgkGzLp5whkIjJ4uiaFLXniRszJL70FRkcf+aFXlA5Y4So9/ODKF76qbSsH4Jk6L+3mog==",
1168
+ "subType": "06"
1169
+ }
1170
+ }
1171
+ },
1172
+ "aws_javascript_det_explicit_id": {
1173
+ "kms": "aws",
1174
+ "type": "javascript",
1175
+ "algo": "det",
1176
+ "method": "explicit",
1177
+ "identifier": "id",
1178
+ "allowed": true,
1179
+ "value": {
1180
+ "$binary": {
1181
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAANE39aEGiuUZ1WyakVEBgkGzLp5whkIjJ4uiaFLXniRszJL70FRkcf+aFXlA5Y4So9/ODKF76qbSsH4Jk6L+3mog==",
1182
+ "subType": "06"
1183
+ }
1184
+ }
1185
+ },
1186
+ "aws_javascript_det_explicit_altname": {
1187
+ "kms": "aws",
1188
+ "type": "javascript",
1189
+ "algo": "det",
1190
+ "method": "explicit",
1191
+ "identifier": "altname",
1192
+ "allowed": true,
1193
+ "value": {
1194
+ "$binary": {
1195
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAANE39aEGiuUZ1WyakVEBgkGzLp5whkIjJ4uiaFLXniRszJL70FRkcf+aFXlA5Y4So9/ODKF76qbSsH4Jk6L+3mog==",
1196
+ "subType": "06"
1197
+ }
1198
+ }
1199
+ },
1200
+ "aws_symbol_rand_auto_id": {
1201
+ "kms": "aws",
1202
+ "type": "symbol",
1203
+ "algo": "rand",
1204
+ "method": "auto",
1205
+ "identifier": "id",
1206
+ "allowed": true,
1207
+ "value": {
1208
+ "$binary": {
1209
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAOBv1T9tleM0xwNe7efg/MlShyzvXe3Pmg1GzPl3gjFRHZGWXR578KqX+8oiz65eXGzNuyOFvcpnR2gYCs3NeKeQfctO5plEiIva6nzCI5SK8=",
1210
+ "subType": "06"
1211
+ }
1212
+ }
1213
+ },
1214
+ "aws_symbol_rand_auto_altname": {
1215
+ "kms": "aws",
1216
+ "type": "symbol",
1217
+ "algo": "rand",
1218
+ "method": "auto",
1219
+ "identifier": "altname",
1220
+ "allowed": true,
1221
+ "value": {
1222
+ "$binary": {
1223
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAOwLgGws8CMh+GgkEJFAx8tDIflyjsgG+/1FmZZobKAg8NOKqfXjtbnNCbvR28OCk6g/8SqBm8m53G6JciwvthJ0DirdfEexiUqu7IPtaeeyw=",
1224
+ "subType": "06"
1225
+ }
1226
+ }
1227
+ },
1228
+ "aws_symbol_rand_explicit_id": {
1229
+ "kms": "aws",
1230
+ "type": "symbol",
1231
+ "algo": "rand",
1232
+ "method": "explicit",
1233
+ "identifier": "id",
1234
+ "allowed": true,
1235
+ "value": {
1236
+ "$binary": {
1237
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAORQi3dNkXzZeruWu19kEhDu6fFD/h47ILzk+OVKQMoriAQC5YFyVRp1yAkIaWsrsPcyCHlfZ99FySSQeqSYbZZNj5FqyonWvDuPTduHDy3CI=",
1238
+ "subType": "06"
1239
+ }
1240
+ }
1241
+ },
1242
+ "aws_symbol_rand_explicit_altname": {
1243
+ "kms": "aws",
1244
+ "type": "symbol",
1245
+ "algo": "rand",
1246
+ "method": "explicit",
1247
+ "identifier": "altname",
1248
+ "allowed": true,
1249
+ "value": {
1250
+ "$binary": {
1251
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAOj+Yl1pQPiJ6mESOISOyUYsKN/VIvC8f0derhxIPakXkwn57U0sxv+geUkrl3JZDxY3+cX5M1JZmY+PfjaYQhbTorf9RZaVC2Wwo2lMftWi0=",
1252
+ "subType": "06"
1253
+ }
1254
+ }
1255
+ },
1256
+ "aws_symbol_det_auto_id": {
1257
+ "kms": "aws",
1258
+ "type": "symbol",
1259
+ "algo": "det",
1260
+ "method": "auto",
1261
+ "identifier": "id",
1262
+ "allowed": true,
1263
+ "value": {
1264
+ "$binary": {
1265
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAO5IHripygBGEsVK8RFWZ1rIIVUap8KVDuqOspZpERaj+5ZEfqIcyrP/WK9KdvwOfdOWXfP/mOwuImYgNdbaQe+ejkYe4W0Y0uneCuw88k95Q=",
1266
+ "subType": "06"
1267
+ }
1268
+ }
1269
+ },
1270
+ "aws_symbol_det_explicit_id": {
1271
+ "kms": "aws",
1272
+ "type": "symbol",
1273
+ "algo": "det",
1274
+ "method": "explicit",
1275
+ "identifier": "id",
1276
+ "allowed": true,
1277
+ "value": {
1278
+ "$binary": {
1279
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAO5IHripygBGEsVK8RFWZ1rIIVUap8KVDuqOspZpERaj+5ZEfqIcyrP/WK9KdvwOfdOWXfP/mOwuImYgNdbaQe+ejkYe4W0Y0uneCuw88k95Q=",
1280
+ "subType": "06"
1281
+ }
1282
+ }
1283
+ },
1284
+ "aws_symbol_det_explicit_altname": {
1285
+ "kms": "aws",
1286
+ "type": "symbol",
1287
+ "algo": "det",
1288
+ "method": "explicit",
1289
+ "identifier": "altname",
1290
+ "allowed": true,
1291
+ "value": {
1292
+ "$binary": {
1293
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAO5IHripygBGEsVK8RFWZ1rIIVUap8KVDuqOspZpERaj+5ZEfqIcyrP/WK9KdvwOfdOWXfP/mOwuImYgNdbaQe+ejkYe4W0Y0uneCuw88k95Q=",
1294
+ "subType": "06"
1295
+ }
1296
+ }
1297
+ },
1298
+ "aws_javascriptWithScope_rand_auto_id": {
1299
+ "kms": "aws",
1300
+ "type": "javascriptWithScope",
1301
+ "algo": "rand",
1302
+ "method": "auto",
1303
+ "identifier": "id",
1304
+ "allowed": true,
1305
+ "value": {
1306
+ "$binary": {
1307
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAPT31GSNkY1RM43miv1XPYtDX1vU/xORiM3U0pumjqA+JLU/HMhH++75OcMhcAQqMjm2nZtZScxdGJsJJPEEzqjbFNMJgYc9sqR5uLnzk+2dg=",
1308
+ "subType": "06"
1309
+ }
1310
+ }
1311
+ },
1312
+ "aws_javascriptWithScope_rand_auto_altname": {
1313
+ "kms": "aws",
1314
+ "type": "javascriptWithScope",
1315
+ "algo": "rand",
1316
+ "method": "auto",
1317
+ "identifier": "altname",
1318
+ "allowed": true,
1319
+ "value": {
1320
+ "$binary": {
1321
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAPUxgaKAxSQ1uzOZtzsbtrxtDT2P/zWY6lYsbChXuRUooqvyjXSkNDqKBBA7Gp5BdGiVB/JLR47Tihpbcw1s1yGhwQRvnqeDvPrf91nvElXRY=",
1322
+ "subType": "06"
1323
+ }
1324
+ }
1325
+ },
1326
+ "aws_javascriptWithScope_rand_explicit_id": {
1327
+ "kms": "aws",
1328
+ "type": "javascriptWithScope",
1329
+ "algo": "rand",
1330
+ "method": "explicit",
1331
+ "identifier": "id",
1332
+ "allowed": true,
1333
+ "value": {
1334
+ "$binary": {
1335
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAPv8W0ZtquFCLTG0TqvRjdzKa/4mvqT2FuEGQ0mXG2k2BZh2LY5APr/kgW0tP4eLjHzVld6OLiM9ZKAvENCZ6/fKOvqSwpIfkdLWUIeB4REQg=",
1336
+ "subType": "06"
1337
+ }
1338
+ }
1339
+ },
1340
+ "aws_javascriptWithScope_rand_explicit_altname": {
1341
+ "kms": "aws",
1342
+ "type": "javascriptWithScope",
1343
+ "algo": "rand",
1344
+ "method": "explicit",
1345
+ "identifier": "altname",
1346
+ "allowed": true,
1347
+ "value": {
1348
+ "$binary": {
1349
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAPMVhWjaxLffdAOkVgIJpjgNIldMS451NQs3C1jb+pzopHp3DlfZ+AHQpK9reMVVKjaqanhWBpL25q+feA60XVgZPCUDroiRYqMFqU//y0amw=",
1350
+ "subType": "06"
1351
+ }
1352
+ }
1353
+ },
1354
+ "aws_javascriptWithScope_det_explicit_id": {
1355
+ "kms": "aws",
1356
+ "type": "javascriptWithScope",
1357
+ "algo": "det",
1358
+ "method": "explicit",
1359
+ "identifier": "id",
1360
+ "allowed": false,
1361
+ "value": {
1362
+ "$code": "x=1",
1363
+ "$scope": {
1364
+
1365
+ }
1366
+ }
1367
+ },
1368
+ "aws_javascriptWithScope_det_explicit_altname": {
1369
+ "kms": "aws",
1370
+ "type": "javascriptWithScope",
1371
+ "algo": "det",
1372
+ "method": "explicit",
1373
+ "identifier": "altname",
1374
+ "allowed": false,
1375
+ "value": {
1376
+ "$code": "x=1",
1377
+ "$scope": {
1378
+
1379
+ }
1380
+ }
1381
+ },
1382
+ "aws_int_rand_auto_id": {
1383
+ "kms": "aws",
1384
+ "type": "int",
1385
+ "algo": "rand",
1386
+ "method": "auto",
1387
+ "identifier": "id",
1388
+ "allowed": true,
1389
+ "value": {
1390
+ "$binary": {
1391
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAQFV5b3vsoZe+MT4z8soetpmrWJpm7be41FNu/rdEqHWTG32jCym6762PCNYH5+vA7ldCWQkdt+ncneHsxzPrm9w==",
1392
+ "subType": "06"
1393
+ }
1394
+ }
1395
+ },
1396
+ "aws_int_rand_auto_altname": {
1397
+ "kms": "aws",
1398
+ "type": "int",
1399
+ "algo": "rand",
1400
+ "method": "auto",
1401
+ "identifier": "altname",
1402
+ "allowed": true,
1403
+ "value": {
1404
+ "$binary": {
1405
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAQY9+QenvU1Tk/dEGZP11uOZJLHAJ9hWHbEhxbtxItt1LsdU/8gOZfypilIO5BUkLT/15PUuXV28GISNh6yIuWhw==",
1406
+ "subType": "06"
1407
+ }
1408
+ }
1409
+ },
1410
+ "aws_int_rand_explicit_id": {
1411
+ "kms": "aws",
1412
+ "type": "int",
1413
+ "algo": "rand",
1414
+ "method": "explicit",
1415
+ "identifier": "id",
1416
+ "allowed": true,
1417
+ "value": {
1418
+ "$binary": {
1419
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAQruCugbneumhcinuXm89WW1PXVuSOewttp9cpsPPsCRVqe/uAkZOdJnZ2KaEZ9zki2GeqaJTs1qDmaJofc6GMEA==",
1420
+ "subType": "06"
1421
+ }
1422
+ }
1423
+ },
1424
+ "aws_int_rand_explicit_altname": {
1425
+ "kms": "aws",
1426
+ "type": "int",
1427
+ "algo": "rand",
1428
+ "method": "explicit",
1429
+ "identifier": "altname",
1430
+ "allowed": true,
1431
+ "value": {
1432
+ "$binary": {
1433
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAQb15qXl/tejk4pmgkc4pUxzt4eJrv/cetgzgcPVaROAQSzd8ptbgCjaV8vP46uqozRoaDFZbQ06t65c3f0x/Ucw==",
1434
+ "subType": "06"
1435
+ }
1436
+ }
1437
+ },
1438
+ "aws_int_det_auto_id": {
1439
+ "kms": "aws",
1440
+ "type": "int",
1441
+ "algo": "det",
1442
+ "method": "auto",
1443
+ "identifier": "id",
1444
+ "allowed": true,
1445
+ "value": {
1446
+ "$binary": {
1447
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAQCXo6ieWvfoqkG+rP7J2BV013AVf/oNMmmGWe44VEHahF+qZHzW5I/F2qIA+xgKkk172pFq0iTSOpe+K2WHMKFw==",
1448
+ "subType": "06"
1449
+ }
1450
+ }
1451
+ },
1452
+ "aws_int_det_explicit_id": {
1453
+ "kms": "aws",
1454
+ "type": "int",
1455
+ "algo": "det",
1456
+ "method": "explicit",
1457
+ "identifier": "id",
1458
+ "allowed": true,
1459
+ "value": {
1460
+ "$binary": {
1461
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAQCXo6ieWvfoqkG+rP7J2BV013AVf/oNMmmGWe44VEHahF+qZHzW5I/F2qIA+xgKkk172pFq0iTSOpe+K2WHMKFw==",
1462
+ "subType": "06"
1463
+ }
1464
+ }
1465
+ },
1466
+ "aws_int_det_explicit_altname": {
1467
+ "kms": "aws",
1468
+ "type": "int",
1469
+ "algo": "det",
1470
+ "method": "explicit",
1471
+ "identifier": "altname",
1472
+ "allowed": true,
1473
+ "value": {
1474
+ "$binary": {
1475
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAAQCXo6ieWvfoqkG+rP7J2BV013AVf/oNMmmGWe44VEHahF+qZHzW5I/F2qIA+xgKkk172pFq0iTSOpe+K2WHMKFw==",
1476
+ "subType": "06"
1477
+ }
1478
+ }
1479
+ },
1480
+ "aws_timestamp_rand_auto_id": {
1481
+ "kms": "aws",
1482
+ "type": "timestamp",
1483
+ "algo": "rand",
1484
+ "method": "auto",
1485
+ "identifier": "id",
1486
+ "allowed": true,
1487
+ "value": {
1488
+ "$binary": {
1489
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAR63xXG8mrlixkQzD5VBIPE6NHicaWcS5CBhiIJDcZ0x8D9c5TgRJUfCeWhKvWFD4o0DoxcBQ2opPormFDpvmq/g==",
1490
+ "subType": "06"
1491
+ }
1492
+ }
1493
+ },
1494
+ "aws_timestamp_rand_auto_altname": {
1495
+ "kms": "aws",
1496
+ "type": "timestamp",
1497
+ "algo": "rand",
1498
+ "method": "auto",
1499
+ "identifier": "altname",
1500
+ "allowed": true,
1501
+ "value": {
1502
+ "$binary": {
1503
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAARAgY9LsUxP6gP4gYRvvzZ4iaHVQRNbycATiVag1YNSiDmEr4LYserYuBscdrIy4v3zgGaulFM9KV86bx0ItycZA==",
1504
+ "subType": "06"
1505
+ }
1506
+ }
1507
+ },
1508
+ "aws_timestamp_rand_explicit_id": {
1509
+ "kms": "aws",
1510
+ "type": "timestamp",
1511
+ "algo": "rand",
1512
+ "method": "explicit",
1513
+ "identifier": "id",
1514
+ "allowed": true,
1515
+ "value": {
1516
+ "$binary": {
1517
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAARLneAZqPcHdzGGnXz2Ne5E7HP9cDC1+yoIwcA8OSF/IlzEjrrMAi3z6Izol6gWDlD7VOh7QYL3sASJOXyzF1hPQ==",
1518
+ "subType": "06"
1519
+ }
1520
+ }
1521
+ },
1522
+ "aws_timestamp_rand_explicit_altname": {
1523
+ "kms": "aws",
1524
+ "type": "timestamp",
1525
+ "algo": "rand",
1526
+ "method": "explicit",
1527
+ "identifier": "altname",
1528
+ "allowed": true,
1529
+ "value": {
1530
+ "$binary": {
1531
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAARH2bU7KNo5SHxiO8JFEcT9wryuHNXyM7ADop1oPcESyay1Nc0WHPD3nr0yMAK481NxOkE3qXyaslu7bcP/744WA==",
1532
+ "subType": "06"
1533
+ }
1534
+ }
1535
+ },
1536
+ "aws_timestamp_det_auto_id": {
1537
+ "kms": "aws",
1538
+ "type": "timestamp",
1539
+ "algo": "det",
1540
+ "method": "auto",
1541
+ "identifier": "id",
1542
+ "allowed": true,
1543
+ "value": {
1544
+ "$binary": {
1545
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAARG7kGfx0ky+d4Hl/fRBu8oUR1Mph26Dkv3J7fxGYanpzOFMiHIfVO0uwYMvsfzG54y0DDNlS3FmmS13DzepbzGQ==",
1546
+ "subType": "06"
1547
+ }
1548
+ }
1549
+ },
1550
+ "aws_timestamp_det_explicit_id": {
1551
+ "kms": "aws",
1552
+ "type": "timestamp",
1553
+ "algo": "det",
1554
+ "method": "explicit",
1555
+ "identifier": "id",
1556
+ "allowed": true,
1557
+ "value": {
1558
+ "$binary": {
1559
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAARG7kGfx0ky+d4Hl/fRBu8oUR1Mph26Dkv3J7fxGYanpzOFMiHIfVO0uwYMvsfzG54y0DDNlS3FmmS13DzepbzGQ==",
1560
+ "subType": "06"
1561
+ }
1562
+ }
1563
+ },
1564
+ "aws_timestamp_det_explicit_altname": {
1565
+ "kms": "aws",
1566
+ "type": "timestamp",
1567
+ "algo": "det",
1568
+ "method": "explicit",
1569
+ "identifier": "altname",
1570
+ "allowed": true,
1571
+ "value": {
1572
+ "$binary": {
1573
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAARG7kGfx0ky+d4Hl/fRBu8oUR1Mph26Dkv3J7fxGYanpzOFMiHIfVO0uwYMvsfzG54y0DDNlS3FmmS13DzepbzGQ==",
1574
+ "subType": "06"
1575
+ }
1576
+ }
1577
+ },
1578
+ "aws_long_rand_auto_id": {
1579
+ "kms": "aws",
1580
+ "type": "long",
1581
+ "algo": "rand",
1582
+ "method": "auto",
1583
+ "identifier": "id",
1584
+ "allowed": true,
1585
+ "value": {
1586
+ "$binary": {
1587
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAASZbes2EdR78crt2pXVElW2YwAQh8HEBapYYeav2VQeg2syXaV/qZuD8ofnAVn4v/DydTTMVMmK+sVU/TlnAu2eA==",
1588
+ "subType": "06"
1589
+ }
1590
+ }
1591
+ },
1592
+ "aws_long_rand_auto_altname": {
1593
+ "kms": "aws",
1594
+ "type": "long",
1595
+ "algo": "rand",
1596
+ "method": "auto",
1597
+ "identifier": "altname",
1598
+ "allowed": true,
1599
+ "value": {
1600
+ "$binary": {
1601
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAASt+7fmMYH+fLHgybc+sng8/UmKP3YPUEPCz1SXVQljQp6orsCILSgtgGPsdeGnN5NSxh3XzerHs6zlR92fWpZCw==",
1602
+ "subType": "06"
1603
+ }
1604
+ }
1605
+ },
1606
+ "aws_long_rand_explicit_id": {
1607
+ "kms": "aws",
1608
+ "type": "long",
1609
+ "algo": "rand",
1610
+ "method": "explicit",
1611
+ "identifier": "id",
1612
+ "allowed": true,
1613
+ "value": {
1614
+ "$binary": {
1615
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAS01fF1uo6zYDToJnOT/EbDipzk7YZ6I+IspZF+avjU3XYfpRxT9NdAgKr0euWJwyAsdpWqqCwFummfrPeZOy04A==",
1616
+ "subType": "06"
1617
+ }
1618
+ }
1619
+ },
1620
+ "aws_long_rand_explicit_altname": {
1621
+ "kms": "aws",
1622
+ "type": "long",
1623
+ "algo": "rand",
1624
+ "method": "explicit",
1625
+ "identifier": "altname",
1626
+ "allowed": true,
1627
+ "value": {
1628
+ "$binary": {
1629
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAS6tpH796bqy58mXf38rJvVtA1uBcxBE5yIGQ4RN44oypc/pvw0ouhFI1dkoneKMtAFU/5RygZV+RvQhRtgKn76A==",
1630
+ "subType": "06"
1631
+ }
1632
+ }
1633
+ },
1634
+ "aws_long_det_auto_id": {
1635
+ "kms": "aws",
1636
+ "type": "long",
1637
+ "algo": "det",
1638
+ "method": "auto",
1639
+ "identifier": "id",
1640
+ "allowed": true,
1641
+ "value": {
1642
+ "$binary": {
1643
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAASC7O/8JeB4WTqQFPuMpFRsAuonPS3yu7IAPZeRPIr03CmM6HNndYIKMoFM13eELNZTdJSgg9u9ItGqRw+/XMHzQ==",
1644
+ "subType": "06"
1645
+ }
1646
+ }
1647
+ },
1648
+ "aws_long_det_explicit_id": {
1649
+ "kms": "aws",
1650
+ "type": "long",
1651
+ "algo": "det",
1652
+ "method": "explicit",
1653
+ "identifier": "id",
1654
+ "allowed": true,
1655
+ "value": {
1656
+ "$binary": {
1657
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAASC7O/8JeB4WTqQFPuMpFRsAuonPS3yu7IAPZeRPIr03CmM6HNndYIKMoFM13eELNZTdJSgg9u9ItGqRw+/XMHzQ==",
1658
+ "subType": "06"
1659
+ }
1660
+ }
1661
+ },
1662
+ "aws_long_det_explicit_altname": {
1663
+ "kms": "aws",
1664
+ "type": "long",
1665
+ "algo": "det",
1666
+ "method": "explicit",
1667
+ "identifier": "altname",
1668
+ "allowed": true,
1669
+ "value": {
1670
+ "$binary": {
1671
+ "base64": "AQFkgAAAAAAAAAAAAAAAAAASC7O/8JeB4WTqQFPuMpFRsAuonPS3yu7IAPZeRPIr03CmM6HNndYIKMoFM13eELNZTdJSgg9u9ItGqRw+/XMHzQ==",
1672
+ "subType": "06"
1673
+ }
1674
+ }
1675
+ },
1676
+ "aws_decimal_rand_auto_id": {
1677
+ "kms": "aws",
1678
+ "type": "decimal",
1679
+ "algo": "rand",
1680
+ "method": "auto",
1681
+ "identifier": "id",
1682
+ "allowed": true,
1683
+ "value": {
1684
+ "$binary": {
1685
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAATgf5zW9EgnWHPxj4HAGt472eN9UXP41TaF8V2J7S2zqSpiBZGKDuOIjw2FBSqaNp53vvfl9HpwAuQBJZhrwkBCKRkKV/AAR3/pTpuoqhSKaM=",
1686
+ "subType": "06"
1687
+ }
1688
+ }
1689
+ },
1690
+ "aws_decimal_rand_auto_altname": {
1691
+ "kms": "aws",
1692
+ "type": "decimal",
1693
+ "algo": "rand",
1694
+ "method": "auto",
1695
+ "identifier": "altname",
1696
+ "allowed": true,
1697
+ "value": {
1698
+ "$binary": {
1699
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAATPRfvZWdupE2N0W1DXUx7X8Zz7g43jawJL7PbQtTYetI78xRETkMdygwSEHgs+cvnUBBtYIeKRVkOGZQkwf568OclhDiPxUeD38cR5blBq/U=",
1700
+ "subType": "06"
1701
+ }
1702
+ }
1703
+ },
1704
+ "aws_decimal_rand_explicit_id": {
1705
+ "kms": "aws",
1706
+ "type": "decimal",
1707
+ "algo": "rand",
1708
+ "method": "explicit",
1709
+ "identifier": "id",
1710
+ "allowed": true,
1711
+ "value": {
1712
+ "$binary": {
1713
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAAT+ZnCg2lSMIohZ9RJ4CNs3LZ0g+nV04cYAmrxTSrTSBPGlZ7Ywh5A2rCss7AUijYZiKiYyZbuAzukbOuVRhdCtm+xo9+DyLAwTezF18okk6Y=",
1714
+ "subType": "06"
1715
+ }
1716
+ }
1717
+ },
1718
+ "aws_decimal_rand_explicit_altname": {
1719
+ "kms": "aws",
1720
+ "type": "decimal",
1721
+ "algo": "rand",
1722
+ "method": "explicit",
1723
+ "identifier": "altname",
1724
+ "allowed": true,
1725
+ "value": {
1726
+ "$binary": {
1727
+ "base64": "AgFkgAAAAAAAAAAAAAAAAAATlnQYASsTZRRHzFjcbCClXartcXBVRrYv7JImMkDmAj6EAjf/ZqpjeykkS/wohMhXaNwyZBdREr+n+GDV7imYoL4WRBOLnqB6hrYidlWqNzE=",
1728
+ "subType": "06"
1729
+ }
1730
+ }
1731
+ },
1732
+ "aws_decimal_det_explicit_id": {
1733
+ "kms": "aws",
1734
+ "type": "decimal",
1735
+ "algo": "det",
1736
+ "method": "explicit",
1737
+ "identifier": "id",
1738
+ "allowed": false,
1739
+ "value": {
1740
+ "$numberDecimal": "1.234"
1741
+ }
1742
+ },
1743
+ "aws_decimal_det_explicit_altname": {
1744
+ "kms": "aws",
1745
+ "type": "decimal",
1746
+ "algo": "det",
1747
+ "method": "explicit",
1748
+ "identifier": "altname",
1749
+ "allowed": false,
1750
+ "value": {
1751
+ "$numberDecimal": "1.234"
1752
+ }
1753
+ },
1754
+ "aws_minKey_rand_explicit_id": {
1755
+ "kms": "aws",
1756
+ "type": "minKey",
1757
+ "algo": "rand",
1758
+ "method": "explicit",
1759
+ "identifier": "id",
1760
+ "allowed": false,
1761
+ "value": {
1762
+ "$minKey": 1
1763
+ }
1764
+ },
1765
+ "aws_minKey_rand_explicit_altname": {
1766
+ "kms": "aws",
1767
+ "type": "minKey",
1768
+ "algo": "rand",
1769
+ "method": "explicit",
1770
+ "identifier": "altname",
1771
+ "allowed": false,
1772
+ "value": {
1773
+ "$minKey": 1
1774
+ }
1775
+ },
1776
+ "aws_minKey_det_explicit_id": {
1777
+ "kms": "aws",
1778
+ "type": "minKey",
1779
+ "algo": "det",
1780
+ "method": "explicit",
1781
+ "identifier": "id",
1782
+ "allowed": false,
1783
+ "value": {
1784
+ "$minKey": 1
1785
+ }
1786
+ },
1787
+ "aws_minKey_det_explicit_altname": {
1788
+ "kms": "aws",
1789
+ "type": "minKey",
1790
+ "algo": "det",
1791
+ "method": "explicit",
1792
+ "identifier": "altname",
1793
+ "allowed": false,
1794
+ "value": {
1795
+ "$minKey": 1
1796
+ }
1797
+ },
1798
+ "aws_maxKey_rand_explicit_id": {
1799
+ "kms": "aws",
1800
+ "type": "maxKey",
1801
+ "algo": "rand",
1802
+ "method": "explicit",
1803
+ "identifier": "id",
1804
+ "allowed": false,
1805
+ "value": {
1806
+ "$maxKey": 1
1807
+ }
1808
+ },
1809
+ "aws_maxKey_rand_explicit_altname": {
1810
+ "kms": "aws",
1811
+ "type": "maxKey",
1812
+ "algo": "rand",
1813
+ "method": "explicit",
1814
+ "identifier": "altname",
1815
+ "allowed": false,
1816
+ "value": {
1817
+ "$maxKey": 1
1818
+ }
1819
+ },
1820
+ "aws_maxKey_det_explicit_id": {
1821
+ "kms": "aws",
1822
+ "type": "maxKey",
1823
+ "algo": "det",
1824
+ "method": "explicit",
1825
+ "identifier": "id",
1826
+ "allowed": false,
1827
+ "value": {
1828
+ "$maxKey": 1
1829
+ }
1830
+ },
1831
+ "aws_maxKey_det_explicit_altname": {
1832
+ "kms": "aws",
1833
+ "type": "maxKey",
1834
+ "algo": "det",
1835
+ "method": "explicit",
1836
+ "identifier": "altname",
1837
+ "allowed": false,
1838
+ "value": {
1839
+ "$maxKey": 1
1840
+ }
1841
+ },
1842
+ "local_double_rand_auto_id": {
1843
+ "kms": "local",
1844
+ "type": "double",
1845
+ "algo": "rand",
1846
+ "method": "auto",
1847
+ "identifier": "id",
1848
+ "allowed": true,
1849
+ "value": {
1850
+ "$binary": {
1851
+ "base64": "AizggCwAAAAAAAAAAAAAAAABGF195CB8nRmK9+KxYO7T96MeXucC/ILQtEEQAS4zrwj3Qz7YEQrf/apvbKTCkn3siN2XSDLQ/7dmddZa9xa9yQ==",
1852
+ "subType": "06"
1853
+ }
1854
+ }
1855
+ },
1856
+ "local_double_rand_auto_altname": {
1857
+ "kms": "local",
1858
+ "type": "double",
1859
+ "algo": "rand",
1860
+ "method": "auto",
1861
+ "identifier": "altname",
1862
+ "allowed": true,
1863
+ "value": {
1864
+ "$binary": {
1865
+ "base64": "AizggCwAAAAAAAAAAAAAAAABY8g18z6ZOjGtfNxaAmU95tXMdoM6qbtDMpB72paqiHZTW1UGB22HPXiEnVz05JTBzzX4fc6tOldX6aJel812Zg==",
1866
+ "subType": "06"
1867
+ }
1868
+ }
1869
+ },
1870
+ "local_double_rand_explicit_id": {
1871
+ "kms": "local",
1872
+ "type": "double",
1873
+ "algo": "rand",
1874
+ "method": "explicit",
1875
+ "identifier": "id",
1876
+ "allowed": true,
1877
+ "value": {
1878
+ "$binary": {
1879
+ "base64": "AizggCwAAAAAAAAAAAAAAAABDlHwN8hYyScEhhx64TdJ2Qp2rmKRg8983zdqIL1914tyPwRQq7ySCOhmFif2S7v4KT+r0uOfimYvKD1n9rKHlg==",
1880
+ "subType": "06"
1881
+ }
1882
+ }
1883
+ },
1884
+ "local_double_rand_explicit_altname": {
1885
+ "kms": "local",
1886
+ "type": "double",
1887
+ "algo": "rand",
1888
+ "method": "explicit",
1889
+ "identifier": "altname",
1890
+ "allowed": true,
1891
+ "value": {
1892
+ "$binary": {
1893
+ "base64": "AizggCwAAAAAAAAAAAAAAAAB2VnTFlaCRzAZZTQiMWQORFNgXIuAJlHJXIHiYow2eO6JbVghWTpH+MsdafBNPVnc0zKuZBL0Qs2Nuk1xiQaqhA==",
1894
+ "subType": "06"
1895
+ }
1896
+ }
1897
+ },
1898
+ "local_double_det_explicit_id": {
1899
+ "kms": "local",
1900
+ "type": "double",
1901
+ "algo": "det",
1902
+ "method": "explicit",
1903
+ "identifier": "id",
1904
+ "allowed": false,
1905
+ "value": {
1906
+ "$numberDouble": "1.234"
1907
+ }
1908
+ },
1909
+ "local_double_det_explicit_altname": {
1910
+ "kms": "local",
1911
+ "type": "double",
1912
+ "algo": "det",
1913
+ "method": "explicit",
1914
+ "identifier": "altname",
1915
+ "allowed": false,
1916
+ "value": {
1917
+ "$numberDouble": "1.234"
1918
+ }
1919
+ },
1920
+ "local_string_rand_auto_id": {
1921
+ "kms": "local",
1922
+ "type": "string",
1923
+ "algo": "rand",
1924
+ "method": "auto",
1925
+ "identifier": "id",
1926
+ "allowed": true,
1927
+ "value": {
1928
+ "$binary": {
1929
+ "base64": "AizggCwAAAAAAAAAAAAAAAAC5NBAPM8q2n9fnkwQfE9so/XcO51plPBNs5VlBRbDw68k9T6/uZ2TWsAvTYtVooY59zHHr2QS3usKbGQB6J61rA==",
1930
+ "subType": "06"
1931
+ }
1932
+ }
1933
+ },
1934
+ "local_string_rand_auto_altname": {
1935
+ "kms": "local",
1936
+ "type": "string",
1937
+ "algo": "rand",
1938
+ "method": "auto",
1939
+ "identifier": "altname",
1940
+ "allowed": true,
1941
+ "value": {
1942
+ "$binary": {
1943
+ "base64": "AizggCwAAAAAAAAAAAAAAAACM/EjGMrkYHvSZra26m74upuvLkfKXTs+tTWquGzrgWYLnLt8I6XBIwx1VymS9EybrCU/ewmtgjLUNUFQacIeXA==",
1944
+ "subType": "06"
1945
+ }
1946
+ }
1947
+ },
1948
+ "local_string_rand_explicit_id": {
1949
+ "kms": "local",
1950
+ "type": "string",
1951
+ "algo": "rand",
1952
+ "method": "explicit",
1953
+ "identifier": "id",
1954
+ "allowed": true,
1955
+ "value": {
1956
+ "$binary": {
1957
+ "base64": "AizggCwAAAAAAAAAAAAAAAACn4tD26UG8lO9gTZaxen6yXzHo/a2lokeY1ClxHMtJODoJr2JZzIDHP3A9aZ8L4+Vu+nyqphaWyGaGONKu8gpcQ==",
1958
+ "subType": "06"
1959
+ }
1960
+ }
1961
+ },
1962
+ "local_string_rand_explicit_altname": {
1963
+ "kms": "local",
1964
+ "type": "string",
1965
+ "algo": "rand",
1966
+ "method": "explicit",
1967
+ "identifier": "altname",
1968
+ "allowed": true,
1969
+ "value": {
1970
+ "$binary": {
1971
+ "base64": "AizggCwAAAAAAAAAAAAAAAACZfoO2LjY+IB31FZ1Tq7pHr0DCFKGJqWcXcOrnZ7bV9Euc9f101motJc31sp8nF5CTCfd83VQE0319eQrxDDaSw==",
1972
+ "subType": "06"
1973
+ }
1974
+ }
1975
+ },
1976
+ "local_string_det_auto_id": {
1977
+ "kms": "local",
1978
+ "type": "string",
1979
+ "algo": "det",
1980
+ "method": "auto",
1981
+ "identifier": "id",
1982
+ "allowed": true,
1983
+ "value": {
1984
+ "$binary": {
1985
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACW0cZMYWOY3eoqQQkSdBtS9iHC4CSQA27dy6XJGcmTV8EDuhGNnPmbx0EKFTDb0PCSyCjMyuE4nsgmNYgjTaSuw==",
1986
+ "subType": "06"
1987
+ }
1988
+ }
1989
+ },
1990
+ "local_string_det_explicit_id": {
1991
+ "kms": "local",
1992
+ "type": "string",
1993
+ "algo": "det",
1994
+ "method": "explicit",
1995
+ "identifier": "id",
1996
+ "allowed": true,
1997
+ "value": {
1998
+ "$binary": {
1999
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACW0cZMYWOY3eoqQQkSdBtS9iHC4CSQA27dy6XJGcmTV8EDuhGNnPmbx0EKFTDb0PCSyCjMyuE4nsgmNYgjTaSuw==",
2000
+ "subType": "06"
2001
+ }
2002
+ }
2003
+ },
2004
+ "local_string_det_explicit_altname": {
2005
+ "kms": "local",
2006
+ "type": "string",
2007
+ "algo": "det",
2008
+ "method": "explicit",
2009
+ "identifier": "altname",
2010
+ "allowed": true,
2011
+ "value": {
2012
+ "$binary": {
2013
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACW0cZMYWOY3eoqQQkSdBtS9iHC4CSQA27dy6XJGcmTV8EDuhGNnPmbx0EKFTDb0PCSyCjMyuE4nsgmNYgjTaSuw==",
2014
+ "subType": "06"
2015
+ }
2016
+ }
2017
+ },
2018
+ "local_object_rand_auto_id": {
2019
+ "kms": "local",
2020
+ "type": "object",
2021
+ "algo": "rand",
2022
+ "method": "auto",
2023
+ "identifier": "id",
2024
+ "allowed": true,
2025
+ "value": {
2026
+ "$binary": {
2027
+ "base64": "AizggCwAAAAAAAAAAAAAAAADlekcUsETAkkKTjCVx5EISJN+sftrQax/VhaWXLyRgRz97adXXmwZkMyt+035SHZsF91i2LaXziMA4RHoP+nKFw==",
2028
+ "subType": "06"
2029
+ }
2030
+ }
2031
+ },
2032
+ "local_object_rand_auto_altname": {
2033
+ "kms": "local",
2034
+ "type": "object",
2035
+ "algo": "rand",
2036
+ "method": "auto",
2037
+ "identifier": "altname",
2038
+ "allowed": true,
2039
+ "value": {
2040
+ "$binary": {
2041
+ "base64": "AizggCwAAAAAAAAAAAAAAAADpaQmy5r6q9gLqEm+FIi/OyQgcuUnrICCP9rC4S3wR6qUHd82IW/3dFQUzwTkaXxgStjopamQMuZ4ESRj0xx0bA==",
2042
+ "subType": "06"
2043
+ }
2044
+ }
2045
+ },
2046
+ "local_object_rand_explicit_id": {
2047
+ "kms": "local",
2048
+ "type": "object",
2049
+ "algo": "rand",
2050
+ "method": "explicit",
2051
+ "identifier": "id",
2052
+ "allowed": true,
2053
+ "value": {
2054
+ "$binary": {
2055
+ "base64": "AizggCwAAAAAAAAAAAAAAAADCHRJCINzWY0u4gZPWEmHg/JoQ8IW4yMfUyzYJCQrEMp4rUeupIuxqSuq2QyLBYZBBv0r7t3lNH49I5qDeav2vA==",
2056
+ "subType": "06"
2057
+ }
2058
+ }
2059
+ },
2060
+ "local_object_rand_explicit_altname": {
2061
+ "kms": "local",
2062
+ "type": "object",
2063
+ "algo": "rand",
2064
+ "method": "explicit",
2065
+ "identifier": "altname",
2066
+ "allowed": true,
2067
+ "value": {
2068
+ "$binary": {
2069
+ "base64": "AizggCwAAAAAAAAAAAAAAAADrHQQUnLF1jdNmFY/V266cS28XAB4nOKetHAcSbwkeUxNzgZT1g+XMQaYfcNMMv/ywypKU1KpgLMsEOpm4qcPkQ==",
2070
+ "subType": "06"
2071
+ }
2072
+ }
2073
+ },
2074
+ "local_object_det_explicit_id": {
2075
+ "kms": "local",
2076
+ "type": "object",
2077
+ "algo": "det",
2078
+ "method": "explicit",
2079
+ "identifier": "id",
2080
+ "allowed": false,
2081
+ "value": {
2082
+ "x": {
2083
+ "$numberInt": "1"
2084
+ }
2085
+ }
2086
+ },
2087
+ "local_object_det_explicit_altname": {
2088
+ "kms": "local",
2089
+ "type": "object",
2090
+ "algo": "det",
2091
+ "method": "explicit",
2092
+ "identifier": "altname",
2093
+ "allowed": false,
2094
+ "value": {
2095
+ "x": {
2096
+ "$numberInt": "1"
2097
+ }
2098
+ }
2099
+ },
2100
+ "local_array_rand_auto_id": {
2101
+ "kms": "local",
2102
+ "type": "array",
2103
+ "algo": "rand",
2104
+ "method": "auto",
2105
+ "identifier": "id",
2106
+ "allowed": true,
2107
+ "value": {
2108
+ "$binary": {
2109
+ "base64": "AizggCwAAAAAAAAAAAAAAAAEXa7bQ5vGPNsLdklM/H+sop8aCL4vlDiVUoVjTAGjTngn2WLcdKLWxaNSyMdJpsI/NsxQJ58YrcwP+yHzi9rZVtRdbg7m8p+CYcq1vUm6UoQ=",
2110
+ "subType": "06"
2111
+ }
2112
+ }
2113
+ },
2114
+ "local_array_rand_auto_altname": {
2115
+ "kms": "local",
2116
+ "type": "array",
2117
+ "algo": "rand",
2118
+ "method": "auto",
2119
+ "identifier": "altname",
2120
+ "allowed": true,
2121
+ "value": {
2122
+ "$binary": {
2123
+ "base64": "AizggCwAAAAAAAAAAAAAAAAEVlZlOvtRmGIhcYi/qPl3HKi/qf0yRQrkbVo9rScYkxDCBN9wA55pAWHDQ/5Sjy4d0DwL57k+M1G9e7xSIrv8xXKwoIuuabhSWaIX2eJHroY=",
2124
+ "subType": "06"
2125
+ }
2126
+ }
2127
+ },
2128
+ "local_array_rand_explicit_id": {
2129
+ "kms": "local",
2130
+ "type": "array",
2131
+ "algo": "rand",
2132
+ "method": "explicit",
2133
+ "identifier": "id",
2134
+ "allowed": true,
2135
+ "value": {
2136
+ "$binary": {
2137
+ "base64": "AizggCwAAAAAAAAAAAAAAAAEYBLSYHHt2rohezMF4lMjNdqy9CY33EHf+pgRbJwVXZScLDgn9CcqeRsdU8bW5h2qgNpQvoSMBB7pW+Dgp1RauTHZSOd4PcZpAGjwoFDWSSM=",
2138
+ "subType": "06"
2139
+ }
2140
+ }
2141
+ },
2142
+ "local_array_rand_explicit_altname": {
2143
+ "kms": "local",
2144
+ "type": "array",
2145
+ "algo": "rand",
2146
+ "method": "explicit",
2147
+ "identifier": "altname",
2148
+ "allowed": true,
2149
+ "value": {
2150
+ "$binary": {
2151
+ "base64": "AizggCwAAAAAAAAAAAAAAAAES1IJ8S2NxWekolQockxLJvzFSGfKQ9Xbi55vO8LyWo0sIG9ZgPQXtVQkZ301CsdFduvx9A0vDqQ0MGYc4plxNnpUTizJPRUDyez5dOgZ9tI=",
2152
+ "subType": "06"
2153
+ }
2154
+ }
2155
+ },
2156
+ "local_array_det_explicit_id": {
2157
+ "kms": "local",
2158
+ "type": "array",
2159
+ "algo": "det",
2160
+ "method": "explicit",
2161
+ "identifier": "id",
2162
+ "allowed": false,
2163
+ "value": [
2164
+ {
2165
+ "$numberInt": "1"
2166
+ },
2167
+ {
2168
+ "$numberInt": "2"
2169
+ },
2170
+ {
2171
+ "$numberInt": "3"
2172
+ }
2173
+ ]
2174
+ },
2175
+ "local_array_det_explicit_altname": {
2176
+ "kms": "local",
2177
+ "type": "array",
2178
+ "algo": "det",
2179
+ "method": "explicit",
2180
+ "identifier": "altname",
2181
+ "allowed": false,
2182
+ "value": [
2183
+ {
2184
+ "$numberInt": "1"
2185
+ },
2186
+ {
2187
+ "$numberInt": "2"
2188
+ },
2189
+ {
2190
+ "$numberInt": "3"
2191
+ }
2192
+ ]
2193
+ },
2194
+ "local_binData=00_rand_auto_id": {
2195
+ "kms": "local",
2196
+ "type": "binData=00",
2197
+ "algo": "rand",
2198
+ "method": "auto",
2199
+ "identifier": "id",
2200
+ "allowed": true,
2201
+ "value": {
2202
+ "$binary": {
2203
+ "base64": "AizggCwAAAAAAAAAAAAAAAAF+hgWs4ZCo9GnmhSM9SDSWzWX4E7Tlp4TwlEy3zfO/rrMREECGB4u8LD8Ju9b8YP+xcZhMI1tcz/vrQS87NffUg==",
2204
+ "subType": "06"
2205
+ }
2206
+ }
2207
+ },
2208
+ "local_binData=00_rand_auto_altname": {
2209
+ "kms": "local",
2210
+ "type": "binData=00",
2211
+ "algo": "rand",
2212
+ "method": "auto",
2213
+ "identifier": "altname",
2214
+ "allowed": true,
2215
+ "value": {
2216
+ "$binary": {
2217
+ "base64": "AizggCwAAAAAAAAAAAAAAAAFtEvaXWpGfXC1GlKu0AeRDaeBKHryGoS0tAUr48vfYk7umCr+fJKyXCY9vSv7wCiQxWLe8V/EZWkHsu0zqhJw9w==",
2218
+ "subType": "06"
2219
+ }
2220
+ }
2221
+ },
2222
+ "local_binData=00_rand_explicit_id": {
2223
+ "kms": "local",
2224
+ "type": "binData=00",
2225
+ "algo": "rand",
2226
+ "method": "explicit",
2227
+ "identifier": "id",
2228
+ "allowed": true,
2229
+ "value": {
2230
+ "$binary": {
2231
+ "base64": "AizggCwAAAAAAAAAAAAAAAAF/1L5bvmMX3Bk2nAw8KvvRd/7nZ82XHVasT0jrlPhSiJU7ehJMeUCOb7HCHU6KgCzZB9C2W3NoVhLKIhE9ZnYdg==",
2232
+ "subType": "06"
2233
+ }
2234
+ }
2235
+ },
2236
+ "local_binData=00_rand_explicit_altname": {
2237
+ "kms": "local",
2238
+ "type": "binData=00",
2239
+ "algo": "rand",
2240
+ "method": "explicit",
2241
+ "identifier": "altname",
2242
+ "allowed": true,
2243
+ "value": {
2244
+ "$binary": {
2245
+ "base64": "AizggCwAAAAAAAAAAAAAAAAFK0W5IWKzggR4UU+fhwA2p8YCHLfmx5y1OEtHc/9be9eEYTORACDmWY6207Vd4LhBJCedd+Q5qMm7NRZjjhyLEQ==",
2246
+ "subType": "06"
2247
+ }
2248
+ }
2249
+ },
2250
+ "local_binData=00_det_auto_id": {
2251
+ "kms": "local",
2252
+ "type": "binData=00",
2253
+ "algo": "det",
2254
+ "method": "auto",
2255
+ "identifier": "id",
2256
+ "allowed": true,
2257
+ "value": {
2258
+ "$binary": {
2259
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAF1ofBnK9+ERP29P/i14GQ/y3muic6tNKY532zCkzQkJSktYCOeXS8DdY1DdaOP/asZWzPTdgwby6/iZcAxJU+xQ==",
2260
+ "subType": "06"
2261
+ }
2262
+ }
2263
+ },
2264
+ "local_binData=00_det_explicit_id": {
2265
+ "kms": "local",
2266
+ "type": "binData=00",
2267
+ "algo": "det",
2268
+ "method": "explicit",
2269
+ "identifier": "id",
2270
+ "allowed": true,
2271
+ "value": {
2272
+ "$binary": {
2273
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAF1ofBnK9+ERP29P/i14GQ/y3muic6tNKY532zCkzQkJSktYCOeXS8DdY1DdaOP/asZWzPTdgwby6/iZcAxJU+xQ==",
2274
+ "subType": "06"
2275
+ }
2276
+ }
2277
+ },
2278
+ "local_binData=00_det_explicit_altname": {
2279
+ "kms": "local",
2280
+ "type": "binData=00",
2281
+ "algo": "det",
2282
+ "method": "explicit",
2283
+ "identifier": "altname",
2284
+ "allowed": true,
2285
+ "value": {
2286
+ "$binary": {
2287
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAF1ofBnK9+ERP29P/i14GQ/y3muic6tNKY532zCkzQkJSktYCOeXS8DdY1DdaOP/asZWzPTdgwby6/iZcAxJU+xQ==",
2288
+ "subType": "06"
2289
+ }
2290
+ }
2291
+ },
2292
+ "local_binData=04_rand_auto_id": {
2293
+ "kms": "local",
2294
+ "type": "binData=04",
2295
+ "algo": "rand",
2296
+ "method": "auto",
2297
+ "identifier": "id",
2298
+ "allowed": true,
2299
+ "value": {
2300
+ "$binary": {
2301
+ "base64": "AizggCwAAAAAAAAAAAAAAAAFxq38aA4k/tYHPwJFRK0pahlo/3zjCe3VHJRqURRA+04lbJCvdkQTawxWlf8o+3Pcetl1UcPTQigdYp5KbIkstuPstLbT+TZXHVD1os9LTRw=",
2302
+ "subType": "06"
2303
+ }
2304
+ }
2305
+ },
2306
+ "local_binData=04_rand_auto_altname": {
2307
+ "kms": "local",
2308
+ "type": "binData=04",
2309
+ "algo": "rand",
2310
+ "method": "auto",
2311
+ "identifier": "altname",
2312
+ "allowed": true,
2313
+ "value": {
2314
+ "$binary": {
2315
+ "base64": "AizggCwAAAAAAAAAAAAAAAAFTXNWchCPmCSY0+AL22/kCBmAoDJDX5T18jpJHLdvZtHs0zwD64b9hLvfRK268BlNu4P37KDFE6LT0QzjG7brqzFJf3ZaadDCKeIw1q7DWQs=",
2316
+ "subType": "06"
2317
+ }
2318
+ }
2319
+ },
2320
+ "local_binData=04_rand_explicit_id": {
2321
+ "kms": "local",
2322
+ "type": "binData=04",
2323
+ "algo": "rand",
2324
+ "method": "explicit",
2325
+ "identifier": "id",
2326
+ "allowed": true,
2327
+ "value": {
2328
+ "$binary": {
2329
+ "base64": "AizggCwAAAAAAAAAAAAAAAAF7XgMgKjQmWYWmobrYWKiGYCKsy5kTgVweFBuzvFISaZjFsq2hrZB2DwUaOeT6XUPH/Onrdjc3fNElf3FdQDHif4rt+1lh9jEX+nMbRw9i3s=",
2330
+ "subType": "06"
2331
+ }
2332
+ }
2333
+ },
2334
+ "local_binData=04_rand_explicit_altname": {
2335
+ "kms": "local",
2336
+ "type": "binData=04",
2337
+ "algo": "rand",
2338
+ "method": "explicit",
2339
+ "identifier": "altname",
2340
+ "allowed": true,
2341
+ "value": {
2342
+ "$binary": {
2343
+ "base64": "AizggCwAAAAAAAAAAAAAAAAFGoA/1H0waFLor6LbkUCLC2Wm9j/ZT7yifPbf0G7WvO0+gBLlffr3aJIQ9ik5vxPbmDDMCoYlbEYgb8i9I5tKC17WPhjVH2N2+4l9y7aEmS4=",
2344
+ "subType": "06"
2345
+ }
2346
+ }
2347
+ },
2348
+ "local_binData=04_det_auto_id": {
2349
+ "kms": "local",
2350
+ "type": "binData=04",
2351
+ "algo": "det",
2352
+ "method": "auto",
2353
+ "identifier": "id",
2354
+ "allowed": true,
2355
+ "value": {
2356
+ "$binary": {
2357
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAFwO3hsD8ee/uwgUiHWem8fGe54LsTJWqgbRCacIe6sxrsyLT6EsVIqg4Sn7Ou+FC3WJbFld5kx8euLe/MHa8FGYjxD97z5j+rUx5tt3T6YbA=",
2358
+ "subType": "06"
2359
+ }
2360
+ }
2361
+ },
2362
+ "local_binData=04_det_explicit_id": {
2363
+ "kms": "local",
2364
+ "type": "binData=04",
2365
+ "algo": "det",
2366
+ "method": "explicit",
2367
+ "identifier": "id",
2368
+ "allowed": true,
2369
+ "value": {
2370
+ "$binary": {
2371
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAFwO3hsD8ee/uwgUiHWem8fGe54LsTJWqgbRCacIe6sxrsyLT6EsVIqg4Sn7Ou+FC3WJbFld5kx8euLe/MHa8FGYjxD97z5j+rUx5tt3T6YbA=",
2372
+ "subType": "06"
2373
+ }
2374
+ }
2375
+ },
2376
+ "local_binData=04_det_explicit_altname": {
2377
+ "kms": "local",
2378
+ "type": "binData=04",
2379
+ "algo": "det",
2380
+ "method": "explicit",
2381
+ "identifier": "altname",
2382
+ "allowed": true,
2383
+ "value": {
2384
+ "$binary": {
2385
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAFwO3hsD8ee/uwgUiHWem8fGe54LsTJWqgbRCacIe6sxrsyLT6EsVIqg4Sn7Ou+FC3WJbFld5kx8euLe/MHa8FGYjxD97z5j+rUx5tt3T6YbA=",
2386
+ "subType": "06"
2387
+ }
2388
+ }
2389
+ },
2390
+ "local_undefined_rand_explicit_id": {
2391
+ "kms": "local",
2392
+ "type": "undefined",
2393
+ "algo": "rand",
2394
+ "method": "explicit",
2395
+ "identifier": "id",
2396
+ "allowed": false,
2397
+ "value": {
2398
+ "$undefined": true
2399
+ }
2400
+ },
2401
+ "local_undefined_rand_explicit_altname": {
2402
+ "kms": "local",
2403
+ "type": "undefined",
2404
+ "algo": "rand",
2405
+ "method": "explicit",
2406
+ "identifier": "altname",
2407
+ "allowed": false,
2408
+ "value": {
2409
+ "$undefined": true
2410
+ }
2411
+ },
2412
+ "local_undefined_det_explicit_id": {
2413
+ "kms": "local",
2414
+ "type": "undefined",
2415
+ "algo": "det",
2416
+ "method": "explicit",
2417
+ "identifier": "id",
2418
+ "allowed": false,
2419
+ "value": {
2420
+ "$undefined": true
2421
+ }
2422
+ },
2423
+ "local_undefined_det_explicit_altname": {
2424
+ "kms": "local",
2425
+ "type": "undefined",
2426
+ "algo": "det",
2427
+ "method": "explicit",
2428
+ "identifier": "altname",
2429
+ "allowed": false,
2430
+ "value": {
2431
+ "$undefined": true
2432
+ }
2433
+ },
2434
+ "local_objectId_rand_auto_id": {
2435
+ "kms": "local",
2436
+ "type": "objectId",
2437
+ "algo": "rand",
2438
+ "method": "auto",
2439
+ "identifier": "id",
2440
+ "allowed": true,
2441
+ "value": {
2442
+ "$binary": {
2443
+ "base64": "AizggCwAAAAAAAAAAAAAAAAHfvxWRZOzfao3faE3RglL0IcDpBcNwqiGL5KgSokmRxWjjWeiel88Mbo5Plo0SswwNQ2H7C5GVG21L+UbvcW63g==",
2444
+ "subType": "06"
2445
+ }
2446
+ }
2447
+ },
2448
+ "local_objectId_rand_auto_altname": {
2449
+ "kms": "local",
2450
+ "type": "objectId",
2451
+ "algo": "rand",
2452
+ "method": "auto",
2453
+ "identifier": "altname",
2454
+ "allowed": true,
2455
+ "value": {
2456
+ "$binary": {
2457
+ "base64": "AizggCwAAAAAAAAAAAAAAAAHhd9lSOO7bHE7PM+Uxa2v3X1FF66IwyEr0wqnyTaOM+cHQLmec/RlEaRIQ1x2AiW7LwmmVgZ0xBMK9CMh0Lhbyw==",
2458
+ "subType": "06"
2459
+ }
2460
+ }
2461
+ },
2462
+ "local_objectId_rand_explicit_id": {
2463
+ "kms": "local",
2464
+ "type": "objectId",
2465
+ "algo": "rand",
2466
+ "method": "explicit",
2467
+ "identifier": "id",
2468
+ "allowed": true,
2469
+ "value": {
2470
+ "$binary": {
2471
+ "base64": "AizggCwAAAAAAAAAAAAAAAAHETwT9bo+JtboBVW/8GzzMQCpn22iiNJnlxYfyO45jvYJQRs29RRIouCsnFkmC7cfAO3GlVxv113euYjIO7AlAg==",
2472
+ "subType": "06"
2473
+ }
2474
+ }
2475
+ },
2476
+ "local_objectId_rand_explicit_altname": {
2477
+ "kms": "local",
2478
+ "type": "objectId",
2479
+ "algo": "rand",
2480
+ "method": "explicit",
2481
+ "identifier": "altname",
2482
+ "allowed": true,
2483
+ "value": {
2484
+ "$binary": {
2485
+ "base64": "AizggCwAAAAAAAAAAAAAAAAHhsguAMBzQUFBAitpJDzKEaMDGUGfvCzmUUhf4rnp8xeall/p91TUudaSMcU11XEgJ0Mym4IbYRd8+TfUai0nvw==",
2486
+ "subType": "06"
2487
+ }
2488
+ }
2489
+ },
2490
+ "local_objectId_det_auto_id": {
2491
+ "kms": "local",
2492
+ "type": "objectId",
2493
+ "algo": "det",
2494
+ "method": "auto",
2495
+ "identifier": "id",
2496
+ "allowed": true,
2497
+ "value": {
2498
+ "$binary": {
2499
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAH4ElF4AvQ+kkGfhadgKNy3GcYrDZPN6RpzaMYIhcCGDvC9W+cIS9dH1aJbPU7vTPmEZnnynPTDWjw3rAj2+9mOA==",
2500
+ "subType": "06"
2501
+ }
2502
+ }
2503
+ },
2504
+ "local_objectId_det_explicit_id": {
2505
+ "kms": "local",
2506
+ "type": "objectId",
2507
+ "algo": "det",
2508
+ "method": "explicit",
2509
+ "identifier": "id",
2510
+ "allowed": true,
2511
+ "value": {
2512
+ "$binary": {
2513
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAH4ElF4AvQ+kkGfhadgKNy3GcYrDZPN6RpzaMYIhcCGDvC9W+cIS9dH1aJbPU7vTPmEZnnynPTDWjw3rAj2+9mOA==",
2514
+ "subType": "06"
2515
+ }
2516
+ }
2517
+ },
2518
+ "local_objectId_det_explicit_altname": {
2519
+ "kms": "local",
2520
+ "type": "objectId",
2521
+ "algo": "det",
2522
+ "method": "explicit",
2523
+ "identifier": "altname",
2524
+ "allowed": true,
2525
+ "value": {
2526
+ "$binary": {
2527
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAH4ElF4AvQ+kkGfhadgKNy3GcYrDZPN6RpzaMYIhcCGDvC9W+cIS9dH1aJbPU7vTPmEZnnynPTDWjw3rAj2+9mOA==",
2528
+ "subType": "06"
2529
+ }
2530
+ }
2531
+ },
2532
+ "local_bool_rand_auto_id": {
2533
+ "kms": "local",
2534
+ "type": "bool",
2535
+ "algo": "rand",
2536
+ "method": "auto",
2537
+ "identifier": "id",
2538
+ "allowed": true,
2539
+ "value": {
2540
+ "$binary": {
2541
+ "base64": "AizggCwAAAAAAAAAAAAAAAAIxGld4J/2vSWg5tjQulpkm9C6WeUcLbv2yfKRXPAbmLpv3u4Yrmr5qisJtqmDPTcb993WosvCYAh0UGW+zpsdEg==",
2542
+ "subType": "06"
2543
+ }
2544
+ }
2545
+ },
2546
+ "local_bool_rand_auto_altname": {
2547
+ "kms": "local",
2548
+ "type": "bool",
2549
+ "algo": "rand",
2550
+ "method": "auto",
2551
+ "identifier": "altname",
2552
+ "allowed": true,
2553
+ "value": {
2554
+ "$binary": {
2555
+ "base64": "AizggCwAAAAAAAAAAAAAAAAIpUFPiS2uoW1Aqs0WQkBa201OBmsuJ8WUKcv5aBPASkcwfaw9qSWs3QrbEDR2GyoU4SeYOByCAQMzXCPoIYAFdQ==",
2556
+ "subType": "06"
2557
+ }
2558
+ }
2559
+ },
2560
+ "local_bool_rand_explicit_id": {
2561
+ "kms": "local",
2562
+ "type": "bool",
2563
+ "algo": "rand",
2564
+ "method": "explicit",
2565
+ "identifier": "id",
2566
+ "allowed": true,
2567
+ "value": {
2568
+ "$binary": {
2569
+ "base64": "AizggCwAAAAAAAAAAAAAAAAIJuzu1a60meYlU3LMjw/7G4Vh/lqKopxdpGWoLXEmY/NoHgX6Fkv9iTwxv/Nv8rZwtawpFV+mQUG/6A1IHMBASQ==",
2570
+ "subType": "06"
2571
+ }
2572
+ }
2573
+ },
2574
+ "local_bool_rand_explicit_altname": {
2575
+ "kms": "local",
2576
+ "type": "bool",
2577
+ "algo": "rand",
2578
+ "method": "explicit",
2579
+ "identifier": "altname",
2580
+ "allowed": true,
2581
+ "value": {
2582
+ "$binary": {
2583
+ "base64": "AizggCwAAAAAAAAAAAAAAAAIn9VjxL5TdGgJLckNHRrIaL32L31q5OERRZG2M5OYKk66TnrlfEs+ykcDvGwMGKpr/PYjY5kBHDc/oELGJJbWRQ==",
2584
+ "subType": "06"
2585
+ }
2586
+ }
2587
+ },
2588
+ "local_bool_det_explicit_id": {
2589
+ "kms": "local",
2590
+ "type": "bool",
2591
+ "algo": "det",
2592
+ "method": "explicit",
2593
+ "identifier": "id",
2594
+ "allowed": false,
2595
+ "value": true
2596
+ },
2597
+ "local_bool_det_explicit_altname": {
2598
+ "kms": "local",
2599
+ "type": "bool",
2600
+ "algo": "det",
2601
+ "method": "explicit",
2602
+ "identifier": "altname",
2603
+ "allowed": false,
2604
+ "value": true
2605
+ },
2606
+ "local_date_rand_auto_id": {
2607
+ "kms": "local",
2608
+ "type": "date",
2609
+ "algo": "rand",
2610
+ "method": "auto",
2611
+ "identifier": "id",
2612
+ "allowed": true,
2613
+ "value": {
2614
+ "$binary": {
2615
+ "base64": "AizggCwAAAAAAAAAAAAAAAAJPPv4MC5xzt2uxPGBHH9g2z03o9SQjjmuxt97Ub1UcKCCHsGED3bx6YSrocuEMiFFI4d5Fqgl8HNeS4j0PR0tYA==",
2616
+ "subType": "06"
2617
+ }
2618
+ }
2619
+ },
2620
+ "local_date_rand_auto_altname": {
2621
+ "kms": "local",
2622
+ "type": "date",
2623
+ "algo": "rand",
2624
+ "method": "auto",
2625
+ "identifier": "altname",
2626
+ "allowed": true,
2627
+ "value": {
2628
+ "$binary": {
2629
+ "base64": "AizggCwAAAAAAAAAAAAAAAAJ6i2A9Hi4xWlOMjFMGpwaRctR1VFnb4El166n18RvjKic46V+WoadvLHS32RhPOvkLVYwIeU4C+vrO5isBNoUdw==",
2630
+ "subType": "06"
2631
+ }
2632
+ }
2633
+ },
2634
+ "local_date_rand_explicit_id": {
2635
+ "kms": "local",
2636
+ "type": "date",
2637
+ "algo": "rand",
2638
+ "method": "explicit",
2639
+ "identifier": "id",
2640
+ "allowed": true,
2641
+ "value": {
2642
+ "$binary": {
2643
+ "base64": "AizggCwAAAAAAAAAAAAAAAAJHcniV7Q0C8ZTWrE0hp5i5bUPlrrRdNLZckfODw8XNVtVPDjbznglccQmI7w1t8kOVp65eKzVzUOXN0YkqA+1QA==",
2644
+ "subType": "06"
2645
+ }
2646
+ }
2647
+ },
2648
+ "local_date_rand_explicit_altname": {
2649
+ "kms": "local",
2650
+ "type": "date",
2651
+ "algo": "rand",
2652
+ "method": "explicit",
2653
+ "identifier": "altname",
2654
+ "allowed": true,
2655
+ "value": {
2656
+ "$binary": {
2657
+ "base64": "AizggCwAAAAAAAAAAAAAAAAJKCUCjC3hsmEKKYwGP3ceh3zR+ArE8LYFOQfN87aEsTr60VrzHXmsE8PvizRhhMnrp07ljzQkuat39L+0QSR2qQ==",
2658
+ "subType": "06"
2659
+ }
2660
+ }
2661
+ },
2662
+ "local_date_det_auto_id": {
2663
+ "kms": "local",
2664
+ "type": "date",
2665
+ "algo": "det",
2666
+ "method": "auto",
2667
+ "identifier": "id",
2668
+ "allowed": true,
2669
+ "value": {
2670
+ "$binary": {
2671
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAJ1GMYQTruoKr6fv9XCbcVkx/3yivymPSMEkPCRDYxQv45w4TqBKMDfpRd1TOLOv1qvcb+gjH+z5IfVBMp2IpG/Q==",
2672
+ "subType": "06"
2673
+ }
2674
+ }
2675
+ },
2676
+ "local_date_det_explicit_id": {
2677
+ "kms": "local",
2678
+ "type": "date",
2679
+ "algo": "det",
2680
+ "method": "explicit",
2681
+ "identifier": "id",
2682
+ "allowed": true,
2683
+ "value": {
2684
+ "$binary": {
2685
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAJ1GMYQTruoKr6fv9XCbcVkx/3yivymPSMEkPCRDYxQv45w4TqBKMDfpRd1TOLOv1qvcb+gjH+z5IfVBMp2IpG/Q==",
2686
+ "subType": "06"
2687
+ }
2688
+ }
2689
+ },
2690
+ "local_date_det_explicit_altname": {
2691
+ "kms": "local",
2692
+ "type": "date",
2693
+ "algo": "det",
2694
+ "method": "explicit",
2695
+ "identifier": "altname",
2696
+ "allowed": true,
2697
+ "value": {
2698
+ "$binary": {
2699
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAJ1GMYQTruoKr6fv9XCbcVkx/3yivymPSMEkPCRDYxQv45w4TqBKMDfpRd1TOLOv1qvcb+gjH+z5IfVBMp2IpG/Q==",
2700
+ "subType": "06"
2701
+ }
2702
+ }
2703
+ },
2704
+ "local_null_rand_explicit_id": {
2705
+ "kms": "local",
2706
+ "type": "null",
2707
+ "algo": "rand",
2708
+ "method": "explicit",
2709
+ "identifier": "id",
2710
+ "allowed": false,
2711
+ "value": null
2712
+ },
2713
+ "local_null_rand_explicit_altname": {
2714
+ "kms": "local",
2715
+ "type": "null",
2716
+ "algo": "rand",
2717
+ "method": "explicit",
2718
+ "identifier": "altname",
2719
+ "allowed": false,
2720
+ "value": null
2721
+ },
2722
+ "local_null_det_explicit_id": {
2723
+ "kms": "local",
2724
+ "type": "null",
2725
+ "algo": "det",
2726
+ "method": "explicit",
2727
+ "identifier": "id",
2728
+ "allowed": false,
2729
+ "value": null
2730
+ },
2731
+ "local_null_det_explicit_altname": {
2732
+ "kms": "local",
2733
+ "type": "null",
2734
+ "algo": "det",
2735
+ "method": "explicit",
2736
+ "identifier": "altname",
2737
+ "allowed": false,
2738
+ "value": null
2739
+ },
2740
+ "local_regex_rand_auto_id": {
2741
+ "kms": "local",
2742
+ "type": "regex",
2743
+ "algo": "rand",
2744
+ "method": "auto",
2745
+ "identifier": "id",
2746
+ "allowed": true,
2747
+ "value": {
2748
+ "$binary": {
2749
+ "base64": "AizggCwAAAAAAAAAAAAAAAALXKw7zSgqQj1AKoWO0MoMxsBuu0cMB6KdJQCRKdupoLV/Y22owwsVpDDMv5sgUpkG5YIV+Fz7taHodXE07qHopw==",
2750
+ "subType": "06"
2751
+ }
2752
+ }
2753
+ },
2754
+ "local_regex_rand_auto_altname": {
2755
+ "kms": "local",
2756
+ "type": "regex",
2757
+ "algo": "rand",
2758
+ "method": "auto",
2759
+ "identifier": "altname",
2760
+ "allowed": true,
2761
+ "value": {
2762
+ "$binary": {
2763
+ "base64": "AizggCwAAAAAAAAAAAAAAAALntOLXq7VW1+jwba/dSbidMo2bewNo7AtK9A1CPwk9XrjUQaEOQxfRpho3BYQEo2U67fQdsY/tyhaj4jduHn9JQ==",
2764
+ "subType": "06"
2765
+ }
2766
+ }
2767
+ },
2768
+ "local_regex_rand_explicit_id": {
2769
+ "kms": "local",
2770
+ "type": "regex",
2771
+ "algo": "rand",
2772
+ "method": "explicit",
2773
+ "identifier": "id",
2774
+ "allowed": true,
2775
+ "value": {
2776
+ "$binary": {
2777
+ "base64": "AizggCwAAAAAAAAAAAAAAAALlMMG2iS/gEOEsVKR7sxBJP2IUzZ+aRbozDSkqADncresBvaPBSE17lng5NG7H1JRCAcP1rH/Te+0CrMd7JpRAQ==",
2778
+ "subType": "06"
2779
+ }
2780
+ }
2781
+ },
2782
+ "local_regex_rand_explicit_altname": {
2783
+ "kms": "local",
2784
+ "type": "regex",
2785
+ "algo": "rand",
2786
+ "method": "explicit",
2787
+ "identifier": "altname",
2788
+ "allowed": true,
2789
+ "value": {
2790
+ "$binary": {
2791
+ "base64": "AizggCwAAAAAAAAAAAAAAAAL1YNnlVu5+njDLxh1LMhIPOH19RykAXhxrUbCy6TI5MLQsAOSgAJbXOTXeKr0D8/Ff0phToWOKl193gOOIp8yZQ==",
2792
+ "subType": "06"
2793
+ }
2794
+ }
2795
+ },
2796
+ "local_regex_det_auto_id": {
2797
+ "kms": "local",
2798
+ "type": "regex",
2799
+ "algo": "det",
2800
+ "method": "auto",
2801
+ "identifier": "id",
2802
+ "allowed": true,
2803
+ "value": {
2804
+ "$binary": {
2805
+ "base64": "ASzggCwAAAAAAAAAAAAAAAALiZbL5nFIZl7cSLH5E3wK3jJeAeFc7hLHNITtLAu+o10raEs5i/UCihMHmkf8KHZxghs056pfm5BjPzlL9x7IHQ==",
2806
+ "subType": "06"
2807
+ }
2808
+ }
2809
+ },
2810
+ "local_regex_det_explicit_id": {
2811
+ "kms": "local",
2812
+ "type": "regex",
2813
+ "algo": "det",
2814
+ "method": "explicit",
2815
+ "identifier": "id",
2816
+ "allowed": true,
2817
+ "value": {
2818
+ "$binary": {
2819
+ "base64": "ASzggCwAAAAAAAAAAAAAAAALiZbL5nFIZl7cSLH5E3wK3jJeAeFc7hLHNITtLAu+o10raEs5i/UCihMHmkf8KHZxghs056pfm5BjPzlL9x7IHQ==",
2820
+ "subType": "06"
2821
+ }
2822
+ }
2823
+ },
2824
+ "local_regex_det_explicit_altname": {
2825
+ "kms": "local",
2826
+ "type": "regex",
2827
+ "algo": "det",
2828
+ "method": "explicit",
2829
+ "identifier": "altname",
2830
+ "allowed": true,
2831
+ "value": {
2832
+ "$binary": {
2833
+ "base64": "ASzggCwAAAAAAAAAAAAAAAALiZbL5nFIZl7cSLH5E3wK3jJeAeFc7hLHNITtLAu+o10raEs5i/UCihMHmkf8KHZxghs056pfm5BjPzlL9x7IHQ==",
2834
+ "subType": "06"
2835
+ }
2836
+ }
2837
+ },
2838
+ "local_dbPointer_rand_auto_id": {
2839
+ "kms": "local",
2840
+ "type": "dbPointer",
2841
+ "algo": "rand",
2842
+ "method": "auto",
2843
+ "identifier": "id",
2844
+ "allowed": true,
2845
+ "value": {
2846
+ "$binary": {
2847
+ "base64": "AizggCwAAAAAAAAAAAAAAAAMUdAA9uOSk1tXJVe/CG3Ps6avYTEF1eHj1wSlCHkFxqlMtTO+rIQpikpjH0MrcXvEEdAO8g5hFZ01I7DWyK5AAxTxDqVF+kOaQ2VfKs6hyuo=",
2848
+ "subType": "06"
2849
+ }
2850
+ }
2851
+ },
2852
+ "local_dbPointer_rand_auto_altname": {
2853
+ "kms": "local",
2854
+ "type": "dbPointer",
2855
+ "algo": "rand",
2856
+ "method": "auto",
2857
+ "identifier": "altname",
2858
+ "allowed": true,
2859
+ "value": {
2860
+ "$binary": {
2861
+ "base64": "AizggCwAAAAAAAAAAAAAAAAMiNqvqLwZrPnsF235z+Obl1K9iEXdJ5GucMGpJdRG4lRvRE0Oy1vh6ztNTpYPY/tXyUFTBWlzl/lITalSEm/dT1Bnlh0iPAFrAiNySf662og=",
2862
+ "subType": "06"
2863
+ }
2864
+ }
2865
+ },
2866
+ "local_dbPointer_rand_explicit_id": {
2867
+ "kms": "local",
2868
+ "type": "dbPointer",
2869
+ "algo": "rand",
2870
+ "method": "explicit",
2871
+ "identifier": "id",
2872
+ "allowed": true,
2873
+ "value": {
2874
+ "$binary": {
2875
+ "base64": "AizggCwAAAAAAAAAAAAAAAAM+Tn31YcKiowBTJWRYCYAEO7UARDE2/jTVGEKXCpiwEqqP3JSAS0b80zYt8dxo5mVhUo2a02ClKrB8vs+B6sU1kXrahSaVSEHZlRSGN9fWgo=",
2876
+ "subType": "06"
2877
+ }
2878
+ }
2879
+ },
2880
+ "local_dbPointer_rand_explicit_altname": {
2881
+ "kms": "local",
2882
+ "type": "dbPointer",
2883
+ "algo": "rand",
2884
+ "method": "explicit",
2885
+ "identifier": "altname",
2886
+ "allowed": true,
2887
+ "value": {
2888
+ "$binary": {
2889
+ "base64": "AizggCwAAAAAAAAAAAAAAAAMdOZZUvpJIqG9qiOLy5x4BdftyHipPDZn/eeLEc7ir3v4jJsY3dsv6fQERo5U9lMynNGA9PJePVzq5tWsIMX0EcCQcMfGmosfkYDzN1OX99A=",
2890
+ "subType": "06"
2891
+ }
2892
+ }
2893
+ },
2894
+ "local_dbPointer_det_auto_id": {
2895
+ "kms": "local",
2896
+ "type": "dbPointer",
2897
+ "algo": "det",
2898
+ "method": "auto",
2899
+ "identifier": "id",
2900
+ "allowed": true,
2901
+ "value": {
2902
+ "$binary": {
2903
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAMQWace2C1w3yqtmo/rgz3YtIDnx1Ia/oDsoHnnMZlEy5RoK3uosi1hvNAZCSg3Sen0H7MH3XVhGGMCL4cS69uJ0ENSvh+K6fiZzAXCKUPfvM=",
2904
+ "subType": "06"
2905
+ }
2906
+ }
2907
+ },
2908
+ "local_dbPointer_det_explicit_id": {
2909
+ "kms": "local",
2910
+ "type": "dbPointer",
2911
+ "algo": "det",
2912
+ "method": "explicit",
2913
+ "identifier": "id",
2914
+ "allowed": true,
2915
+ "value": {
2916
+ "$binary": {
2917
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAMQWace2C1w3yqtmo/rgz3YtIDnx1Ia/oDsoHnnMZlEy5RoK3uosi1hvNAZCSg3Sen0H7MH3XVhGGMCL4cS69uJ0ENSvh+K6fiZzAXCKUPfvM=",
2918
+ "subType": "06"
2919
+ }
2920
+ }
2921
+ },
2922
+ "local_dbPointer_det_explicit_altname": {
2923
+ "kms": "local",
2924
+ "type": "dbPointer",
2925
+ "algo": "det",
2926
+ "method": "explicit",
2927
+ "identifier": "altname",
2928
+ "allowed": true,
2929
+ "value": {
2930
+ "$binary": {
2931
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAMQWace2C1w3yqtmo/rgz3YtIDnx1Ia/oDsoHnnMZlEy5RoK3uosi1hvNAZCSg3Sen0H7MH3XVhGGMCL4cS69uJ0ENSvh+K6fiZzAXCKUPfvM=",
2932
+ "subType": "06"
2933
+ }
2934
+ }
2935
+ },
2936
+ "local_javascript_rand_auto_id": {
2937
+ "kms": "local",
2938
+ "type": "javascript",
2939
+ "algo": "rand",
2940
+ "method": "auto",
2941
+ "identifier": "id",
2942
+ "allowed": true,
2943
+ "value": {
2944
+ "$binary": {
2945
+ "base64": "AizggCwAAAAAAAAAAAAAAAANNL2AMKwTDyMIvxLKhBxZKx50C0tBdkLwuXmuMcrUqZeH8bsvjtttoM9LWkkileMyeTWgxblJ1b+uQ+V+4VT6fA==",
2946
+ "subType": "06"
2947
+ }
2948
+ }
2949
+ },
2950
+ "local_javascript_rand_auto_altname": {
2951
+ "kms": "local",
2952
+ "type": "javascript",
2953
+ "algo": "rand",
2954
+ "method": "auto",
2955
+ "identifier": "altname",
2956
+ "allowed": true,
2957
+ "value": {
2958
+ "$binary": {
2959
+ "base64": "AizggCwAAAAAAAAAAAAAAAANBjBlHGw3K3TWQHpvfa1z0bKhNnVFC/lZArIexo3wjdGq3MdkGA5cuBIp87HHmOIv6o/pvQ9K74v48RQl+JH44A==",
2960
+ "subType": "06"
2961
+ }
2962
+ }
2963
+ },
2964
+ "local_javascript_rand_explicit_id": {
2965
+ "kms": "local",
2966
+ "type": "javascript",
2967
+ "algo": "rand",
2968
+ "method": "explicit",
2969
+ "identifier": "id",
2970
+ "allowed": true,
2971
+ "value": {
2972
+ "$binary": {
2973
+ "base64": "AizggCwAAAAAAAAAAAAAAAANjvM7u3vNVyKpyI7g5kbzBpHPzXzOQToDSng5/c9yjMG+qi4TPtOyassobJOnMmDYBLyqRXCl/GsDLprbg5jxuA==",
2974
+ "subType": "06"
2975
+ }
2976
+ }
2977
+ },
2978
+ "local_javascript_rand_explicit_altname": {
2979
+ "kms": "local",
2980
+ "type": "javascript",
2981
+ "algo": "rand",
2982
+ "method": "explicit",
2983
+ "identifier": "altname",
2984
+ "allowed": true,
2985
+ "value": {
2986
+ "$binary": {
2987
+ "base64": "AizggCwAAAAAAAAAAAAAAAANMtO7KneuVx4gSOjX4MQjKL80zJhnt+efDBylkpNsqKyxBXB60nkiredGzwaK3/4QhIfGJrC1fQpwUwu/v1L17g==",
2988
+ "subType": "06"
2989
+ }
2990
+ }
2991
+ },
2992
+ "local_javascript_det_auto_id": {
2993
+ "kms": "local",
2994
+ "type": "javascript",
2995
+ "algo": "det",
2996
+ "method": "auto",
2997
+ "identifier": "id",
2998
+ "allowed": true,
2999
+ "value": {
3000
+ "$binary": {
3001
+ "base64": "ASzggCwAAAAAAAAAAAAAAAANmQsg9E/BzGJVNVhSNyunS/TH0332oVFdPS6gjX0Cp/JC0YhB97DLz3N4e/q8ECaz7tTdQt9JacNUgxo+YCULUA==",
3002
+ "subType": "06"
3003
+ }
3004
+ }
3005
+ },
3006
+ "local_javascript_det_explicit_id": {
3007
+ "kms": "local",
3008
+ "type": "javascript",
3009
+ "algo": "det",
3010
+ "method": "explicit",
3011
+ "identifier": "id",
3012
+ "allowed": true,
3013
+ "value": {
3014
+ "$binary": {
3015
+ "base64": "ASzggCwAAAAAAAAAAAAAAAANmQsg9E/BzGJVNVhSNyunS/TH0332oVFdPS6gjX0Cp/JC0YhB97DLz3N4e/q8ECaz7tTdQt9JacNUgxo+YCULUA==",
3016
+ "subType": "06"
3017
+ }
3018
+ }
3019
+ },
3020
+ "local_javascript_det_explicit_altname": {
3021
+ "kms": "local",
3022
+ "type": "javascript",
3023
+ "algo": "det",
3024
+ "method": "explicit",
3025
+ "identifier": "altname",
3026
+ "allowed": true,
3027
+ "value": {
3028
+ "$binary": {
3029
+ "base64": "ASzggCwAAAAAAAAAAAAAAAANmQsg9E/BzGJVNVhSNyunS/TH0332oVFdPS6gjX0Cp/JC0YhB97DLz3N4e/q8ECaz7tTdQt9JacNUgxo+YCULUA==",
3030
+ "subType": "06"
3031
+ }
3032
+ }
3033
+ },
3034
+ "local_symbol_rand_auto_id": {
3035
+ "kms": "local",
3036
+ "type": "symbol",
3037
+ "algo": "rand",
3038
+ "method": "auto",
3039
+ "identifier": "id",
3040
+ "allowed": true,
3041
+ "value": {
3042
+ "$binary": {
3043
+ "base64": "AizggCwAAAAAAAAAAAAAAAAOOuO2b23mekwI8b6gWeEgRy1lLOCsNyBKvdmizK7/oOVKCvd+3kwUn9a6TxygooiVAN/Aohr1cjb8jRlMPWpkP0iO0+Tt6+vkizgFsQW4iio=",
3044
+ "subType": "06"
3045
+ }
3046
+ }
3047
+ },
3048
+ "local_symbol_rand_auto_altname": {
3049
+ "kms": "local",
3050
+ "type": "symbol",
3051
+ "algo": "rand",
3052
+ "method": "auto",
3053
+ "identifier": "altname",
3054
+ "allowed": true,
3055
+ "value": {
3056
+ "$binary": {
3057
+ "base64": "AizggCwAAAAAAAAAAAAAAAAOhN4QPOcmGnFKGvTfhz6TQleDA02X6oWULLHTnOUJYfE3OUSyf2ULEQh1yhdKdwXMuYVgGl28pMosiwkBShrXYe5ZlMjiZCIMZWSdUMV0tXk=",
3058
+ "subType": "06"
3059
+ }
3060
+ }
3061
+ },
3062
+ "local_symbol_rand_explicit_id": {
3063
+ "kms": "local",
3064
+ "type": "symbol",
3065
+ "algo": "rand",
3066
+ "method": "explicit",
3067
+ "identifier": "id",
3068
+ "allowed": true,
3069
+ "value": {
3070
+ "$binary": {
3071
+ "base64": "AizggCwAAAAAAAAAAAAAAAAO9aWi9RliwQHdXHoJME9VyN6XgyGd95Eclx+ZFYfLxBGAuUnPNjSfVuNZwYdyKC8JX79+mYhk7IXmcGV4z+4486sxyLk3idi4Kmpz2ESqV5g=",
3072
+ "subType": "06"
3073
+ }
3074
+ }
3075
+ },
3076
+ "local_symbol_rand_explicit_altname": {
3077
+ "kms": "local",
3078
+ "type": "symbol",
3079
+ "algo": "rand",
3080
+ "method": "explicit",
3081
+ "identifier": "altname",
3082
+ "allowed": true,
3083
+ "value": {
3084
+ "$binary": {
3085
+ "base64": "AizggCwAAAAAAAAAAAAAAAAO/qev3DPfpkQoSW9aHOyalwfI/VYDQVN5VMINx4kw2vEqHiI1HRdZRPOz3q74TlQEy3TMNMTYdCvh5bpN/PptRZCTQbzP6ugz9dTp79w5/Ok=",
3086
+ "subType": "06"
3087
+ }
3088
+ }
3089
+ },
3090
+ "local_symbol_det_auto_id": {
3091
+ "kms": "local",
3092
+ "type": "symbol",
3093
+ "algo": "det",
3094
+ "method": "auto",
3095
+ "identifier": "id",
3096
+ "allowed": true,
3097
+ "value": {
3098
+ "$binary": {
3099
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAOsg5cs6VpZWoTOFg4ztZmpj8kSTeCArVcI1Zz2pOnmMqNv/vcKQGhKSBbfniMripr7iuiYtlgkHGsdO2FqUp6Jb8NEWm5uWqdNU21zR9SRkE=",
3100
+ "subType": "06"
3101
+ }
3102
+ }
3103
+ },
3104
+ "local_symbol_det_explicit_id": {
3105
+ "kms": "local",
3106
+ "type": "symbol",
3107
+ "algo": "det",
3108
+ "method": "explicit",
3109
+ "identifier": "id",
3110
+ "allowed": true,
3111
+ "value": {
3112
+ "$binary": {
3113
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAOsg5cs6VpZWoTOFg4ztZmpj8kSTeCArVcI1Zz2pOnmMqNv/vcKQGhKSBbfniMripr7iuiYtlgkHGsdO2FqUp6Jb8NEWm5uWqdNU21zR9SRkE=",
3114
+ "subType": "06"
3115
+ }
3116
+ }
3117
+ },
3118
+ "local_symbol_det_explicit_altname": {
3119
+ "kms": "local",
3120
+ "type": "symbol",
3121
+ "algo": "det",
3122
+ "method": "explicit",
3123
+ "identifier": "altname",
3124
+ "allowed": true,
3125
+ "value": {
3126
+ "$binary": {
3127
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAOsg5cs6VpZWoTOFg4ztZmpj8kSTeCArVcI1Zz2pOnmMqNv/vcKQGhKSBbfniMripr7iuiYtlgkHGsdO2FqUp6Jb8NEWm5uWqdNU21zR9SRkE=",
3128
+ "subType": "06"
3129
+ }
3130
+ }
3131
+ },
3132
+ "local_javascriptWithScope_rand_auto_id": {
3133
+ "kms": "local",
3134
+ "type": "javascriptWithScope",
3135
+ "algo": "rand",
3136
+ "method": "auto",
3137
+ "identifier": "id",
3138
+ "allowed": true,
3139
+ "value": {
3140
+ "$binary": {
3141
+ "base64": "AizggCwAAAAAAAAAAAAAAAAP5gLMvLOAc6vGAvC7bGmEC4eweptAiX3A7L0iCoHps/wm0FBLkfpF6F4pCjVYiY1lTID38wliRLPyhntCj+cfvlMfKSjouNgXMIWyQ8GKZ2c=",
3142
+ "subType": "06"
3143
+ }
3144
+ }
3145
+ },
3146
+ "local_javascriptWithScope_rand_auto_altname": {
3147
+ "kms": "local",
3148
+ "type": "javascriptWithScope",
3149
+ "algo": "rand",
3150
+ "method": "auto",
3151
+ "identifier": "altname",
3152
+ "allowed": true,
3153
+ "value": {
3154
+ "$binary": {
3155
+ "base64": "AizggCwAAAAAAAAAAAAAAAAPVsw9Opn/P5SAdJhX4MTxIcsmaG8isIN4NKPi9k1u/Vj7AVkcxYqwurAghaJpmfoAgMruvzi1hcKvd05yHd9Nk0vkvODwDgnjJB6QO+qUce8=",
3156
+ "subType": "06"
3157
+ }
3158
+ }
3159
+ },
3160
+ "local_javascriptWithScope_rand_explicit_id": {
3161
+ "kms": "local",
3162
+ "type": "javascriptWithScope",
3163
+ "algo": "rand",
3164
+ "method": "explicit",
3165
+ "identifier": "id",
3166
+ "allowed": true,
3167
+ "value": {
3168
+ "$binary": {
3169
+ "base64": "AizggCwAAAAAAAAAAAAAAAAPLUa+nsrqiHkVdE5K1xl/ZsiZqQznG2yVXyA3b3loBylbcL2NEBp1JUeGnPZ0y5ZK4AmoL6NMH2Io313rW3V8FTArs/OOQWPRJSe6h0M3wXk=",
3170
+ "subType": "06"
3171
+ }
3172
+ }
3173
+ },
3174
+ "local_javascriptWithScope_rand_explicit_altname": {
3175
+ "kms": "local",
3176
+ "type": "javascriptWithScope",
3177
+ "algo": "rand",
3178
+ "method": "explicit",
3179
+ "identifier": "altname",
3180
+ "allowed": true,
3181
+ "value": {
3182
+ "$binary": {
3183
+ "base64": "AizggCwAAAAAAAAAAAAAAAAPzUKaXCH0JImSlY73HVop9g9c0YssNEiA7Dy7Vji61avxvnuJJfghDchdwwaY7Vc8+0bymoanUWcErRctLzjm+1uKeMnFQokR8wFtnS3PgpQ=",
3184
+ "subType": "06"
3185
+ }
3186
+ }
3187
+ },
3188
+ "local_javascriptWithScope_det_explicit_id": {
3189
+ "kms": "local",
3190
+ "type": "javascriptWithScope",
3191
+ "algo": "det",
3192
+ "method": "explicit",
3193
+ "identifier": "id",
3194
+ "allowed": false,
3195
+ "value": {
3196
+ "$code": "x=1",
3197
+ "$scope": {
3198
+
3199
+ }
3200
+ }
3201
+ },
3202
+ "local_javascriptWithScope_det_explicit_altname": {
3203
+ "kms": "local",
3204
+ "type": "javascriptWithScope",
3205
+ "algo": "det",
3206
+ "method": "explicit",
3207
+ "identifier": "altname",
3208
+ "allowed": false,
3209
+ "value": {
3210
+ "$code": "x=1",
3211
+ "$scope": {
3212
+
3213
+ }
3214
+ }
3215
+ },
3216
+ "local_int_rand_auto_id": {
3217
+ "kms": "local",
3218
+ "type": "int",
3219
+ "algo": "rand",
3220
+ "method": "auto",
3221
+ "identifier": "id",
3222
+ "allowed": true,
3223
+ "value": {
3224
+ "$binary": {
3225
+ "base64": "AizggCwAAAAAAAAAAAAAAAAQHXpXb3KlHA2KFTBgl0VoLCu0CUf1ae4DckkwDorbredVSqxvA5e+NvVudY5yuea6bC9F57JlbjI8NWYAUw4q0Q==",
3226
+ "subType": "06"
3227
+ }
3228
+ }
3229
+ },
3230
+ "local_int_rand_auto_altname": {
3231
+ "kms": "local",
3232
+ "type": "int",
3233
+ "algo": "rand",
3234
+ "method": "auto",
3235
+ "identifier": "altname",
3236
+ "allowed": true,
3237
+ "value": {
3238
+ "$binary": {
3239
+ "base64": "AizggCwAAAAAAAAAAAAAAAAQSxXMF4+TKV+a3lcxXky8VepEqdg5wI/jg+C4CAUgNurq2XhgrxyqiMjkU8z07tfyoLYyX6P+dTrwj6nzvvchCw==",
3240
+ "subType": "06"
3241
+ }
3242
+ }
3243
+ },
3244
+ "local_int_rand_explicit_id": {
3245
+ "kms": "local",
3246
+ "type": "int",
3247
+ "algo": "rand",
3248
+ "method": "explicit",
3249
+ "identifier": "id",
3250
+ "allowed": true,
3251
+ "value": {
3252
+ "$binary": {
3253
+ "base64": "AizggCwAAAAAAAAAAAAAAAAQmzteYnshCI8HBGd7UYUKvcg4xl6M8PRyi1xX/WHbjyQkAJXxczS8hO91wuqStE3tBNSmulUejz9S691ufTd6ZA==",
3254
+ "subType": "06"
3255
+ }
3256
+ }
3257
+ },
3258
+ "local_int_rand_explicit_altname": {
3259
+ "kms": "local",
3260
+ "type": "int",
3261
+ "algo": "rand",
3262
+ "method": "explicit",
3263
+ "identifier": "altname",
3264
+ "allowed": true,
3265
+ "value": {
3266
+ "$binary": {
3267
+ "base64": "AizggCwAAAAAAAAAAAAAAAAQLCHLru//++QSoWVEyw2v6TUfCnlrPJXrpLLezWf16vK85jTfm8vJbb2X2UzX04wGzVL9tCFFsWX6Z5gHXhgSBg==",
3268
+ "subType": "06"
3269
+ }
3270
+ }
3271
+ },
3272
+ "local_int_det_auto_id": {
3273
+ "kms": "local",
3274
+ "type": "int",
3275
+ "algo": "det",
3276
+ "method": "auto",
3277
+ "identifier": "id",
3278
+ "allowed": true,
3279
+ "value": {
3280
+ "$binary": {
3281
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAQIxWjLBromNUgiOoeoZ4RUJUYIfhfOmab0sa4qYlS9bgYI41FU6BtzaOevR16O9i+uACbiHL0X6FMXKjOmiRAug==",
3282
+ "subType": "06"
3283
+ }
3284
+ }
3285
+ },
3286
+ "local_int_det_explicit_id": {
3287
+ "kms": "local",
3288
+ "type": "int",
3289
+ "algo": "det",
3290
+ "method": "explicit",
3291
+ "identifier": "id",
3292
+ "allowed": true,
3293
+ "value": {
3294
+ "$binary": {
3295
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAQIxWjLBromNUgiOoeoZ4RUJUYIfhfOmab0sa4qYlS9bgYI41FU6BtzaOevR16O9i+uACbiHL0X6FMXKjOmiRAug==",
3296
+ "subType": "06"
3297
+ }
3298
+ }
3299
+ },
3300
+ "local_int_det_explicit_altname": {
3301
+ "kms": "local",
3302
+ "type": "int",
3303
+ "algo": "det",
3304
+ "method": "explicit",
3305
+ "identifier": "altname",
3306
+ "allowed": true,
3307
+ "value": {
3308
+ "$binary": {
3309
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAQIxWjLBromNUgiOoeoZ4RUJUYIfhfOmab0sa4qYlS9bgYI41FU6BtzaOevR16O9i+uACbiHL0X6FMXKjOmiRAug==",
3310
+ "subType": "06"
3311
+ }
3312
+ }
3313
+ },
3314
+ "local_timestamp_rand_auto_id": {
3315
+ "kms": "local",
3316
+ "type": "timestamp",
3317
+ "algo": "rand",
3318
+ "method": "auto",
3319
+ "identifier": "id",
3320
+ "allowed": true,
3321
+ "value": {
3322
+ "$binary": {
3323
+ "base64": "AizggCwAAAAAAAAAAAAAAAARntIycg0Xkd16GEa//VSJI4Rkl7dT6MpRa+D3MiTEeio5Yy8zGK0u2BtEP/9MCRQw2hJDYj5znVqwhdduM0OTiA==",
3324
+ "subType": "06"
3325
+ }
3326
+ }
3327
+ },
3328
+ "local_timestamp_rand_auto_altname": {
3329
+ "kms": "local",
3330
+ "type": "timestamp",
3331
+ "algo": "rand",
3332
+ "method": "auto",
3333
+ "identifier": "altname",
3334
+ "allowed": true,
3335
+ "value": {
3336
+ "$binary": {
3337
+ "base64": "AizggCwAAAAAAAAAAAAAAAARWA9Ox5ejDPeWxfjbRgcGCtF/G5yrPMbBJD9ESDFc0NaVe0sdNNTisEVxsSkn7M/S4FCibKh+C8femr7xhu1iTw==",
3338
+ "subType": "06"
3339
+ }
3340
+ }
3341
+ },
3342
+ "local_timestamp_rand_explicit_id": {
3343
+ "kms": "local",
3344
+ "type": "timestamp",
3345
+ "algo": "rand",
3346
+ "method": "explicit",
3347
+ "identifier": "id",
3348
+ "allowed": true,
3349
+ "value": {
3350
+ "$binary": {
3351
+ "base64": "AizggCwAAAAAAAAAAAAAAAARrEfOL4+4Qh7IkhHnHcBEANGfMF8n2wUDnsZ0lXEb0fACKzaN5OKaxMIQBs/3pFBw721qRfCHY+ByKeaQuABbzg==",
3352
+ "subType": "06"
3353
+ }
3354
+ }
3355
+ },
3356
+ "local_timestamp_rand_explicit_altname": {
3357
+ "kms": "local",
3358
+ "type": "timestamp",
3359
+ "algo": "rand",
3360
+ "method": "explicit",
3361
+ "identifier": "altname",
3362
+ "allowed": true,
3363
+ "value": {
3364
+ "$binary": {
3365
+ "base64": "AizggCwAAAAAAAAAAAAAAAARW8nwmnBt+LFIAcFWvOzX8llrGcveQKFhyYUIth9d7wtpTyc9myFp8GBQCnjDpKzA6lPmbqVYeLU0L9q0h6SHGQ==",
3366
+ "subType": "06"
3367
+ }
3368
+ }
3369
+ },
3370
+ "local_timestamp_det_auto_id": {
3371
+ "kms": "local",
3372
+ "type": "timestamp",
3373
+ "algo": "det",
3374
+ "method": "auto",
3375
+ "identifier": "id",
3376
+ "allowed": true,
3377
+ "value": {
3378
+ "$binary": {
3379
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAR6uMylGytMq8QDr5Yz3w9HlW2MkGt6yIgUKcXYSaXru8eer+EkLv66/vy5rHqTfV0+8ryoi+d+PWO5U6b3Ng5Gg==",
3380
+ "subType": "06"
3381
+ }
3382
+ }
3383
+ },
3384
+ "local_timestamp_det_explicit_id": {
3385
+ "kms": "local",
3386
+ "type": "timestamp",
3387
+ "algo": "det",
3388
+ "method": "explicit",
3389
+ "identifier": "id",
3390
+ "allowed": true,
3391
+ "value": {
3392
+ "$binary": {
3393
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAR6uMylGytMq8QDr5Yz3w9HlW2MkGt6yIgUKcXYSaXru8eer+EkLv66/vy5rHqTfV0+8ryoi+d+PWO5U6b3Ng5Gg==",
3394
+ "subType": "06"
3395
+ }
3396
+ }
3397
+ },
3398
+ "local_timestamp_det_explicit_altname": {
3399
+ "kms": "local",
3400
+ "type": "timestamp",
3401
+ "algo": "det",
3402
+ "method": "explicit",
3403
+ "identifier": "altname",
3404
+ "allowed": true,
3405
+ "value": {
3406
+ "$binary": {
3407
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAR6uMylGytMq8QDr5Yz3w9HlW2MkGt6yIgUKcXYSaXru8eer+EkLv66/vy5rHqTfV0+8ryoi+d+PWO5U6b3Ng5Gg==",
3408
+ "subType": "06"
3409
+ }
3410
+ }
3411
+ },
3412
+ "local_long_rand_auto_id": {
3413
+ "kms": "local",
3414
+ "type": "long",
3415
+ "algo": "rand",
3416
+ "method": "auto",
3417
+ "identifier": "id",
3418
+ "allowed": true,
3419
+ "value": {
3420
+ "$binary": {
3421
+ "base64": "AizggCwAAAAAAAAAAAAAAAASrinKUOpHIB7MNRmCAPWcP4CjZwfr5JaRT3G/GqY9B/6csj3+N9jmo1fYvM8uHcnmf5hzDDOamaE2FF1jDKkrHw==",
3422
+ "subType": "06"
3423
+ }
3424
+ }
3425
+ },
3426
+ "local_long_rand_auto_altname": {
3427
+ "kms": "local",
3428
+ "type": "long",
3429
+ "algo": "rand",
3430
+ "method": "auto",
3431
+ "identifier": "altname",
3432
+ "allowed": true,
3433
+ "value": {
3434
+ "$binary": {
3435
+ "base64": "AizggCwAAAAAAAAAAAAAAAAShWMPYDkCpTC2XLYyykPJMihASLKn6HHcB2Eh7jFwQb/8D1HCQoPmOHMyXaN4AtIKm1oqEfma6FSnEPENQoledQ==",
3436
+ "subType": "06"
3437
+ }
3438
+ }
3439
+ },
3440
+ "local_long_rand_explicit_id": {
3441
+ "kms": "local",
3442
+ "type": "long",
3443
+ "algo": "rand",
3444
+ "method": "explicit",
3445
+ "identifier": "id",
3446
+ "allowed": true,
3447
+ "value": {
3448
+ "$binary": {
3449
+ "base64": "AizggCwAAAAAAAAAAAAAAAASd2h34ZLib+GiYayrm/FIZ/weg8wF41T0PfF8NCLTJCoT7gIkdpNRz2zkkQgZMR31efNKtsM8Bs4wgZbkrXsXWg==",
3450
+ "subType": "06"
3451
+ }
3452
+ }
3453
+ },
3454
+ "local_long_rand_explicit_altname": {
3455
+ "kms": "local",
3456
+ "type": "long",
3457
+ "algo": "rand",
3458
+ "method": "explicit",
3459
+ "identifier": "altname",
3460
+ "allowed": true,
3461
+ "value": {
3462
+ "$binary": {
3463
+ "base64": "AizggCwAAAAAAAAAAAAAAAASPAvdjz+a3FvXqDSjazaGqwZxrfXlfFB5/VjQFXQB0gpodCEaz1qaLSKfCWBg83ftrYKa/1sa44gU5NBthDfDwQ==",
3464
+ "subType": "06"
3465
+ }
3466
+ }
3467
+ },
3468
+ "local_long_det_auto_id": {
3469
+ "kms": "local",
3470
+ "type": "long",
3471
+ "algo": "det",
3472
+ "method": "auto",
3473
+ "identifier": "id",
3474
+ "allowed": true,
3475
+ "value": {
3476
+ "$binary": {
3477
+ "base64": "ASzggCwAAAAAAAAAAAAAAAASQk372m/hW3WX82/GH+ikPv3QUwK7Hh/RBpAguiNxMdNhkgA/y2gznVNm17t6djyub7+d5zN4P5PLS/EOm2kjtw==",
3478
+ "subType": "06"
3479
+ }
3480
+ }
3481
+ },
3482
+ "local_long_det_explicit_id": {
3483
+ "kms": "local",
3484
+ "type": "long",
3485
+ "algo": "det",
3486
+ "method": "explicit",
3487
+ "identifier": "id",
3488
+ "allowed": true,
3489
+ "value": {
3490
+ "$binary": {
3491
+ "base64": "ASzggCwAAAAAAAAAAAAAAAASQk372m/hW3WX82/GH+ikPv3QUwK7Hh/RBpAguiNxMdNhkgA/y2gznVNm17t6djyub7+d5zN4P5PLS/EOm2kjtw==",
3492
+ "subType": "06"
3493
+ }
3494
+ }
3495
+ },
3496
+ "local_long_det_explicit_altname": {
3497
+ "kms": "local",
3498
+ "type": "long",
3499
+ "algo": "det",
3500
+ "method": "explicit",
3501
+ "identifier": "altname",
3502
+ "allowed": true,
3503
+ "value": {
3504
+ "$binary": {
3505
+ "base64": "ASzggCwAAAAAAAAAAAAAAAASQk372m/hW3WX82/GH+ikPv3QUwK7Hh/RBpAguiNxMdNhkgA/y2gznVNm17t6djyub7+d5zN4P5PLS/EOm2kjtw==",
3506
+ "subType": "06"
3507
+ }
3508
+ }
3509
+ },
3510
+ "local_decimal_rand_auto_id": {
3511
+ "kms": "local",
3512
+ "type": "decimal",
3513
+ "algo": "rand",
3514
+ "method": "auto",
3515
+ "identifier": "id",
3516
+ "allowed": true,
3517
+ "value": {
3518
+ "$binary": {
3519
+ "base64": "AizggCwAAAAAAAAAAAAAAAATLnMMDZhnGSn5F5xHhsJXxiTGXd61Eq6fgppOlxUNVlsZNYyr5tZ3owfTTqRuD9yRg97x65WiHewBBnJJSeirCTAy9zZxWPVlJSiC0gO7rbM=",
3520
+ "subType": "06"
3521
+ }
3522
+ }
3523
+ },
3524
+ "local_decimal_rand_auto_altname": {
3525
+ "kms": "local",
3526
+ "type": "decimal",
3527
+ "algo": "rand",
3528
+ "method": "auto",
3529
+ "identifier": "altname",
3530
+ "allowed": true,
3531
+ "value": {
3532
+ "$binary": {
3533
+ "base64": "AizggCwAAAAAAAAAAAAAAAATenMh7NKQioGjpuEojIrYKFaJhbuGxUgu2yTTbe3TndhgHryhW9GXiUqo8WTpnXqpC5E/z03ZYLWfCbe7qGdL6T7bbrTpaTaWZnnAm3XaCqY=",
3534
+ "subType": "06"
3535
+ }
3536
+ }
3537
+ },
3538
+ "local_decimal_rand_explicit_id": {
3539
+ "kms": "local",
3540
+ "type": "decimal",
3541
+ "algo": "rand",
3542
+ "method": "explicit",
3543
+ "identifier": "id",
3544
+ "allowed": true,
3545
+ "value": {
3546
+ "$binary": {
3547
+ "base64": "AizggCwAAAAAAAAAAAAAAAAT9vqXuKRh+2HxeCMr+pQYdhYNw7xrTdU4dySWz0X6tCK7LZO5AV72utmRJxID7Bqv1ZlXAk00V92oDLyKG9kHeG5+S34QE/aLCPsAWcppfxY=",
3548
+ "subType": "06"
3549
+ }
3550
+ }
3551
+ },
3552
+ "local_decimal_rand_explicit_altname": {
3553
+ "kms": "local",
3554
+ "type": "decimal",
3555
+ "algo": "rand",
3556
+ "method": "explicit",
3557
+ "identifier": "altname",
3558
+ "allowed": true,
3559
+ "value": {
3560
+ "$binary": {
3561
+ "base64": "AizggCwAAAAAAAAAAAAAAAATtqOCFMbOkls3LikQNXlnlkRr5gJns1+5Kvbt7P7texMa/QlXkYSHhtwESyfOcCQ2sw1T0eZ9DDuNaznpdK2KIqZBkVEC9iMoxqIqXF7Nab0=",
3562
+ "subType": "06"
3563
+ }
3564
+ }
3565
+ },
3566
+ "local_decimal_det_explicit_id": {
3567
+ "kms": "local",
3568
+ "type": "decimal",
3569
+ "algo": "det",
3570
+ "method": "explicit",
3571
+ "identifier": "id",
3572
+ "allowed": false,
3573
+ "value": {
3574
+ "$numberDecimal": "1.234"
3575
+ }
3576
+ },
3577
+ "local_decimal_det_explicit_altname": {
3578
+ "kms": "local",
3579
+ "type": "decimal",
3580
+ "algo": "det",
3581
+ "method": "explicit",
3582
+ "identifier": "altname",
3583
+ "allowed": false,
3584
+ "value": {
3585
+ "$numberDecimal": "1.234"
3586
+ }
3587
+ },
3588
+ "local_minKey_rand_explicit_id": {
3589
+ "kms": "local",
3590
+ "type": "minKey",
3591
+ "algo": "rand",
3592
+ "method": "explicit",
3593
+ "identifier": "id",
3594
+ "allowed": false,
3595
+ "value": {
3596
+ "$minKey": 1
3597
+ }
3598
+ },
3599
+ "local_minKey_rand_explicit_altname": {
3600
+ "kms": "local",
3601
+ "type": "minKey",
3602
+ "algo": "rand",
3603
+ "method": "explicit",
3604
+ "identifier": "altname",
3605
+ "allowed": false,
3606
+ "value": {
3607
+ "$minKey": 1
3608
+ }
3609
+ },
3610
+ "local_minKey_det_explicit_id": {
3611
+ "kms": "local",
3612
+ "type": "minKey",
3613
+ "algo": "det",
3614
+ "method": "explicit",
3615
+ "identifier": "id",
3616
+ "allowed": false,
3617
+ "value": {
3618
+ "$minKey": 1
3619
+ }
3620
+ },
3621
+ "local_minKey_det_explicit_altname": {
3622
+ "kms": "local",
3623
+ "type": "minKey",
3624
+ "algo": "det",
3625
+ "method": "explicit",
3626
+ "identifier": "altname",
3627
+ "allowed": false,
3628
+ "value": {
3629
+ "$minKey": 1
3630
+ }
3631
+ },
3632
+ "local_maxKey_rand_explicit_id": {
3633
+ "kms": "local",
3634
+ "type": "maxKey",
3635
+ "algo": "rand",
3636
+ "method": "explicit",
3637
+ "identifier": "id",
3638
+ "allowed": false,
3639
+ "value": {
3640
+ "$maxKey": 1
3641
+ }
3642
+ },
3643
+ "local_maxKey_rand_explicit_altname": {
3644
+ "kms": "local",
3645
+ "type": "maxKey",
3646
+ "algo": "rand",
3647
+ "method": "explicit",
3648
+ "identifier": "altname",
3649
+ "allowed": false,
3650
+ "value": {
3651
+ "$maxKey": 1
3652
+ }
3653
+ },
3654
+ "local_maxKey_det_explicit_id": {
3655
+ "kms": "local",
3656
+ "type": "maxKey",
3657
+ "algo": "det",
3658
+ "method": "explicit",
3659
+ "identifier": "id",
3660
+ "allowed": false,
3661
+ "value": {
3662
+ "$maxKey": 1
3663
+ }
3664
+ },
3665
+ "local_maxKey_det_explicit_altname": {
3666
+ "kms": "local",
3667
+ "type": "maxKey",
3668
+ "algo": "det",
3669
+ "method": "explicit",
3670
+ "identifier": "altname",
3671
+ "allowed": false,
3672
+ "value": {
3673
+ "$maxKey": 1
3674
+ }
3675
+ },
3676
+ "payload=0,algo=rand": {
3677
+ "kms": "local",
3678
+ "type": "string",
3679
+ "algo": "rand",
3680
+ "method": "explicit",
3681
+ "identifier": "id",
3682
+ "allowed": true,
3683
+ "value": {
3684
+ "$binary": {
3685
+ "base64": "AizggCwAAAAAAAAAAAAAAAACcsBdT93ivCyvtkfQz9qb1A9Ll+I6hnGE0kFy3rmVG6xAvipmRJSoVq3iv7iUEDvaqmPXfjeH8h8cPYT86v3XSg==",
3686
+ "subType": "06"
3687
+ }
3688
+ }
3689
+ },
3690
+ "payload=1,algo=rand": {
3691
+ "kms": "local",
3692
+ "type": "string",
3693
+ "algo": "rand",
3694
+ "method": "explicit",
3695
+ "identifier": "id",
3696
+ "allowed": true,
3697
+ "value": {
3698
+ "$binary": {
3699
+ "base64": "AizggCwAAAAAAAAAAAAAAAACQOzpNBEGSrANr3Wl8uYpqeIc7pjc8e2LS2FaSrb8tM9F3mR1FqGgfJtn3eD+HZf3Y3WEDGK8975a/1BufkMqIQ==",
3700
+ "subType": "06"
3701
+ }
3702
+ }
3703
+ },
3704
+ "payload=2,algo=rand": {
3705
+ "kms": "local",
3706
+ "type": "string",
3707
+ "algo": "rand",
3708
+ "method": "explicit",
3709
+ "identifier": "id",
3710
+ "allowed": true,
3711
+ "value": {
3712
+ "$binary": {
3713
+ "base64": "AizggCwAAAAAAAAAAAAAAAACyGJEcuN1pG5oSEyxuKFwqddGHVU5Untbib7LkmtoJe9HngTofkOpeHZH/hV6Z3CFxLu6WFliJoySsFFbnFy9ag==",
3714
+ "subType": "06"
3715
+ }
3716
+ }
3717
+ },
3718
+ "payload=3,algo=rand": {
3719
+ "kms": "local",
3720
+ "type": "string",
3721
+ "algo": "rand",
3722
+ "method": "explicit",
3723
+ "identifier": "id",
3724
+ "allowed": true,
3725
+ "value": {
3726
+ "$binary": {
3727
+ "base64": "AizggCwAAAAAAAAAAAAAAAACLbp4w6mx45lR1vvgmeRja/y8U+WnR2oH4IpfrDi4lKM+JPVnJweiN3/1wAy+sXSy0S1Yh9yxmhh9ISoTkAuVxw==",
3728
+ "subType": "06"
3729
+ }
3730
+ }
3731
+ },
3732
+ "payload=4,algo=rand": {
3733
+ "kms": "local",
3734
+ "type": "string",
3735
+ "algo": "rand",
3736
+ "method": "explicit",
3737
+ "identifier": "id",
3738
+ "allowed": true,
3739
+ "value": {
3740
+ "$binary": {
3741
+ "base64": "AizggCwAAAAAAAAAAAAAAAACG0qMY/GPZ/2CR61cxbuizywefyMZVdeTCn5KFjqwejgxeBwX0JmGNHKKWbQIDQykRFv0q0WHUgsRmRhaotNCyQ==",
3742
+ "subType": "06"
3743
+ }
3744
+ }
3745
+ },
3746
+ "payload=5,algo=rand": {
3747
+ "kms": "local",
3748
+ "type": "string",
3749
+ "algo": "rand",
3750
+ "method": "explicit",
3751
+ "identifier": "id",
3752
+ "allowed": true,
3753
+ "value": {
3754
+ "$binary": {
3755
+ "base64": "AizggCwAAAAAAAAAAAAAAAACJI1onNpQfZhaYWrPEzHvNaJRqUDZK2xoyonB5E473BPgp3zvn0Jmz1deL8GzS+HlkjCrx39OvHyVt3+3S0kYYw==",
3756
+ "subType": "06"
3757
+ }
3758
+ }
3759
+ },
3760
+ "payload=6,algo=rand": {
3761
+ "kms": "local",
3762
+ "type": "string",
3763
+ "algo": "rand",
3764
+ "method": "explicit",
3765
+ "identifier": "id",
3766
+ "allowed": true,
3767
+ "value": {
3768
+ "$binary": {
3769
+ "base64": "AizggCwAAAAAAAAAAAAAAAAClyKY9tZBjl7SewSXr3MdoWRDUNgLaXDUjENpjyYvi/54EQ9a+J/LAAh1892i+mLpYxEUAmcftPyfX3VhbCgUQw==",
3770
+ "subType": "06"
3771
+ }
3772
+ }
3773
+ },
3774
+ "payload=7,algo=rand": {
3775
+ "kms": "local",
3776
+ "type": "string",
3777
+ "algo": "rand",
3778
+ "method": "explicit",
3779
+ "identifier": "id",
3780
+ "allowed": true,
3781
+ "value": {
3782
+ "$binary": {
3783
+ "base64": "AizggCwAAAAAAAAAAAAAAAACAMbEA+kNvnVV7B//ds2/QoVot061kbazoMwB/psB5eFdLVB5qApAXEWgQEMwkNnsTUYbtSduQz6uGwdagtNBRw==",
3784
+ "subType": "06"
3785
+ }
3786
+ }
3787
+ },
3788
+ "payload=8,algo=rand": {
3789
+ "kms": "local",
3790
+ "type": "string",
3791
+ "algo": "rand",
3792
+ "method": "explicit",
3793
+ "identifier": "id",
3794
+ "allowed": true,
3795
+ "value": {
3796
+ "$binary": {
3797
+ "base64": "AizggCwAAAAAAAAAAAAAAAACzdSK/d7Ni6D8qUgNopnEU5ia1K5llhBGk3O1Tf71t4ThnQjYW9eI/rIohWmev5CGWLHhwuvvKUtFcTAe+NMQww==",
3798
+ "subType": "06"
3799
+ }
3800
+ }
3801
+ },
3802
+ "payload=9,algo=rand": {
3803
+ "kms": "local",
3804
+ "type": "string",
3805
+ "algo": "rand",
3806
+ "method": "explicit",
3807
+ "identifier": "id",
3808
+ "allowed": true,
3809
+ "value": {
3810
+ "$binary": {
3811
+ "base64": "AizggCwAAAAAAAAAAAAAAAACzQcEa+ktF2EZf35TtyatnSGGaIVvFhZNuo5P3VwQvoONJrK2cSad7PBDAv3xDAB+VPZAigXAGQvd051sHooOHg==",
3812
+ "subType": "06"
3813
+ }
3814
+ }
3815
+ },
3816
+ "payload=10,algo=rand": {
3817
+ "kms": "local",
3818
+ "type": "string",
3819
+ "algo": "rand",
3820
+ "method": "explicit",
3821
+ "identifier": "id",
3822
+ "allowed": true,
3823
+ "value": {
3824
+ "$binary": {
3825
+ "base64": "AizggCwAAAAAAAAAAAAAAAACpfoDmApsR5xOD3TDhcHeD7Jco3kPFuuWjDpHtMepMOJ3S0c+ngGGhzPGZtEz2xuD/E7AQn1ryp/WAQ+WwkaJkQ==",
3826
+ "subType": "06"
3827
+ }
3828
+ }
3829
+ },
3830
+ "payload=11,algo=rand": {
3831
+ "kms": "local",
3832
+ "type": "string",
3833
+ "algo": "rand",
3834
+ "method": "explicit",
3835
+ "identifier": "id",
3836
+ "allowed": true,
3837
+ "value": {
3838
+ "$binary": {
3839
+ "base64": "AizggCwAAAAAAAAAAAAAAAACICMRXmx3oKqYv0IpmzkSMBIGT4Li3MPBF4Lw1s5F69WvZApD58glIKB6b7koIrF5qc2Wrb1/Nw+stRv0zvQ8Y9CcFV4OHm6WoEw+XDlWXJ4=",
3840
+ "subType": "06"
3841
+ }
3842
+ }
3843
+ },
3844
+ "payload=12,algo=rand": {
3845
+ "kms": "local",
3846
+ "type": "string",
3847
+ "algo": "rand",
3848
+ "method": "explicit",
3849
+ "identifier": "id",
3850
+ "allowed": true,
3851
+ "value": {
3852
+ "$binary": {
3853
+ "base64": "AizggCwAAAAAAAAAAAAAAAACTArUn0WUTojQC4fSvq3TwJVTsZNhWAK2WB057u2EnkUzMC0xsbU6611W6Okx6idZ7pMudXpBC34fRDrJPXOu3BxK+ZLCOWS2FqsvWq3HeTY=",
3854
+ "subType": "06"
3855
+ }
3856
+ }
3857
+ },
3858
+ "payload=13,algo=rand": {
3859
+ "kms": "local",
3860
+ "type": "string",
3861
+ "algo": "rand",
3862
+ "method": "explicit",
3863
+ "identifier": "id",
3864
+ "allowed": true,
3865
+ "value": {
3866
+ "$binary": {
3867
+ "base64": "AizggCwAAAAAAAAAAAAAAAACU1Ojn7EM2i+5KK2Beh1gPLhryK3Y7PtaZ/v4JvstxuAV4OHOR9yROP7pwenHXxczkWXvcyMY9OCdmHO8pkQkXO21798IPkDDN/ejJUFI0Uw=",
3868
+ "subType": "06"
3869
+ }
3870
+ }
3871
+ },
3872
+ "payload=14,algo=rand": {
3873
+ "kms": "local",
3874
+ "type": "string",
3875
+ "algo": "rand",
3876
+ "method": "explicit",
3877
+ "identifier": "id",
3878
+ "allowed": true,
3879
+ "value": {
3880
+ "$binary": {
3881
+ "base64": "AizggCwAAAAAAAAAAAAAAAAC0ZLwSliCbcr/e1uiYWk6gRuD/5qiyulQ7IUNWjhpBR6SLUfX2+yExLzps9hoOp53j9zRSKIzyleZ8yGLTLeN+Lz9BUe2ZT+sV8NiqZz3pkA=",
3882
+ "subType": "06"
3883
+ }
3884
+ }
3885
+ },
3886
+ "payload=15,algo=rand": {
3887
+ "kms": "local",
3888
+ "type": "string",
3889
+ "algo": "rand",
3890
+ "method": "explicit",
3891
+ "identifier": "id",
3892
+ "allowed": true,
3893
+ "value": {
3894
+ "$binary": {
3895
+ "base64": "AizggCwAAAAAAAAAAAAAAAACQ9pmlQeFDr+jEhFwjL/eGVxdv70JdnkLaKdJ3/jkvCX1VPU5HmQIi+JWY3Rrw844E/6sBR6zIODn5aM0WfyP8a2zKRAWaVQZ7n+QE9hDN/8=",
3896
+ "subType": "06"
3897
+ }
3898
+ }
3899
+ },
3900
+ "payload=16,algo=rand": {
3901
+ "kms": "local",
3902
+ "type": "string",
3903
+ "algo": "rand",
3904
+ "method": "explicit",
3905
+ "identifier": "id",
3906
+ "allowed": true,
3907
+ "value": {
3908
+ "$binary": {
3909
+ "base64": "AizggCwAAAAAAAAAAAAAAAACiOcItInDGHqvkH0I3udp5nnX32XzDeqya/3KDjgZPT5GHek1vFTZ4924JVxFqFQz+No9rOVmyxm8O2fxjTK2vsjtADzKGnMTtFYZqghYCuc=",
3910
+ "subType": "06"
3911
+ }
3912
+ }
3913
+ },
3914
+ "payload=0,algo=det": {
3915
+ "kms": "local",
3916
+ "type": "string",
3917
+ "algo": "det",
3918
+ "method": "explicit",
3919
+ "identifier": "id",
3920
+ "allowed": true,
3921
+ "value": {
3922
+ "$binary": {
3923
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACijFptWQy7a1Y0rpXEvamXWI9v9dnx0Qj84/mKUsVpc3agkQ0B04uPYeROdt2MeEeiZoEKVWV0NjBocAQCEz7dw==",
3924
+ "subType": "06"
3925
+ }
3926
+ }
3927
+ },
3928
+ "payload=1,algo=det": {
3929
+ "kms": "local",
3930
+ "type": "string",
3931
+ "algo": "det",
3932
+ "method": "explicit",
3933
+ "identifier": "id",
3934
+ "allowed": true,
3935
+ "value": {
3936
+ "$binary": {
3937
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAChR90taVWsZk+++sgibX6CnFeQQHNoB8V+n2gmDe3CIT/t+WvhMf9D+mQipbAlrUyHgGihKMHcvAZ5RZ/spaH4Q==",
3938
+ "subType": "06"
3939
+ }
3940
+ }
3941
+ },
3942
+ "payload=2,algo=det": {
3943
+ "kms": "local",
3944
+ "type": "string",
3945
+ "algo": "det",
3946
+ "method": "explicit",
3947
+ "identifier": "id",
3948
+ "allowed": true,
3949
+ "value": {
3950
+ "$binary": {
3951
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAC67wemDv1Xdu7+EMR9LMBTOxfyAqsGaxQibwamZItzplslL/Dp3t9g9vPuNzq0dWwhnfxQ9GBe8OA3dtRaifYCA==",
3952
+ "subType": "06"
3953
+ }
3954
+ }
3955
+ },
3956
+ "payload=3,algo=det": {
3957
+ "kms": "local",
3958
+ "type": "string",
3959
+ "algo": "det",
3960
+ "method": "explicit",
3961
+ "identifier": "id",
3962
+ "allowed": true,
3963
+ "value": {
3964
+ "$binary": {
3965
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACVLxch+uC7weXrbtylCo1m4HYZmh0sd9JCrlTECO2M56JK1X9a30i2BDUdhPuoTvvODv74CGXkZKdist3o0mGAQ==",
3966
+ "subType": "06"
3967
+ }
3968
+ }
3969
+ },
3970
+ "payload=4,algo=det": {
3971
+ "kms": "local",
3972
+ "type": "string",
3973
+ "algo": "det",
3974
+ "method": "explicit",
3975
+ "identifier": "id",
3976
+ "allowed": true,
3977
+ "value": {
3978
+ "$binary": {
3979
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACexfIZGkOYaCGktOUc6cgAYg7Bd/C5ZYmdb7b8+rd5BKWbthW6N6CxhDIyh/DHvkPAeIzfTYA2/9w6tsjfD/TPQ==",
3980
+ "subType": "06"
3981
+ }
3982
+ }
3983
+ },
3984
+ "payload=5,algo=det": {
3985
+ "kms": "local",
3986
+ "type": "string",
3987
+ "algo": "det",
3988
+ "method": "explicit",
3989
+ "identifier": "id",
3990
+ "allowed": true,
3991
+ "value": {
3992
+ "$binary": {
3993
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACjUH/dPW4egOvFMJJnpWK8v27MeLkbXC4GFl1j+wPqTsIEeIWkzEmcXjHLTQGE2GplHHc/zxwRwD2dXdbzvsCDw==",
3994
+ "subType": "06"
3995
+ }
3996
+ }
3997
+ },
3998
+ "payload=6,algo=det": {
3999
+ "kms": "local",
4000
+ "type": "string",
4001
+ "algo": "det",
4002
+ "method": "explicit",
4003
+ "identifier": "id",
4004
+ "allowed": true,
4005
+ "value": {
4006
+ "$binary": {
4007
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACzvS+QkGlvb05pNn+vBMml09yKmE8yM6lwccNIST5uZSsUxXf2hrxPtO7Ylc4lmBAJt/9bcM59JIeT9fpYMc75w==",
4008
+ "subType": "06"
4009
+ }
4010
+ }
4011
+ },
4012
+ "payload=7,algo=det": {
4013
+ "kms": "local",
4014
+ "type": "string",
4015
+ "algo": "det",
4016
+ "method": "explicit",
4017
+ "identifier": "id",
4018
+ "allowed": true,
4019
+ "value": {
4020
+ "$binary": {
4021
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACSf2RxHJpRuh4j8nS1dfonUtsJEwgqfWrwOsfuT/tAGXgDN0ObUpzL2K7G2vmePjP4dwycCSIL3+2j34bqBJK1Q==",
4022
+ "subType": "06"
4023
+ }
4024
+ }
4025
+ },
4026
+ "payload=8,algo=det": {
4027
+ "kms": "local",
4028
+ "type": "string",
4029
+ "algo": "det",
4030
+ "method": "explicit",
4031
+ "identifier": "id",
4032
+ "allowed": true,
4033
+ "value": {
4034
+ "$binary": {
4035
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACu96YYeLXXoYdEZYNU9UAZjSd6G4fOE1edrA6/RjZKVGWKxftmvj5g1VAOiom0XuTZUe1ihbnwhvKexeoa3Vc8Q==",
4036
+ "subType": "06"
4037
+ }
4038
+ }
4039
+ },
4040
+ "payload=9,algo=det": {
4041
+ "kms": "local",
4042
+ "type": "string",
4043
+ "algo": "det",
4044
+ "method": "explicit",
4045
+ "identifier": "id",
4046
+ "allowed": true,
4047
+ "value": {
4048
+ "$binary": {
4049
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACX+UjBKo9+N0Z+mbyqZqkQv2ETMSn6aPTONWgJtw5nWklcxKjUSSLI+8LW/6M6Xf9a7177GsqmV2f/yCRF58Xtw==",
4050
+ "subType": "06"
4051
+ }
4052
+ }
4053
+ },
4054
+ "payload=10,algo=det": {
4055
+ "kms": "local",
4056
+ "type": "string",
4057
+ "algo": "det",
4058
+ "method": "explicit",
4059
+ "identifier": "id",
4060
+ "allowed": true,
4061
+ "value": {
4062
+ "$binary": {
4063
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACL6TVscFzIJ9+Zj6LsCZ9xhaZuTZdvz1nJe4l69nKyj9hCjnyuiV6Ve4AXwQ5W1wiPfkJ0fCZS33NwiHw7QQ/vg==",
4064
+ "subType": "06"
4065
+ }
4066
+ }
4067
+ },
4068
+ "payload=11,algo=det": {
4069
+ "kms": "local",
4070
+ "type": "string",
4071
+ "algo": "det",
4072
+ "method": "explicit",
4073
+ "identifier": "id",
4074
+ "allowed": true,
4075
+ "value": {
4076
+ "$binary": {
4077
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACPLq7IcWhTVwkKmy0flN7opoQzx7tTe1eD9JIc25FC9B6KGQkdcRDglDDR7/m6+kBtTnq88y63vBgomTxA8ZxQE+3pB7zCiBhX0QznuXvP44=",
4078
+ "subType": "06"
4079
+ }
4080
+ }
4081
+ },
4082
+ "payload=12,algo=det": {
4083
+ "kms": "local",
4084
+ "type": "string",
4085
+ "algo": "det",
4086
+ "method": "explicit",
4087
+ "identifier": "id",
4088
+ "allowed": true,
4089
+ "value": {
4090
+ "$binary": {
4091
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACxv7v4pKtom5z1g9FUuyjEWAbdzJ3ytPNZlOfVr6KZnUPhIH7PfCz3/lTdYYWBTj01+SUZiC/7ruof9QDhsSiNWP7nUyHpQ/C3joI/BBjtDA=",
4092
+ "subType": "06"
4093
+ }
4094
+ }
4095
+ },
4096
+ "payload=13,algo=det": {
4097
+ "kms": "local",
4098
+ "type": "string",
4099
+ "algo": "det",
4100
+ "method": "explicit",
4101
+ "identifier": "id",
4102
+ "allowed": true,
4103
+ "value": {
4104
+ "$binary": {
4105
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACZhiElQ/MvyVMwMkZPu8pT54Ap6TlpVSEbE4nIQzzeU3XKVuspMdI5IXvvgfULXKXc+AOu6oQXZ+wAJ1tErVOsb48HF1g0wbXbBA31C5qLEM=",
4106
+ "subType": "06"
4107
+ }
4108
+ }
4109
+ },
4110
+ "payload=14,algo=det": {
4111
+ "kms": "local",
4112
+ "type": "string",
4113
+ "algo": "det",
4114
+ "method": "explicit",
4115
+ "identifier": "id",
4116
+ "allowed": true,
4117
+ "value": {
4118
+ "$binary": {
4119
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACdp8mDOeDuDLhE0LzTOT2p0CMaUsAQrGCzmiK6Ab9xvaIcPPcejUcpdO3XXAS/pPab4+TUwO5GbI5pDJ29zwaOiOz2H3OJ2m2p5BHQp9mCys=",
4120
+ "subType": "06"
4121
+ }
4122
+ }
4123
+ },
4124
+ "payload=15,algo=det": {
4125
+ "kms": "local",
4126
+ "type": "string",
4127
+ "algo": "det",
4128
+ "method": "explicit",
4129
+ "identifier": "id",
4130
+ "allowed": true,
4131
+ "value": {
4132
+ "$binary": {
4133
+ "base64": "ASzggCwAAAAAAAAAAAAAAAACmtLohoP/gotuon2IvnGeLEfCWHRMhG9Wp4tPu/vbJJkJkbQTP35HRG9VrMV7KKrEQbOsJ2Y6UDBra4tyjn0fIkwwc/0X9i+xaP+TrwpNabE=",
4134
+ "subType": "06"
4135
+ }
4136
+ }
4137
+ },
4138
+ "payload=16,algo=det": {
4139
+ "kms": "local",
4140
+ "type": "string",
4141
+ "algo": "det",
4142
+ "method": "explicit",
4143
+ "identifier": "id",
4144
+ "allowed": true,
4145
+ "value": {
4146
+ "$binary": {
4147
+ "base64": "ASzggCwAAAAAAAAAAAAAAAAC6s9eUtSneKWj3/A7S+bPZLj3t1WtUh7ltW80b8jCRzA+kOI26j1MEb1tt68HgcnH1IJ3YQ/+UHlV95OgwSnIxlib/HJn3U0s8mpuCWe1Auo=",
4148
+ "subType": "06"
4149
+ }
4150
+ }
4151
+ }
4152
+ }