auth0 5.3.0 → 5.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -0
  3. data/.shiprc +7 -0
  4. data/CHANGELOG.md +109 -31
  5. data/Gemfile +1 -0
  6. data/README.md +10 -8
  7. data/auth0.gemspec +2 -1
  8. data/lib/auth0/api/authentication_endpoints.rb +40 -16
  9. data/lib/auth0/api/v2/actions.rb +210 -0
  10. data/lib/auth0/api/v2/branding.rb +0 -1
  11. data/lib/auth0/api/v2/grants.rb +49 -0
  12. data/lib/auth0/api/v2.rb +4 -0
  13. data/lib/auth0/exception.rb +12 -0
  14. data/lib/auth0/mixins/api_token_struct.rb +0 -1
  15. data/lib/auth0/mixins/httpproxy.rb +77 -34
  16. data/lib/auth0/mixins/initializer.rb +2 -3
  17. data/lib/auth0/mixins/token_management.rb +32 -0
  18. data/lib/auth0/mixins/validation.rb +1 -1
  19. data/lib/auth0/mixins.rb +2 -0
  20. data/lib/auth0/version.rb +1 -1
  21. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_change_password/should_trigger_a_password_reset.yml +53 -23
  22. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_email.yml +49 -18
  23. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_incorrect_password.yml +49 -18
  24. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_fail_with_an_invalid_audience.yml +46 -15
  25. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_custom_audience.yml +49 -79
  26. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_login_with_resource_owner/should_login_successfully_with_a_default_scope.yml +49 -80
  27. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_saml_metadata/should_retrieve_SAML_metadata.yml +74 -21
  28. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_fail_as_not_authorized.yml +53 -14
  29. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_userinfo/should_return_the_userinfo.yml +106 -48
  30. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/_wsfed_metadata/should_retrieve_WSFED_metadata.yml +62 -19
  31. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/create_test_user.yml +57 -22
  32. data/spec/fixtures/vcr_cassettes/Auth0_Api_AuthenticationEndpoints/delete_test_user.yml +38 -20
  33. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_add_token_to_blacklist/should_add_a_token_to_the_blacklist.yml +37 -19
  34. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Blacklists/_blacklisted_tokens/should_get_the_added_token_from_the_blacklist.yml +38 -23
  35. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_at_least_1_result.yml +42 -26
  36. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_the_test_client_grant.yml +42 -26
  37. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_delete_client_grant/should_delete_the_test_client_grant.yml +38 -20
  38. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_patch_client_grant/should_update_the_test_client_grant.yml +39 -27
  39. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client.yml +44 -82
  40. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/create_test_client_grant.yml +39 -27
  41. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client.yml +38 -20
  42. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/delete_test_client_grant.yml +38 -20
  43. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_exclude_and_include_fields_properly.yml +43 -56
  44. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/_filters/should_include_the_specified_fields.yml +39 -28
  45. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_client/should_get_the_test_client.yml +43 -57
  46. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_fields_not_specified.yml +43 -24
  47. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_exclude_the_specified_fields.yml +236 -96
  48. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_include_the_specified_fields.yml +52 -27
  49. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/_filters/should_paginate_results.yml +39 -25
  50. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_clients/should_get_at_least_one_client.yml +235 -96
  51. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_delete_client/should_delete_the_test_client_without_an_error.yml +38 -20
  52. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/_patch_client/should_update_the_client_with_the_correct_attributes.yml +43 -57
  53. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Clients/create_test_client.yml +45 -82
  54. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_exclude_the_fields_indicated.yml +15 -16
  55. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/_filters/should_include_the_fields_indicated.yml +15 -16
  56. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connection/should_find_the_correct_connection.yml +15 -16
  57. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_include_previously-created_connection_when_filtered.yml +14 -15
  58. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_exclude_the_fields_indicated_from_filtered_results.yml +14 -15
  59. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/_filters/should_should_include_the_fields_indicated_from_filtered_results.yml +14 -15
  60. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_include_the_previously_created_connection.yml +15 -15
  61. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_connections/should_not_be_empty.yml +15 -15
  62. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection/should_delete_the_connection.yml +15 -16
  63. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_delete_connection_user/should_delete_the_user_created.yml +29 -27
  64. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/_update_connection/should_update_the_connection.yml +15 -16
  65. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_connection.yml +16 -17
  66. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Connections/create_test_user.yml +40 -32
  67. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_credential.yml +40 -30
  68. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/create_test_user.yml +40 -32
  69. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/delete_test_user.yml +38 -20
  70. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_configure_provider/should_configure_a_new_email_provider.yml +37 -28
  71. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_delete_the_existing_email_provider_without_an_error.yml +37 -19
  72. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_delete_provider/should_throw_an_error_trying_to_get_the_email_provider.yml +34 -16
  73. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_with_specific_fields.yml +36 -27
  74. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/_filters/should_get_the_existing_email_provider_without_specific_fields.yml +36 -28
  75. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_get_provider/should_get_the_existing_email_provider.yml +36 -28
  76. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/_update_provider/should_update_the_existing_email_provider.yml +36 -28
  77. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Emails/delete_existing_provider.yml +37 -19
  78. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_create_an_export_users_job_successfully.yml +38 -23
  79. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_export_users_and_get_job/should_get_the_export_users_job.yml +76 -46
  80. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_create_an_import_users_job_successfully.yml +46 -25
  81. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_import_users_and_get_job/should_get_the_import_users_job.yml +84 -48
  82. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_create_a_new_verification_email_job.yml +77 -47
  83. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_get_the_completed_verification_email.yml +116 -71
  84. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/_send_verification_email_and_get_job/should_reject_an_invalid_client_id.yml +76 -39
  85. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/delete_imported_user.yml +76 -43
  86. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Jobs/search_for_connection_id.yml +43 -23
  87. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_match_the_created_log_entry.yml +224 -196
  88. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_log/should_not_be_empty.yml +224 -196
  89. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_fields_not_specified.yml +38 -25
  90. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_exclude_the_specified_fields.yml +39 -39
  91. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_have_one_log_entry.yml +41 -40
  92. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_filters/should_include_the_specified_fields.yml +38 -26
  93. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/_logs/_from/should_take_one_log_entry.yml +229 -189
  94. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/create_test_user.yml +40 -32
  95. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_disabled_rule.yml +38 -20
  96. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_enabled_rule.yml +38 -20
  97. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Logs/delete_test_user.yml +38 -20
  98. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_delete_resource_server/should_delete_the_test_server_without_an_error.yml +38 -20
  99. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_patch_resource_server/should_update_the_resource_server_with_the_correct_attributes.yml +39 -24
  100. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_server/should_get_the_test_server.yml +39 -24
  101. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_get_the_test_server.yml +146 -23
  102. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_at_least_1_result.yml +146 -23
  103. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/_resource_servers/should_return_the_first_page_of_one_result.yml +131 -24
  104. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/create_test_server.yml +40 -25
  105. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ResourceServers/delete_test_server.yml +38 -20
  106. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_permissions/should_add_a_Permission_to_the_Role_successfully.yml +39 -32
  107. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_add_role_users/should_add_a_User_to_the_Role_successfully.yml +38 -31
  108. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_delete_role/should_delete_the_Role_successfully.yml +42 -30
  109. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role/should_get_the_Role_successfully.yml +38 -30
  110. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_exactly_1_Permission.yml +37 -30
  111. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_permissions/should_get_the_added_Permission_from_the_Role_successfully.yml +37 -30
  112. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_exactly_1_User.yml +37 -30
  113. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_role_users/should_get_the_added_User_from_the_Role_successfully.yml +37 -30
  114. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_get_roles/should_get_the_Role_successfully.yml +37 -29
  115. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_remove_role_permissions/should_remove_a_Permission_from_the_Role_successfully.yml +39 -29
  116. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/_update_role/should_update_the_Role_successfully.yml +37 -30
  117. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_api.yml +38 -31
  118. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_role.yml +39 -31
  119. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/create_test_user.yml +38 -31
  120. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_api.yml +36 -26
  121. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Roles/delete_test_user.yml +36 -26
  122. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_disabled_rule_without_an_error.yml +38 -20
  123. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_delete_rule/should_delete_the_test_enabled_rule_without_an_error.yml +38 -20
  124. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_fields_not_specified.yml +40 -27
  125. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_exclude_the_specified_fields.yml +40 -27
  126. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/_filters/should_include_the_specified_fields.yml +39 -26
  127. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rule/should_get_a_specific_rule.yml +40 -27
  128. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_exclude_fields_not_specified.yml +80 -24
  129. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_include_the_specified_fields.yml +82 -25
  130. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_disabled_rule.yml +59 -27
  131. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_at_least_1_enabled_rule.yml +68 -26
  132. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/_filters/should_return_paginated_results.yml +78 -49
  133. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_rules/should_return_at_least_1_rule.yml +84 -28
  134. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/_update_rule/should_update_the_disabled_rule_to_be_enabled.yml +40 -27
  135. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_disabled_rule.yml +42 -29
  136. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Rules/create_test_enabled_rule.yml +42 -29
  137. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_active_users/should_have_at_least_one_active_user.yml +38 -23
  138. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Stats/_daily_stats/should_have_at_least_one_stats_entry_for_the_timeframe.yml +38 -27
  139. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings/should_get_the_tenant_settings.yml +72 -59
  140. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_exclude_a_field_not_requested.yml +38 -25
  141. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_get_tenant_settings_with_specific_fields/should_include_the_field_requested.yml +38 -25
  142. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_revert_the_tenant_name.yml +72 -58
  143. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tenants/_update_tenant_settings/should_update_the_tenant_settings_with_a_new_tenant_name.yml +72 -58
  144. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_email_verification/should_create_an_email_verification_ticket.yml +39 -26
  145. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/_post_password_change/should_create_a_password_change_ticket.yml +39 -26
  146. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/create_test_user.yml +40 -32
  147. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Tickets/delete_test_user.yml +38 -20
  148. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_permissions/should_add_a_Permissions_for_a_User_successfully.yml +39 -35
  149. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_add_user_roles/should_add_a_Role_to_a_User_successfully.yml +37 -25
  150. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_User_successfully.yml +36 -24
  151. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user/should_delete_the_secondary_User_successfully.yml +36 -24
  152. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_delete_user_provider/should_attempt_to_delete_the_MFA_provider_for_the_User.yml +36 -24
  153. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_enrollments/should_get_Enrollments_for_a_User_successfully.yml +37 -28
  154. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_exactly_1_Permission_for_a_User_successfully.yml +37 -28
  155. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_permissions/should_get_the_correct_Permission_for_a_User_successfully.yml +37 -28
  156. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_get_user_roles/should_get_Roles_for_a_User_successfully.yml +38 -28
  157. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_invalidate_browsers/should_invalidate_MFA_browsers_for_the_User_successfully.yml +36 -24
  158. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_link_user_account/should_link_two_Users_successfully.yml +38 -29
  159. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_patch_user/should_patch_the_User_successfully.yml +38 -28
  160. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_permissions/should_remove_a_Permission_from_a_User_successfully.yml +39 -27
  161. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_remove_user_roles/should_remove_a_Role_from_a_User_successfully.yml +39 -27
  162. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_unlink_user_account/should_unlink_two_Users_successfully.yml +37 -28
  163. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_fields_not_indicated.yml +37 -28
  164. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_exclude_the_fields_indicated.yml +37 -28
  165. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/_filters/should_include_the_fields_indicated.yml +37 -28
  166. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user/should_retrieve_the_created_user.yml +37 -28
  167. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_user_logs/should_get_Logs_for_a_User_successfully.yml +42 -30
  168. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v2_search_engine_query.yml +36 -27
  169. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/is_expected_to_find_a_user_with_a_v3_search_engine_query.yml +36 -27
  170. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_exclude_the_indicated_fields_when_paginated.yml +36 -27
  171. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_include_the_indicated_fields_when_paginated.yml +36 -27
  172. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_not_include_other_fields_when_paginated.yml +36 -27
  173. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/_filters/should_return_the_correct_number_of_results_when_paginated.yml +36 -27
  174. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/_users/should_have_at_least_one_user.yml +37 -27
  175. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_secondary_test_user.yml +38 -29
  176. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_api.yml +38 -29
  177. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_role.yml +39 -29
  178. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/create_test_user.yml +38 -29
  179. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_api.yml +36 -24
  180. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Users/delete_test_role.yml +42 -28
  181. data/spec/integration/lib/auth0/api/v2/api_client_grants_spec.rb +0 -9
  182. data/spec/integration/lib/auth0/api/v2/api_connections_spec.rb +3 -3
  183. data/spec/integration/lib/auth0/api/v2/api_email_spec.rb +0 -31
  184. data/spec/integration/lib/auth0/api/v2/api_jobs_spec.rb +4 -4
  185. data/spec/integration/lib/auth0/api/v2/api_logs_spec.rb +5 -5
  186. data/spec/integration/lib/auth0/api/v2/api_roles_spec.rb +3 -3
  187. data/spec/integration/lib/auth0/api/v2/api_tickets_spec.rb +4 -4
  188. data/spec/integration/lib/auth0/api/v2/api_user_blocks_spec.rb +8 -5
  189. data/spec/integration/lib/auth0/api/v2/api_users_spec.rb +6 -33
  190. data/spec/lib/auth0/api/v2/actions_spec.rb +312 -0
  191. data/spec/lib/auth0/api/v2/grants_spec.rb +91 -0
  192. data/spec/lib/auth0/client_spec.rb +3 -3
  193. data/spec/lib/auth0/mixins/httpproxy_spec.rb +320 -25
  194. data/spec/lib/auth0/mixins/initializer_spec.rb +87 -0
  195. data/spec/lib/auth0/mixins/token_management_spec.rb +125 -0
  196. data/spec/spec_helper.rb +1 -1
  197. data/spec/support/dummy_class_for_proxy.rb +2 -2
  198. data/spec/support/dummy_class_for_tokens.rb +17 -0
  199. metadata +31 -30
  200. data/.yardoc/checksums +0 -22
  201. data/.yardoc/complete +0 -0
  202. data/.yardoc/object_types +0 -0
  203. data/.yardoc/objects/root.dat +0 -0
  204. data/.yardoc/proxy_types +0 -0
  205. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Anomaly/_check_if_ip_is_blocked/should_return_200_response_code.yml +0 -65
  206. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_Anomaly/_remove_ip_block/should_remove_an_IP_successfully.yml +0 -60
  207. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_ClientGrants/_client_grants/should_return_the_first_page_of_one_result.yml +0 -66
  208. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/_delete_device_credential/should_delete_the_test_credential_without_an_error.yml +0 -54
  209. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/_device_credentials/_filter_by_type/should_exclude_the_test_credential.yml +0 -59
  210. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/_device_credentials/should_have_at_least_1_entry.yml +0 -62
  211. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/_device_credentials/should_include_the_test_credential.yml +0 -62
  212. data/spec/fixtures/vcr_cassettes/Auth0_Api_V2_DeviceCredentials/delete_test_credential.yml +0 -54
  213. data/spec/integration/lib/auth0/api/v2/api_anomaly_spec.rb +0 -17
  214. data/spec/integration/lib/auth0/api/v2/api_device_credentials_spec.rb +0 -128
