Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: mojo/dart/packages/_mojo_for_test_only/lib/sample/sample_factory.mojom.dart

Issue 1753013002: Mojom runtime type info: New implementation for Dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: No changes to sha1s Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 library sample_factory_mojom; 5 library sample_factory_mojom;
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:typed_data';
8 import 'package:mojo/bindings.dart' as bindings; 9 import 'package:mojo/bindings.dart' as bindings;
9 import 'package:mojo/core.dart' as core; 10 import 'package:mojo/core.dart' as core;
10 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; 11 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
11 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer; 12 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer;
12 import 'package:_mojo_for_test_only/imported/sample_import.mojom.dart' as sample _import_mojom; 13 import 'package:_mojo_for_test_only/imported/sample_import.mojom.dart' as sample _import_mojom;
13 14
14 15
15 16
16 class Request extends bindings.Struct { 17 class Request extends bindings.Struct {
17 static const List<bindings.StructDataHeader> kVersions = const [ 18 static const List<bindings.StructDataHeader> kVersions = const [
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "morePipes: $morePipes" ", " 116 "morePipes: $morePipes" ", "
116 "obj: $obj" ")"; 117 "obj: $obj" ")";
117 } 118 }
118 119
119 Map toJson() { 120 Map toJson() {
120 throw new bindings.MojoCodecError( 121 throw new bindings.MojoCodecError(
121 'Object containing handles cannot be encoded to JSON.'); 122 'Object containing handles cannot be encoded to JSON.');
122 } 123 }
123 } 124 }
124 125
125 mojom_types.MojomStruct _sampleFactoryRequest() {
126 return new mojom_types.MojomStruct()
127 ..declData = (new mojom_types.DeclarationData()
128 ..shortName = 'Request'
129 ..fullIdentifier = 'sample.Request')
130 ..fields = <mojom_types.StructField>[
131 new mojom_types.StructField()
132 ..declData = (new mojom_types.DeclarationData()
133 ..shortName = 'X')
134 ..type = (new mojom_types.Type()
135 ..simpleType = mojom_types.SimpleType.int32),
136 new mojom_types.StructField()
137 ..declData = (new mojom_types.DeclarationData()
138 ..shortName = 'Pipe')
139 ..type = (new mojom_types.Type()
140 ..handleType = (new mojom_types.HandleType()
141 ..kind = mojom_types.HandleTypeKind.messagePipe
142 ..nullable = true
143 )),
144 new mojom_types.StructField()
145 ..declData = (new mojom_types.DeclarationData()
146 ..shortName = 'MorePipes')
147 ..type = (new mojom_types.Type()
148 ..arrayType = (new mojom_types.ArrayType()
149 ..nullable = true
150 ..elementType = (new mojom_types.Type()
151 ..handleType = (new mojom_types.HandleType()
152 ..kind = mojom_types.HandleTypeKind.messagePipe)))),
153 new mojom_types.StructField()
154 ..declData = (new mojom_types.DeclarationData()
155 ..shortName = 'Obj')
156 ..type = (new mojom_types.Type()
157 ..typeReference = (new mojom_types.TypeReference()
158 ..nullable = true
159
160 ..identifier = 'sample_import_ImportedInterface__'
161 ..typeKey = 'sample_import_ImportedInterface__'
162 )),];
163 }
164
165 126
166 class Response extends bindings.Struct { 127 class Response extends bindings.Struct {
167 static const List<bindings.StructDataHeader> kVersions = const [ 128 static const List<bindings.StructDataHeader> kVersions = const [
168 const bindings.StructDataHeader(16, 0) 129 const bindings.StructDataHeader(16, 0)
169 ]; 130 ];
170 int x = 0; 131 int x = 0;
171 core.MojoMessagePipeEndpoint pipe = null; 132 core.MojoMessagePipeEndpoint pipe = null;
172 133
173 Response() : super(kVersions.last.size); 134 Response() : super(kVersions.last.size);
174 135
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "x: $x" ", " 200 "x: $x" ", "
240 "pipe: $pipe" ")"; 201 "pipe: $pipe" ")";
241 } 202 }
242 203
243 Map toJson() { 204 Map toJson() {
244 throw new bindings.MojoCodecError( 205 throw new bindings.MojoCodecError(
245 'Object containing handles cannot be encoded to JSON.'); 206 'Object containing handles cannot be encoded to JSON.');
246 } 207 }
247 } 208 }
248 209
249 mojom_types.MojomStruct _sampleFactoryResponse() {
250 return new mojom_types.MojomStruct()
251 ..declData = (new mojom_types.DeclarationData()
252 ..shortName = 'Response'
253 ..fullIdentifier = 'sample.Response')
254 ..fields = <mojom_types.StructField>[
255 new mojom_types.StructField()
256 ..declData = (new mojom_types.DeclarationData()
257 ..shortName = 'X')
258 ..type = (new mojom_types.Type()
259 ..simpleType = mojom_types.SimpleType.int32),
260 new mojom_types.StructField()
261 ..declData = (new mojom_types.DeclarationData()
262 ..shortName = 'Pipe')
263 ..type = (new mojom_types.Type()
264 ..handleType = (new mojom_types.HandleType()
265 ..kind = mojom_types.HandleTypeKind.messagePipe
266 ..nullable = true
267 )),];
268 }
269
270 210
271 class _NamedObjectSetNameParams extends bindings.Struct { 211 class _NamedObjectSetNameParams extends bindings.Struct {
272 static const List<bindings.StructDataHeader> kVersions = const [ 212 static const List<bindings.StructDataHeader> kVersions = const [
273 const bindings.StructDataHeader(16, 0) 213 const bindings.StructDataHeader(16, 0)
274 ]; 214 ];
275 String name = null; 215 String name = null;
276 216
277 _NamedObjectSetNameParams() : super(kVersions.last.size); 217 _NamedObjectSetNameParams() : super(kVersions.last.size);
278 218
279 static _NamedObjectSetNameParams deserialize(bindings.Message message) { 219 static _NamedObjectSetNameParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 "name: $name" ")"; 272 "name: $name" ")";
333 } 273 }
334 274
335 Map toJson() { 275 Map toJson() {
336 Map map = new Map(); 276 Map map = new Map();
337 map["name"] = name; 277 map["name"] = name;
338 return map; 278 return map;
339 } 279 }
340 } 280 }
341 281
342 mojom_types.MojomStruct _sampleFactoryNamedObjectSetNameParams() {
343 return new mojom_types.MojomStruct()
344 ..declData = (new mojom_types.DeclarationData()
345 ..shortName = 'NamedObjectSetNameParams'
346 ..fullIdentifier = 'sample.NamedObject_SetName_Params')
347 ..fields = <mojom_types.StructField>[
348 new mojom_types.StructField()
349 ..declData = (new mojom_types.DeclarationData()
350 ..shortName = 'Name')
351 ..type = (new mojom_types.Type()
352 ..stringType = (new mojom_types.StringType())),];
353 }
354
355 282
356 class _NamedObjectGetNameParams extends bindings.Struct { 283 class _NamedObjectGetNameParams extends bindings.Struct {
357 static const List<bindings.StructDataHeader> kVersions = const [ 284 static const List<bindings.StructDataHeader> kVersions = const [
358 const bindings.StructDataHeader(8, 0) 285 const bindings.StructDataHeader(8, 0)
359 ]; 286 ];
360 287
361 _NamedObjectGetNameParams() : super(kVersions.last.size); 288 _NamedObjectGetNameParams() : super(kVersions.last.size);
362 289
363 static _NamedObjectGetNameParams deserialize(bindings.Message message) { 290 static _NamedObjectGetNameParams deserialize(bindings.Message message) {
364 var decoder = new bindings.Decoder(message); 291 var decoder = new bindings.Decoder(message);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 String toString() { 330 String toString() {
404 return "_NamedObjectGetNameParams("")"; 331 return "_NamedObjectGetNameParams("")";
405 } 332 }
406 333
407 Map toJson() { 334 Map toJson() {
408 Map map = new Map(); 335 Map map = new Map();
409 return map; 336 return map;
410 } 337 }
411 } 338 }
412 339
413 mojom_types.MojomStruct _sampleFactoryNamedObjectGetNameParams() {
414 return new mojom_types.MojomStruct()
415 ..declData = (new mojom_types.DeclarationData()
416 ..shortName = 'NamedObjectGetNameParams'
417 ..fullIdentifier = 'sample.NamedObject_GetName_Params')
418 ..fields = <mojom_types.StructField>[];
419 }
420
421 340
422 class NamedObjectGetNameResponseParams extends bindings.Struct { 341 class NamedObjectGetNameResponseParams extends bindings.Struct {
423 static const List<bindings.StructDataHeader> kVersions = const [ 342 static const List<bindings.StructDataHeader> kVersions = const [
424 const bindings.StructDataHeader(16, 0) 343 const bindings.StructDataHeader(16, 0)
425 ]; 344 ];
426 String name = null; 345 String name = null;
427 346
428 NamedObjectGetNameResponseParams() : super(kVersions.last.size); 347 NamedObjectGetNameResponseParams() : super(kVersions.last.size);
429 348
430 static NamedObjectGetNameResponseParams deserialize(bindings.Message message) { 349 static NamedObjectGetNameResponseParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 "name: $name" ")"; 402 "name: $name" ")";
484 } 403 }
485 404
486 Map toJson() { 405 Map toJson() {
487 Map map = new Map(); 406 Map map = new Map();
488 map["name"] = name; 407 map["name"] = name;
489 return map; 408 return map;
490 } 409 }
491 } 410 }
492 411
493 mojom_types.MojomStruct _sampleFactoryNamedObjectGetNameResponseParams() {
494 return new mojom_types.MojomStruct()
495 ..declData = (new mojom_types.DeclarationData()
496 ..shortName = 'NamedObjectGetNameResponseParams'
497 ..fullIdentifier = 'sample.NamedObject_GetName_ResponseParams')
498 ..fields = <mojom_types.StructField>[
499 new mojom_types.StructField()
500 ..declData = (new mojom_types.DeclarationData()
501 ..shortName = 'Name')
502 ..type = (new mojom_types.Type()
503 ..stringType = (new mojom_types.StringType())),];
504 }
505
506 412
507 class _FactoryDoStuffParams extends bindings.Struct { 413 class _FactoryDoStuffParams extends bindings.Struct {
508 static const List<bindings.StructDataHeader> kVersions = const [ 414 static const List<bindings.StructDataHeader> kVersions = const [
509 const bindings.StructDataHeader(24, 0) 415 const bindings.StructDataHeader(24, 0)
510 ]; 416 ];
511 Request request = null; 417 Request request = null;
512 core.MojoMessagePipeEndpoint pipe = null; 418 core.MojoMessagePipeEndpoint pipe = null;
513 419
514 _FactoryDoStuffParams() : super(kVersions.last.size); 420 _FactoryDoStuffParams() : super(kVersions.last.size);
515 421
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
581 "request: $request" ", " 487 "request: $request" ", "
582 "pipe: $pipe" ")"; 488 "pipe: $pipe" ")";
583 } 489 }
584 490
585 Map toJson() { 491 Map toJson() {
586 throw new bindings.MojoCodecError( 492 throw new bindings.MojoCodecError(
587 'Object containing handles cannot be encoded to JSON.'); 493 'Object containing handles cannot be encoded to JSON.');
588 } 494 }
589 } 495 }
590 496
591 mojom_types.MojomStruct _sampleFactoryFactoryDoStuffParams() {
592 return new mojom_types.MojomStruct()
593 ..declData = (new mojom_types.DeclarationData()
594 ..shortName = 'FactoryDoStuffParams'
595 ..fullIdentifier = 'sample.Factory_DoStuff_Params')
596 ..fields = <mojom_types.StructField>[
597 new mojom_types.StructField()
598 ..declData = (new mojom_types.DeclarationData()
599 ..shortName = 'Request')
600 ..type = (new mojom_types.Type()
601 ..typeReference = (new mojom_types.TypeReference()
602 ..identifier = 'sample_factory_Request__'
603 ..typeKey = 'sample_factory_Request__'
604 )),
605 new mojom_types.StructField()
606 ..declData = (new mojom_types.DeclarationData()
607 ..shortName = 'Pipe')
608 ..type = (new mojom_types.Type()
609 ..handleType = (new mojom_types.HandleType()
610 ..kind = mojom_types.HandleTypeKind.messagePipe
611 ..nullable = true
612 )),];
613 }
614
615 497
616 class FactoryDoStuffResponseParams extends bindings.Struct { 498 class FactoryDoStuffResponseParams extends bindings.Struct {
617 static const List<bindings.StructDataHeader> kVersions = const [ 499 static const List<bindings.StructDataHeader> kVersions = const [
618 const bindings.StructDataHeader(24, 0) 500 const bindings.StructDataHeader(24, 0)
619 ]; 501 ];
620 Response response = null; 502 Response response = null;
621 String text = null; 503 String text = null;
622 504
623 FactoryDoStuffResponseParams() : super(kVersions.last.size); 505 FactoryDoStuffResponseParams() : super(kVersions.last.size);
624 506
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 "response: $response" ", " 572 "response: $response" ", "
691 "text: $text" ")"; 573 "text: $text" ")";
692 } 574 }
693 575
694 Map toJson() { 576 Map toJson() {
695 throw new bindings.MojoCodecError( 577 throw new bindings.MojoCodecError(
696 'Object containing handles cannot be encoded to JSON.'); 578 'Object containing handles cannot be encoded to JSON.');
697 } 579 }
698 } 580 }
699 581
700 mojom_types.MojomStruct _sampleFactoryFactoryDoStuffResponseParams() {
701 return new mojom_types.MojomStruct()
702 ..declData = (new mojom_types.DeclarationData()
703 ..shortName = 'FactoryDoStuffResponseParams'
704 ..fullIdentifier = 'sample.Factory_DoStuff_ResponseParams')
705 ..fields = <mojom_types.StructField>[
706 new mojom_types.StructField()
707 ..declData = (new mojom_types.DeclarationData()
708 ..shortName = 'Response')
709 ..type = (new mojom_types.Type()
710 ..typeReference = (new mojom_types.TypeReference()
711 ..identifier = 'sample_factory_Response__'
712 ..typeKey = 'sample_factory_Response__'
713 )),
714 new mojom_types.StructField()
715 ..declData = (new mojom_types.DeclarationData()
716 ..shortName = 'Text')
717 ..type = (new mojom_types.Type()
718 ..stringType = (new mojom_types.StringType())),];
719 }
720
721 582
722 class _FactoryDoStuff2Params extends bindings.Struct { 583 class _FactoryDoStuff2Params extends bindings.Struct {
723 static const List<bindings.StructDataHeader> kVersions = const [ 584 static const List<bindings.StructDataHeader> kVersions = const [
724 const bindings.StructDataHeader(16, 0) 585 const bindings.StructDataHeader(16, 0)
725 ]; 586 ];
726 core.MojoDataPipeConsumer pipe = null; 587 core.MojoDataPipeConsumer pipe = null;
727 588
728 _FactoryDoStuff2Params() : super(kVersions.last.size); 589 _FactoryDoStuff2Params() : super(kVersions.last.size);
729 590
730 static _FactoryDoStuff2Params deserialize(bindings.Message message) { 591 static _FactoryDoStuff2Params deserialize(bindings.Message message) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 return "_FactoryDoStuff2Params(" 643 return "_FactoryDoStuff2Params("
783 "pipe: $pipe" ")"; 644 "pipe: $pipe" ")";
784 } 645 }
785 646
786 Map toJson() { 647 Map toJson() {
787 throw new bindings.MojoCodecError( 648 throw new bindings.MojoCodecError(
788 'Object containing handles cannot be encoded to JSON.'); 649 'Object containing handles cannot be encoded to JSON.');
789 } 650 }
790 } 651 }
791 652
792 mojom_types.MojomStruct _sampleFactoryFactoryDoStuff2Params() {
793 return new mojom_types.MojomStruct()
794 ..declData = (new mojom_types.DeclarationData()
795 ..shortName = 'FactoryDoStuff2Params'
796 ..fullIdentifier = 'sample.Factory_DoStuff2_Params')
797 ..fields = <mojom_types.StructField>[
798 new mojom_types.StructField()
799 ..declData = (new mojom_types.DeclarationData()
800 ..shortName = 'Pipe')
801 ..type = (new mojom_types.Type()
802 ..handleType = (new mojom_types.HandleType()
803 ..kind = mojom_types.HandleTypeKind.dataPipeConsumer)),];
804 }
805
806 653
807 class FactoryDoStuff2ResponseParams extends bindings.Struct { 654 class FactoryDoStuff2ResponseParams extends bindings.Struct {
808 static const List<bindings.StructDataHeader> kVersions = const [ 655 static const List<bindings.StructDataHeader> kVersions = const [
809 const bindings.StructDataHeader(16, 0) 656 const bindings.StructDataHeader(16, 0)
810 ]; 657 ];
811 String text = null; 658 String text = null;
812 659
813 FactoryDoStuff2ResponseParams() : super(kVersions.last.size); 660 FactoryDoStuff2ResponseParams() : super(kVersions.last.size);
814 661
815 static FactoryDoStuff2ResponseParams deserialize(bindings.Message message) { 662 static FactoryDoStuff2ResponseParams deserialize(bindings.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 "text: $text" ")"; 715 "text: $text" ")";
869 } 716 }
870 717
871 Map toJson() { 718 Map toJson() {
872 Map map = new Map(); 719 Map map = new Map();
873 map["text"] = text; 720 map["text"] = text;
874 return map; 721 return map;
875 } 722 }
876 } 723 }
877 724
878 mojom_types.MojomStruct _sampleFactoryFactoryDoStuff2ResponseParams() {
879 return new mojom_types.MojomStruct()
880 ..declData = (new mojom_types.DeclarationData()
881 ..shortName = 'FactoryDoStuff2ResponseParams'
882 ..fullIdentifier = 'sample.Factory_DoStuff2_ResponseParams')
883 ..fields = <mojom_types.StructField>[
884 new mojom_types.StructField()
885 ..declData = (new mojom_types.DeclarationData()
886 ..shortName = 'Text')
887 ..type = (new mojom_types.Type()
888 ..stringType = (new mojom_types.StringType())),];
889 }
890
891 725
892 class _FactoryCreateNamedObjectParams extends bindings.Struct { 726 class _FactoryCreateNamedObjectParams extends bindings.Struct {
893 static const List<bindings.StructDataHeader> kVersions = const [ 727 static const List<bindings.StructDataHeader> kVersions = const [
894 const bindings.StructDataHeader(16, 0) 728 const bindings.StructDataHeader(16, 0)
895 ]; 729 ];
896 Object obj = null; 730 Object obj = null;
897 731
898 _FactoryCreateNamedObjectParams() : super(kVersions.last.size); 732 _FactoryCreateNamedObjectParams() : super(kVersions.last.size);
899 733
900 static _FactoryCreateNamedObjectParams deserialize(bindings.Message message) { 734 static _FactoryCreateNamedObjectParams deserialize(bindings.Message message) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 return "_FactoryCreateNamedObjectParams(" 786 return "_FactoryCreateNamedObjectParams("
953 "obj: $obj" ")"; 787 "obj: $obj" ")";
954 } 788 }
955 789
956 Map toJson() { 790 Map toJson() {
957 throw new bindings.MojoCodecError( 791 throw new bindings.MojoCodecError(
958 'Object containing handles cannot be encoded to JSON.'); 792 'Object containing handles cannot be encoded to JSON.');
959 } 793 }
960 } 794 }
961 795
962 mojom_types.MojomStruct _sampleFactoryFactoryCreateNamedObjectParams() {
963 return new mojom_types.MojomStruct()
964 ..declData = (new mojom_types.DeclarationData()
965 ..shortName = 'FactoryCreateNamedObjectParams'
966 ..fullIdentifier = 'sample.Factory_CreateNamedObject_Params')
967 ..fields = <mojom_types.StructField>[
968 new mojom_types.StructField()
969 ..declData = (new mojom_types.DeclarationData()
970 ..shortName = 'Obj')
971 ..type = (new mojom_types.Type()
972 ..typeReference = (new mojom_types.TypeReference()
973 ..isInterfaceRequest = true
974 ..identifier = 'sample_factory_NamedObject__'
975 ..typeKey = 'sample_factory_NamedObject__'
976 )),];
977 }
978
979 796
980 class _FactoryRequestImportedInterfaceParams extends bindings.Struct { 797 class _FactoryRequestImportedInterfaceParams extends bindings.Struct {
981 static const List<bindings.StructDataHeader> kVersions = const [ 798 static const List<bindings.StructDataHeader> kVersions = const [
982 const bindings.StructDataHeader(16, 0) 799 const bindings.StructDataHeader(16, 0)
983 ]; 800 ];
984 Object obj = null; 801 Object obj = null;
985 802
986 _FactoryRequestImportedInterfaceParams() : super(kVersions.last.size); 803 _FactoryRequestImportedInterfaceParams() : super(kVersions.last.size);
987 804
988 static _FactoryRequestImportedInterfaceParams deserialize(bindings.Message mes sage) { 805 static _FactoryRequestImportedInterfaceParams deserialize(bindings.Message mes sage) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1040 return "_FactoryRequestImportedInterfaceParams(" 857 return "_FactoryRequestImportedInterfaceParams("
1041 "obj: $obj" ")"; 858 "obj: $obj" ")";
1042 } 859 }
1043 860
1044 Map toJson() { 861 Map toJson() {
1045 throw new bindings.MojoCodecError( 862 throw new bindings.MojoCodecError(
1046 'Object containing handles cannot be encoded to JSON.'); 863 'Object containing handles cannot be encoded to JSON.');
1047 } 864 }
1048 } 865 }
1049 866
1050 mojom_types.MojomStruct _sampleFactoryFactoryRequestImportedInterfaceParams() {
1051 return new mojom_types.MojomStruct()
1052 ..declData = (new mojom_types.DeclarationData()
1053 ..shortName = 'FactoryRequestImportedInterfaceParams'
1054 ..fullIdentifier = 'sample.Factory_RequestImportedInterface_Params')
1055 ..fields = <mojom_types.StructField>[
1056 new mojom_types.StructField()
1057 ..declData = (new mojom_types.DeclarationData()
1058 ..shortName = 'Obj')
1059 ..type = (new mojom_types.Type()
1060 ..typeReference = (new mojom_types.TypeReference()
1061 ..isInterfaceRequest = true
1062 ..identifier = 'sample_import_ImportedInterface__'
1063 ..typeKey = 'sample_import_ImportedInterface__'
1064 )),];
1065 }
1066
1067 867
1068 class FactoryRequestImportedInterfaceResponseParams extends bindings.Struct { 868 class FactoryRequestImportedInterfaceResponseParams extends bindings.Struct {
1069 static const List<bindings.StructDataHeader> kVersions = const [ 869 static const List<bindings.StructDataHeader> kVersions = const [
1070 const bindings.StructDataHeader(16, 0) 870 const bindings.StructDataHeader(16, 0)
1071 ]; 871 ];
1072 Object obj = null; 872 Object obj = null;
1073 873
1074 FactoryRequestImportedInterfaceResponseParams() : super(kVersions.last.size); 874 FactoryRequestImportedInterfaceResponseParams() : super(kVersions.last.size);
1075 875
1076 static FactoryRequestImportedInterfaceResponseParams deserialize(bindings.Mess age message) { 876 static FactoryRequestImportedInterfaceResponseParams deserialize(bindings.Mess age message) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 return "FactoryRequestImportedInterfaceResponseParams(" 928 return "FactoryRequestImportedInterfaceResponseParams("
1129 "obj: $obj" ")"; 929 "obj: $obj" ")";
1130 } 930 }
1131 931
1132 Map toJson() { 932 Map toJson() {
1133 throw new bindings.MojoCodecError( 933 throw new bindings.MojoCodecError(
1134 'Object containing handles cannot be encoded to JSON.'); 934 'Object containing handles cannot be encoded to JSON.');
1135 } 935 }
1136 } 936 }
1137 937
1138 mojom_types.MojomStruct _sampleFactoryFactoryRequestImportedInterfaceResponsePar ams() {
1139 return new mojom_types.MojomStruct()
1140 ..declData = (new mojom_types.DeclarationData()
1141 ..shortName = 'FactoryRequestImportedInterfaceResponseParams'
1142 ..fullIdentifier = 'sample.Factory_RequestImportedInterface_ResponseParams ')
1143 ..fields = <mojom_types.StructField>[
1144 new mojom_types.StructField()
1145 ..declData = (new mojom_types.DeclarationData()
1146 ..shortName = 'Obj')
1147 ..type = (new mojom_types.Type()
1148 ..typeReference = (new mojom_types.TypeReference()
1149 ..isInterfaceRequest = true
1150 ..identifier = 'sample_import_ImportedInterface__'
1151 ..typeKey = 'sample_import_ImportedInterface__'
1152 )),];
1153 }
1154
1155 938
1156 class _FactoryTakeImportedInterfaceParams extends bindings.Struct { 939 class _FactoryTakeImportedInterfaceParams extends bindings.Struct {
1157 static const List<bindings.StructDataHeader> kVersions = const [ 940 static const List<bindings.StructDataHeader> kVersions = const [
1158 const bindings.StructDataHeader(16, 0) 941 const bindings.StructDataHeader(16, 0)
1159 ]; 942 ];
1160 Object obj = null; 943 Object obj = null;
1161 944
1162 _FactoryTakeImportedInterfaceParams() : super(kVersions.last.size); 945 _FactoryTakeImportedInterfaceParams() : super(kVersions.last.size);
1163 946
1164 static _FactoryTakeImportedInterfaceParams deserialize(bindings.Message messag e) { 947 static _FactoryTakeImportedInterfaceParams deserialize(bindings.Message messag e) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 return "_FactoryTakeImportedInterfaceParams(" 999 return "_FactoryTakeImportedInterfaceParams("
1217 "obj: $obj" ")"; 1000 "obj: $obj" ")";
1218 } 1001 }
1219 1002
1220 Map toJson() { 1003 Map toJson() {
1221 throw new bindings.MojoCodecError( 1004 throw new bindings.MojoCodecError(
1222 'Object containing handles cannot be encoded to JSON.'); 1005 'Object containing handles cannot be encoded to JSON.');
1223 } 1006 }
1224 } 1007 }
1225 1008
1226 mojom_types.MojomStruct _sampleFactoryFactoryTakeImportedInterfaceParams() {
1227 return new mojom_types.MojomStruct()
1228 ..declData = (new mojom_types.DeclarationData()
1229 ..shortName = 'FactoryTakeImportedInterfaceParams'
1230 ..fullIdentifier = 'sample.Factory_TakeImportedInterface_Params')
1231 ..fields = <mojom_types.StructField>[
1232 new mojom_types.StructField()
1233 ..declData = (new mojom_types.DeclarationData()
1234 ..shortName = 'Obj')
1235 ..type = (new mojom_types.Type()
1236 ..typeReference = (new mojom_types.TypeReference()
1237 ..identifier = 'sample_import_ImportedInterface__'
1238 ..typeKey = 'sample_import_ImportedInterface__'
1239 )),];
1240 }
1241
1242 1009
1243 class FactoryTakeImportedInterfaceResponseParams extends bindings.Struct { 1010 class FactoryTakeImportedInterfaceResponseParams extends bindings.Struct {
1244 static const List<bindings.StructDataHeader> kVersions = const [ 1011 static const List<bindings.StructDataHeader> kVersions = const [
1245 const bindings.StructDataHeader(16, 0) 1012 const bindings.StructDataHeader(16, 0)
1246 ]; 1013 ];
1247 Object obj = null; 1014 Object obj = null;
1248 1015
1249 FactoryTakeImportedInterfaceResponseParams() : super(kVersions.last.size); 1016 FactoryTakeImportedInterfaceResponseParams() : super(kVersions.last.size);
1250 1017
1251 static FactoryTakeImportedInterfaceResponseParams deserialize(bindings.Message message) { 1018 static FactoryTakeImportedInterfaceResponseParams deserialize(bindings.Message message) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1303 return "FactoryTakeImportedInterfaceResponseParams(" 1070 return "FactoryTakeImportedInterfaceResponseParams("
1304 "obj: $obj" ")"; 1071 "obj: $obj" ")";
1305 } 1072 }
1306 1073
1307 Map toJson() { 1074 Map toJson() {
1308 throw new bindings.MojoCodecError( 1075 throw new bindings.MojoCodecError(
1309 'Object containing handles cannot be encoded to JSON.'); 1076 'Object containing handles cannot be encoded to JSON.');
1310 } 1077 }
1311 } 1078 }
1312 1079
1313 mojom_types.MojomStruct _sampleFactoryFactoryTakeImportedInterfaceResponseParams () {
1314 return new mojom_types.MojomStruct()
1315 ..declData = (new mojom_types.DeclarationData()
1316 ..shortName = 'FactoryTakeImportedInterfaceResponseParams'
1317 ..fullIdentifier = 'sample.Factory_TakeImportedInterface_ResponseParams')
1318 ..fields = <mojom_types.StructField>[
1319 new mojom_types.StructField()
1320 ..declData = (new mojom_types.DeclarationData()
1321 ..shortName = 'Obj')
1322 ..type = (new mojom_types.Type()
1323 ..typeReference = (new mojom_types.TypeReference()
1324 ..identifier = 'sample_import_ImportedInterface__'
1325 ..typeKey = 'sample_import_ImportedInterface__'
1326 )),];
1327 }
1328
1329
1330 const int _NamedObject_setNameName = 0; 1080 const int _NamedObject_setNameName = 0;
1331 const int _NamedObject_getNameName = 1; 1081 const int _NamedObject_getNameName = 1;
1332 1082
1333 mojom_types.MojomInterface _sampleFactoryNamedObject() {
1334 return new mojom_types.MojomInterface()
1335 ..declData = (new mojom_types.DeclarationData()
1336 ..shortName = 'NamedObject'
1337 ..fullIdentifier = 'sample.NamedObject')
1338 ..serviceName_ = 'NamedObject'
1339 ..methods = <int, mojom_types.MojomMethod>{
1340 _NamedObject_setNameName: new mojom_types.MojomMethod()
1341 ..declData = (new mojom_types.DeclarationData()
1342 ..shortName = 'SetName')
1343 ..ordinal = _NamedObject_setNameName
1344 ..parameters = _sampleFactoryNamedObjectSetNameParams(),
1345 _NamedObject_getNameName: new mojom_types.MojomMethod()
1346 ..declData = (new mojom_types.DeclarationData()
1347 ..shortName = 'GetName')
1348 ..ordinal = _NamedObject_getNameName
1349 ..responseParams = _sampleFactoryNamedObjectGetNameResponseParams()
1350 ..parameters = _sampleFactoryNamedObjectGetNameParams(),
1351 };
1352 }
1353
1354 class _NamedObjectServiceDescription implements service_describer.ServiceDescrip tion { 1083 class _NamedObjectServiceDescription implements service_describer.ServiceDescrip tion {
1355 dynamic getTopLevelInterface([Function responseFactory]) => 1084 dynamic getTopLevelInterface([Function responseFactory]){
1356 responseFactory(_sampleFactoryNamedObject()); 1085 var interfaceTypeKey = getRuntimeTypeInfo().servicesByName["sample::NamedObj ect"].topLevelInterface;
1086 var userDefinedType = getAllMojomTypeDefinitions()[interfaceTypeKey];
1087 return responseFactory(userDefinedType.interfaceType);
1088 }
1357 1089
1358 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 1090 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
1359 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 1091 responseFactory(getAllMojomTypeDefinitions()[typeKey]);
1360 1092
1361 dynamic getAllTypeDefinitions([Function responseFactory]) => 1093 dynamic getAllTypeDefinitions([Function responseFactory]) =>
1362 responseFactory(getAllMojomTypeDefinitions()); 1094 responseFactory(getAllMojomTypeDefinitions());
1363 } 1095 }
1364 1096
1365 abstract class NamedObject { 1097 abstract class NamedObject {
1366 static const String serviceName = "sample::NamedObject"; 1098 static const String serviceName = "sample::NamedObject";
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 return _cachedServiceDescription; 1324 return _cachedServiceDescription;
1593 } 1325 }
1594 } 1326 }
1595 1327
1596 const int _Factory_doStuffName = 0; 1328 const int _Factory_doStuffName = 0;
1597 const int _Factory_doStuff2Name = 1; 1329 const int _Factory_doStuff2Name = 1;
1598 const int _Factory_createNamedObjectName = 2; 1330 const int _Factory_createNamedObjectName = 2;
1599 const int _Factory_requestImportedInterfaceName = 3; 1331 const int _Factory_requestImportedInterfaceName = 3;
1600 const int _Factory_takeImportedInterfaceName = 4; 1332 const int _Factory_takeImportedInterfaceName = 4;
1601 1333
1602 mojom_types.MojomInterface _sampleFactoryFactory() {
1603 return new mojom_types.MojomInterface()
1604 ..declData = (new mojom_types.DeclarationData()
1605 ..shortName = 'Factory'
1606 ..fullIdentifier = 'sample.Factory')
1607 ..serviceName_ = 'Factory'
1608 ..methods = <int, mojom_types.MojomMethod>{
1609 _Factory_doStuffName: new mojom_types.MojomMethod()
1610 ..declData = (new mojom_types.DeclarationData()
1611 ..shortName = 'DoStuff')
1612 ..ordinal = _Factory_doStuffName
1613 ..responseParams = _sampleFactoryFactoryDoStuffResponseParams()
1614 ..parameters = _sampleFactoryFactoryDoStuffParams(),
1615 _Factory_doStuff2Name: new mojom_types.MojomMethod()
1616 ..declData = (new mojom_types.DeclarationData()
1617 ..shortName = 'DoStuff2')
1618 ..ordinal = _Factory_doStuff2Name
1619 ..responseParams = _sampleFactoryFactoryDoStuff2ResponseParams()
1620 ..parameters = _sampleFactoryFactoryDoStuff2Params(),
1621 _Factory_createNamedObjectName: new mojom_types.MojomMethod()
1622 ..declData = (new mojom_types.DeclarationData()
1623 ..shortName = 'CreateNamedObject')
1624 ..ordinal = _Factory_createNamedObjectName
1625 ..parameters = _sampleFactoryFactoryCreateNamedObjectParams(),
1626 _Factory_requestImportedInterfaceName: new mojom_types.MojomMethod()
1627 ..declData = (new mojom_types.DeclarationData()
1628 ..shortName = 'RequestImportedInterface')
1629 ..ordinal = _Factory_requestImportedInterfaceName
1630 ..responseParams = _sampleFactoryFactoryRequestImportedInterfaceResponse Params()
1631 ..parameters = _sampleFactoryFactoryRequestImportedInterfaceParams(),
1632 _Factory_takeImportedInterfaceName: new mojom_types.MojomMethod()
1633 ..declData = (new mojom_types.DeclarationData()
1634 ..shortName = 'TakeImportedInterface')
1635 ..ordinal = _Factory_takeImportedInterfaceName
1636 ..responseParams = _sampleFactoryFactoryTakeImportedInterfaceResponsePar ams()
1637 ..parameters = _sampleFactoryFactoryTakeImportedInterfaceParams(),
1638 };
1639 }
1640
1641 class _FactoryServiceDescription implements service_describer.ServiceDescription { 1334 class _FactoryServiceDescription implements service_describer.ServiceDescription {
1642 dynamic getTopLevelInterface([Function responseFactory]) => 1335 dynamic getTopLevelInterface([Function responseFactory]) =>
1643 responseFactory(_sampleFactoryFactory()); 1336 responseFactory(null);
1644 1337
1645 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 1338 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
1646 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 1339 responseFactory(null);
1647 1340
1648 dynamic getAllTypeDefinitions([Function responseFactory]) => 1341 dynamic getAllTypeDefinitions([Function responseFactory]) =>
1649 responseFactory(getAllMojomTypeDefinitions()); 1342 responseFactory(null);
1650 } 1343 }
1651 1344
1652 abstract class Factory { 1345 abstract class Factory {
1653 static const String serviceName = null; 1346 static const String serviceName = null;
1654 dynamic doStuff(Request request,core.MojoMessagePipeEndpoint pipe,[Function re sponseFactory = null]); 1347 dynamic doStuff(Request request,core.MojoMessagePipeEndpoint pipe,[Function re sponseFactory = null]);
1655 dynamic doStuff2(core.MojoDataPipeConsumer pipe,[Function responseFactory = nu ll]); 1348 dynamic doStuff2(core.MojoDataPipeConsumer pipe,[Function responseFactory = nu ll]);
1656 void createNamedObject(Object obj); 1349 void createNamedObject(Object obj);
1657 dynamic requestImportedInterface(Object obj,[Function responseFactory = null]) ; 1350 dynamic requestImportedInterface(Object obj,[Function responseFactory = null]) ;
1658 dynamic takeImportedInterface(Object obj,[Function responseFactory = null]); 1351 dynamic takeImportedInterface(Object obj,[Function responseFactory = null]);
1659 } 1352 }
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
2050 static service_describer.ServiceDescription _cachedServiceDescription; 1743 static service_describer.ServiceDescription _cachedServiceDescription;
2051 static service_describer.ServiceDescription get serviceDescription { 1744 static service_describer.ServiceDescription get serviceDescription {
2052 if (_cachedServiceDescription == null) { 1745 if (_cachedServiceDescription == null) {
2053 _cachedServiceDescription = new _FactoryServiceDescription(); 1746 _cachedServiceDescription = new _FactoryServiceDescription();
2054 } 1747 }
2055 return _cachedServiceDescription; 1748 return _cachedServiceDescription;
2056 } 1749 }
2057 } 1750 }
2058 1751
2059 1752
2060 Map<String, mojom_types.UserDefinedType> _initDescriptions() { 1753 mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ??
2061 var map = new HashMap<String, mojom_types.UserDefinedType>(); 1754 _initRuntimeTypeInfo();
2062 map["sample_factory_Request__"] =
2063 new mojom_types.UserDefinedType()
2064 ..structType = _sampleFactoryRequest();
2065 map["sample_factory_Response__"] =
2066 new mojom_types.UserDefinedType()
2067 ..structType = _sampleFactoryResponse();
2068 map["sample_factory_NamedObject_SetName_Params__"] =
2069 new mojom_types.UserDefinedType()
2070 ..structType = _sampleFactoryNamedObjectSetNameParams();
2071 map["sample_factory_NamedObject_GetName_Params__"] =
2072 new mojom_types.UserDefinedType()
2073 ..structType = _sampleFactoryNamedObjectGetNameParams();
2074 map["sample_factory_NamedObject_GetName_ResponseParams__"] =
2075 new mojom_types.UserDefinedType()
2076 ..structType = _sampleFactoryNamedObjectGetNameResponseParams();
2077 map["sample_factory_Factory_DoStuff_Params__"] =
2078 new mojom_types.UserDefinedType()
2079 ..structType = _sampleFactoryFactoryDoStuffParams();
2080 map["sample_factory_Factory_DoStuff_ResponseParams__"] =
2081 new mojom_types.UserDefinedType()
2082 ..structType = _sampleFactoryFactoryDoStuffResponseParams();
2083 map["sample_factory_Factory_DoStuff2_Params__"] =
2084 new mojom_types.UserDefinedType()
2085 ..structType = _sampleFactoryFactoryDoStuff2Params();
2086 map["sample_factory_Factory_DoStuff2_ResponseParams__"] =
2087 new mojom_types.UserDefinedType()
2088 ..structType = _sampleFactoryFactoryDoStuff2ResponseParams();
2089 map["sample_factory_Factory_CreateNamedObject_Params__"] =
2090 new mojom_types.UserDefinedType()
2091 ..structType = _sampleFactoryFactoryCreateNamedObjectParams();
2092 map["sample_factory_Factory_RequestImportedInterface_Params__"] =
2093 new mojom_types.UserDefinedType()
2094 ..structType = _sampleFactoryFactoryRequestImportedInterfaceParams();
2095 map["sample_factory_Factory_RequestImportedInterface_ResponseParams__"] =
2096 new mojom_types.UserDefinedType()
2097 ..structType = _sampleFactoryFactoryRequestImportedInterfaceResponseParams ();
2098 map["sample_factory_Factory_TakeImportedInterface_Params__"] =
2099 new mojom_types.UserDefinedType()
2100 ..structType = _sampleFactoryFactoryTakeImportedInterfaceParams();
2101 map["sample_factory_Factory_TakeImportedInterface_ResponseParams__"] =
2102 new mojom_types.UserDefinedType()
2103 ..structType = _sampleFactoryFactoryTakeImportedInterfaceResponseParams();
2104 map["sample_factory_NamedObject__"] =
2105 new mojom_types.UserDefinedType()
2106 ..interfaceType = _sampleFactoryNamedObject();
2107 map["sample_factory_Factory__"] =
2108 new mojom_types.UserDefinedType()
2109 ..interfaceType = _sampleFactoryFactory();
2110 sample_import_mojom.getAllMojomTypeDefinitions()
2111 .forEach((String s, mojom_types.UserDefinedType udt) {
2112 map[s] = udt;
2113 });
2114 1755
2115 return map; 1756 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
1757 return getRuntimeTypeInfo().typeMap;
2116 } 1758 }
2117 1759
2118 var _mojomDesc; 1760 var _runtimeTypeInfo;
2119 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() { 1761 mojom_types.RuntimeTypeInfo _initRuntimeTypeInfo() {
2120 if (_mojomDesc == null) { 1762 // serializedRuntimeTypeInfo contains the bytes of the Mojo serialization of
2121 _mojomDesc = _initDescriptions(); 1763 // a mojom_types.RuntimeTypeInfo struct describing the Mojom types in this
2122 } 1764 // file.
2123 return _mojomDesc; 1765 var serializedRuntimeTypeInfo = new Uint8List.fromList(const [24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,216,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,56,0,0,0,0 ,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,115,97,109,112,108,101 ,58,58,78,97,109,101,100,79,98,106,101,99,116,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0 ,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,35,0,0,0,27,0,0,0,84 ,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,78,97,109,101,100,79,98,106,1 01,99,116,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,35,0,0,0,27,0,0,0,84,89,80, 69,95,75,69,89,58,115,97,109,112,108,101,46,78,97,109,101,100,79,98,106,101,99,1 16,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,184,0,0,0,0,0,0,0,40,0,0,0,4,0,0, 0,32,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,112,0,0,0,0,0,0,0,35,0,0,0, 27,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,78,97,109,101,100, 79,98,106,101,99,116,0,0,0,0,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,115, 97,109,112,108,101,46,70,97,99,116,111,114,121,0,31,0,0,0,23,0,0,0,84,89,80,69,9 5,75,69,89,58,115,97,109,112,108,101,46,82,101,113,117,101,115,116,0,32,0,0,0,24 ,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,82,101,115,112,111,1 10,115,101,72,0,0,0,4,0,0,0,16,0,0,0,3,0,0,0,56,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,5 6,9,0,0,0,0,0,0,16,0,0,0,1,0,0,0,208,39,0,0,0,0,0,0,16,0,0,0,1,0,0,0,208,45,0,0, 0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,112,1,0,0,0,0,0,0,136,1,0,0,0,0,0,0,72 ,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,152,0,0,0,0,0,0,0,168,0, 0,0,0,0,0,0,255,255,255,255,0,0,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0, 0,7,0,0,0,32,0,0,0,0,0,0,0,19,0,0,0,11,0,0,0,83,101,114,118,105,99,101,78,97,109 ,101,0,0,0,0,0,27,0,0,0,19,0,0,0,115,97,109,112,108,101,58,58,78,97,109,101,100, 79,98,106,101,99,116,0,0,0,0,0,19,0,0,0,11,0,0,0,78,97,109,101,100,79,98,106,101 ,99,116,0,0,0,0,0,26,0,0,0,18,0,0,0,115,97,109,112,108,101,46,78,97,109,101,100, 79,98,106,101,99,116,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,27,0,0,0,10,0 ,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114 ,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47 ,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116, 101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,11 1,106,111,109,0,0,0,0,0,27,0,0,0,19,0,0,0,115,97,109,112,108,101,58,58,78,97,109 ,101,100,79,98,106,101,99,116,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0 ,0,0,0,0,0,16,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,32 ,3,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,
1766 232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0, 0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,83,101,116 ,78,97,109,101,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,28,0,0,0,2,0,0,0,91,0,0,0,83, 0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,1 11,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101, 114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,4 7,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0 ,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23 ,0,0,0,15,0,0,0,83,101,116,78,97,109,101,45,114,101,113,117,101,115,116,0,24,0,0 ,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101 ,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109, 111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47 ,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101 ,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0, 8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0 ,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,110,97, 109,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,28,0,0,0,17,0,0,0,91,0,0,0,83, 0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,1 11,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101, 114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,4 7,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0 ,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,232,0, 0,0,0,0,0,0,224,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0, 40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,71,101,116,78, 97,109,101,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,29,0,0,0,2,0,0,0,91,0,0,0,83,0,0, 0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,4 7,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114, 102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,11 5,
1767 97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0 ,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 55,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0 ,15,0,0,0,71,101,116,78,97,109,101,45,114,101,113,117,101,115,116,0,24,0,0,0,0,0 ,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,11 4,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,10 6,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,10 5,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,10 2,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,8,0,0,0,0,0,0,0,32,0,0, 0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,2 55,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,16,0,0, 0,71,101,116,78,97,109,101,45,114,101,115,112,111,110,115,101,24,0,0,0,0,0,0,0,1 6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117, 100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111, 47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110, 100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,9 9,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0, 0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,110,97,109,101,0,0, 0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,29,0,0,0,23,0,0,0,91,0,0,0,83,0,0,0,47,104 ,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,11 4,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,9 9,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109 ,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0, 0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,70,97,99,116,111,114,121,0,22,0,0,0,14,0,0, 0,115,97,109,112,108,101,46,70,97,99,116,111,114,121,0,0,24,0,0,0,0,0,0,0,16,0,0 ,0,0,0,0,0,32,0,0,0,10,0,0,0,91,0,0,0,83,0,0,0,
1768 47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47, 115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,10 2,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115, 97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0 ,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,28,0,0,0,5,0,0,0,1,0,0,0,2,0 ,0,0,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,5,0,0,0,40,0,0,0,0,0,0,0,96,5,0,0, 0,0,0,0,224,8,0,0,0,0,0,0,24,15,0,0,0,0,0,0,72,21,0,0,0,0,0,0,40,0,0,0,0,0,0,0,3 2,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255, 255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8, 0,0,0,68,111,83,116,117,102,102,50,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,35,0,0,0,2, 0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,11 4,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,4 7,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116 ,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,1 11,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,24,0,0,0,16,0,0,0,68,111,83,116,117,102,102,50,45,114,101,113,11 7,101,115,116,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0, 0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,4 7,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114, 102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,11 5,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0 ,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,4 ,0,0,0,240,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,72,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0 ,0,0,4,0,0,0,112,105,112,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,35,0,0,0, 38,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101 ,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,9 9,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47, 116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,10 9,111,106,111,109,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,32,0,0,0,0,0,0,0,24 ,0,0,0,0,0,0,0,
1769 240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,2 55,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,17,0,0,0,68,111,83,116,117,102,102 ,50,45,114,101,115,112,111,110,115,101,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,1 09,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,11 7,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,1 10,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111 ,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0, 0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255 ,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,116,101,120,116,0,0,0,0,24,0 ,0,0,0,0,0,0,16,0,0,0,0,0,0,0,35,0,0,0,55,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109 ,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47, 109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,11 5,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108 ,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255 ,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,17,0,0,0,67,114,101,97,116,101,78,97,109,101 ,100,79,98,106,101,99,116,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,36,0,0 ,0,2,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,1 01,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105 ,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,4 7,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46, 109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,33,0,0,0,25,0,0,0,67,114,101,97,116,101,78,97,109,101,100,7 9,98,106,101,99,116,45,114,101,113,117,101,115,116,0,0,0,0,0,0,0,24,0,0,0,0,0,0, 0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,1 17,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,
1770 47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101 ,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112, 108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,1 ,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,25 5,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0, 111,98,106,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,36,0,0,0,33,0,0,0,91,0,0, 0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111, 106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116 ,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116, 115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,10 9,0,0,0,0,0,32,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,1 9,0,0,0,11,0,0,0,78,97,109,101,100,79,98,106,101,99,116,0,0,0,0,0,35,0,0,0,27,0, 0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,78,97,109,101,100,79,98 ,106,101,99,116,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,13 6,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255 ,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,24,0,0,0,82,101,113,117,101,115,116, 73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,37,0,0,0,2,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,1 17,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,1 11,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,1 10,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,9 7,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0, 0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,32,0,0,0,82,101,113,117,10 1,115,116,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,45,114 ,101,113,117,101,115,116,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0, 0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,11 1,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,1 16,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,11 6,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111, 109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0 ,
1771 16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,11,0,0,0,3,0,0,0,111,98,106,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,38 ,0,0,0,34,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105, 110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,10 8,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103, 115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,12 1,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,16,0,0,0,0,0 ,0,0,48,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,105,109,112,111,114,116,101,100,46,73,10 9,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,0,43,0,0,0, 35,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,73,109,11 2,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,32,0,0,0,0,0,0, 0,24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0 ,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,33,0,0,0,82,101,1 13,117,101,115,116,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,1 01,45,114,101,115,112,111,110,115,101,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,10 9,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117 ,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,11 0,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111, 114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0 ,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255, 255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,111,98,106,0,0,0,0,0,24,0,0,0 ,0,0,0,0,16,0,0,0,0,0,0,0,38,0,0,0,71,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101 ,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109, 111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47 ,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101 ,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0, 2,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,105,109,112, 111,114,116,101,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97, 99,101,0,0,0,0,0,0,43,0,0,0,35,0,0,0,
1772 84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,73,109,112,111,114 ,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0, 0,0,0,0,0,248,0,0,0,0,0,0,0,136,3,0,0,0,0,0,0,4,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255, 255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,0,0,0,21,0,0 ,0,84,97,107,101,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101 ,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,39,0,0,0,2,0,0,0,91,0,0,0,83,0,0,0,47,1 04,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115, 114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97 ,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,1 09,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32, 0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,2 55,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,29, 0,0,0,84,97,107,101,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99, 101,45,114,101,113,117,101,115,116,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,1 01,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105 ,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,4 7,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46, 109,111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0, 48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,111,98,106,0,0,0,0,0,24,0,0,0,0,0,0,0,16 ,0,0,0,0,0,0,0,40,0,0,0,33,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117 ,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111 ,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110 ,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97, 99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,105,109,112,111,114,116 ,101,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0, 0,0,0,0,43,0,0,0,35,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101 ,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0, 0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1773 72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,38,0,0,0,30,0,0,0,84,97,107,101,73,109,112,111,114,116,101,100,73,110,116,101 ,114,102,97,99,101,45,114,101,115,112,111,110,115,101,0,0,24,0,0,0,0,0,0,0,16,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100, 111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,1 12,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100, 105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,11 6,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0, 56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25 5,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,111,98,106,0,0,0,0,0,24 ,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,40,0,0,0,69,0,0,0,91,0,0,0,83,0,0,0,47,104,111,1 09,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,4 7,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101, 115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,1 08,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,105,10 9,112,111,114,116,101,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,1 02,97,99,101,0,0,0,0,0,0,43,0,0,0,35,0,0,0,84,89,80,69,95,75,69,89,58,105,109,11 2,111,114,116,101,100,46,73,109,112,111,114,116,101,100,73,110,116,101,114,102,9 7,99,101,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,96,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255 ,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,68,111,83,116,117,102,102,0,24,0,0,0 ,0,0,0,0,16,0,0,0,0,0,0,0,33,0,0,0,2,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101, 47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,1 11,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47, 98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101, 95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,2 4,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0, 0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,15,0,0,0,68,111,83 ,116,117,102,102,45,
1774 114,101,113,117,101,115,116,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,1 09,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105, 110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,1 15,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106 ,111,109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,96,1,0,0,0,0,0,0,56,0,0,0,0 ,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255, 255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,114,101,113,117,101,115,116,0,24, 0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,33,0,0,0,18,0,0,0,91,0,0,0,83,0,0,0,47,104,111,10 9,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47 ,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,1 15,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,10 8,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,82,101,1 13,117,101,115,116,0,31,0,0,0,23,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112 ,108,101,46,82,101,113,117,101,115,116,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0, 0,0,4,0,0,0,240,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,72 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,12,0,0,0,4,0,0,0,112,105,112,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,33,0 ,0,0,49,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,11 0,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108, 105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,11 5,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121, 46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,32,0,0,0,0,0,0 ,0,24,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255, 0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,16,0,0,0,68,11 1,83,116,117,102,102,45,114,101,115,112,111,110,115,101,24,0,0,0,0,0,0,0,16,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,11 1,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112 ,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,10 5,110,103,115,47,116,101,115,116,115,47,115,
1775 97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0 ,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,96,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0, 0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,16,0,0,0,8,0,0,0,114,101,115,112,111,110,115,101,24,0,0,0,0,0,0,0,16 ,0,0,0,0,0,0,0,34,0,0,0,16,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117 ,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111 ,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110 ,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97, 99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,82,101,115,112,111,110,1 15,101,32,0,0,0,24,0,0,0,84,89,80,69,95,75,69,89,58,115,97,109,112,108,101,46,82 ,101,115,112,111,110,115,101,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0, 240,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,72,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255, 255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4, 0,0,0,116,101,120,116,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,34,0,0,0,33,0,0, 0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47 ,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,10 5,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101 ,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,1 06,111,109,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0, 0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,82,101,113,117,10 1,115,116,0,22,0,0,0,14,0,0,0,115,97,109,112,108,101,46,82,101,113,117,101,115,1 16,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,12,0,0,0,7,0,0,0,91,0,0,0,83,0,0,0,47,1 04,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115, 114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97 ,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,1 09,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,40, 0,0,0,4,0,0,0,32,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,48,2,0,0,0,0,0,0,104,3,0,0,0,0,0 ,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,
1776 5,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,72,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,25 5,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0 ,0,120,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,13,0,0,0,8,0,0,0,91,0,0,0 ,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,1 06,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116, 101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,1 15,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109 ,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,4,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0, 0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0,0,112,105,112, 101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,14,0,0,0,24,0,0,0,91,0,0,0,83,0,0, 0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,4 7,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114, 102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,11 5,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0 ,0,16,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,2 ,0,0,0,248,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,72,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0 ,0,0,10,0,0,0,109,111,114,101,95,112,105,112,101,115,0,0,0,0,0,0,24,0,0,0,0,0,0, 0,16,0,0,0,0,0,0,0,15,0,0,0,31,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114 ,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106 ,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105 ,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102 ,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0 ,255,255,255,255,16,0,0,0,4,0,0,0,8,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,1,0,0 ,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,111,98,106,0,0,0,0,0 ,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,
1777 18,0,0,0,30,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,10 5,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98, 108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,10 3,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114, 121,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,16,0,0,0,0 ,0,0,0,48,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,105,109,112,111,114,116,101,100,46,73, 109,112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,0,43,0,0, 0,35,0,0,0,84,89,80,69,95,75,69,89,58,105,109,112,111,114,116,101,100,46,73,109, 112,111,114,116,101,100,73,110,116,101,114,102,97,99,101,0,0,0,0,0,32,0,0,0,0,0, 0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,25 5,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,82,1 01,115,112,111,110,115,101,23,0,0,0,15,0,0,0,115,97,109,112,108,101,46,82,101,11 5,112,111,110,115,101,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,21,0,0,0,7,0,0,0,91,0, 0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,11 1,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,1 16,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,11 6,115,47,115,97,109,112,108,101,95,102,97,99,116,111,114,121,46,109,111,106,111, 109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,56,0,0,0,0,0,0, 0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,5,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,120,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0 ,0,0,0,0,0,22,0,0,0,8,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100, 111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,1 12,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100, 105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101,95,102,97,99,11 6,111,114,121,46,109,111,106,111,109,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0 ,16,0,0,0,4,0,0,0,240,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,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,12,0,0,0,4,0,0,0,112,105,112,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0, 0,23,0,0,0,24,0,0,0,91,0,0,0,83,0,0,0,47,104,111,109,101,47,114,117,100,111,109, 105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,9 8,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,
1778 98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,115,97,109,112,108,101, 95,102,97,99,116,111,114,121,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,0,0,0,0,1 ,0,0,0,1,0,0,0]);
1779
1780 // Deserialize RuntimeTypeInfo
1781 var bdata = new ByteData.view(serializedRuntimeTypeInfo.buffer);
1782 var message = new bindings.Message(bdata, null, serializedRuntimeTypeInfo.leng th, 0);
1783 _runtimeTypeInfo = mojom_types.RuntimeTypeInfo.deserialize(message);
1784 return _runtimeTypeInfo;
2124 } 1785 }
2125
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698