grpc 1.17.1 → 1.18.0.pre1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1228 -988
  3. data/etc/roots.pem +242 -30
  4. data/include/grpc/grpc.h +2 -1
  5. data/include/grpc/grpc_security_constants.h +3 -3
  6. data/include/grpc/impl/codegen/atm_gcc_sync.h +2 -0
  7. data/include/grpc/impl/codegen/atm_windows.h +2 -0
  8. data/include/grpc/impl/codegen/compression_types.h +2 -1
  9. data/include/grpc/impl/codegen/grpc_types.h +1 -1
  10. data/include/grpc/impl/codegen/port_platform.h +9 -0
  11. data/src/core/ext/filters/client_channel/client_channel.cc +163 -882
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +2 -4
  13. data/src/core/ext/filters/client_channel/health/health_check_client.h +2 -3
  14. data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
  15. data/src/core/ext/filters/client_channel/lb_policy.h +8 -17
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +176 -216
  17. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h +1 -1
  18. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +20 -23
  19. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
  20. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +49 -52
  21. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +13 -35
  22. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +31 -30
  23. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +69 -225
  24. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h +1 -1
  25. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc +20 -23
  26. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +1 -1
  27. data/src/core/ext/filters/client_channel/lb_policy_factory.h +2 -84
  28. data/src/core/ext/filters/client_channel/request_routing.cc +936 -0
  29. data/src/core/ext/filters/client_channel/request_routing.h +177 -0
  30. data/src/core/ext/filters/client_channel/resolver.cc +1 -1
  31. data/src/core/ext/filters/client_channel/resolver.h +1 -1
  32. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +37 -26
  33. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +30 -18
  34. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +119 -100
  35. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +8 -5
  36. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +5 -4
  37. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +2 -1
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +12 -14
  39. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +5 -9
  40. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +2 -1
  41. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +1 -2
  42. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +17 -17
  43. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +45 -52
  44. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +13 -17
  45. data/src/core/ext/filters/client_channel/server_address.cc +103 -0
  46. data/src/core/ext/filters/client_channel/server_address.h +108 -0
  47. data/src/core/ext/filters/client_channel/subchannel.cc +10 -8
  48. data/src/core/ext/filters/client_channel/subchannel.h +9 -6
  49. data/src/core/ext/filters/client_channel/subchannel_index.cc +20 -27
  50. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +3 -2
  51. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +8 -9
  52. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +1 -1
  53. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +1 -1
  54. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +8 -11
  55. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +24 -54
  56. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +3 -1
  57. data/src/core/ext/transport/chttp2/transport/context_list.cc +67 -0
  58. data/src/core/ext/transport/chttp2/transport/context_list.h +53 -0
  59. data/src/core/ext/transport/chttp2/transport/internal.h +38 -11
  60. data/src/core/ext/transport/chttp2/transport/writing.cc +5 -0
  61. data/src/core/ext/transport/inproc/inproc_transport.cc +1 -1
  62. data/src/core/lib/channel/channelz.cc +19 -18
  63. data/src/core/lib/channel/channelz.h +7 -1
  64. data/src/core/lib/channel/channelz_registry.cc +3 -2
  65. data/src/core/lib/debug/trace.cc +3 -0
  66. data/src/core/lib/debug/trace.h +5 -3
  67. data/src/core/lib/gpr/sync_posix.cc +96 -4
  68. data/src/core/lib/gprpp/inlined_vector.h +25 -19
  69. data/src/core/lib/gprpp/memory.h +2 -11
  70. data/src/core/lib/gprpp/orphanable.h +18 -82
  71. data/src/core/lib/gprpp/ref_counted.h +75 -84
  72. data/src/core/lib/gprpp/ref_counted_ptr.h +22 -17
  73. data/src/core/lib/http/httpcli_security_connector.cc +101 -94
  74. data/src/core/lib/http/parser.h +5 -5
  75. data/src/core/lib/iomgr/buffer_list.cc +16 -5
  76. data/src/core/lib/iomgr/buffer_list.h +10 -3
  77. data/src/core/lib/iomgr/call_combiner.cc +50 -2
  78. data/src/core/lib/iomgr/call_combiner.h +29 -2
  79. data/src/core/lib/iomgr/dynamic_annotations.h +67 -0
  80. data/src/core/lib/iomgr/endpoint.cc +4 -0
  81. data/src/core/lib/iomgr/endpoint.h +3 -0
  82. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
  83. data/src/core/lib/iomgr/ev_epoll1_linux.cc +4 -0
  84. data/src/core/lib/iomgr/ev_epollex_linux.cc +4 -0
  85. data/src/core/lib/iomgr/ev_poll_posix.cc +4 -0
  86. data/src/core/lib/iomgr/ev_posix.cc +15 -7
  87. data/src/core/lib/iomgr/ev_posix.h +10 -0
  88. data/src/core/lib/iomgr/exec_ctx.cc +13 -0
  89. data/src/core/lib/iomgr/fork_posix.cc +1 -1
  90. data/src/core/lib/iomgr/internal_errqueue.cc +36 -3
  91. data/src/core/lib/iomgr/internal_errqueue.h +7 -1
  92. data/src/core/lib/iomgr/iomgr.cc +7 -0
  93. data/src/core/lib/iomgr/iomgr.h +4 -0
  94. data/src/core/lib/iomgr/iomgr_custom.cc +3 -1
  95. data/src/core/lib/iomgr/iomgr_internal.cc +4 -0
  96. data/src/core/lib/iomgr/iomgr_internal.h +4 -0
  97. data/src/core/lib/iomgr/iomgr_posix.cc +6 -1
  98. data/src/core/lib/iomgr/iomgr_windows.cc +4 -1
  99. data/src/core/lib/iomgr/port.h +1 -2
  100. data/src/core/lib/iomgr/resource_quota.cc +1 -0
  101. data/src/core/lib/iomgr/sockaddr_utils.cc +1 -0
  102. data/src/core/lib/iomgr/tcp_custom.cc +4 -1
  103. data/src/core/lib/iomgr/tcp_posix.cc +95 -35
  104. data/src/core/lib/iomgr/tcp_windows.cc +4 -1
  105. data/src/core/lib/iomgr/timer_manager.cc +6 -0
  106. data/src/core/lib/security/context/security_context.cc +75 -108
  107. data/src/core/lib/security/context/security_context.h +59 -35
  108. data/src/core/lib/security/credentials/alts/alts_credentials.cc +36 -48
  109. data/src/core/lib/security/credentials/alts/alts_credentials.h +37 -10
  110. data/src/core/lib/security/credentials/composite/composite_credentials.cc +97 -157
  111. data/src/core/lib/security/credentials/composite/composite_credentials.h +60 -24
  112. data/src/core/lib/security/credentials/credentials.cc +18 -142
  113. data/src/core/lib/security/credentials/credentials.h +119 -95
  114. data/src/core/lib/security/credentials/fake/fake_credentials.cc +46 -71
  115. data/src/core/lib/security/credentials/fake/fake_credentials.h +23 -5
  116. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +144 -51
  117. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +28 -5
  118. data/src/core/lib/security/credentials/iam/iam_credentials.cc +27 -35
  119. data/src/core/lib/security/credentials/iam/iam_credentials.h +18 -4
  120. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +60 -69
  121. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +29 -10
  122. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +2 -0
  123. data/src/core/lib/security/credentials/local/local_credentials.cc +19 -32
  124. data/src/core/lib/security/credentials/local/local_credentials.h +32 -11
  125. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +130 -149
  126. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +74 -29
  127. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +59 -77
  128. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +40 -17
  129. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +66 -83
  130. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +58 -15
  131. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +152 -177
  132. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +12 -10
  133. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +210 -215
  134. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +9 -6
  135. data/src/core/lib/security/security_connector/local/local_security_connector.cc +176 -169
  136. data/src/core/lib/security/security_connector/local/local_security_connector.h +10 -9
  137. data/src/core/lib/security/security_connector/security_connector.cc +41 -124
  138. data/src/core/lib/security/security_connector/security_connector.h +102 -105
  139. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +348 -370
  140. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +14 -12
  141. data/src/core/lib/security/security_connector/ssl_utils.cc +13 -9
  142. data/src/core/lib/security/security_connector/ssl_utils.h +3 -1
  143. data/src/core/lib/security/transport/client_auth_filter.cc +50 -50
  144. data/src/core/lib/security/transport/secure_endpoint.cc +7 -1
  145. data/src/core/lib/security/transport/security_handshaker.cc +82 -66
  146. data/src/core/lib/security/transport/server_auth_filter.cc +15 -13
  147. data/src/core/lib/surface/init.cc +1 -0
  148. data/src/core/lib/surface/server.cc +13 -11
  149. data/src/core/lib/surface/server.h +6 -6
  150. data/src/core/lib/surface/version.cc +2 -2
  151. data/src/core/lib/transport/metadata.cc +1 -0
  152. data/src/core/lib/transport/static_metadata.cc +228 -221
  153. data/src/core/lib/transport/static_metadata.h +75 -71
  154. data/src/core/lib/transport/transport.cc +2 -1
  155. data/src/core/lib/transport/transport.h +5 -1
  156. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +9 -2
  157. data/src/core/tsi/ssl_transport_security.cc +35 -24
  158. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +1 -1
  159. data/src/ruby/lib/grpc/generic/rpc_server.rb +61 -0
  160. data/src/ruby/lib/grpc/generic/service.rb +1 -1
  161. data/src/ruby/lib/grpc/version.rb +1 -1
  162. data/src/ruby/pb/grpc/health/checker.rb +2 -3
  163. data/src/ruby/spec/generic/rpc_server_spec.rb +22 -0
  164. data/src/ruby/spec/support/services.rb +1 -0
  165. metadata +37 -32
  166. data/src/core/ext/filters/client_channel/lb_policy_factory.cc +0 -163