@@ -5,22 +5,22 @@ http_interactions:
5
5
  uri: https://auth0-sdk-tests.auth0.com/dbconnections/signup
6
6
  body:
7
7
  encoding: UTF-8
8
- string: '{"email":"rubytest-username-1@auth0.com","password":"23kejn2jk3en2jke2jk3be2jk3ber","connection":"Username-Password-Authentication","client_id":"2cnWuug6zaFX1j0ge1P99jAUn0F4XSuI"}'
8
+ string: '{"email":"rubytest-210908-username-1@auth0.com","password":"23kejn2jk3en2jke2jk3be2jk3ber","connection":"Username-Password-Authentication","client_id":"2cnWuug6zaFX1j0ge1P99jAUn0F4XSuI"}'
9
9
  headers:
10
10
  Accept:
11
11
  - "*/*"
12
- Accept-Encoding:
13
- - gzip, deflate
14
12
  User-Agent:
15
- - Ruby/2.5.1
13
+ - rest-client/2.1.0 (darwin19.6.0 x86_64) ruby/2.7.0p0
16
14
  Content-Type:
17
15
  - application/json
18
16
  Auth0-Client:
19
- - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI0LjUuMCJ9
17
+ - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI1LjUuMCIsImVudiI6eyJydWJ5IjoiMi43LjAifX0=
20
18
  Authorization:
21
19
  - Bearer API_TOKEN
22
20
  Content-Length:
23
- - '179'
21
+ - '186'
22
+ Accept-Encoding:
23
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
24
24
  Host:
25
25
  - auth0-sdk-tests.auth0.com
26
26
  response:
@@ -29,30 +29,65 @@ http_interactions:
29
29
  message: OK
30
30
  headers:
31
31
  Date:
32
- - Wed, 17 Oct 2018 17:39:05 GMT
32
+ - Fri, 03 Sep 2021 20:16:10 GMT
33
33
  Content-Type:
34
34
  - application/json; charset=utf-8
35
- Content-Length:
36
- - '97'
35
+ Transfer-Encoding:
36
+ - chunked
37
37
  Connection:
38
38
  - keep-alive
