aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/transport/static_metadata.c
blob: 28f05d5c44edb3eb12546910070abd2cba56151e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
/*
 * Copyright 2015 gRPC authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * WARNING: Auto-generated code.
 *
 * To make changes to this file, change
 * tools/codegen/core/gen_static_metadata.py, and then re-run it.
 *
 * See metadata.h for an explanation of the interface here, and metadata.c for
 * an explanation of what's going on.
 */

#include "src/core/lib/transport/static_metadata.h"

#include "src/core/lib/slice/slice_internal.h"

static uint8_t g_bytes[] = {
    58,  112, 97,  116, 104, 58,  109, 101, 116, 104, 111, 100, 58,  115, 116,
    97,  116, 117, 115, 58,  97,  117, 116, 104, 111, 114, 105, 116, 121, 58,
    115, 99,  104, 101, 109, 101, 116, 101, 103, 114, 112, 99,  45,  109, 101,
    115, 115, 97,  103, 101, 103, 114, 112, 99,  45,  115, 116, 97,  116, 117,
    115, 103, 114, 112, 99,  45,  112, 97,  121, 108, 111, 97,  100, 45,  98,
    105, 110, 103, 114, 112, 99,  45,  101, 110, 99,  111, 100, 105, 110, 103,
    103, 114, 112, 99,  45,  97,  99,  99,  101, 112, 116, 45,  101, 110, 99,
    111, 100, 105, 110, 103, 103, 114, 112, 99,  45,  115, 101, 114, 118, 101,
    114, 45,  115, 116, 97,  116, 115, 45,  98,  105, 110, 103, 114, 112, 99,
    45,  116, 97,  103, 115, 45,  98,  105, 110, 103, 114, 112, 99,  45,  116,
    114, 97,  99,  101, 45,  98,  105, 110, 99,  111, 110, 116, 101, 110, 116,
    45,  116, 121, 112, 101, 99,  111, 110, 116, 101, 110, 116, 45,  101, 110,
    99,  111, 100, 105, 110, 103, 97,  99,  99,  101, 112, 116, 45,  101, 110,
    99,  111, 100, 105, 110, 103, 103, 114, 112, 99,  45,  105, 110, 116, 101,
    114, 110, 97,  108, 45,  101, 110, 99,  111, 100, 105, 110, 103, 45,  114,
    101, 113, 117, 101, 115, 116, 103, 114, 112, 99,  45,  105, 110, 116, 101,
    114, 110, 97,  108, 45,  115, 116, 114, 101, 97,  109, 45,  101, 110, 99,
    111, 100, 105, 110, 103, 45,  114, 101, 113, 117, 101, 115, 116, 117, 115,
    101, 114, 45,  97,  103, 101, 110, 116, 104, 111, 115, 116, 108, 98,  45,
    116, 111, 107, 101, 110, 103, 114, 112, 99,  45,  116, 105, 109, 101, 111,
    117, 116, 103, 114, 112, 99,  46,  119, 97,  105, 116, 95,  102, 111, 114,
    95,  114, 101, 97,  100, 121, 103, 114, 112, 99,  46,  116, 105, 109, 101,
    111, 117, 116, 103, 114, 112, 99,  46,  109, 97,  120, 95,  114, 101, 113,
    117, 101, 115, 116, 95,  109, 101, 115, 115, 97,  103, 101, 95,  98,  121,
    116, 101, 115, 103, 114, 112, 99,  46,  109, 97,  120, 95,  114, 101, 115,
    112, 111, 110, 115, 101, 95,  109, 101, 115, 115, 97,  103, 101, 95,  98,
    121, 116, 101, 115, 47,  103, 114, 112, 99,  46,  108, 98,  46,  118, 49,
    46,  76,  111, 97,  100, 66,  97,  108, 97,  110, 99,  101, 114, 47,  66,
    97,  108, 97,  110, 99,  101, 76,  111, 97,  100, 48,  49,  50,  105, 100,
    101, 110, 116, 105, 116, 121, 103, 122, 105, 112, 100, 101, 102, 108, 97,
    116, 101, 116, 114, 97,  105, 108, 101, 114, 115, 97,  112, 112, 108, 105,
    99,  97,  116, 105, 111, 110, 47,  103, 114, 112, 99,  80,  79,  83,  84,
    50,  48,  48,  52,  48,  52,  104, 116, 116, 112, 104, 116, 116, 112, 115,
    103, 114, 112, 99,  71,  69,  84,  80,  85,  84,  47,  47,  105, 110, 100,
    101, 120, 46,  104, 116, 109, 108, 50,  48,  52,  50,  48,  54,  51,  48,
    52,  52,  48,  48,  53,  48,  48,  97,  99,  99,  101, 112, 116, 45,  99,
    104, 97,  114, 115, 101, 116, 103, 122, 105, 112, 44,  32,  100, 101, 102,
    108, 97,  116, 101, 97,  99,  99,  101, 112, 116, 45,  108, 97,  110, 103,
    117, 97,  103, 101, 97,  99,  99,  101, 112, 116, 45,  114, 97,  110, 103,
    101, 115, 97,  99,  99,  101, 112, 116, 97,  99,  99,  101, 115, 115, 45,
    99,  111, 110, 116, 114, 111, 108, 45,  97,  108, 108, 111, 119, 45,  111,
    114, 105, 103, 105, 110, 97,  103, 101, 97,  108, 108, 111, 119, 97,  117,
    116, 104, 111, 114, 105, 122, 97,  116, 105, 111, 110, 99,  97,  99,  104,
    101, 45,  99,  111, 110, 116, 114, 111, 108, 99,  111, 110, 116, 101, 110,
    116, 45,  100, 105, 115, 112, 111, 115, 105, 116, 105, 111, 110, 99,  111,
    110, 116, 101, 110, 116, 45,  108, 97,  110, 103, 117, 97,  103, 101, 99,
    111, 110, 116, 101, 110, 116, 45,  108, 101, 110, 103, 116, 104, 99,  111,
    110, 116, 101, 110, 116, 45,  108, 111, 99,  97,  116, 105, 111, 110, 99,
    111, 110, 116, 101, 110, 116, 45,  114, 97,  110, 103, 101, 99,  111, 111,
    107, 105, 101, 100, 97,  116, 101, 101, 116, 97,  103, 101, 120, 112, 101,
    99,  116, 101, 120, 112, 105, 114, 101, 115, 102, 114, 111, 109, 105, 102,
    45,  109, 97,  116, 99,  104, 105, 102, 45,  109, 111, 100, 105, 102, 105,
    101, 100, 45,  115, 105, 110, 99,  101, 105, 102, 45,  110, 111, 110, 101,
    45,  109, 97,  116, 99,  104, 105, 102, 45,  114, 97,  110, 103, 101, 105,
    102, 45,  117, 110, 109, 111, 100, 105, 102, 105, 101, 100, 45,  115, 105,
    110, 99,  101, 108, 97,  115, 116, 45,  109, 111, 100, 105, 102, 105, 101,
    100, 108, 98,  45,  99,  111, 115, 116, 45,  98,  105, 110, 108, 105, 110,
    107, 108, 111, 99,  97,  116, 105, 111, 110, 109, 97,  120, 45,  102, 111,
    114, 119, 97,  114, 100, 115, 112, 114, 111, 120, 121, 45,  97,  117, 116,
    104, 101, 110, 116, 105, 99,  97,  116, 101, 112, 114, 111, 120, 121, 45,
    97,  117, 116, 104, 111, 114, 105, 122, 97,  116, 105, 111, 110, 114, 97,
    110, 103, 101, 114, 101, 102, 101, 114, 101, 114, 114, 101, 102, 114, 101,
    115, 104, 114, 101, 116, 114, 121, 45,  97,  102, 116, 101, 114, 115, 101,
    114, 118, 101, 114, 115, 101, 116, 45,  99,  111, 111, 107, 105, 101, 115,
    116, 114, 105, 99,  116, 45,  116, 114, 97,  110, 115, 112, 111, 114, 116,
    45,  115, 101, 99,  117, 114, 105, 116, 121, 116, 114, 97,  110, 115, 102,
    101, 114, 45,  101, 110, 99,  111, 100, 105, 110, 103, 118, 97,  114, 121,
    118, 105, 97,  119, 119, 119, 45,  97,  117, 116, 104, 101, 110, 116, 105,
    99,  97,  116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44,  100, 101,
    102, 108, 97,  116, 101, 105, 100, 101, 110, 116, 105, 116, 121, 44,  103,
    122, 105, 112, 100, 101, 102, 108, 97,  116, 101, 44,  103, 122, 105, 112,
    105, 100, 101, 110, 116, 105, 116, 121, 44,  100, 101, 102, 108, 97,  116,
    101, 44,  103, 122, 105, 112};