@@ -39,8 +39,12 @@ enum async_state {
39
39
  };
40
40
 
41
41
  struct channel_data {
42
- grpc_auth_context* auth_context;
43
- grpc_server_credentials* creds;
42
+ channel_data(grpc_auth_context* auth_context, grpc_server_credentials* creds)
43
+ : auth_context(auth_context->Ref()), creds(creds->Ref()) {}
44
+ ~channel_data() { auth_context.reset(DEBUG_LOCATION, "server_auth_filter"); }
45
+
46
+ grpc_core::RefCountedPtr<grpc_auth_context> auth_context;
47
+ grpc_core::RefCountedPtr<grpc_server_credentials> creds;
44
48
  };
45
49
 
46
50
  struct call_data {
@@ -58,7 +62,7 @@ struct call_data {
58
62
  grpc_server_security_context_create(args.arena);
59
63
  channel_data* chand = static_cast<channel_data*>(elem->channel_data);
60
64
  server_ctx->auth_context =
61
- GRPC_AUTH_CONTEXT_REF(chand->auth_context, "server_auth_filter");
65
+ chand->auth_context->Ref(DEBUG_LOCATION, "server_auth_filter");
62
66
  if (args.context[GRPC_CONTEXT_SECURITY].value != nullptr) {
63
67
  args.context[GRPC_CONTEXT_SECURITY].destroy(
64
68
  args.context[GRPC_CONTEXT_SECURITY].value);
@@ -208,7 +212,8 @@ static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
208
212
  call_data* calld = static_cast<call_data*>(elem->call_data);
209
213
  grpc_transport_stream_op_batch* batch = calld->recv_initial_metadata_batch;
210
214
  if (error == GRPC_ERROR_NONE) {
211
- if (chand->creds != nullptr && chand->creds->processor.process != nullptr) {
215
+ if (chand->creds != nullptr &&
216
+ chand->creds->auth_metadata_processor().process != nullptr) {
212
217
  // We're calling out to the application, so we need to make sure
213
218
  // to drop the call combiner early if we get cancelled.
214
219
  GRPC_CLOSURE_INIT(&calld->cancel_closure, cancel_call, elem,
@@ -218,9 +223,10 @@ static void recv_initial_metadata_ready(void* arg, grpc_error* error) {
218
223
  GRPC_CALL_STACK_REF(calld->owning_call, "server_auth_metadata");
219
224
  calld->md = metadata_batch_to_md_array(
220
225
  batch->payload->recv_initial_metadata.recv_initial_metadata);
221
- chand->creds->processor.process(
222
- chand->creds->processor.state, chand->auth_context,
223
- calld->md.metadata, calld->md.count, on_md_processing_done, elem);
226
+ chand->creds->auth_metadata_processor().process(
227
+ chand->creds->auth_metadata_processor().state,
228
+ chand->auth_context.get(), calld->md.metadata, calld->md.count,
229
+ on_md_processing_done, elem);
224
230
  return;
225
231
  }
226
232
  }
@@ -290,23 +296,19 @@ static void destroy_call_elem(grpc_call_element* elem,
290
296
  static grpc_error* init_channel_elem(grpc_channel_element* elem,
291
297
  grpc_channel_element_args* args) {
292
298
  GPR_ASSERT(!args->is_last);
293
- channel_data* chand = static_cast<channel_data*>(elem->channel_data);
294
299
  grpc_auth_context* auth_context =
295
300
  grpc_find_auth_context_in_args(args->channel_args);
296
301
  GPR_ASSERT(auth_context != nullptr);
297
- chand->auth_context =
298
- GRPC_AUTH_CONTEXT_REF(auth_context, "server_auth_filter");
299
302
  grpc_server_credentials* creds =
300
303
  grpc_find_server_credentials_in_args(args->channel_args);
301
- chand->creds = grpc_server_credentials_ref(creds);
304
+ new (elem->channel_data) channel_data(auth_context, creds);
302
305
  return GRPC_ERROR_NONE;
303
306
  }
304
307
 
305
308
  /* Destructor for channel data */
306
309
  static void destroy_channel_elem(grpc_channel_element* elem) {
307
310
  channel_data* chand = static_cast<channel_data*>(elem->channel_data);
308
- GRPC_AUTH_CONTEXT_UNREF(chand->auth_context, "server_auth_filter");
309
- grpc_server_credentials_unref(chand->creds);
311
+ chand->~channel_data();
310
312
  }
311
313
 
312
314
  const grpc_channel_filter grpc_server_auth_filter = {
@@ -161,6 +161,7 @@ void grpc_shutdown(void) {
161
161
  if (--g_initializations == 0) {
162
162
  {
163
163
  grpc_core::ExecCtx exec_ctx(0);
164
+ grpc_iomgr_shutdown_background_closure();
164
165
  {
165
166
  grpc_timer_manager_set_threading(
166
167
  false); // shutdown timer_manager thread
@@ -28,6 +28,8 @@
28
28
  #include <grpc/support/log.h>
29
29
  #include <grpc/support/string_util.h>
30
30
 
31
+ #include <utility>
32
+
31
33
  #include "src/core/lib/channel/channel_args.h"
32
34
  #include "src/core/lib/channel/connected_channel.h"
33
35
  #include "src/core/lib/debug/stats.h"
@@ -109,7 +111,7 @@ struct channel_data {
109
111
  uint32_t registered_method_max_probes;
110
112
  grpc_closure finish_destroy_channel_closure;
111
113
  grpc_closure channel_connectivity_changed;
112
- intptr_t socket_uuid;
114
+ grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode> socket_node;
113
115
  };
114
116
 
115
117
  typedef struct shutdown_tag {
@@ -937,6 +939,7 @@ static grpc_error* init_channel_elem(grpc_channel_element* elem,
937
939
  static void destroy_channel_elem(grpc_channel_element* elem) {
938
940
  size_t i;
939
941
  channel_data* chand = static_cast<channel_data*>(elem->channel_data);
942
+ chand->socket_node.reset();
940
943
  if (chand->registered_methods) {
941
944
  for (i = 0; i < chand->registered_method_slots; i++) {
942
945
  grpc_slice_unref_internal(chand->registered_methods[i].method);
@@ -1142,11 +1145,11 @@ void grpc_server_get_pollsets(grpc_server* server, grpc_pollset*** pollsets,
1142
1145
  *pollsets = server->pollsets;
1143
1146
  }
1144
1147
 
1145
- void grpc_server_setup_transport(grpc_server* s, grpc_transport* transport,
1146
- grpc_pollset* accepting_pollset,
1147
- const grpc_channel_args* args,
1148
- intptr_t socket_uuid,
1149
- grpc_resource_user* resource_user) {
1148
+ void grpc_server_setup_transport(
1149
+ grpc_server* s, grpc_transport* transport, grpc_pollset* accepting_pollset,
1150
+ const grpc_channel_args* args,
1151
+ grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode> socket_node,
1152
+ grpc_resource_user* resource_user) {
1150
1153
  size_t num_registered_methods;
1151
1154
  size_t alloc;
1152
1155
  registered_method* rm;
@@ -1167,7 +1170,7 @@ void grpc_server_setup_transport(grpc_server* s, grpc_transport* transport,
1167
1170
  chand->server = s;
1168
1171
  server_ref(s);
1169
1172
  chand->channel = channel;
1170
- chand->socket_uuid = socket_uuid;
1173
+ chand->socket_node = std::move(socket_node);
1171
1174
 
1172
1175
  size_t cq_idx;
1173
1176
  for (cq_idx = 0; cq_idx < s->cq_count; cq_idx++) {
@@ -1243,14 +1246,13 @@ void grpc_server_setup_transport(grpc_server* s, grpc_transport* transport,
1243
1246
  }
1244
1247
 
1245
1248
  void grpc_server_populate_server_sockets(
1246
- grpc_server* s, grpc_core::channelz::ChildRefsList* server_sockets,
1249
+ grpc_server* s, grpc_core::channelz::ChildSocketsList* server_sockets,
1247
1250
  intptr_t start_idx) {
1248
1251
  gpr_mu_lock(&s->mu_global);
1249
1252
  channel_data* c = nullptr;
1250
1253
  for (c = s->root_channel_data.next; c != &s->root_channel_data; c = c->next) {
1251
- intptr_t socket_uuid = c->socket_uuid;
1252
- if (socket_uuid >= start_idx) {
1253
- server_sockets->push_back(socket_uuid);
1254
+ if (c->socket_node != nullptr && c->socket_node->uuid() >= start_idx) {
1255
+ server_sockets->push_back(c->socket_node.get());
1254
1256
  }
1255
1257
  }
1256
1258
  gpr_mu_unlock(&s->mu_global);
@@ -44,15 +44,15 @@ void grpc_server_add_listener(grpc_server* server, void* listener,
44
44
 
45
45
  /* Setup a transport - creates a channel stack, binds the transport to the
46
46
  server */
47
- void grpc_server_setup_transport(grpc_server* server, grpc_transport* transport,
48
- grpc_pollset* accepting_pollset,
49
- const grpc_channel_args* args,
50
- intptr_t socket_uuid,
51
- grpc_resource_user* resource_user = nullptr);
47
+ void grpc_server_setup_transport(
48
+ grpc_server* server, grpc_transport* transport,
49
+ grpc_pollset* accepting_pollset, const grpc_channel_args* args,
50
+ grpc_core::RefCountedPtr<grpc_core::channelz::SocketNode> socket_node,
51
+ grpc_resource_user* resource_user = nullptr);
52
52
 
53
53
  /* fills in the uuids of all sockets used for connections on this server */
54
54
  void grpc_server_populate_server_sockets(
55
- grpc_server* server, grpc_core::channelz::ChildRefsList* server_sockets,
55
+ grpc_server* server, grpc_core::channelz::ChildSocketsList* server_sockets,
56
56
  intptr_t start_idx);
57
57
 
58
58
  /* fills in the uuids of all listen sockets on this server */
@@ -23,6 +23,6 @@
23
23
 
24
24
  #include <grpc/grpc.h>
25
25
 
26
- const char* grpc_version_string(void) { return "7.0.0"; }
26
+ const char* grpc_version_string(void) { return "7.0.0-pre1"; }
27
27
 
28
- const char* grpc_g_stands_for(void) { return "gizmo"; }
28
+ const char* grpc_g_stands_for(void) { return "goose"; }
@@ -187,6 +187,7 @@ static void gc_mdtab(mdtab_shard* shard) {
187
187
  ((destroy_user_data_func)gpr_atm_no_barrier_load(
188
188
  &md->destroy_user_data))(user_data);
189
189
  }
190
+ gpr_mu_destroy(&md->mu_user_data);
190
191
  gpr_free(md);
191
192
  *prev_next = next;
192
193
  num_freed++;
@@ -65,51 +65,56 @@ static uint8_t g_bytes[] = {
65
65
  97, 110, 99, 101, 114, 47, 66, 97, 108, 97, 110, 99, 101, 76, 111,
66
66
  97, 100, 47, 103, 114, 112, 99, 46, 104, 101, 97, 108, 116, 104, 46,
67
67
  118, 49, 46, 72, 101, 97, 108, 116, 104, 47, 87, 97, 116, 99, 104,
68
- 100, 101, 102, 108, 97, 116, 101, 103, 122, 105, 112, 115, 116, 114, 101,
69
- 97, 109, 47, 103, 122, 105, 112, 71, 69, 84, 80, 79, 83, 84, 47,
70
- 47, 105, 110, 100, 101, 120, 46, 104, 116, 109, 108, 104, 116, 116, 112,
71
- 104, 116, 116, 112, 115, 50, 48, 48, 50, 48, 52, 50, 48, 54, 51,
72
- 48, 52, 52, 48, 48, 52, 48, 52, 53, 48, 48, 97, 99, 99, 101,
73
- 112, 116, 45, 99, 104, 97, 114, 115, 101, 116, 103, 122, 105, 112, 44,
74
- 32, 100, 101, 102, 108, 97, 116, 101, 97, 99, 99, 101, 112, 116, 45,
75
- 108, 97, 110, 103, 117, 97, 103, 101, 97, 99, 99, 101, 112, 116, 45,
76
- 114, 97, 110, 103, 101, 115, 97, 99, 99, 101, 112, 116, 97, 99, 99,
77
- 101, 115, 115, 45, 99, 111, 110, 116, 114, 111, 108, 45, 97, 108, 108,
78
- 111, 119, 45, 111, 114, 105, 103, 105, 110, 97, 103, 101, 97, 108, 108,
79
- 111, 119, 97, 117, 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110,
80
- 99, 97, 99, 104, 101, 45, 99, 111, 110, 116, 114, 111, 108, 99, 111,
81
- 110, 116, 101, 110, 116, 45, 100, 105, 115, 112, 111, 115, 105, 116, 105,
82
- 111, 110, 99, 111, 110, 116, 101, 110, 116, 45, 108, 97, 110, 103, 117,
83
- 97, 103, 101, 99, 111, 110, 116, 101, 110, 116, 45, 108, 101, 110, 103,
84
- 116, 104, 99, 111, 110, 116, 101, 110, 116, 45, 108, 111, 99, 97, 116,
85
- 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45, 114, 97, 110, 103,
86
- 101, 99, 111, 111, 107, 105, 101, 100, 97, 116, 101, 101, 116, 97, 103,
87
- 101, 120, 112, 101, 99, 116, 101, 120, 112, 105, 114, 101, 115, 102, 114,
88
- 111, 109, 105, 102, 45, 109, 97, 116, 99, 104, 105, 102, 45, 109, 111,
89
- 100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 105, 102, 45,
90
- 110, 111, 110, 101, 45, 109, 97, 116, 99, 104, 105, 102, 45, 114, 97,
91
- 110, 103, 101, 105, 102, 45, 117, 110, 109, 111, 100, 105, 102, 105, 101,
92
- 100, 45, 115, 105, 110, 99, 101, 108, 97, 115, 116, 45, 109, 111, 100,
93
- 105, 102, 105, 101, 100, 108, 105, 110, 107, 108, 111, 99, 97, 116, 105,
94
- 111, 110, 109, 97, 120, 45, 102, 111, 114, 119, 97, 114, 100, 115, 112,
95
- 114, 111, 120, 121, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97,
96
- 116, 101, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 111, 114, 105,
97
- 122, 97, 116, 105, 111, 110, 114, 97, 110, 103, 101, 114, 101, 102, 101,
98
- 114, 101, 114, 114, 101, 102, 114, 101, 115, 104, 114, 101, 116, 114, 121,
99
- 45, 97, 102, 116, 101, 114, 115, 101, 114, 118, 101, 114, 115, 101, 116,
100
- 45, 99, 111, 111, 107, 105, 101, 115, 116, 114, 105, 99, 116, 45, 116,
101
- 114, 97, 110, 115, 112, 111, 114, 116, 45, 115, 101, 99, 117, 114, 105,
102
- 116, 121, 116, 114, 97, 110, 115, 102, 101, 114, 45, 101, 110, 99, 111,
103
- 100, 105, 110, 103, 118, 97, 114, 121, 118, 105, 97, 119, 119, 119, 45,
104
- 97, 117, 116, 104, 101, 110, 116, 105, 99, 97, 116, 101, 48, 105, 100,
105
- 101, 110, 116, 105, 116, 121, 116, 114, 97, 105, 108, 101, 114, 115, 97,
106
- 112, 112, 108, 105, 99, 97, 116, 105, 111, 110, 47, 103, 114, 112, 99,
107
- 103, 114, 112, 99, 80, 85, 84, 108, 98, 45, 99, 111, 115, 116, 45,
108
- 98, 105, 110, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102,
109
- 108, 97, 116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44, 103, 122,
110
- 105, 112, 100, 101, 102, 108, 97, 116, 101, 44, 103, 122, 105, 112, 105,
111
- 100, 101, 110, 116, 105, 116, 121, 44, 100, 101, 102, 108, 97, 116, 101,
112
- 44, 103, 122, 105, 112};
68
+ 47, 101, 110, 118, 111, 121, 46, 115, 101, 114, 118, 105, 99, 101, 46,
69
+ 100, 105, 115, 99, 111, 118, 101, 114, 121, 46, 118, 50, 46, 65, 103,
70
+ 103, 114, 101, 103, 97, 116, 101, 100, 68, 105, 115, 99, 111, 118, 101,
71
+ 114, 121, 83, 101, 114, 118, 105, 99, 101, 47, 83, 116, 114, 101, 97,
72
+ 109, 65, 103, 103, 114, 101, 103, 97, 116, 101, 100, 82, 101, 115, 111,
73
+ 117, 114, 99, 101, 115, 100, 101, 102, 108, 97, 116, 101, 103, 122, 105,
74
+ 112, 115, 116, 114, 101, 97, 109, 47, 103, 122, 105, 112, 71, 69, 84,
75
+ 80, 79, 83, 84, 47, 47, 105, 110, 100, 101, 120, 46, 104, 116, 109,
76
+ 108, 104, 116, 116, 112, 104, 116, 116, 112, 115, 50, 48, 48, 50, 48,
77
+ 52, 50, 48, 54, 51, 48, 52, 52, 48, 48, 52, 48, 52, 53, 48,
78
+ 48, 97, 99, 99, 101, 112, 116, 45, 99, 104, 97, 114, 115, 101, 116,
79
+ 103, 122, 105, 112, 44, 32, 100, 101, 102, 108, 97, 116, 101, 97, 99,
80
+ 99, 101, 112, 116, 45, 108, 97, 110, 103, 117, 97, 103, 101, 97, 99,
81
+ 99, 101, 112, 116, 45, 114, 97, 110, 103, 101, 115, 97, 99, 99, 101,
82
+ 112, 116, 97, 99, 99, 101, 115, 115, 45, 99, 111, 110, 116, 114, 111,
83
+ 108, 45, 97, 108, 108, 111, 119, 45, 111, 114, 105, 103, 105, 110, 97,
84
+ 103, 101, 97, 108, 108, 111, 119, 97, 117, 116, 104, 111, 114, 105, 122,
85
+ 97, 116, 105, 111, 110, 99, 97, 99, 104, 101, 45, 99, 111, 110, 116,
86
+ 114, 111, 108, 99, 111, 110, 116, 101, 110, 116, 45, 100, 105, 115, 112,
87
+ 111, 115, 105, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116, 45,
88
+ 108, 97, 110, 103, 117, 97, 103, 101, 99, 111, 110, 116, 101, 110, 116,
89
+ 45, 108, 101, 110, 103, 116, 104, 99, 111, 110, 116, 101, 110, 116, 45,
90
+ 108, 111, 99, 97, 116, 105, 111, 110, 99, 111, 110, 116, 101, 110, 116,
91
+ 45, 114, 97, 110, 103, 101, 99, 111, 111, 107, 105, 101, 100, 97, 116,
92
+ 101, 101, 116, 97, 103, 101, 120, 112, 101, 99, 116, 101, 120, 112, 105,
93
+ 114, 101, 115, 102, 114, 111, 109, 105, 102, 45, 109, 97, 116, 99, 104,
94
+ 105, 102, 45, 109, 111, 100, 105, 102, 105, 101, 100, 45, 115, 105, 110,
95
+ 99, 101, 105, 102, 45, 110, 111, 110, 101, 45, 109, 97, 116, 99, 104,
96
+ 105, 102, 45, 114, 97, 110, 103, 101, 105, 102, 45, 117, 110, 109, 111,
97
+ 100, 105, 102, 105, 101, 100, 45, 115, 105, 110, 99, 101, 108, 97, 115,
98
+ 116, 45, 109, 111, 100, 105, 102, 105, 101, 100, 108, 105, 110, 107, 108,
99
+ 111, 99, 97, 116, 105, 111, 110, 109, 97, 120, 45, 102, 111, 114, 119,
100
+ 97, 114, 100, 115, 112, 114, 111, 120, 121, 45, 97, 117, 116, 104, 101,
101
+ 110, 116, 105, 99, 97, 116, 101, 112, 114, 111, 120, 121, 45, 97, 117,
102
+ 116, 104, 111, 114, 105, 122, 97, 116, 105, 111, 110, 114, 97, 110, 103,
103
+ 101, 114, 101, 102, 101, 114, 101, 114, 114, 101, 102, 114, 101, 115, 104,
104
+ 114, 101, 116, 114, 121, 45, 97, 102, 116, 101, 114, 115, 101, 114, 118,
105
+ 101, 114, 115, 101, 116, 45, 99, 111, 111, 107, 105, 101, 115, 116, 114,
106
+ 105, 99, 116, 45, 116, 114, 97, 110, 115, 112, 111, 114, 116, 45, 115,
107
+ 101, 99, 117, 114, 105, 116, 121, 116, 114, 97, 110, 115, 102, 101, 114,
108
+ 45, 101, 110, 99, 111, 100, 105, 110, 103, 118, 97, 114, 121, 118, 105,
109
+ 97, 119, 119, 119, 45, 97, 117, 116, 104, 101, 110, 116, 105, 99, 97,
110
+ 116, 101, 48, 105, 100, 101, 110, 116, 105, 116, 121, 116, 114, 97, 105,
111
+ 108, 101, 114, 115, 97, 112, 112, 108, 105, 99, 97, 116, 105, 111, 110,
112
+ 47, 103, 114, 112, 99, 103, 114, 112, 99, 80, 85, 84, 108, 98, 45,
113
+ 99, 111, 115, 116, 45, 98, 105, 110, 105, 100, 101, 110, 116, 105, 116,
114
+ 121, 44, 100, 101, 102, 108, 97, 116, 101, 105, 100, 101, 110, 116, 105,
115
+ 116, 121, 44, 103, 122, 105, 112, 100, 101, 102, 108, 97, 116, 101, 44,
116
+ 103, 122, 105, 112, 105, 100, 101, 110, 116, 105, 116, 121, 44, 100, 101,
117
+ 102, 108, 97, 116, 101, 44, 103, 122, 105, 112};
113
118
 
114
119
  static void static_ref(void* unused) {}
115
120
  static void static_unref(void* unused) {}
@@ -227,6 +232,7 @@ grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
227
232
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
228
233
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
229
234
  {&grpc_static_metadata_vtable, &static_sub_refcnt},
235
+ {&grpc_static_metadata_vtable, &static_sub_refcnt},
230
236
  };
231
237
 
232
238
  const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
@@ -266,76 +272,77 @@ const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
266
272
  {&grpc_static_metadata_refcounts[33], {{g_bytes + 415, 31}}},
267
273
  {&grpc_static_metadata_refcounts[34], {{g_bytes + 446, 36}}},
268
274
  {&grpc_static_metadata_refcounts[35], {{g_bytes + 482, 28}}},
269
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 7}}},
270
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}},
271
- {&grpc_static_metadata_refcounts[38], {{g_bytes + 521, 11}}},
272
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 532, 3}}},
273
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 535, 4}}},
274
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 539, 1}}},
275
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 540, 11}}},
276
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 551, 4}}},
277
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 555, 5}}},
278
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 560, 3}}},
279
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 563, 3}}},
280
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 566, 3}}},
281
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 569, 3}}},
282
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 572, 3}}},
283
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 575, 3}}},
284
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 578, 3}}},
285
- {&grpc_static_metadata_refcounts[52], {{g_bytes + 581, 14}}},
286
- {&grpc_static_metadata_refcounts[53], {{g_bytes + 595, 13}}},
287
- {&grpc_static_metadata_refcounts[54], {{g_bytes + 608, 15}}},
288
- {&grpc_static_metadata_refcounts[55], {{g_bytes + 623, 13}}},
289
- {&grpc_static_metadata_refcounts[56], {{g_bytes + 636, 6}}},
290
- {&grpc_static_metadata_refcounts[57], {{g_bytes + 642, 27}}},
291
- {&grpc_static_metadata_refcounts[58], {{g_bytes + 669, 3}}},
292
- {&grpc_static_metadata_refcounts[59], {{g_bytes + 672, 5}}},
293
- {&grpc_static_metadata_refcounts[60], {{g_bytes + 677, 13}}},
294
- {&grpc_static_metadata_refcounts[61], {{g_bytes + 690, 13}}},
295
- {&grpc_static_metadata_refcounts[62], {{g_bytes + 703, 19}}},
296
- {&grpc_static_metadata_refcounts[63], {{g_bytes + 722, 16}}},
297
- {&grpc_static_metadata_refcounts[64], {{g_bytes + 738, 14}}},
298
- {&grpc_static_metadata_refcounts[65], {{g_bytes + 752, 16}}},
299
- {&grpc_static_metadata_refcounts[66], {{g_bytes + 768, 13}}},
300
- {&grpc_static_metadata_refcounts[67], {{g_bytes + 781, 6}}},
301
- {&grpc_static_metadata_refcounts[68], {{g_bytes + 787, 4}}},
302
- {&grpc_static_metadata_refcounts[69], {{g_bytes + 791, 4}}},
303
- {&grpc_static_metadata_refcounts[70], {{g_bytes + 795, 6}}},
304
- {&grpc_static_metadata_refcounts[71], {{g_bytes + 801, 7}}},
305
- {&grpc_static_metadata_refcounts[72], {{g_bytes + 808, 4}}},
306
- {&grpc_static_metadata_refcounts[73], {{g_bytes + 812, 8}}},
307
- {&grpc_static_metadata_refcounts[74], {{g_bytes + 820, 17}}},
308
- {&grpc_static_metadata_refcounts[75], {{g_bytes + 837, 13}}},
309
- {&grpc_static_metadata_refcounts[76], {{g_bytes + 850, 8}}},
310
- {&grpc_static_metadata_refcounts[77], {{g_bytes + 858, 19}}},
311
- {&grpc_static_metadata_refcounts[78], {{g_bytes + 877, 13}}},
312
- {&grpc_static_metadata_refcounts[79], {{g_bytes + 890, 4}}},
313
- {&grpc_static_metadata_refcounts[80], {{g_bytes + 894, 8}}},
314
- {&grpc_static_metadata_refcounts[81], {{g_bytes + 902, 12}}},
315
- {&grpc_static_metadata_refcounts[82], {{g_bytes + 914, 18}}},
316
- {&grpc_static_metadata_refcounts[83], {{g_bytes + 932, 19}}},
317
- {&grpc_static_metadata_refcounts[84], {{g_bytes + 951, 5}}},
318
- {&grpc_static_metadata_refcounts[85], {{g_bytes + 956, 7}}},
319
- {&grpc_static_metadata_refcounts[86], {{g_bytes + 963, 7}}},
320
- {&grpc_static_metadata_refcounts[87], {{g_bytes + 970, 11}}},
321
- {&grpc_static_metadata_refcounts[88], {{g_bytes + 981, 6}}},
322
- {&grpc_static_metadata_refcounts[89], {{g_bytes + 987, 10}}},
323
- {&grpc_static_metadata_refcounts[90], {{g_bytes + 997, 25}}},
324
- {&grpc_static_metadata_refcounts[91], {{g_bytes + 1022, 17}}},
325
- {&grpc_static_metadata_refcounts[92], {{g_bytes + 1039, 4}}},
326
- {&grpc_static_metadata_refcounts[93], {{g_bytes + 1043, 3}}},
327
- {&grpc_static_metadata_refcounts[94], {{g_bytes + 1046, 16}}},
328
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1062, 1}}},
329
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}},
330
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1071, 8}}},
331
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1079, 16}}},
332
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1095, 4}}},
333
- {&grpc_static_metadata_refcounts[100], {{g_bytes + 1099, 3}}},
334
- {&grpc_static_metadata_refcounts[101], {{g_bytes + 1102, 11}}},
335
- {&grpc_static_metadata_refcounts[102], {{g_bytes + 1113, 16}}},
336
- {&grpc_static_metadata_refcounts[103], {{g_bytes + 1129, 13}}},
337
- {&grpc_static_metadata_refcounts[104], {{g_bytes + 1142, 12}}},
338
- {&grpc_static_metadata_refcounts[105], {{g_bytes + 1154, 21}}},
275
+ {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 80}}},
276
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 590, 7}}},
277
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}},
278
+ {&grpc_static_metadata_refcounts[39], {{g_bytes + 601, 11}}},
279
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 612, 3}}},
280
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 615, 4}}},
281
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 619, 1}}},
282
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 620, 11}}},
283
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 631, 4}}},
284
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 635, 5}}},
285
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 640, 3}}},
286
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 643, 3}}},
287
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 646, 3}}},
288
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 649, 3}}},
289
+ {&grpc_static_metadata_refcounts[50], {{g_bytes + 652, 3}}},
290
+ {&grpc_static_metadata_refcounts[51], {{g_bytes + 655, 3}}},
291
+ {&grpc_static_metadata_refcounts[52], {{g_bytes + 658, 3}}},
292
+ {&grpc_static_metadata_refcounts[53], {{g_bytes + 661, 14}}},
293
+ {&grpc_static_metadata_refcounts[54], {{g_bytes + 675, 13}}},
294
+ {&grpc_static_metadata_refcounts[55], {{g_bytes + 688, 15}}},
295
+ {&grpc_static_metadata_refcounts[56], {{g_bytes + 703, 13}}},
296
+ {&grpc_static_metadata_refcounts[57], {{g_bytes + 716, 6}}},
297
+ {&grpc_static_metadata_refcounts[58], {{g_bytes + 722, 27}}},
298
+ {&grpc_static_metadata_refcounts[59], {{g_bytes + 749, 3}}},
299
+ {&grpc_static_metadata_refcounts[60], {{g_bytes + 752, 5}}},
300
+ {&grpc_static_metadata_refcounts[61], {{g_bytes + 757, 13}}},
301
+ {&grpc_static_metadata_refcounts[62], {{g_bytes + 770, 13}}},
302
+ {&grpc_static_metadata_refcounts[63], {{g_bytes + 783, 19}}},
303
+ {&grpc_static_metadata_refcounts[64], {{g_bytes + 802, 16}}},
304
+ {&grpc_static_metadata_refcounts[65], {{g_bytes + 818, 14}}},
305
+ {&grpc_static_metadata_refcounts[66], {{g_bytes + 832, 16}}},
306
+ {&grpc_static_metadata_refcounts[67], {{g_bytes + 848, 13}}},
307
+ {&grpc_static_metadata_refcounts[68], {{g_bytes + 861, 6}}},
308
+ {&grpc_static_metadata_refcounts[69], {{g_bytes + 867, 4}}},
309
+ {&grpc_static_metadata_refcounts[70], {{g_bytes + 871, 4}}},
310
+ {&grpc_static_metadata_refcounts[71], {{g_bytes + 875, 6}}},
311
+ {&grpc_static_metadata_refcounts[72], {{g_bytes + 881, 7}}},
312
+ {&grpc_static_metadata_refcounts[73], {{g_bytes + 888, 4}}},
313
+ {&grpc_static_metadata_refcounts[74], {{g_bytes + 892, 8}}},
314
+ {&grpc_static_metadata_refcounts[75], {{g_bytes + 900, 17}}},
315
+ {&grpc_static_metadata_refcounts[76], {{g_bytes + 917, 13}}},
316
+ {&grpc_static_metadata_refcounts[77], {{g_bytes + 930, 8}}},
317
+ {&grpc_static_metadata_refcounts[78], {{g_bytes + 938, 19}}},
318
+ {&grpc_static_metadata_refcounts[79], {{g_bytes + 957, 13}}},
319
+ {&grpc_static_metadata_refcounts[80], {{g_bytes + 970, 4}}},
320
+ {&grpc_static_metadata_refcounts[81], {{g_bytes + 974, 8}}},
321
+ {&grpc_static_metadata_refcounts[82], {{g_bytes + 982, 12}}},
322
+ {&grpc_static_metadata_refcounts[83], {{g_bytes + 994, 18}}},
323
+ {&grpc_static_metadata_refcounts[84], {{g_bytes + 1012, 19}}},
324
+ {&grpc_static_metadata_refcounts[85], {{g_bytes + 1031, 5}}},
325
+ {&grpc_static_metadata_refcounts[86], {{g_bytes + 1036, 7}}},
326
+ {&grpc_static_metadata_refcounts[87], {{g_bytes + 1043, 7}}},
327
+ {&grpc_static_metadata_refcounts[88], {{g_bytes + 1050, 11}}},
328
+ {&grpc_static_metadata_refcounts[89], {{g_bytes + 1061, 6}}},
329
+ {&grpc_static_metadata_refcounts[90], {{g_bytes + 1067, 10}}},
330
+ {&grpc_static_metadata_refcounts[91], {{g_bytes + 1077, 25}}},
331
+ {&grpc_static_metadata_refcounts[92], {{g_bytes + 1102, 17}}},
332
+ {&grpc_static_metadata_refcounts[93], {{g_bytes + 1119, 4}}},
333
+ {&grpc_static_metadata_refcounts[94], {{g_bytes + 1123, 3}}},
334
+ {&grpc_static_metadata_refcounts[95], {{g_bytes + 1126, 16}}},
335
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1142, 1}}},
336
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}},
337
+ {&grpc_static_metadata_refcounts[98], {{g_bytes + 1151, 8}}},
338
+ {&grpc_static_metadata_refcounts[99], {{g_bytes + 1159, 16}}},
339
+ {&grpc_static_metadata_refcounts[100], {{g_bytes + 1175, 4}}},
340
+ {&grpc_static_metadata_refcounts[101], {{g_bytes + 1179, 3}}},
341
+ {&grpc_static_metadata_refcounts[102], {{g_bytes + 1182, 11}}},
342
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1193, 16}}},
343
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1209, 13}}},
344
+ {&grpc_static_metadata_refcounts[105], {{g_bytes + 1222, 12}}},
345
+ {&grpc_static_metadata_refcounts[106], {{g_bytes + 1234, 21}}},
339
346
  };