39
+ Cf-Ray:
40
+ - 6891a7814f260d3c-LAX
41
+ Access-Control-Allow-Origin:
42
+ - "*"
43
+ Cache-Control:
44
+ - private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform
45
+ Etag:
46
+ - W/"68-P6s284boszZ0JEXSXqoN6Xq3XSE"
47
+ Set-Cookie:
48
+ - did=s%3Av0%3Ac78dada0-0cf3-11ec-ba29-7f8a5486a79f.V9rDE%2F5keDd2A0QXZ%2BlumrIzRhDrvAqnQo1qpIog%2B48;
49
+ Max-Age=31557600; Path=/; Expires=Sun, 04 Sep 2022 02:16:10 GMT; HttpOnly;
50
+ Secure; SameSite=None
51
+ - did_compat=s%3Av0%3Ac78dada0-0cf3-11ec-ba29-7f8a5486a79f.V9rDE%2F5keDd2A0QXZ%2BlumrIzRhDrvAqnQo1qpIog%2B48;
52
+ Max-Age=31557600; Path=/; Expires=Sun, 04 Sep 2022 02:16:10 GMT; HttpOnly;
53
+ Secure
54
+ Strict-Transport-Security:
55
+ - max-age=31536000
56
+ Vary:
57
+ - Accept-Encoding, Origin
58
+ Cf-Cache-Status:
59
+ - DYNAMIC
60
+ Access-Control-Allow-Credentials:
61
+ - 'false'
62
+ Access-Control-Expose-Headers:
63
+ - X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset
64
+ Expect-Ct:
65
+ - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
66
+ Ot-Baggage-Auth0-Request-Id:
67
+ - 6891a7814f260d3c
68
+ Ot-Tracer-Sampled:
69
+ - 'true'
70
+ Ot-Tracer-Spanid:
71
+ - 05e2c0e600c6e89a
72
+ Ot-Tracer-Traceid:
73
+ - 3e94592948180616
39
74
  X-Auth0-Requestid:
40
- - 5b2ee9fb798c78fbe32e
75
+ - 7697ff952c7488416624
76
+ X-Content-Type-Options:
77
+ - nosniff
41
78
  X-Ratelimit-Limit:
42
79
  - '50'
43
80
  X-Ratelimit-Remaining:
44
81
  - '49'
45
82
  X-Ratelimit-Reset:
46
- - '1539797947'
47
- Cache-Control:
48
- - private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
49
- Strict-Transport-Security:
50
- - max-age=15724800
51
- X-Robots-Tag:
52
- - noindex, nofollow, nosnippet, noarchive
83
+ - '1630700172'
84
+ Server:
85
+ - cloudflare
86
+ Alt-Svc:
87
+ - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443";
88
+ ma=86400
53
89
  body:
54
- encoding: UTF-8
55
- string: '{"_id":"5bc773b930533f47d4764b9c","email_verified":false,"email":"rubytest-username-1@auth0.com"}'
56
- http_version:
57
- recorded_at: Wed, 17 Oct 2018 17:39:05 GMT
58
- recorded_with: VCR 4.0.0
90
+ encoding: ASCII-8BIT
91
+ string: '{"_id":"6132828a407ec6006935a858","email_verified":false,"email":"rubytest-210908-username-1@auth0.com"}'
92
+ recorded_at: Fri, 03 Sep 2021 20:16:10 GMT
93
+ recorded_with: VCR 6.0.0
@@ -2,23 +2,23 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: delete
5
- uri: https://auth0-sdk-tests.auth0.com/api/v2/users/auth0%7C5bc773b930533f47d4764b9c
5
+ uri: https://auth0-sdk-tests.auth0.com/api/v2/users/auth0%7C6132828a407ec6006935a858
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
11
  - "*/*"
12
- Accept-Encoding:
13
- - gzip, deflate
14
12
  User-Agent:
15
- - Ruby/2.5.1
13
+ - rest-client/2.1.0 (darwin19.6.0 x86_64) ruby/2.7.0p0
16
14
  Content-Type:
17
15
  - application/json
18
16
  Auth0-Client:
19
- - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI0LjUuMCJ9
17
+ - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI1LjUuMCIsImVudiI6eyJydWJ5IjoiMi43LjAifX0=
20
18
  Authorization:
21
19
  - Bearer API_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
22
  Host:
23
23
  - auth0-sdk-tests.auth0.com
24
24
  response:
@@ -27,28 +27,46 @@ http_interactions:
27
27
  message: No Content
28
28
  headers:
29
29
  Date:
30
- - Wed, 17 Oct 2018 17:39:07 GMT
30
+ - Fri, 03 Sep 2021 20:16:14 GMT
31
31
  Content-Type:
32
32
  - application/json; charset=utf-8
33
33
  Connection:
34
34
  - keep-alive
35
+ Cf-Ray:
36
+ - 6891a7997c2a3609-LAX
37
+ Cache-Control:
38
+ - no-cache
39
+ Strict-Transport-Security:
40
+ - max-age=31536000
41
+ Vary:
42
+ - origin,accept-encoding
43
+ Cf-Cache-Status:
44
+ - DYNAMIC
45
+ Expect-Ct:
46
+ - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
47
+ Ot-Baggage-Auth0-Request-Id:
48
+ - 6891a7997c2a3609
49
+ Ot-Tracer-Sampled:
50
+ - 'true'
51
+ Ot-Tracer-Spanid:
52
+ - 1fd625fa368da82f
53
+ Ot-Tracer-Traceid:
54
+ - 239112363e8b8a0a
55
+ X-Content-Type-Options:
56
+ - nosniff
35
57
  X-Ratelimit-Limit:
36
- - '10'
58
+ - '50'
37
59
  X-Ratelimit-Remaining:
38
- - '9'
60
+ - '49'
39
61
  X-Ratelimit-Reset:
40
- - '1539797949'
41
- Vary:
42
- - origin,accept-encoding
43
- Cache-Control:
44
- - private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
45
- Strict-Transport-Security:
46
- - max-age=15724800
47
- X-Robots-Tag:
48
- - noindex, nofollow, nosnippet, noarchive
62
+ - '1630700175'
63
+ Server:
64
+ - cloudflare
65
+ Alt-Svc:
66
+ - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443";
67
+ ma=86400
49
68
  body:
50
69
  encoding: UTF-8
51
70
  string: ''
52
- http_version:
53
- recorded_at: Wed, 17 Oct 2018 17:39:07 GMT
54
- recorded_with: VCR 4.0.0
71
+ recorded_at: Fri, 03 Sep 2021 20:16:14 GMT
72
+ recorded_with: VCR 6.0.0
@@ -9,18 +9,18 @@ http_interactions:
9
9
  headers:
10
10
  Accept:
11
11
  - "*/*"
12
- Accept-Encoding:
13
- - gzip, deflate
14
12
  User-Agent:
15
- - Ruby/2.5.1
13
+ - rest-client/2.1.0 (darwin19.6.0 x86_64) ruby/2.7.0p0
16
14
  Content-Type:
17
15
  - application/json
18
16
  Auth0-Client:
19
- - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI0LjUuMCJ9
17
+ - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI1LjUuMCIsImVudiI6eyJydWJ5IjoiMi43LjAifX0=
20
18
  Authorization:
21
19
  - Bearer API_TOKEN
22
20
  Content-Length:
23
21
  - '60'
22
+ Accept-Encoding:
23
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
24
24
  Host:
25
25
  - auth0-sdk-tests.auth0.com
26
26
  response:
@@ -29,28 +29,46 @@ http_interactions:
29
29
  message: No Content
30
30
  headers:
31
31
  Date:
32
- - Thu, 11 Oct 2018 01:30:24 GMT
32
+ - Fri, 03 Sep 2021 20:16:14 GMT
33
33
  Content-Type:
34
34
  - application/json; charset=utf-8
35
35
  Connection:
36
36
  - keep-alive
37
+ Cf-Ray:
38
+ - 6891a79b2d730d50-LAX
39
+ Cache-Control:
40
+ - no-cache
41
+ Strict-Transport-Security:
42
+ - max-age=31536000
43
+ Vary:
44
+ - origin,accept-encoding
45
+ Cf-Cache-Status:
46
+ - DYNAMIC
47
+ Expect-Ct:
48
+ - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
49
+ Ot-Baggage-Auth0-Request-Id:
50
+ - 6891a79b2d730d50
51
+ Ot-Tracer-Sampled:
52
+ - 'true'
53
+ Ot-Tracer-Spanid:
54
+ - 7ad121b85ac87789
55
+ Ot-Tracer-Traceid:
56
+ - 42b446981bf821d1
57
+ X-Content-Type-Options:
58
+ - nosniff
37
59
  X-Ratelimit-Limit:
38
- - '10'
60
+ - '50'
39
61
  X-Ratelimit-Remaining:
40
- - '9'
62
+ - '49'
41
63
  X-Ratelimit-Reset:
42
- - '1539221425'
43
- Vary:
44
- - origin,accept-encoding
45
- Cache-Control:
46
- - private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
47
- Strict-Transport-Security:
48
- - max-age=15724800
49
- X-Robots-Tag:
50
- - noindex, nofollow, nosnippet, noarchive
64
+ - '1630700175'
65
+ Server:
66
+ - cloudflare
67
+ Alt-Svc:
68
+ - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443";
69
+ ma=86400
51
70
  body:
52
71
  encoding: UTF-8
53
72
  string: ''
54
- http_version:
55
- recorded_at: Thu, 11 Oct 2018 01:30:24 GMT
56
- recorded_with: VCR 4.0.0
73
+ recorded_at: Fri, 03 Sep 2021 20:16:14 GMT
74
+ recorded_with: VCR 6.0.0
@@ -9,16 +9,16 @@ http_interactions:
9
9
  headers:
10
10
  Accept:
11
11
  - "*/*"
12
- Accept-Encoding:
13
- - gzip, deflate
14
12
  User-Agent:
15
- - Ruby/2.5.1
13
+ - rest-client/2.1.0 (darwin19.6.0 x86_64) ruby/2.7.0p0
16
14
  Content-Type:
17
15
  - application/json
18
16
  Auth0-Client:
19
- - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI0LjUuMCJ9
17
+ - eyJuYW1lIjoicnVieS1hdXRoMCIsInZlcnNpb24iOiI1LjUuMCIsImVudiI6eyJydWJ5IjoiMi43LjAifX0=
20
18
  Authorization:
21
19
  - Bearer API_TOKEN
20
+ Accept-Encoding:
21
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
22
22
  Host:
23
23
  - auth0-sdk-tests.auth0.com
24
24
  response:
@@ -27,33 +27,48 @@ http_interactions:
27
27
  message: OK
28
28
  headers:
29
29
  Date:
30
- - Thu, 11 Oct 2018 01:30:24 GMT
30
+ - Fri, 03 Sep 2021 20:16:14 GMT
31
31
  Content-Type:
32
32
  - application/json; charset=utf-8
33
33
  Transfer-Encoding:
34
34
  - chunked
35
35
  Connection:
36
36
  - keep-alive
37
+ Cf-Ray:
38
+ - 6891a79c8a02eb49-LAX
39
+ Cache-Control:
40
+ - no-cache
41
+ Strict-Transport-Security:
42
+ - max-age=31536000
43
+ Vary:
44
+ - origin,accept-encoding
45
+ Cf-Cache-Status:
46
+ - DYNAMIC
47
+ Expect-Ct:
48
+ - max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
49
+ Ot-Baggage-Auth0-Request-Id:
50
+ - 6891a79c8a02eb49
51
+ Ot-Tracer-Sampled:
52
+ - 'true'
53
+ Ot-Tracer-Spanid:
54
+ - 66ccbc0a19687b1c
55
+ Ot-Tracer-Traceid:
56
+ - 6fae2cfb0d35abcf
57
+ X-Content-Type-Options:
58
+ - nosniff
37
59
  X-Ratelimit-Limit:
38
- - '10'
60
+ - '50'
39
61
  X-Ratelimit-Remaining:
40
- - '8'
62
+ - '49'
41
63
  X-Ratelimit-Reset:
42
- - '1539221426'
43
- Vary:
44
- - origin,accept-encoding
45
- Cache-Control:
46
- - private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0
47
- Content-Encoding:
48
- - gzip
49
- Strict-Transport-Security:
50
- - max-age=15724800
51
- X-Robots-Tag:
52
- - noindex, nofollow, nosnippet, noarchive
64
+ - '1630700175'
65
+ Server:
66
+ - cloudflare
67
+ Alt-Svc:
68
+ - h3-27=":443"; ma=86400, h3-28=":443"; ma=86400, h3-29=":443"; ma=86400, h3=":443";
69
+ ma=86400
53
70
  body:
54
71
  encoding: ASCII-8BIT