static void static_ref(void *unused) {}
static void static_unref(grpc_exec_ctx *exec_ctx, void *unused) {}
static const grpc_slice_refcount_vtable static_sub_vtable = {
    static_ref, static_unref, grpc_slice_default_eq_impl,
    grpc_slice_default_hash_impl};
const grpc_slice_refcount_vtable grpc_static_metadata_vtable = {
    static_ref, static_unref, grpc_static_slice_eq, grpc_static_slice_hash};
static grpc_slice_refcount static_sub_refcnt = {&static_sub_vtable,
                                                &static_sub_refcnt};
grpc_slice_refcount grpc_static_metadata_refcounts[GRPC_STATIC_MDSTR_COUNT] = {
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
    {&grpc_static_metadata_vtable, &static_sub_refcnt},
};

const grpc_slice grpc_static_slice_table[GRPC_STATIC_MDSTR_COUNT] = {
    {.refcount = &grpc_static_metadata_refcounts[0],
     .data.refcounted = {g_bytes + 0, 5}},
    {.refcount = &grpc_static_metadata_refcounts[1],
     .data.refcounted = {g_bytes + 5, 7}},
    {.refcount = &grpc_static_metadata_refcounts[2],
     .data.refcounted = {g_bytes + 12, 7}},
    {.refcount = &grpc_static_metadata_refcounts[3],
     .data.refcounted = {g_bytes + 19, 10}},
    {.refcount = &grpc_static_metadata_refcounts[4],
     .data.refcounted = {g_bytes + 29, 7}},
    {.refcount = &grpc_static_metadata_refcounts[5],
     .data.refcounted = {g_bytes + 36, 2}},
    {.refcount = &grpc_static_metadata_refcounts[6],
     .data.refcounted = {g_bytes + 38, 12}},
    {.refcount = &grpc_static_metadata_refcounts[7],
     .data.refcounted = {g_bytes + 50, 11}},
    {.refcount = &grpc_static_metadata_refcounts[8],
     .data.refcounted = {g_bytes + 61, 16}},
    {.refcount = &grpc_static_metadata_refcounts[9],
     .data.refcounted = {g_bytes + 77, 13}},
    {.refcount = &grpc_static_metadata_refcounts[10],
     .data.refcounted = {g_bytes + 90, 20}},
    {.refcount = &grpc_static_metadata_refcounts[11],
     .data.refcounted = {g_bytes + 110, 21}},
    {.refcount = &grpc_static_metadata_refcounts[12],
     .data.refcounted = {g_bytes + 131, 13}},
    {.refcount = &grpc_static_metadata_refcounts[13],
     .data.refcounted = {g_bytes + 144, 14}},
    {.refcount = &grpc_static_metadata_refcounts[14],
     .data.refcounted = {g_bytes + 158, 12}},
    {.refcount = &grpc_static_metadata_refcounts[15],
     .data.refcounted = {g_bytes + 170, 16}},
    {.refcount = &grpc_static_metadata_refcounts[16],
     .data.refcounted = {g_bytes + 186, 15}},
    {.refcount = &grpc_static_metadata_refcounts[17],
     .data.refcounted = {g_bytes + 201, 30}},
    {.refcount = &grpc_static_metadata_refcounts[18],
     .data.refcounted = {g_bytes + 231, 37}},
    {.refcount = &grpc_static_metadata_refcounts[19],
     .data.refcounted = {g_bytes + 268, 10}},
    {.refcount = &grpc_static_metadata_refcounts[20],
     .data.refcounted = {g_bytes + 278, 4}},
    {.refcount = &grpc_static_metadata_refcounts[21],
     .data.refcounted = {g_bytes + 282, 8}},
    {.refcount = &grpc_static_metadata_refcounts[22],
     .data.refcounted = {g_bytes + 290, 12}},
    {.refcount = &grpc_static_metadata_refcounts[23],
     .data.refcounted = {g_bytes + 302, 0}},
    {.refcount = &grpc_static_metadata_refcounts[24],
     .data.refcounted = {g_bytes + 302, 19}},
    {.refcount = &grpc_static_metadata_refcounts[25],
     .data.refcounted = {g_bytes + 321, 12}},
    {.refcount = &grpc_static_metadata_refcounts[26],
     .data.refcounted = {g_bytes + 333, 30}},
    {.refcount = &grpc_static_metadata_refcounts[27],
     .data.refcounted = {g_bytes + 363, 31}},
    {.refcount = &grpc_static_metadata_refcounts[28],
     .data.refcounted = {g_bytes + 394, 36}},
    {.refcount = &grpc_static_metadata_refcounts[29],
     .data.refcounted = {g_bytes + 430, 1}},
    {.refcount = &grpc_static_metadata_refcounts[30],
     .data.refcounted = {g_bytes + 431, 1}},
    {.refcount = &grpc_static_metadata_refcounts[31],
     .data.refcounted = {g_bytes + 432, 1}},
    {.refcount = &grpc_static_metadata_refcounts[32],
     .data.refcounted = {g_bytes + 433, 8}},
    {.refcount = &grpc_static_metadata_refcounts[33],
     .data.refcounted = {g_bytes + 441, 4}},
    {.refcount = &grpc_static_metadata_refcounts[34],
     .data.refcounted = {g_bytes + 445, 7}},
    {.refcount = &grpc_static_metadata_refcounts[35],
     .data.refcounted = {g_bytes + 452, 8}},
    {.refcount = &grpc_static_metadata_refcounts[36],
     .data.refcounted = {g_bytes + 460, 16}},
    {.refcount = &grpc_static_metadata_refcounts[37],
     .data.refcounted = {g_bytes + 476, 4}},
    {.refcount = &grpc_static_metadata_refcounts[38],
     .data.refcounted = {g_bytes + 480, 3}},
    {.refcount = &grpc_static_metadata_refcounts[39],
     .data.refcounted = {g_bytes + 483, 3}},
    {.refcount = &grpc_static_metadata_refcounts[40],
     .data.refcounted = {g_bytes + 486, 4}},
    {.refcount = &grpc_static_metadata_refcounts[41],
     .data.refcounted = {g_bytes + 490, 5}},
    {.refcount = &grpc_static_metadata_refcounts[42],
     .data.refcounted = {g_bytes + 495, 4}},
    {.refcount = &grpc_static_metadata_refcounts[43],
     .data.refcounted = {g_bytes + 499, 3}},
    {.refcount = &grpc_static_metadata_refcounts[44],
     .data.refcounted = {g_bytes + 502, 3}},
    {.refcount = &grpc_static_metadata_refcounts[45],
     .data.refcounted = {g_bytes + 505, 1}},
    {.refcount = &grpc_static_metadata_refcounts[46],
     .data.refcounted = {g_bytes + 506, 11}},
    {.refcount = &grpc_static_metadata_refcounts[47],
     .data.refcounted = {g_bytes + 517, 3}},
    {.refcount = &grpc_static_metadata_refcounts[48],
     .data.refcounted = {g_bytes + 520, 3}},
    {.refcount = &grpc_static_metadata_refcounts[49],
     .data.refcounted = {g_bytes + 523, 3}},
    {.refcount = &grpc_static_metadata_refcounts[50],
     .data.refcounted = {g_bytes + 526, 3}},
    {.refcount = &grpc_static_metadata_refcounts[51],
     .data.refcounted = {g_bytes + 529, 3}},
    {.refcount = &grpc_static_metadata_refcounts[52],
     .data.refcounted = {g_bytes + 532, 14}},
    {.refcount = &grpc_static_metadata_refcounts[53],
     .data.refcounted = {g_bytes + 546, 13}},
    {.refcount = &grpc_static_metadata_refcounts[54],
     .data.refcounted = {g_bytes + 559, 15}},
    {.refcount = &grpc_static_metadata_refcounts[55],
     .data.refcounted = {g_bytes + 574, 13}},
    {.refcount = &grpc_static_metadata_refcounts[56],
     .data.refcounted = {g_bytes + 587, 6}},
    {.refcount = &grpc_static_metadata_refcounts[57],
     .data.refcounted = {g_bytes + 593, 27}},
    {.refcount = &grpc_static_metadata_refcounts[58],
     .data.refcounted = {g_bytes + 620, 3}},
    {.refcount = &grpc_static_metadata_refcounts[59],
     .data.refcounted = {g_bytes + 623, 5}},
    {.refcount = &grpc_static_metadata_refcounts[60],
     .data.refcounted = {g_bytes + 628, 13}},
    {.refcount = &grpc_static_metadata_refcounts[61],
     .data.refcounted = {g_bytes + 641, 13}},
    {.refcount = &grpc_static_metadata_refcounts[62],
     .data.refcounted = {g_bytes + 654, 19}},
    {.refcount = &grpc_static_metadata_refcounts[63],
     .data.refcounted = {g_bytes + 673, 16}},
    {.refcount = &grpc_static_metadata_refcounts[64],
     .data.refcounted = {g_bytes + 689, 14}},
    {.refcount = &grpc_static_metadata_refcounts[65],
     .data.refcounted = {g_bytes + 703, 16}},
    {.refcount = &grpc_static_metadata_refcounts[66],
     .data.refcounted = {g_bytes + 719, 13}},
    {.refcount = &grpc_static_metadata_refcounts[67],
     .data.refcounted = {g_bytes + 732, 6}},
    {.refcount = &grpc_static_metadata_refcounts[68],
     .data.refcounted = {g_bytes + 738, 4}},
    {.refcount = &grpc_static_metadata_refcounts[69],
     .data.refcounted = {g_bytes + 742, 4}},
    {.refcount = &grpc_static_metadata_refcounts[70],
     .data.refcounted = {g_bytes + 746, 6}},
    {.refcount = &grpc_static_metadata_refcounts[71],
     .data.refcounted = {g_bytes + 752, 7}},
    {.refcount = &grpc_static_metadata_refcounts[72],
     .data.refcounted = {g_bytes + 759, 4}},
    {.refcount = &grpc_static_metadata_refcounts[73],
     .data.refcounted = {g_bytes + 763, 8}},
    {.refcount = &grpc_static_metadata_refcounts[74],
     .data.refcounted = {g_bytes + 771, 17}},
    {.refcount = &grpc_static_metadata_refcounts[75],
     .data.refcounted = {g_bytes + 788, 13}},
    {.refcount = &grpc_static_metadata_refcounts[76],
     .data.refcounted = {g_bytes + 801, 8}},
    {.refcount = &grpc_static_metadata_refcounts[77],
     .data.refcounted = {g_bytes + 809, 19}},
    {.refcount = &grpc_static_metadata_refcounts[78],
     .data.refcounted = {g_bytes + 828, 13}},
    {.refcount = &grpc_static_metadata_refcounts[79],
     .data.refcounted = {g_bytes + 841, 11}},
    {.refcount = &grpc_static_metadata_refcounts[80],
     .data.refcounted = {g_bytes + 852, 4}},
    {.refcount = &grpc_static_metadata_refcounts[81],
     .data.refcounted = {g_bytes + 856, 8}},
    {.refcount = &grpc_static_metadata_refcounts[82],
     .data.refcounted = {g_bytes + 864, 12}},
    {.refcount = &grpc_static_metadata_refcounts[83],
     .data.refcounted = {g_bytes + 876, 18}},
    {.refcount = &grpc_static_metadata_refcounts[84],
     .data.refcounted = {g_bytes + 894, 19}},
    {.refcount = &grpc_static_metadata_refcounts[85],
     .data.refcounted = {g_bytes + 913, 5}},
    {.refcount = &grpc_static_metadata_refcounts[86],
     .data.refcounted = {g_bytes + 918, 7}},
    {.refcount = &grpc_static_metadata_refcounts[87],
     .data.refcounted = {g_bytes + 925, 7}},
    {.refcount = &grpc_static_metadata_refcounts[88],
     .data.refcounted = {g_bytes + 932, 11}},
    {.refcount = &grpc_static_metadata_refcounts[89],
     .data.refcounted = {g_bytes + 943, 6}},
    {.refcount = &grpc_static_metadata_refcounts[90],
     .data.refcounted = {g_bytes + 949, 10}},
    {.refcount = &grpc_static_metadata_refcounts[91],
     .data.refcounted = {g_bytes + 959, 25}},
    {.refcount = &grpc_static_metadata_refcounts[92],
     .data.refcounted = {g_bytes + 984, 17}},
    {.refcount = &grpc_static_metadata_refcounts[93],
     .data.refcounted = {g_bytes + 1001, 4}},
    {.refcount = &grpc_static_metadata_refcounts[94],
     .data.refcounted = {g_bytes + 1005, 3}},
    {.refcount = &grpc_static_metadata_refcounts[95],
     .data.refcounted = {g_bytes + 1008, 16}},
    {.refcount = &grpc_static_metadata_refcounts[96],
     .data.refcounted = {g_bytes + 1024, 16}},
    {.refcount = &grpc_static_metadata_refcounts[97],
     .data.refcounted = {g_bytes + 1040, 13}},
    {.refcount = &grpc_static_metadata_refcounts[98],
     .data.refcounted = {g_bytes + 1053, 12}},
    {.refcount = &grpc_static_metadata_refcounts[99],
     .data.refcounted = {g_bytes + 1065, 21}},
};