340
347
 
341
348
  uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
@@ -345,17 +352,17 @@ uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
345
352
  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};
346
353
 
347
354
  static const int8_t elems_r[] = {
348
- 16, 11, -8, 0, 3, -42, -81, -43, 0, 6, -8, 0, 0, 0, -7,
349
- -3, -10, 0, 0, 0, -1, -2, 0, 0, 0, 0, 0, 0, 0, 0,
350
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
351
- 0, 0, 0, 0, 0, 0, 0, -63, 0, -47, -68, -69, -70, 0, 33,
352
- 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 20,
353
- 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5,
354
- 4, 4, 4, 3, 10, 9, 0, 0, 0, 0, 0, 0, -3, 0};
355
+ 15, 10, -8, 0, 2, -42, -81, -43, 0, 6, -8, 0, 0, 0, 2,
356
+ -3, -10, 0, 0, 1, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0,
357
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
358
+ 0, 0, 0, 0, 0, 0, 0, 0, -64, 0, -67, -68, -69, -70, 0,
359
+ 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21,
360
+ 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6,
361
+ 5, 4, 5, 4, 4, 8, 8, 0, 0, 0, 0, 0, 0, -5, 0};
355
362
  static uint32_t elems_phash(uint32_t i) {
356
- i -= 41;
357
- uint32_t x = i % 104;
358
- uint32_t y = i / 104;
363
+ i -= 42;
364
+ uint32_t x = i % 105;
365
+ uint32_t y = i / 105;
359
366
  uint32_t h = x;
360
367
  if (y < GPR_ARRAY_SIZE(elems_r)) {
361
368
  uint32_t delta = (uint32_t)elems_r[y];
@@ -365,29 +372,29 @@ static uint32_t elems_phash(uint32_t i) {
365
372
  }
366
373
 
367
374
  static const uint16_t elem_keys[] = {
368
- 257, 258, 259, 260, 261, 262, 263, 1096, 1097, 1513, 1725, 145,
369
- 146, 467, 468, 1619, 41, 42, 1733, 990, 991, 767, 768, 1627,
370
- 627, 837, 2043, 2149, 2255, 5541, 5859, 5965, 6071, 6177, 1749, 6283,
371
- 6389, 6495, 6601, 6707, 6813, 6919, 7025, 7131, 7237, 7343, 7449, 7555,
372
- 7661, 5753, 7767, 7873, 7979, 8085, 8191, 8297, 8403, 8509, 8615, 8721,
373
- 8827, 8933, 9039, 9145, 9251, 9357, 9463, 1156, 9569, 523, 9675, 9781,
374
- 206, 1162, 1163, 1164, 1165, 1792, 1582, 1050, 9887, 9993, 1686, 10735,
375
- 1799, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 0,
376
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
377
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
378
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
379
- 0, 0, 0, 0};
375
+ 260, 261, 262, 263, 264, 265, 266, 1107, 1108, 1741, 147, 148,
376
+ 472, 473, 1634, 42, 43, 1527, 1750, 1000, 1001, 774, 775, 1643,
377
+ 633, 845, 2062, 2169, 2276, 5700, 5914, 6021, 6128, 6235, 1766, 6342,
378
+ 6449, 6556, 6663, 6770, 6877, 6984, 7091, 7198, 7305, 7412, 7519, 7626,
379
+ 7733, 7840, 7947, 8054, 8161, 8268, 8375, 8482, 8589, 8696, 8803, 8910,
380
+ 9017, 9124, 9231, 9338, 9445, 9552, 9659, 1167, 528, 9766, 9873, 208,
381
+ 9980, 1173, 1174, 1175, 1176, 1809, 10087, 1060, 10194, 10943, 1702, 0,
382
+ 1816, 0, 0, 1597, 0, 0, 350, 0, 0, 0, 0, 0,
383
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
384
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
385
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
386
+ 0, 0, 0, 0, 0, 0, 0};
380
387
  static const uint8_t elem_idxs[] = {
381
- 7, 8, 9, 10, 11, 12, 13, 77, 79, 30, 71, 1, 2, 5, 6, 25,
382
- 3, 4, 84, 66, 65, 62, 63, 73, 67, 61, 57, 37, 74, 14, 17, 18,
383
- 19, 20, 15, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34, 35,
384
- 36, 16, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
385
- 52, 53, 54, 76, 55, 69, 56, 58, 70, 78, 80, 81, 82, 83, 68, 64,
386
- 59, 60, 72, 75, 85, 255, 255, 255, 255, 255, 0};
388
+ 7, 8, 9, 10, 11, 12, 13, 77, 79, 71, 1, 2, 5, 6, 25, 3,
389
+ 4, 30, 84, 66, 65, 62, 63, 73, 67, 61, 57, 37, 74, 14, 16, 17,
390
+ 18, 19, 15, 20, 21, 22, 23, 24, 26, 27, 28, 29, 31, 32, 33, 34,
391
+ 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51,
392
+ 52, 53, 54, 76, 69, 55, 56, 70, 58, 78, 80, 81, 82, 83, 59, 64,
393
+ 60, 75, 72, 255, 85, 255, 255, 68, 255, 255, 0};
387
394
 