55
- string: !binary |-
56
- H4sIAAAAAAAAA33LwQ6CIAAA0H/h7AHSZXTLFuGNzSms1oEAmeAgSy62/r0u3Vr3985PIJMGW7BSgadk14skAjloDWIYu10bIClEk2qQATcPH9hLb+boTQCv7JurIjI6Qlh2Eh0rfRJDQ+Vh304d9xoL/zfz+5JUsv2jvuZRjJAGtfFTXgnPyK2k+le+vAFroQ3IuAAAAA==
57
- http_version:
58
- recorded_at: Thu, 11 Oct 2018 01:30:24 GMT
59
- recorded_with: VCR 4.0.0
72
+ string: '[{"aud":"2cnWuug6zaFX1j0ge1P99jAUn0F4XSuI","jti":"faketoken"},{"aud":"B4oPHl007Va1GBdZXiSHaECUqVWkd9Xk","jti":"faketoken"},{"aud":"WrzucugfsIb3oXl0Hnc8kq3BXkPFp7Hd","jti":"faketoken"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8059c9961cd5d8059c9961fe5d8059c99620a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805c8d7b6fa5d805c8d7b7165d805c8d7b71e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805cecc24625d805cecc24925d805cecc249f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805d0f7bab05d805d0f7baed5d805d0f7bb0e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805d2df14055d805d2df14375d805d2df146b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805eafa41115d805eafa411e5d805eafa412a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805ec1346295d805ec1346365d805ec13463f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805f22ad7835d805f22ad7ab5d805f22ad7b4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d805f9fa51ed5d805f9fa521e5d805f9fa522a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8061a94f4fc5d8061a94f5375d8061a94f572"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8061b1309245d8061b1309615d8061b13099c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8061ce1a97a5d8061ce1a9b65d8061ce1a9f1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d806218df4a25d806218df4e25d806218df522"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813b6b848b45d813b6b848ca5d813b6b848d2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813cd0c82045d813cd0c82405d813cd0c827b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813cdaabac15d813cdaabafe5d813cdaabb39"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813cdb3d55e5d813cdb3d59a5d813cdb3d5d4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813d993e5b65d813d993e5f25d813d993e62d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813d9ec555c5d813d9ec55985d813d9ec55d2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813da0d0bbf5d813da0d0bfb5d813da0d0c35"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813ebe5ef6f5d813ebe5efaf5d813ebe5efef"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d813f6bafd585d813f6bafd945d813f6bafdcf"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d814430c86ed5d814430c87295d814430c8764"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d814508de1b45d814508de1ef5d814508de229"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d81450d46e2d5d81450d46e6a5d81450d46ea5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8145139b73e5d8145139b77a5d8145139b7b4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8147fdc445f5d8147fdc449c5d8147fdc44d8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d81487e87b195d81487e87d8b5d81487e87dd4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d81489c62d2f5d81489c62d6b5d81489c62da6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d827567121ac5d827567121ec5d8275671222a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d827573e444c5d827573e44895d827573e44c3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d827582d05aa5d827582d05e65d827582d0621"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8275dbe9f085d8275dbe9f445d8275dbe9f7e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82763a3c7f65d82763a3c8325d82763a3c86d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82939b295d35d82939b2960f5d82939b29649"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8293a9c9e545d8293a9c9e925d8293a9c9ece"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8293b21143d5d8293b2114785d8293b2114b2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8293f085fcb5d8293f0860075d8293f086041"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8293f6ecc6c5d8293f6eccab5d8293f6ecce9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82940a5a18f5d82940a5a1cc5d82940a5a209"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82940fdcabd5d82940fdcaf95d82940fdcb33"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d829449929615d8294499299d5d829449929d8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82944e079b55d82944e079f65d82944e07a35"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8295f2ddd255d8295f2ddd615d8295f2ddd9e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82964fa4b095d82964fa4b445d82964fa4b7f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8296ca845655d8296ca845a15d8296ca845db"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d82992e9ab6e5d82992e9abb05d82992e9abf0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83fade6d70e5d83fade6d74a5d83fade6d785"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83fae1a5ab55d83fae1a5af15d83fae1a5b2b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83faf9eeba05d83faf9eebdc5d83faf9eec17"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83fb39365c35d83fb39365fe5d83fb3936638"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83fb448497c5d83fb44849b95d83fb44849f3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83fb53759775d83fb53759b35d83fb53759ed"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d83fd5c6b5af5d83fd5c6b5d55d83fd5c6b5e4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8400433d6875d8400433d6a75d8400433d6b8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8401ba2ad295d8401ba2ad535d8401ba2ad5b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8402551762f5d840255176375d8402551764c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d84032d5d7945d84032d5d7d25d84032d5d80d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d84033684b575d84033684b925d84033684bce"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d84038d081505d84038d0818c5d84038d081c7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d840eebe3fee5d840eebe40175d840eebe4020"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d84163765e795d84163765e965d84163765e9d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d841724d88325d841724d88725d841724d88b1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d841777e18ce5d841777e19275d841777e194a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d841781882865d841781882c45d841781882ff"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8417cb341335d8417cb3416f5d8417cb341aa"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851797a82c35d851797a82ed5d851797a82f5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8519e33493e5d8519e33497a5d8519e3349b6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8519e9bc2b55d8519e9bc2f15d8519e9bc32b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8519eb1007f5d8519eb100bb5d8519eb100f5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851a75567f95d851a75568365d851a7556871"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851b4c2c3825d851b4c2c3be5d851b4c2c3f8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851b50ed05e5d851b50ed09a5d851b50ed0d5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851b549365f5d851b549369a5d851b54936d4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851bc026a265d851bc026a655d851bc026aa3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851cae739505d851cae739925d851cae739eb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851f64d52de5d851f64d531a5d851f64d5355"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851f6c560e45d851f6c5611f5d851f6c56159"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d851f77135545d851f77135905d851f77135cb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8520078ebc35d8520078ebff5d8520078ec39"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85200c5f8265d85200c5f8635d85200c5f89e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8520dab0c135d8520dab0c4f5d8520dab0c8a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8520fb2c9c65d8520fb2ca015d8520fb2ca3c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852112dd0da5d852112dd1165d852112dd150"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852161783a35d852161783df5d8521617841a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8521b71fdcc5d8521b71fe085d8521b71fe42"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85248e8d3895d85248e8d3c55d85248e8d400"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85249865b8d5d85249865bc95d85249865c03"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8524afd37fd5d8524afd38395d8524afd3874"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852507d2ff15d852507d302d5d852507d3068"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85259d1cfc05d85259d1cffc5d85259d1d037"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8525ab3f9ad5d8525ab3f9f35d8525ab3fa3b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8525adade7a5d8525adadeb55d8525adadef0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8525db6d8b55d8525db6d8f35d8525db6d92e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8525db8f4305d8525db8f46b5d8525db8f4a5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8525f57df1b5d8525f57df575d8525f57df92"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85263c237de5d85263c2381b5d85263c23855"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85272ba2f2f5d85272ba2f6a5d85272ba2fa5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85287e371865d85287e371c25d85287e371fd"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85291e85cd75d85291e85d135d85291e85d4d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85291edc49e5d85291edc4dc5d85291edc517"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85292727c0d5d85292727c485d85292727c83"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852f664da3f5d852f664da485d852f664da50"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852f66e66655d852f66e66715d852f66e6681"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852fc20bc075d852fc20bc335d852fc20bc5c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852fcb13a6d5d852fcb13a895d852fcb13a9e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852fcc7ab395d852fcc7ab425d852fcc7ab4c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852fe3b2b305d852fe3b2b385d852fe3b2b41"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d852fe502b105d852fe502b2c5d852fe502b43"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8530a48d4fa5d8530a48d5275d8530a48d551"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d853102d56ad5d853102d56d75d853102d56df"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d853152d103e5d853152d10685d853152d1071"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d853153f2cb55d853153f2cbd5d853153f2cc6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8531aa3781e5d8531aa3782b5d8531aa37839"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8531aaf31e85d8531aaf32125d8531aaf3219"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8531f8b8a285d8531f8b8a305d8531f8b8a38"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8531f976f325d8531f976f665d8531f976fa0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85328e944625d85328e944a45d85328e944e4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d853296446075d853296446435d8532964467d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85329aef5b35d85329aef5f45d85329aef634"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8532bcdfd215d8532bcdfd5d5d8532bcdfd98"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85332b5484d5d85332b548885d85332b548c3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8533ab5d34b5d8533ab5d3875d8533ab5d3c2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8533ad2db6f5d8533ad2dbb05d8533ad2dbef"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8533b52442b5d8533b5244665d8533b5244a1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d853450e85a05d853450e85db5d853450e8615"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85358be51935d85358be519f5d85358be51a8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85358c8f9b75d85358c8f9e15d85358c8f9ea"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8535f38c6565d8535f38c6635d8535f38c678"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8535f4272165d8535f4272365d8535f427297"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85361ba6d875d85361ba6d8f5d85361ba6d97"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85361c5058f5d85361c505b15d85361c505ba"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8536df852cb5d8536df8530d5d8536df85357"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8536dfc35fe5d8536dfc36405d8536dfc367f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8536e01fd535d8536e01fd8e5d8536e01fdc9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8538194121c5d853819412595d85381941293"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d85381ec14365d85381ec14725d85381ec14ad"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d853820df5415d853820df57d5d853820df5b7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8538f9e0baa5d8538f9e0be65d8538f9e0c20"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d87acae476805d87acae476bb5d87acae476f6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d87acb148e255d87acb148e615d87acb148e9b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d87acbfd2c915d87acbfd2ccd5d87acbfd2d07"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d88f0d7516ee5d88f0d75172a5d88f0d751765"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d89061c1cadb5d89061c1cae45d89061c1caed"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892a051c3615d892a051c39d5d892a051c3d7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892a0aa0efd5d892a0aa0f3a5d892a0aa0f75"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892a11a8b785d892a11a8bb35d892a11a8bed"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892a98d35585d892a98d35945d892a98d35cf"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892aa582b295d892aa582b655d892aa582ba0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892aaed3ea35d892aaed3ee55d892aaed3f25"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892bcbb47965d892bcbb479e5d892bcbb47a7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892c314940a5d892c31494205d892c3149431"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892ee18a94b5d892ee18a9885d892ee18a9c2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892eec6f5225d892eec6f55e5d892eec6f599"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d892ef34cdff5d892ef34ce3b5d892ef34ce75"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8930407ed8f5d8930407edcc5d8930407ee08"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d893040afade5d893040afb195d893040afb53"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d893058d9d245d893058d9d605d893058d9d9a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8931915575e5d893191557995d893191557b5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8931c49af8d5d8931c49afc95d8931c49b003"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d89389d5dacd5d89389d5dad95d89389d5dae1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8938f6f29465d8938f6f29865d8938f6f29c3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d89393c738fd5d89393c7393a5d89393c73975"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8948c3eb86c5d8948c3eb8ac5d8948c3eb8eb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8948fcce39e5d8948fcce3da5d8948fcce415"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d894a88173ae5d894a88173b65d894a88173be"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d894baa92ce95d894baa92d315d894baa92d6c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d894bde3a80e5d894bde3a8495d894bde3a884"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a1c0db5eb65d8a1c0db5ede5d8a1c0db5ef5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a1c851d4b25d8a1c851d4ed5d8a1c851d528"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a1cc8bf3585d8a1cc8bf3945d8a1cc8bf3ce"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a390ac48f05d8a390ac492b5d8a390ac4965"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a3947236a95d8a3947236e55d8a394723727"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a3986845c95d8a3986846055d8a398684640"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a39cbcce0d5d8a39cbcce4a5d8a39cbcce85"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a9ab0625a75d8a9ab0625e85d8a9ab0625fd"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a9b1a656d85d8a9b1a657145d8a9b1a6574e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8a9b5a2f2405d8a9b5a2f27d5d8a9b5a2f2b8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cd0f2e4e3b5d8cd0f2e4e765d8cd0f2e4eb0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cd128897a75d8cd128897e35d8cd1288981d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cd31e032385d8cd31e032755d8cd31e032af"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cd3534ba1d5d8cd3534ba595d8cd3534ba94"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cdbd8d284d5d8cdbd8d28895d8cdbd8d28c3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cdc0d376c25d8cdc0d376ff5d8cdc0d37739"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cdc3ad06235d8cdc3ad064c5d8cdc3ad065c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cde52bc5995d8cde52bc5c35d8cde52bc5cb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cdeeaa56375d8cdeeaa56465d8cdeeaa5661"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cdf58ba16e5d8cdf58ba1845d8cdf58ba193"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ce0d3d71915d8ce0d3d71cc5d8ce0d3d7206"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ce111d661a5d8ce111d665b5d8ce111d669a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ceb02456705d8ceb02456ab5d8ceb02456e5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ceb3b641995d8ceb3b641d55d8ceb3b6420f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ceb457b13d5d8ceb457b1795d8ceb457b1b4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ceb8c2df015d8ceb8c2df3c5d8ceb8c2df76"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cebcc952735d8cebcc952af5d8cebcc952e9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cec65ab1755d8cec65ab1b05d8cec65ab1ea"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cec866e7c25d8cec866e7fd5d8cec866e837"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cec9d38ac85d8cec9d38b045d8cec9d38b3f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cecc0e4f805d8cecc0e4fbc5d8cecc0e4ff7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8ceeea8cd2b5d8ceeea8cd665d8ceeea8cda3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cef2430cd75d8cef2430d135d8cef2430d54"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cf8f6c6ad95d8cf8f6c6b145d8cf8f6c6b38"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d8cf935d559f5d8cf935d55db5d8cf935d5616"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d9cc504386785d9cc504386b45d9cc504386ee"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d9cc7198009a5d9cc719800d65d9cc71980111"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d9cdec3bbb5b5d9cdec3bbb975d9cdec3bbbd2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d9cdf22ebfb95d9cdf22ebffa5d9cdf22ec039"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d9ce0dec1d205d9ce0dec1d5c5d9ce0dec1d97"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5d9ce1053edcf5d9ce1053ee0a5d9ce1053ee45"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5064cad7d55da5064cad8115da5064cad84a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5067f52b1d5da5067f52b585da5067f52b93"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5076fb7d685da5076fb7d6b5da5076fb7d6f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da507baf0aab5da507baf0ab35da507baf0abc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da509d167d395da509d167d475da509d167d56"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da50b3c3dccd5da50b3c3dced5da50b3c3dcf6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da50be92f7485da50be92f7645da50be92f76d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da50edd453975da50edd453d25da50edd4540d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da50f4b378b75da50f4b378c05da50f4b378c8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da50f696cea45da50f696cece5da50f696ced7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da50fb38902d5da50fb3890685da50fb3890a3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5136039c025da5136039c2d5da5136039c69"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5139b88c085da5139b88c435da5139b88c7e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da51663444255da51663444365da5166344442"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da51736757745da51736757915da51736757a8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5182e5f51a5da5182e5f5555da5182e5f590"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da51a1fddfac5da51a1fddfb45da51a1fddfbc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5c6929ea065da5c6929ea455da5c6929ea82"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5c6e1941365da5c6e1941795da5c6e1941b4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5df4db9da55da5df4db9dae5da5df4db9db7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5e476d30295da5e476d30655da5e476d309f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5e54dc47f45da5e54dc48185da5e54dc4820"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da5eb37c5d835da5eb37c5dc05da5eb37c5dfb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da6598fab6d05da6598fab6ef5da6598fab706"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da71913970ab5da71913970e75da7191397122"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da719eaec56b5da719eaec5875da719eaec58f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da71b1c7d4905da71b1c7d49b5da71b1c7d4a3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da71d39345165da71d39345405da71d3934549"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da71d9fa8b825da71d9fa8b8a5da71d9fa8b93"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da72c028f2c25da72c028f2f65da72c028f309"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da72dc5b0fbe5da72dc5b0fdc5da72dc5b0fe3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da72f391ebe75da72f391ebef5da72f391ebf6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da73016de65c5da73016de66d5da73016de67c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da78a718de0c5da78a718de2b5da78a718de32"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da78b78026d25da78b78026db5da78b78026e4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da78cb3149115da78cb3149305da78cb314939"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da78dd3af9fc5da78dd3afa005da78dd3afa04"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da78ebdf22765da78ebdf22b25da78ebdf22ec"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da79260b16c95da79260b16e35da79260b16f5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da7931be22b25da7931be22be5da7931be22c7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da795127e91c5da795127e9585da795127e992"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da796d7b45445da796d7b45525da796d7b455f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da797e60decc5da797e60df085da797e60df43"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da7b16088a5e5da7b16088a7c5da7b16088a85"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da7b1e9dddb95da7b1e9dddf55da7b1e9dde30"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8ecbf76dac5da8ecbf76df05da8ecbf76df8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8ed973202f5da8ed97320615da8ed973206e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8ef3ab19045da8ef3ab190c5da8ef3ab1914"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8f08ad6c215da8f08ad6c5d5da8f08ad6c98"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8f52d930cb5da8f52d930f55da8f52d930fd"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8faf0d4ff35da8faf0d50115da8faf0d5018"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8fd00bbff15da8fd00bc0025da8fd00bc021"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8fd6978cbf5da8fd6978ccf5da8fd6978ce5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8fdfaae26c5da8fdfaae27b5da8fdfaae287"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da8fe1abddc25da8fe1abddd45da8fe1abdde1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da900d7a8bc45da900d7a8be45da900d7a8bec"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da9016a34fbe5da9016a34feb5da9016a34ff2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5da90428975a85da90428975e55da9042897620"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5daa5aadd2cd05daa5aadd2cfa5daa5aadd2d03"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dab2ffab4b985dab2ffab4bb75dab2ffab4bbf"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dac756fa41f65dac756fa421d5dac756fa423a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dac92e8d8f765dac92e8d8f915dac92e8d8f99"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dac943a5e36a5dac943a5e3985dac943a5e3a5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dac9981beec55dac9981beee45dac9981beeec"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dacb45e8cfef5dacb45e8d02b5dacb45e8d066"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dacb820291245dacb8202913f5dacb82029148"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dacb8a7361ad5dacb8a7361e85dacb8a736223"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dace002b4d4a5dace002b4d7f5dace002b4da1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dace091386d65dace091387025dace09138722"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dace265d59355dace265d595a5dace265d5979"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dace2f837c4b5dace2f837c6f5dace2f837c8e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dace3d4156935dace3d4156ce5dace3d415708"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dadcf2195cf75dadcf2195d005dadcf2195d07"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dadcf822bf915dadcf822bfce5dadcf822c009"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db36ef1d56875db36ef1d56b15db36ef1d56b9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db36fcbf05e05db36fcbf06095db36fcbf0612"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db36fe881cc15db36fe881ccf5db36fe881cdc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db3733465ab55db3733465ad05db3733465ad8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db3738b9ea3d5db3738b9ea795db3738b9eab3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db38d36814445db38d36814805db38d36814ba"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db38e0b24e0b5db38e0b24e475db38e0b24e82"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db89ee3d090c5db89ee3d09285db89ee3d0940"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db89f304b5ad5db89f304b5e85db89f304b623"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db89fd9bbd955db89fd9bbda15db89fd9bbdb1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8a0bd959ec5db8a0bd959f25db8a0bd959f8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8a13def9115db8a13def9515db8a13def991"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8a25bc30bd5db8a25bc30c15db8a25bc30c5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8a2fdaa61d5db8a2fdaa6215db8a2fdaa625"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8a3cf80fba5db8a3cf80fca5db8a3cf80fd7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8a4a2980bd5db8a4a2980fb5db8a4a298138"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8af416e41d5db8af416e45a5db8af416e495"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8c049503035db8c049503125db8c04950321"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8c20da98e55db8c20da98fd5db8c20da9932"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8c2864d26a5db8c2864d2755db8c2864d281"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db8c3566dd445db8c3566dd815db8c3566ddbc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db9da10242085db9da10242465db9da1024281"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5db9dc0a3e5065db9dc0a3e5255db9dc0a3e561"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dba5455242795dba5455242b65dba5455242f2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dba545d7765b5dba545d776965dba545d776d1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dba560819b405dba560819b445dba560819b48"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dba565533c1d5dba565533c5e5dba565533c9a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dba579cc6ad45dba579cc6ad85dba579cc6ade"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb34c257fdf5dbb34c25801b5dbb34c258056"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb3516cb5d55dbb3516cb6115dbb3516cb64b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb356d4f10b5dbb356d4f1485dbb356d4f183"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb3b223a32e5dbb3b223a3335dbb3b223a336"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb3ba18342e5dbb3ba18346a5dbb3ba1834a5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb3d60da0385dbb3d60da0625dbb3d60da068"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb430f9e9105dbb430f9e9175dbb430f9e91d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb4338eabb45dbb4338eabb85dbb4338eabbb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb4bfa2bd9f5dbb4bfa2bda45dbb4bfa2bda8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb4f3c1d5a85dbb4f3c1d5b35dbb4f3c1d5ba"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb5053c52885dbb5053c52c45dbb5053c52ff"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb584c576365dbb584c5763c5dbb584c5763f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbb58d32f5065dbb58d32f50a5dbb58d32f50e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbc4ad71ebe25dbc4ad71ec1c5dbc4ad71ec56"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dbc4b1c3a2c15dbc4b1c3a30b5dbc4b1c3a348"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc99476d54a15dc99476d54df5dc99476d551c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9a605e01615dc9a605e01a05dc9a605e01dc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9a6f4a8cde5dc9a6f4a8d1e5dc9a6f4a8d5c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9be565be335dc9be565be385dc9be565be3b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9c1e1ecf195dc9c1e1ecf575dc9c1e1ecf93"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9d3e96e78a5dc9d3e96e78e5dc9d3e96e792"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9db90328de5dc9db90328e35dc9db90328e6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9dc0127dc35dc9dc0127e015dc9dc0127e3c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9e2f5cef6e5dc9e2f5cef725dc9e2f5cef76"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9e3a2ac5005dc9e3a2ac5045dc9e3a2ac508"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9e518ef9e35dc9e518efa215dc9e518efa5d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9e924565905dc9e924565955dc9e92456598"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9e971dc5605dc9e971dc59d5dc9e971dc5d8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9eb45b92705dc9eb45b92785dc9eb45b927f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9f05ccb6665dc9f05ccb68a5dc9f05ccb6a2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9f182ac1305dc9f182ac1555dc9f182ac180"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dc9f246bfe145dc9f246bfe525dc9f246bfe91"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcb58b26a82d5dcb58b26a8565dcb58b26a85d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcb5afbc3fb75dcb5afbc3ff45dcb5afbc402f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc56a44eaa95dcc56a44eab15dcc56a44eab8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc5f005f0485dcc5f005f0675dcc5f005f070"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc5f5990ccb5dcc5f5990d075dcc5f5990d49"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc6eca51c395dcc6eca51c545dcc6eca51c5c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc6f89e35145dcc6f89e35515dcc6f89e358b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc7091b24a15dcc7091b24e05dcc7091b251d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc7d8a2aa525dcc7d8a2aa935dcc7d8a2aab1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc7f416dd085dcc7f416dd395dcc7f416dd50"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc7faf8f2e75dcc7faf8f3265dcc7faf8f364"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc7fcb6ce6d5dcc7fcb6ceab5dcc7fcb6cee6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcc809a79d475dcc809a79d8a5dcc809a79dc9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcd662007ede5dcd662007f1d5dcd662007f59"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcd745b83a315dcd745b83a6c5dcd745b83ab3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcd9ea4266c35dcd9ea4266ed5dcd9ea4266f4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdb3504e7025dcdb3504e7275dcdb3504e748"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdb3de122be5dcdb3de122fd5dcdb3de1233a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdb66841f3f5dcdb66841f5d5dcdb66841f79"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdb6ae8b33e5dcdb6ae8b37d5dcdb6ae8b3ba"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdc74f944805dcdc74f9449e5dcdc74f944a7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdc79dd2ae25dcdc79dd2aeb5dcdc79dd2af3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdc7c95700c5dcdc7c9570355dcdc7c95703d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdc7f69110d5dcdc7f6911295dcdc7f691131"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdc8e1e1a565dcdc8e1e1a9a5dcdc8e1e1ada"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdca08e606f5dcdca08e60ae5dcdca08e60ea"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdcaff366e65dcdcaff367105dcdcaff36719"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdcfbe137085dcdcfbe137325dcdcfbe1373b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdd01d3f8245dcdd01d3f8305dcdd01d3f842"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdd0ad8de795dcdd0ad8de845dcdd0ad8de8b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdd1014371e5dcdd101437285dcdd10143730"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdd136e6fd95dcdd136e70585dcdd136e732a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdd1d4190cc5dcdd1d4191085dcdd1d419143"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdd91df3c055dcdd91df3c305dcdd91df3c38"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcde27e19e765dcde27e19eb35dcde27e19eee"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcde4e2a85f65dcde4e2a85fb5dcde4e2a85fe"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdf0616a5945dcdf0616a5995dcdf0616a59d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcdf07ca14025dcdf07ca14045dcdf07ca1405"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dce06de438855dce06de438895dce06de4388d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dce071a2ed0a5dce071a2ed0f5dce071a2ed12"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcf1c3bf1ddb5dcf1c3bf1de05dcf1c3bf1de3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dcf1c9503a725dcf1c9503ab15dcf1c9503aed"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd305d039d6d5dd305d039d715dd305d039d75"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd318c8324195dd318c83241d5dd318c832421"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd3312fbd5405dd3312fbd5445dd3312fbd548"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd46ca37ee215dd46ca37ee265dd46ca37ee2a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd46e8f852e75dd46e8f853255dd46e8f85362"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd4719ccb94d5dd4719ccb9515dd4719ccb955"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd471cfdd6cd5dd471cfdd6d25dd471cfdd6d5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd472384763b5dd472384763f5dd4723847643"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd472907d5935dd472907d5d25dd472907d60e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd47323cf42e5dd47323cf46e5dd47323cf4aa"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd475e4750435dd475e4750845dd475e4750c0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd57319a78315dd57319a786f5dd57319a78ac"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd57a4bf41665dd57a4bf416a5dd57a4bf416d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd57ac15f1775dd57ac15f17c5dd57ac15f180"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd57ae6537745dd57ae6537b35dd57ae6537f0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd57c4a7f6b85dd57c4a7f6db5dd57c4a7f6f2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd5def2b98685dd5def2b98705dd5def2b9877"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5dd5e53e222ca5dd5e53e222e65dd5e53e222ed"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ddc0e515b7665ddc0e515b7a35ddc0e515b7df"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ddc3b58473b55ddc3b58473f45ddc3b5847431"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de572c5a71b15de572c5a71e85de572c5a71f4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de577c2f3f085de577c2f3f335de577c2f3f3b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de57849567e25de57849568205de578495685c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5a8908813d5de5a890881495de5a89088152"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5a93fed2445de5a93fed2805de5a93fed2bb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5a993e4a5e5de5a993e4a9c5de5a993e4ad8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5b0a97eb015de5b0a97eb0a5de5b0a97eb13"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5b0cbc45e55de5b0cbc46065de5b0cbc462c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5b1aac99935de5b1aac99cf5de5b1aac9a0a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5b525a06ab5de5b525a06ca5de5b525a06d2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5b975f1ea25de5b975f1ec75de5b975f1ede"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5ba104cb265de5ba104cb2e5de5ba104cb37"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5bb60d45b05de5bb60d45ba5de5bb60d45c3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5bbc1332225de5bbc13322a5de5bbc133231"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5e7d248dbb5de5e7d248dc35de5e7d248dca"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5eb05a72855de5eb05a72a45de5eb05a72ad"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5ebf00127c5de5ebf0012965de5ebf00129f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5edc2c70045de5edc2c70405de5edc2c707d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5ee3751c6b5de5ee3751c795de5ee3751c81"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5f519b6c5d5de5f519b6c7a5de5f519b6c81"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de5f56686d765de5f56686db25de5f56686dec"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de7049bacfd95de7049bad0165de7049bad050"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5de70507e460e5de70507e464c5de70507e4688"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deabeb2e16c75deabeb2e17025deabeb2e173c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deabef79200b5deabef7920485deabef792085"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deae0b1d76e85deae0b1d77275deae0b1d7773"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deae0fe08d0f5deae0fe08d4d5deae0fe08d89"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deae54ef175e5deae54ef179b5deae54ef17d7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deae5529caf45deae5529cb305deae5529cb6b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deaec59db88d5deaec59db8ca5deaec59db905"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deaec9ab02ed5deaec9ab032b5deaec9ab0369"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb060aa96a5deeb060aa96f5deeb060aa972"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb08fd55595deeb08fd555d5deeb08fd5561"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb0d1205f85deeb0d1206175deeb0d120641"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb15eb1f3d5deeb15eb1f7b5deeb15eb1fb7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb196229da5deeb19622a165deeb19622a52"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb851d88485deeb851d88855deeb851d88c1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeb895ed6fe5deeb895ed7395deeb895ed774"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeccabe0cae5deeccabe0d0e5deeccabe0d67"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5deeccebca18c5deeccebca1ca5deeccebca207"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d472c2f385e13d472c2f3d5e13d472c2f42"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d49cb17465e13d49cb174a5e13d49cb174e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d4ce7ae335e13d4ce7ae375e13d4ce7ae3b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d4f8f12305e13d4f8f12355e13d4f8f1239"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d71209dc25e13d71209dc65e13d71209dca"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d7e678d845e13d7e678dc25e13d7e678e00"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e13d85cd29f25e13d85cd2a2e5e13d85cd2a69"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e150494a8b985e150494a8b9c5e150494a8b9f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1504c6554b05e1504c6554b45e1504c6554b8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1504f38979b5e1504f38979d5e1504f38979e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1505e9b81e95e1505e9b82265e1505e9b8261"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1b692c0d2805e1b692c0d2845e1b692c0d288"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1d4e88d296f5e1d4e88d29985e1d4e88d29a0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1d4f8c6b3e25e1d4f8c6b4115e1d4f8c6b41a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1d521f05e485e1d521f05e845e1d521f05ebf"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1d53189845d5e1d5318984995e1d5318984d4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1e686c09d015e1e686c09d095e1e686c09d11"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1e6a90854dd5e1e6a90854ed5e1e6a9085505"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1e6b70886a95e1e6b70886e85e1e6b7088725"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1e8609107ca5e1e8609107dd5e1e8609107ef"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1e86f46badc5e1e86f46bae45e1e86f46baec"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1e9538b0b5d5e1e9538b0b6d5e1e9538b0b80"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1f337bd12175e1f337bd12335e1f337bd123a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1f34ee170985e1f34ee170d55e1f34ee17113"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1f3d76d00565e1f3d76d005f5e1f3d76d0066"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1f3dcacce225e1f3dcacce5e5e1f3dcacce99"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1fa6d1bff265e1fa6d1bff2e5e1fa6d1bff35"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1fa7de232f55e1fa7de233145e1fa7de2331c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1fa8fe707bc5e1fa8fe707d85e1fa8fe707e0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1fa9ca15a865e1fa9ca15a8e5e1fa9ca15a96"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1faa583cbd65e1faa583cc085e1faa583cc27"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e1fac445412f5e1fac445416b5e1fac44541a6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e20956e382dd5e20956e383195e20956e38354"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e2b96bb38d565e2b96bb38d635e2b96bb38d70"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e2b97077f10a5e2b97077f1175e2b97077f126"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e2b9770f1aa95e2b9770f1ae75e2b9770f1b22"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e2ba970bbdc25e2ba970bbe085e2ba970bbe53"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e397f37701da5e397f37701ef5e397f37701fc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e397fb0d3e5d5e397fb0d3e875e397fb0d3e8f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e398078e3d0c5e398078e3d495e398078e3d84"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3980e85da505e3980e85da8c5e3980e85dac7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e39de42b21ab5e39de42b21e85e39de42b2224"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3a08108441e5e3a0810844265e3a08108442f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3a103661e7c5e3a103661e8d5e3a103661e9b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3a10c74864a5e3a10c7486665e3a10c74866d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d820614a8d5e3d820614aa85e3d820614ab1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d82a30bb385e3d82a30bb455e3d82a30bb4d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d837eb76e65e3d837eb770e5e3d837eb7717"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d858d3211a5e3d858d321575e3d858d32193"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d9323a50ff5e3d9323a51105e3d9323a511d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d934225eb85e3d934225ee65e3d934225eee"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d93bc7e5e95e3d93bc7e6265e3d93bc7e661"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3d95823dee65e3d95823df225e3d95823df5d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3db5ffbe6a15e3db5ffbe6c25e3db5ffbe6c9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3db64b51bd05e3db64b51beb5e3db64b51bf3"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3dcdeb426fd5e3dcdeb427225e3dcdeb42729"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3dce1b474555e3dce1b474825e3dce1b4748e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3dcec17c9815e3dcec17c9d35e3dcec17ca14"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3dede0e47935e3dede0e47b45e3dede0e47e2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3df10b3d24e5e3df10b3d26c5e3df10b3d296"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3df1e9159fe5e3df1e915a065e3df1e915a0e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3df23a72c945e3df23a72cb25e3df23a72cbb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3df2dd2e5e95e3df2dd2e6175e3df2dd2e61f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3df369964845e3df369964bf5e3df369964fa"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3efa7c388f35e3efa7c389095e3efa7c3891f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e3efae7d6d215e3efae7d6d5e5e3efae7d6d9a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e41d56a956e95e41d56a957255e41d56a95760"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e41d624bb19d5e41d624bb1d95e41d624bb216"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e42ebc59ab815e42ebc59abbd5e42ebc59abf8"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e471eb45babe5e471eb45baca5e471eb45bad2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e471fa2af40f5e471fa2af4375e471fa2af443"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e47208fd84885e47208fd84905e47208fd8497"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e472343e06675e472343e06835e472343e068c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e47346a4f6945e47346a4f6d05e47346a4f70b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e4d5c4abea395e4d5c4abea755e4d5c4abeab0"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e4d5e2fa35c25e4d5e2fa35fd5e4d5e2fa3638"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e4d74e90daba5e4d74e90dad65e4d74e90dade"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e4d75337e57f5e4d75337e59e5e4d75337e5a6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e4d76bfcdd585e4d76bfcdd945e4d76bfcddcf"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e4d7c34491d45e4d7c34492115e4d7c344924c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e986745553a55e986745553d45e986745553dd"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e986b7850a5b5e986b7850a775e986b7850a7f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e986c08f06205e986c08f06565e986c08f0666"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e986d4890f8a5e986d4890fc85e986d4891008"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f207165d475e9f207165d665e9f207165d6f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f20de552075e9f20de552245e9f20de55233"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f23c3780495e9f23c3780575e9f23c378066"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f26377a2685e9f26377a2705e9f26377a279"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f27e916aea5e9f27e916b1a5e9f27e916b22"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f2a267f1df5e9f2a267f21a5e9f2a267f255"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f2b7f7265d5e9f2b7f726675e9f2b7f7266f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f3053159855e9f3053159945e9f3053159a4"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f8f9f441e95e9f8f9f4421f5e9f8f9f44252"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f900da7e1b5e9f900da7e565e9f900da7e91"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f932f8d1d05e9f932f8d1f05e9f932f8d1f9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5e9f93bb036855e9f93bb036c65e9f93bb03704"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea0586e7088d5ea0586e708c85ea0586e70903"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea068a92578c5ea068a9257c15ea068a9257e1"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea06a6d470775ea06a6d470815ea06a6d47089"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea06a7f6ab435ea06a7f6ab645ea06a7f6ab6c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea074bb2bff25ea074bb2c0095ea074bb2c01b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea0751916c495ea0751916c8c5ea0751916cf6"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea0df703d2695ea0df703d2ad5ea0df703d2ef"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea0e0b709a9a5ea0e0b709aa35ea0e0b709aaa"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea0e18c5a0465ea0e18c5a0825ea0e18c5a0bd"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ea1cf02e45b15ea1cf02e45ef5ea1cf02e462b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f2c5c0cdec5a5f2c5c0cdec975f2c5c0cdecd2"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f2c5c1aa29025f2c5c1aa29405f2c5c1aa297c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f31a1bc492115f31a1bc492505f31a1bc4928c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f47b62aa41725f47b62aa41bc5f47b62aa4201"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f47fd37a8fe15f47fd37a90245f47fd37a9063"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f5921dfc85b55f5921dfc85f15f5921dfc862f"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f6dfdbe299a55f6dfdbe299e65f6dfdbe29a26"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f71f64ec31b85f71f64ec32195f71f64ec325c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f980b4bee0a75f980b4bee0e55f980b4bee121"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5f981270814a45f981270814e05f9812708151b"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5fa858cab6a355fa858cab6a715fa858cab6aac"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5fa97cbfaf1125fa97cbfaf14f5fa97cbfaf18a"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5fa99dbcbcc5e5fa99dbcbcc9a5fa99dbcbccd5"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5faeed12e92ff5faeed12e933b5faeed12e9376"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5fb27856877c75fb27856878075fb2785687844"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5fb528ba4ccff5fb528ba4cd3b5fb528ba4cd76"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5feb6ce07e8d95feb6ce07e8db5feb6ce07e8dc"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5feb6f0f3f5345feb6f0f3f5365feb6f0f3f537"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ff347070fbc55ff347070fbc65ff347070fbc7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ff38d8e08de85ff38d8e08dea5ff38d8e08deb"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"5ff49f833b9a55ff49f833b9a85ff49f833b9a9"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"6000598b18f2b6000598b18f2d6000598b18f2e"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"60102cccd2c1560102cccd2c1860102cccd2c19"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"60181870c00c160181870c00c660181870c00c7"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"6053b9cca2c836053b9cca2c866053b9cca2c87"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"6054fd206be9a6054fd206be9c6054fd206be9d"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"605503c47fd38605503c47fd3b605503c47fd3c"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"__test_jti__"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1022357182"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1035210523"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1035410630"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1062269748"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1089415378"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1100862057"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1108315448"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1109595287"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1114454844"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1114799097"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1125692090"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1137753064"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1152517583"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1160139795"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1177807658"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1184250847"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1184786768"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1218259203"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1232779373"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1248989105"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1253011281"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1260307909"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1300912008"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI130229198"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1319675582"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1331237892"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1335466702"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1357204467"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI13609172"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1361735389"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1365536854"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1367429737"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI139983410"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1401560729"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1418448991"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1440529822"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1450582261"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1460491222"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1474568908"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1479624706"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1486863091"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1498545363"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1535767637"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1541310996"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1552385507"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1561282189"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1568676613"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1573632827"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1589696924"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1595643100"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1646524331"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1660013861"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1678302700"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1682294081"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI168286286"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1710750453"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1747321557"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1775387996"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1788899135"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1790061"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1794237701"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1798345162"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1801574749"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1802599293"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1809349063"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1818627995"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1822425227"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1839437264"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1842791157"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1863289835"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1873993334"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1884888076"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1886659026"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1911530357"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1917240496"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1930915757"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1950402032"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1965197551"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI1992722947"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI202343795"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI2071492155"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI2076451205"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI2095668263"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI2107897062"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI2122961407"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI217709763"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI220074016"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI231020629"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI238996139"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI244699995"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI245648264"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI257258070"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI297217988"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI305064789"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI329533251"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI351383433"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI354822120"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI370392806"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI377086444"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI384856344"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI390614927"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI392286439"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI398562424"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI401059711"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI401293198"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI413317604"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI418048519"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI434613081"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI469765809"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI490003396"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI490582924"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI499275154"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI500576312"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI504276106"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI5067119"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI51087588"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI534444085"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI545313046"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI549728812"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI551914564"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI556784615"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI577015488"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI577408692"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI591914143"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI596474020"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI608354822"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI615823658"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI620106692"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI627762429"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI684580325"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI687873002"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI708302697"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI713465653"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI725776183"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI744813644"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI745659653"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI768388698"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI769295915"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI788956459"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI793828781"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI795475813"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI795919584"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI808562275"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI817939284"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI830335384"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI845362004"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI855171053"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI858564264"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI86723701"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI877531833"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI881017310"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI89145674"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI898176003"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI909265632"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI909277941"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI913049323"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI922021496"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI927083122"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI930680436"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI956609557"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI965757322"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI968606858"},{"aud":"kyzr677IlmSJ5CZqcVKpGo87qHJZlLw9","jti":"somerandomJTI989937094"}]'
73
+ recorded_at: Fri, 03 Sep 2021 20:16:14 GMT
74
+ recorded_with: VCR 6.0.0