uintptr_t grpc_static_mdelem_user_data[GRPC_STATIC_MDELEM_COUNT] = {
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 6, 6, 8, 8, 2, 4, 4};

static const int8_t elems_r[] = {
    11, 9,   -3, 0,   10,  27,  -74, 28,  0,   14, -7, 0,  0,  0,  18, 8,  -2,
    0,  0,   13, 12,  11,  0,   0,   0,   0,   0,  0,  0,  0,  0,  0,  0,  0,
    0,  0,   0,  0,   0,   0,   0,   0,   0,   0,  0,  0,  0,  0,  0,  0,  0,
    0,  -50, 0,  -33, -55, -56, -57, -58, -57, 0,  40, 39, 38, 37, 36, 35, 34,
    33, 32,  31, 30,  29,  28,  28,  27,  26,  25, 24, 23, 22, 21, 20, 19, 22,
    21, 20,  19, 18,  17,  16,  15,  14,  13,  12, 12, 11, 0};
static uint32_t elems_phash(uint32_t i) {
  i -= 45;
  uint32_t x = i % 98;
  uint32_t y = i / 98;
  uint32_t h = x;
  if (y < GPR_ARRAY_SIZE(elems_r)) {
    uint32_t delta = (uint32_t)elems_r[y];
    h += delta;
  }
  return h;
}