388
395
  grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
389
396
  if (a == -1 || b == -1) return GRPC_MDNULL;
390
- uint32_t k = (uint32_t)(a * 106 + b);
397
+ uint32_t k = (uint32_t)(a * 107 + b);
391
398
  uint32_t h = elems_phash(k);
392
399
  return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
393
400
  elem_idxs[h] != 255
@@ -400,175 +407,175 @@ grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
400
407
  {{&grpc_static_metadata_refcounts[3], {{g_bytes + 19, 10}}},
401
408
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
402
409
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
403
- {&grpc_static_metadata_refcounts[39], {{g_bytes + 532, 3}}}},
410
+ {&grpc_static_metadata_refcounts[40], {{g_bytes + 612, 3}}}},
404
411
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
405
- {&grpc_static_metadata_refcounts[40], {{g_bytes + 535, 4}}}},
412
+ {&grpc_static_metadata_refcounts[41], {{g_bytes + 615, 4}}}},
406
413
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
407
- {&grpc_static_metadata_refcounts[41], {{g_bytes + 539, 1}}}},
414
+ {&grpc_static_metadata_refcounts[42], {{g_bytes + 619, 1}}}},
408
415
  {{&grpc_static_metadata_refcounts[0], {{g_bytes + 0, 5}}},
409
- {&grpc_static_metadata_refcounts[42], {{g_bytes + 540, 11}}}},
416
+ {&grpc_static_metadata_refcounts[43], {{g_bytes + 620, 11}}}},
410
417
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
411
- {&grpc_static_metadata_refcounts[43], {{g_bytes + 551, 4}}}},
418
+ {&grpc_static_metadata_refcounts[44], {{g_bytes + 631, 4}}}},
412
419
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
413
- {&grpc_static_metadata_refcounts[44], {{g_bytes + 555, 5}}}},
420
+ {&grpc_static_metadata_refcounts[45], {{g_bytes + 635, 5}}}},
414
421
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
415
- {&grpc_static_metadata_refcounts[45], {{g_bytes + 560, 3}}}},
422
+ {&grpc_static_metadata_refcounts[46], {{g_bytes + 640, 3}}}},
416
423
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
417
- {&grpc_static_metadata_refcounts[46], {{g_bytes + 563, 3}}}},
424
+ {&grpc_static_metadata_refcounts[47], {{g_bytes + 643, 3}}}},
418
425
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
419
- {&grpc_static_metadata_refcounts[47], {{g_bytes + 566, 3}}}},
426
+ {&grpc_static_metadata_refcounts[48], {{g_bytes + 646, 3}}}},
420
427
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
421
- {&grpc_static_metadata_refcounts[48], {{g_bytes + 569, 3}}}},
428
+ {&grpc_static_metadata_refcounts[49], {{g_bytes + 649, 3}}}},
422
429
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
423
- {&grpc_static_metadata_refcounts[49], {{g_bytes + 572, 3}}}},
430
+ {&grpc_static_metadata_refcounts[50], {{g_bytes + 652, 3}}}},
424
431
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
425
- {&grpc_static_metadata_refcounts[50], {{g_bytes + 575, 3}}}},
432
+ {&grpc_static_metadata_refcounts[51], {{g_bytes + 655, 3}}}},
426
433
  {{&grpc_static_metadata_refcounts[2], {{g_bytes + 12, 7}}},
427
- {&grpc_static_metadata_refcounts[51], {{g_bytes + 578, 3}}}},
428
- {{&grpc_static_metadata_refcounts[52], {{g_bytes + 581, 14}}},
434
+ {&grpc_static_metadata_refcounts[52], {{g_bytes + 658, 3}}}},
435
+ {{&grpc_static_metadata_refcounts[53], {{g_bytes + 661, 14}}},
429
436
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
430
437
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
431
- {&grpc_static_metadata_refcounts[53], {{g_bytes + 595, 13}}}},
432
- {{&grpc_static_metadata_refcounts[54], {{g_bytes + 608, 15}}},
438
+ {&grpc_static_metadata_refcounts[54], {{g_bytes + 675, 13}}}},
439
+ {{&grpc_static_metadata_refcounts[55], {{g_bytes + 688, 15}}},
433
440
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
434
- {{&grpc_static_metadata_refcounts[55], {{g_bytes + 623, 13}}},
441
+ {{&grpc_static_metadata_refcounts[56], {{g_bytes + 703, 13}}},
435
442
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
436
- {{&grpc_static_metadata_refcounts[56], {{g_bytes + 636, 6}}},
443
+ {{&grpc_static_metadata_refcounts[57], {{g_bytes + 716, 6}}},
437
444
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
438
- {{&grpc_static_metadata_refcounts[57], {{g_bytes + 642, 27}}},
445
+ {{&grpc_static_metadata_refcounts[58], {{g_bytes + 722, 27}}},
439
446
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
440
- {{&grpc_static_metadata_refcounts[58], {{g_bytes + 669, 3}}},
447
+ {{&grpc_static_metadata_refcounts[59], {{g_bytes + 749, 3}}},
441
448
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
442
- {{&grpc_static_metadata_refcounts[59], {{g_bytes + 672, 5}}},
449
+ {{&grpc_static_metadata_refcounts[60], {{g_bytes + 752, 5}}},
443
450
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
444
- {{&grpc_static_metadata_refcounts[60], {{g_bytes + 677, 13}}},
451
+ {{&grpc_static_metadata_refcounts[61], {{g_bytes + 757, 13}}},
445
452
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
446
- {{&grpc_static_metadata_refcounts[61], {{g_bytes + 690, 13}}},
453
+ {{&grpc_static_metadata_refcounts[62], {{g_bytes + 770, 13}}},
447
454
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
448
- {{&grpc_static_metadata_refcounts[62], {{g_bytes + 703, 19}}},
455
+ {{&grpc_static_metadata_refcounts[63], {{g_bytes + 783, 19}}},
449
456
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
450
457
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
451
458
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
452
- {{&grpc_static_metadata_refcounts[63], {{g_bytes + 722, 16}}},
459
+ {{&grpc_static_metadata_refcounts[64], {{g_bytes + 802, 16}}},
453
460
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
454
- {{&grpc_static_metadata_refcounts[64], {{g_bytes + 738, 14}}},
461
+ {{&grpc_static_metadata_refcounts[65], {{g_bytes + 818, 14}}},
455
462
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
456
- {{&grpc_static_metadata_refcounts[65], {{g_bytes + 752, 16}}},
463
+ {{&grpc_static_metadata_refcounts[66], {{g_bytes + 832, 16}}},
457
464
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
458
- {{&grpc_static_metadata_refcounts[66], {{g_bytes + 768, 13}}},
465
+ {{&grpc_static_metadata_refcounts[67], {{g_bytes + 848, 13}}},
459
466
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
460
467
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
461
468
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
462
- {{&grpc_static_metadata_refcounts[67], {{g_bytes + 781, 6}}},
469
+ {{&grpc_static_metadata_refcounts[68], {{g_bytes + 861, 6}}},
463
470
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
464
- {{&grpc_static_metadata_refcounts[68], {{g_bytes + 787, 4}}},
471
+ {{&grpc_static_metadata_refcounts[69], {{g_bytes + 867, 4}}},
465
472
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
466
- {{&grpc_static_metadata_refcounts[69], {{g_bytes + 791, 4}}},
473
+ {{&grpc_static_metadata_refcounts[70], {{g_bytes + 871, 4}}},
467
474
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
468
- {{&grpc_static_metadata_refcounts[70], {{g_bytes + 795, 6}}},
475
+ {{&grpc_static_metadata_refcounts[71], {{g_bytes + 875, 6}}},
469
476
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
470
- {{&grpc_static_metadata_refcounts[71], {{g_bytes + 801, 7}}},
477
+ {{&grpc_static_metadata_refcounts[72], {{g_bytes + 881, 7}}},
471
478
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
472
- {{&grpc_static_metadata_refcounts[72], {{g_bytes + 808, 4}}},
479
+ {{&grpc_static_metadata_refcounts[73], {{g_bytes + 888, 4}}},
473
480
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
474
481
  {{&grpc_static_metadata_refcounts[20], {{g_bytes + 278, 4}}},
475
482
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
476
- {{&grpc_static_metadata_refcounts[73], {{g_bytes + 812, 8}}},
483
+ {{&grpc_static_metadata_refcounts[74], {{g_bytes + 892, 8}}},
477
484
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
478
- {{&grpc_static_metadata_refcounts[74], {{g_bytes + 820, 17}}},
485
+ {{&grpc_static_metadata_refcounts[75], {{g_bytes + 900, 17}}},
479
486
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
480
- {{&grpc_static_metadata_refcounts[75], {{g_bytes + 837, 13}}},
487
+ {{&grpc_static_metadata_refcounts[76], {{g_bytes + 917, 13}}},
481
488
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
482
- {{&grpc_static_metadata_refcounts[76], {{g_bytes + 850, 8}}},
489
+ {{&grpc_static_metadata_refcounts[77], {{g_bytes + 930, 8}}},
483
490
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
484
- {{&grpc_static_metadata_refcounts[77], {{g_bytes + 858, 19}}},
491
+ {{&grpc_static_metadata_refcounts[78], {{g_bytes + 938, 19}}},
485
492
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
486
- {{&grpc_static_metadata_refcounts[78], {{g_bytes + 877, 13}}},
493
+ {{&grpc_static_metadata_refcounts[79], {{g_bytes + 957, 13}}},
487
494
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
488
- {{&grpc_static_metadata_refcounts[79], {{g_bytes + 890, 4}}},
495
+ {{&grpc_static_metadata_refcounts[80], {{g_bytes + 970, 4}}},
489
496
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
490
- {{&grpc_static_metadata_refcounts[80], {{g_bytes + 894, 8}}},
497
+ {{&grpc_static_metadata_refcounts[81], {{g_bytes + 974, 8}}},
491
498
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
492
- {{&grpc_static_metadata_refcounts[81], {{g_bytes + 902, 12}}},
499
+ {{&grpc_static_metadata_refcounts[82], {{g_bytes + 982, 12}}},
493
500
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
494
- {{&grpc_static_metadata_refcounts[82], {{g_bytes + 914, 18}}},
501
+ {{&grpc_static_metadata_refcounts[83], {{g_bytes + 994, 18}}},
495
502
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
496
- {{&grpc_static_metadata_refcounts[83], {{g_bytes + 932, 19}}},
503
+ {{&grpc_static_metadata_refcounts[84], {{g_bytes + 1012, 19}}},
497
504
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
498
- {{&grpc_static_metadata_refcounts[84], {{g_bytes + 951, 5}}},
505
+ {{&grpc_static_metadata_refcounts[85], {{g_bytes + 1031, 5}}},
499
506
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
500
- {{&grpc_static_metadata_refcounts[85], {{g_bytes + 956, 7}}},
507
+ {{&grpc_static_metadata_refcounts[86], {{g_bytes + 1036, 7}}},
501
508
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
502
- {{&grpc_static_metadata_refcounts[86], {{g_bytes + 963, 7}}},
509
+ {{&grpc_static_metadata_refcounts[87], {{g_bytes + 1043, 7}}},
503
510
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
504
- {{&grpc_static_metadata_refcounts[87], {{g_bytes + 970, 11}}},
511
+ {{&grpc_static_metadata_refcounts[88], {{g_bytes + 1050, 11}}},
505
512
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
506
- {{&grpc_static_metadata_refcounts[88], {{g_bytes + 981, 6}}},
513
+ {{&grpc_static_metadata_refcounts[89], {{g_bytes + 1061, 6}}},
507
514
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
508
- {{&grpc_static_metadata_refcounts[89], {{g_bytes + 987, 10}}},
515
+ {{&grpc_static_metadata_refcounts[90], {{g_bytes + 1067, 10}}},
509
516
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
510
- {{&grpc_static_metadata_refcounts[90], {{g_bytes + 997, 25}}},
517
+ {{&grpc_static_metadata_refcounts[91], {{g_bytes + 1077, 25}}},
511
518
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
512
- {{&grpc_static_metadata_refcounts[91], {{g_bytes + 1022, 17}}},
519
+ {{&grpc_static_metadata_refcounts[92], {{g_bytes + 1102, 17}}},
513
520
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
514
521
  {{&grpc_static_metadata_refcounts[19], {{g_bytes + 268, 10}}},
515
522
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
516
- {{&grpc_static_metadata_refcounts[92], {{g_bytes + 1039, 4}}},
523
+ {{&grpc_static_metadata_refcounts[93], {{g_bytes + 1119, 4}}},
517
524
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
518
- {{&grpc_static_metadata_refcounts[93], {{g_bytes + 1043, 3}}},
525
+ {{&grpc_static_metadata_refcounts[94], {{g_bytes + 1123, 3}}},
519
526
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
520
- {{&grpc_static_metadata_refcounts[94], {{g_bytes + 1046, 16}}},
527
+ {{&grpc_static_metadata_refcounts[95], {{g_bytes + 1126, 16}}},
521
528
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
522
529
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
523
- {&grpc_static_metadata_refcounts[95], {{g_bytes + 1062, 1}}}},
530
+ {&grpc_static_metadata_refcounts[96], {{g_bytes + 1142, 1}}}},
524
531
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
525
532
  {&grpc_static_metadata_refcounts[25], {{g_bytes + 350, 1}}}},
526
533
  {{&grpc_static_metadata_refcounts[7], {{g_bytes + 50, 11}}},
527
534
  {&grpc_static_metadata_refcounts[26], {{g_bytes + 351, 1}}}},
528
535
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
529
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
536
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
530
537
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
531
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
538
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
532
539
  {{&grpc_static_metadata_refcounts[9], {{g_bytes + 77, 13}}},
533
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 7}}}},
540
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 590, 7}}}},
534
541
  {{&grpc_static_metadata_refcounts[5], {{g_bytes + 36, 2}}},
535
- {&grpc_static_metadata_refcounts[97], {{g_bytes + 1071, 8}}}},
542
+ {&grpc_static_metadata_refcounts[98], {{g_bytes + 1151, 8}}}},
536
543
  {{&grpc_static_metadata_refcounts[14], {{g_bytes + 158, 12}}},
537
- {&grpc_static_metadata_refcounts[98], {{g_bytes + 1079, 16}}}},
544
+ {&grpc_static_metadata_refcounts[99], {{g_bytes + 1159, 16}}}},
538
545
  {{&grpc_static_metadata_refcounts[4], {{g_bytes + 29, 7}}},
539
- {&grpc_static_metadata_refcounts[99], {{g_bytes + 1095, 4}}}},
546
+ {&grpc_static_metadata_refcounts[100], {{g_bytes + 1175, 4}}}},
540
547
  {{&grpc_static_metadata_refcounts[1], {{g_bytes + 5, 7}}},
541
- {&grpc_static_metadata_refcounts[100], {{g_bytes + 1099, 3}}}},
548
+ {&grpc_static_metadata_refcounts[101], {{g_bytes + 1179, 3}}}},
542
549
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
543
550
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
544
551
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
545
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
552
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
546
553
  {{&grpc_static_metadata_refcounts[15], {{g_bytes + 170, 16}}},
547
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
554
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
548
555
  {{&grpc_static_metadata_refcounts[21], {{g_bytes + 282, 8}}},
549
556
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
550
- {{&grpc_static_metadata_refcounts[101], {{g_bytes + 1102, 11}}},
557
+ {{&grpc_static_metadata_refcounts[102], {{g_bytes + 1182, 11}}},
551
558
  {&grpc_static_metadata_refcounts[29], {{g_bytes + 354, 0}}}},
552
559
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
553
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
560
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
554
561
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
555
- {&grpc_static_metadata_refcounts[36], {{g_bytes + 510, 7}}}},
562
+ {&grpc_static_metadata_refcounts[37], {{g_bytes + 590, 7}}}},
556
563
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
557
- {&grpc_static_metadata_refcounts[102], {{g_bytes + 1113, 16}}}},
564
+ {&grpc_static_metadata_refcounts[103], {{g_bytes + 1193, 16}}}},
558
565
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
559
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
566
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
560
567
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
561
- {&grpc_static_metadata_refcounts[103], {{g_bytes + 1129, 13}}}},
568
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1209, 13}}}},
562
569
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
563
- {&grpc_static_metadata_refcounts[104], {{g_bytes + 1142, 12}}}},
570
+ {&grpc_static_metadata_refcounts[105], {{g_bytes + 1222, 12}}}},
564
571
  {{&grpc_static_metadata_refcounts[10], {{g_bytes + 90, 20}}},
565
- {&grpc_static_metadata_refcounts[105], {{g_bytes + 1154, 21}}}},
572
+ {&grpc_static_metadata_refcounts[106], {{g_bytes + 1234, 21}}}},
566
573
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
567
- {&grpc_static_metadata_refcounts[96], {{g_bytes + 1063, 8}}}},
574
+ {&grpc_static_metadata_refcounts[97], {{g_bytes + 1143, 8}}}},
568
575
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
569
- {&grpc_static_metadata_refcounts[37], {{g_bytes + 517, 4}}}},
576
+ {&grpc_static_metadata_refcounts[38], {{g_bytes + 597, 4}}}},
570
577
  {{&grpc_static_metadata_refcounts[16], {{g_bytes + 186, 15}}},
571
- {&grpc_static_metadata_refcounts[103], {{g_bytes + 1129, 13}}}},
578
+ {&grpc_static_metadata_refcounts[104], {{g_bytes + 1209, 13}}}},
572
579
  };
573
580
  const uint8_t grpc_static_accept_encoding_metadata[8] = {0, 76, 77, 78,
574
581
  79, 80, 81, 82};