static const uint16_t elem_keys[] = {
    1032, 1033, 1034, 247,  248,  249,  250,  251,  1623, 143,  144,  45,
    46,   440,  441,  442,  1523, 1632, 1633, 932,  933,  934,  729,  730,
    1423, 1532, 1533, 535,  731,  1923, 2023, 2123, 5223, 5523, 5623, 5723,
    5823, 1436, 1653, 5923, 6023, 6123, 6223, 6323, 6423, 6523, 6623, 6723,
    6823, 6923, 7023, 7123, 7223, 5423, 7323, 7423, 7523, 7623, 7723, 7823,
    7923, 8023, 8123, 8223, 1096, 1097, 1098, 1099, 8323, 8423, 8523, 8623,
    8723, 8823, 8923, 9023, 9123, 9223, 9323, 323,  9423, 9523, 1697, 0,
    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
    0,    0,    0,    0,    0,    0,    0,    137,  238,  239,  0,    0,
    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
    0,    0,    0,    0,    0};
static const uint8_t elem_idxs[] = {
    76,  79,  77,  19,  20,  21,  22,  23,  25,  15,  16,  17,  18,  11,
    12,  13,  38,  83,  84,  3,   4,   5,   0,   1,   43,  36,  37,  6,
    2,   72,  50,  57,  24,  28,  29,  30,  31,  7,   26,  32,  33,  34,
    35,  39,  40,  41,  42,  44,  45,  46,  47,  48,  49,  27,  51,  52,
    53,  54,  55,  56,  58,  59,  60,  61,  78,  80,  81,  82,  62,  63,
    64,  65,  66,  67,  68,  69,  70,  71,  73,  14,  74,  75,  85,  255,
    255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
    255, 255, 255, 255, 255, 8,   9,   10};

grpc_mdelem grpc_static_mdelem_for_static_strings(int a, int b) {
  if (a == -1 || b == -1) return GRPC_MDNULL;
  uint32_t k = (uint32_t)(a * 100 + b);
  uint32_t h = elems_phash(k);
  return h < GPR_ARRAY_SIZE(elem_keys) && elem_keys[h] == k &&
                 elem_idxs[h] != 255
             ? GRPC_MAKE_MDELEM(&grpc_static_mdelem_table[elem_idxs[h]],
                                GRPC_MDELEM_STORAGE_STATIC)
             : GRPC_MDNULL;
}

grpc_mdelem_data grpc_static_mdelem_table[GRPC_STATIC_MDELEM_COUNT] = {
    {{.refcount = &grpc_static_metadata_refcounts[7],
      .data.refcounted = {g_bytes + 50, 11}},
     {.refcount = &grpc_static_metadata_refcounts[29],
      .data.refcounted = {g_bytes + 430, 1}}},
    {{.refcount = &grpc_static_metadata_refcounts[7],
      .data.refcounted = {g_bytes + 50, 11}},
     {.refcount = &grpc_static_metadata_refcounts[30],
      .data.refcounted = {g_bytes + 431, 1}}},
    {{.refcount = &grpc_static_metadata_refcounts[7],
      .data.refcounted = {g_bytes + 50, 11}},
     {.refcount = &grpc_static_metadata_refcounts[31],
      .data.refcounted = {g_bytes + 432, 1}}},
    {{.refcount = &grpc_static_metadata_refcounts[9],
      .data.refcounted = {g_bytes + 77, 13}},
     {.refcount = &grpc_static_metadata_refcounts[32],
      .data.refcounted = {g_bytes + 433, 8}}},
    {{.refcount = &grpc_static_metadata_refcounts[9],
      .data.refcounted = {g_bytes + 77, 13}},
     {.refcount = &grpc_static_metadata_refcounts[33],
      .data.refcounted = {g_bytes + 441, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[9],
      .data.refcounted = {g_bytes + 77, 13}},
     {.refcount = &grpc_static_metadata_refcounts[34],
      .data.refcounted = {g_bytes + 445, 7}}},
    {{.refcount = &grpc_static_metadata_refcounts[5],
      .data.refcounted = {g_bytes + 36, 2}},
     {.refcount = &grpc_static_metadata_refcounts[35],
      .data.refcounted = {g_bytes + 452, 8}}},
    {{.refcount = &grpc_static_metadata_refcounts[14],
      .data.refcounted = {g_bytes + 158, 12}},
     {.refcount = &grpc_static_metadata_refcounts[36],
      .data.refcounted = {g_bytes + 460, 16}}},
    {{.refcount = &grpc_static_metadata_refcounts[1],
      .data.refcounted = {g_bytes + 5, 7}},
     {.refcount = &grpc_static_metadata_refcounts[37],
      .data.refcounted = {g_bytes + 476, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[38],
      .data.refcounted = {g_bytes + 480, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[39],
      .data.refcounted = {g_bytes + 483, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[4],
      .data.refcounted = {g_bytes + 29, 7}},
     {.refcount = &grpc_static_metadata_refcounts[40],
      .data.refcounted = {g_bytes + 486, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[4],
      .data.refcounted = {g_bytes + 29, 7}},
     {.refcount = &grpc_static_metadata_refcounts[41],
      .data.refcounted = {g_bytes + 490, 5}}},
    {{.refcount = &grpc_static_metadata_refcounts[4],
      .data.refcounted = {g_bytes + 29, 7}},
     {.refcount = &grpc_static_metadata_refcounts[42],
      .data.refcounted = {g_bytes + 495, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[3],
      .data.refcounted = {g_bytes + 19, 10}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[1],
      .data.refcounted = {g_bytes + 5, 7}},
     {.refcount = &grpc_static_metadata_refcounts[43],
      .data.refcounted = {g_bytes + 499, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[1],
      .data.refcounted = {g_bytes + 5, 7}},
     {.refcount = &grpc_static_metadata_refcounts[44],
      .data.refcounted = {g_bytes + 502, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[0],
      .data.refcounted = {g_bytes + 0, 5}},
     {.refcount = &grpc_static_metadata_refcounts[45],
      .data.refcounted = {g_bytes + 505, 1}}},
    {{.refcount = &grpc_static_metadata_refcounts[0],
      .data.refcounted = {g_bytes + 0, 5}},
     {.refcount = &grpc_static_metadata_refcounts[46],
      .data.refcounted = {g_bytes + 506, 11}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[47],
      .data.refcounted = {g_bytes + 517, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[48],
      .data.refcounted = {g_bytes + 520, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[49],
      .data.refcounted = {g_bytes + 523, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[50],
      .data.refcounted = {g_bytes + 526, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[2],
      .data.refcounted = {g_bytes + 12, 7}},
     {.refcount = &grpc_static_metadata_refcounts[51],
      .data.refcounted = {g_bytes + 529, 3}}},
    {{.refcount = &grpc_static_metadata_refcounts[52],
      .data.refcounted = {g_bytes + 532, 14}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[16],
      .data.refcounted = {g_bytes + 186, 15}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[16],
      .data.refcounted = {g_bytes + 186, 15}},
     {.refcount = &grpc_static_metadata_refcounts[53],
      .data.refcounted = {g_bytes + 546, 13}}},
    {{.refcount = &grpc_static_metadata_refcounts[54],
      .data.refcounted = {g_bytes + 559, 15}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[55],
      .data.refcounted = {g_bytes + 574, 13}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[56],
      .data.refcounted = {g_bytes + 587, 6}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[57],
      .data.refcounted = {g_bytes + 593, 27}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[58],
      .data.refcounted = {g_bytes + 620, 3}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[59],
      .data.refcounted = {g_bytes + 623, 5}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[60],
      .data.refcounted = {g_bytes + 628, 13}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[61],
      .data.refcounted = {g_bytes + 641, 13}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[62],
      .data.refcounted = {g_bytes + 654, 19}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[15],
      .data.refcounted = {g_bytes + 170, 16}},
     {.refcount = &grpc_static_metadata_refcounts[32],
      .data.refcounted = {g_bytes + 433, 8}}},
    {{.refcount = &grpc_static_metadata_refcounts[15],
      .data.refcounted = {g_bytes + 170, 16}},
     {.refcount = &grpc_static_metadata_refcounts[33],
      .data.refcounted = {g_bytes + 441, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[15],
      .data.refcounted = {g_bytes + 170, 16}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[63],
      .data.refcounted = {g_bytes + 673, 16}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[64],
      .data.refcounted = {g_bytes + 689, 14}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[65],
      .data.refcounted = {g_bytes + 703, 16}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[66],
      .data.refcounted = {g_bytes + 719, 13}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[14],
      .data.refcounted = {g_bytes + 158, 12}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[67],
      .data.refcounted = {g_bytes + 732, 6}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[68],
      .data.refcounted = {g_bytes + 738, 4}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[69],
      .data.refcounted = {g_bytes + 742, 4}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[70],
      .data.refcounted = {g_bytes + 746, 6}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[71],
      .data.refcounted = {g_bytes + 752, 7}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[72],
      .data.refcounted = {g_bytes + 759, 4}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[20],
      .data.refcounted = {g_bytes + 278, 4}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[73],
      .data.refcounted = {g_bytes + 763, 8}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[74],
      .data.refcounted = {g_bytes + 771, 17}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[75],
      .data.refcounted = {g_bytes + 788, 13}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[76],
      .data.refcounted = {g_bytes + 801, 8}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[77],
      .data.refcounted = {g_bytes + 809, 19}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[78],
      .data.refcounted = {g_bytes + 828, 13}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[21],
      .data.refcounted = {g_bytes + 282, 8}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[79],
      .data.refcounted = {g_bytes + 841, 11}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[80],
      .data.refcounted = {g_bytes + 852, 4}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[81],
      .data.refcounted = {g_bytes + 856, 8}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[82],
      .data.refcounted = {g_bytes + 864, 12}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[83],
      .data.refcounted = {g_bytes + 876, 18}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[84],
      .data.refcounted = {g_bytes + 894, 19}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[85],
      .data.refcounted = {g_bytes + 913, 5}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[86],
      .data.refcounted = {g_bytes + 918, 7}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[87],
      .data.refcounted = {g_bytes + 925, 7}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[88],
      .data.refcounted = {g_bytes + 932, 11}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[89],
      .data.refcounted = {g_bytes + 943, 6}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[90],
      .data.refcounted = {g_bytes + 949, 10}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[91],
      .data.refcounted = {g_bytes + 959, 25}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[92],
      .data.refcounted = {g_bytes + 984, 17}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[19],
      .data.refcounted = {g_bytes + 268, 10}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[93],
      .data.refcounted = {g_bytes + 1001, 4}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[94],
      .data.refcounted = {g_bytes + 1005, 3}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[95],
      .data.refcounted = {g_bytes + 1008, 16}},
     {.refcount = &grpc_static_metadata_refcounts[23],
      .data.refcounted = {g_bytes + 302, 0}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[32],
      .data.refcounted = {g_bytes + 433, 8}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[34],
      .data.refcounted = {g_bytes + 445, 7}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[96],
      .data.refcounted = {g_bytes + 1024, 16}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[33],
      .data.refcounted = {g_bytes + 441, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[97],
      .data.refcounted = {g_bytes + 1040, 13}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[98],
      .data.refcounted = {g_bytes + 1053, 12}}},
    {{.refcount = &grpc_static_metadata_refcounts[10],
      .data.refcounted = {g_bytes + 90, 20}},
     {.refcount = &grpc_static_metadata_refcounts[99],
      .data.refcounted = {g_bytes + 1065, 21}}},
    {{.refcount = &grpc_static_metadata_refcounts[16],
      .data.refcounted = {g_bytes + 186, 15}},
     {.refcount = &grpc_static_metadata_refcounts[32],
      .data.refcounted = {g_bytes + 433, 8}}},
    {{.refcount = &grpc_static_metadata_refcounts[16],
      .data.refcounted = {g_bytes + 186, 15}},
     {.refcount = &grpc_static_metadata_refcounts[33],
      .data.refcounted = {g_bytes + 441, 4}}},
    {{.refcount = &grpc_static_metadata_refcounts[16],
      .data.refcounted = {g_bytes + 186, 15}},
     {.refcount = &grpc_static_metadata_refcounts[97],
      .data.refcounted = {g_bytes + 1040, 13}}},
};
const uint8_t grpc_static_accept_encoding_metadata[8] = {0,  76, 77, 78,
                                                         79, 80, 81, 82};

const uint8_t grpc_static_accept_stream_encoding_metadata[4] = {0, 83, 84, 85};