repo_name
stringlengths
9
74
language
stringclasses
1 value
length_bytes
int64
11
9.34M
extension
stringclasses
2 values
content
stringlengths
11
9.34M
egustafson/sandbox
Ada
1,680
adb
with Ada.Unchecked_Deallocation; package body Generic_Stack is procedure Free is new Ada.Unchecked_Deallocation( Stack_Node, Stack_Node_Ptr ); ------------------------------------------------------------ procedure Push( Stack: in out T; Element: in Element_Type ) is New_Node : Stack_Node_Ptr := new Stack_Node'( Data => Element, Next => Stack.Head ); begin Stack.Head := New_Node; end Push; ------------------------------------------------------------ procedure Pop( Stack: in out T; Element: out Element_Type ) is Old_Head : Stack_Node_Ptr := Stack.Head; begin if Stack.Head = null then raise Underflow; end if; Stack.Head := Old_Head.Next; Element := Old_Head.Data; Free( Old_Head ); end Pop; ------------------------------------------------------------ procedure Peek( Stack: in out T; Element: out Element_Type ) is begin if Stack.Head = null then raise Underflow; end if; Element := Stack.Head.Data; end Peek; ------------------------------------------------------------ function Empty( Stack: in T ) return Boolean is begin return Stack.Head = null; end Empty; ------------------------------------------------------------ procedure Reset( Stack: in out T ) is Old_Head : Stack_Node_Ptr := Stack.Head; begin while Old_Head /= null loop Stack.Head := Old_Head.Next; Free( Old_Head ); Old_Head := Stack.Head; end loop; end Reset; end Generic_Stack;
optikos/oasis
Ada
4,391
ads
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Lexical_Elements; with Program.Elements.Discriminant_Specifications; with Program.Elements.Known_Discriminant_Parts; with Program.Element_Visitors; package Program.Nodes.Known_Discriminant_Parts is pragma Preelaborate; type Known_Discriminant_Part is new Program.Nodes.Node and Program.Elements.Known_Discriminant_Parts.Known_Discriminant_Part and Program.Elements.Known_Discriminant_Parts .Known_Discriminant_Part_Text with private; function Create (Left_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Discriminants : Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access; Right_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Known_Discriminant_Part; type Implicit_Known_Discriminant_Part is new Program.Nodes.Node and Program.Elements.Known_Discriminant_Parts.Known_Discriminant_Part with private; function Create (Discriminants : Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Known_Discriminant_Part with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_Known_Discriminant_Part is abstract new Program.Nodes.Node and Program.Elements.Known_Discriminant_Parts.Known_Discriminant_Part with record Discriminants : Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access; end record; procedure Initialize (Self : aliased in out Base_Known_Discriminant_Part'Class); overriding procedure Visit (Self : not null access Base_Known_Discriminant_Part; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Discriminants (Self : Base_Known_Discriminant_Part) return Program.Elements.Discriminant_Specifications .Discriminant_Specification_Vector_Access; overriding function Is_Known_Discriminant_Part_Element (Self : Base_Known_Discriminant_Part) return Boolean; overriding function Is_Definition_Element (Self : Base_Known_Discriminant_Part) return Boolean; type Known_Discriminant_Part is new Base_Known_Discriminant_Part and Program.Elements.Known_Discriminant_Parts .Known_Discriminant_Part_Text with record Left_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Right_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_Known_Discriminant_Part_Text (Self : aliased in out Known_Discriminant_Part) return Program.Elements.Known_Discriminant_Parts .Known_Discriminant_Part_Text_Access; overriding function Left_Bracket_Token (Self : Known_Discriminant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Right_Bracket_Token (Self : Known_Discriminant_Part) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_Known_Discriminant_Part is new Base_Known_Discriminant_Part with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_Known_Discriminant_Part_Text (Self : aliased in out Implicit_Known_Discriminant_Part) return Program.Elements.Known_Discriminant_Parts .Known_Discriminant_Part_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_Known_Discriminant_Part) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_Known_Discriminant_Part) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_Known_Discriminant_Part) return Boolean; end Program.Nodes.Known_Discriminant_Parts;
stcarrez/ada-enet
Ada
1,788
ads
----------------------------------------------------------------------- -- net-interfaces-stm32 -- Ethernet driver for STM32F74x -- Copyright (C) 2016, 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- package Net.Interfaces.STM32 is -- Size of the transmit ring. TX_RING_SIZE : constant Uint32 := 100; -- Size of the receive ring. RX_RING_SIZE : constant Uint32 := 500; -- The STM32F Ethernet driver. type STM32_Ifnet is limited new Net.Interfaces.Ifnet_Type with null record; -- Initialize the network interface. overriding procedure Initialize (Ifnet : in out STM32_Ifnet); -- Send a packet to the interface. overriding procedure Send (Ifnet : in out STM32_Ifnet; Buf : in out Net.Buffers.Buffer_Type); -- Receive a packet from the interface. overriding procedure Receive (Ifnet : in out STM32_Ifnet; Buf : in out Net.Buffers.Buffer_Type); -- Returns true if the interface driver is ready to receive or send packets. function Is_Ready (Ifnet : in STM32_Ifnet) return Boolean; end Net.Interfaces.STM32;
persan/protobuf-ada
Ada
29
ads
package a.b is end a.b;
zhmu/ananas
Ada
14,696
ads
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- F R E E Z E -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Types; use Types; package Freeze is -------------------------- -- Handling of Freezing -- -------------------------- -- In the formal Ada semantics, freezing of entities occurs at a well -- defined point, described in (RM 13.14). The model in GNAT of freezing -- is that a Freeze_Entity node is generated at the point where an entity -- is frozen, and the entity contains a pointer (Freeze_Node) to this -- generated freeze node. -- The freeze node is processed in the expander to generate associated -- data and subprograms (e.g. an initialization procedure) which must -- be delayed until the type is frozen and its representation can be -- fully determined. Subsequently the freeze node is used by Gigi to -- determine the point at which it should elaborate the corresponding -- entity (this elaboration also requires the representation of the -- entity to be fully determinable). The freeze node is also used to -- provide additional diagnostic information (pinpointing the freeze -- point), when order of freezing errors are detected. -- If we were fully faithful to the Ada model, we would generate freeze -- nodes for all entities, but that is a bit heavy so we optimize (that -- is the nice word) or cut corners (which is a bit more honest). For -- many entities, we do not need to delay the freeze and instead can -- freeze them at the point of declaration. The conditions for this -- early freezing being permissible are as follows: -- There is no associated expander activity that needs to be delayed -- Gigi can fully elaborate the entity at the point of occurrence (or, -- equivalently, no real elaboration is required for the entity). -- In order for these conditions to be met (especially the second), it -- must be the case that all representation characteristics of the entity -- can be determined at declaration time. -- The following indicates how freezing is handled for all entity kinds: -- Types -- All declared types have freeze nodes, as well as anonymous base -- types created for type declarations where the defining identifier -- is a first subtype of the anonymous type. -- Subtypes -- All first subtypes have freeze nodes. Other subtypes need freeze -- nodes if the corresponding base type has not yet been frozen. If -- the base type has been frozen, then there is no need for a freeze -- node, since no rep clauses can appear for the subtype in any case. -- Implicit types and subtypes -- As noted above, implicit base types always have freeze nodes. Other -- implicit types and subtypes typically do not require freeze nodes, -- because there is no possibility of delaying any information about -- their representation. -- Subprograms -- -- Are frozen at the point of declaration unless one or more of the -- formal types or return type themselves have delayed freezing and -- are not yet frozen. This includes the case of a formal access type -- where the designated type is not frozen. Note that we are talking -- about subprogram specs here (subprogram body entities have no -- relevance), and in any case, subprogram bodies freeze everything. -- Objects with dynamic address clauses -- -- These have a delayed freeze. Gigi will generate code to evaluate -- the initialization expression if present and store it in a temp. -- The actual object is created at the point of the freeze, and if -- necessary initialized by copying the value of this temporary. -- Formal Parameters -- -- Are frozen when the associated subprogram is frozen, so there is -- never any need for them to have delayed freezing. -- Other Objects -- -- Are always frozen at the point of declaration -- All Other Entities -- Are always frozen at the point of declaration -- The flag Has_Delayed_Freeze is used to indicate that delayed freezing -- is required. Usually the associated freeze node is allocated at the -- freezing point. One special exception occurs with anonymous base types, -- where the freeze node is preallocated at the point of declaration, so -- that the First_Subtype_Link field can be set. Freezing_Library_Level_Tagged_Type : Boolean := False; -- Flag used to indicate that we are freezing the primitives of a library -- level tagged type. Used to disable checks on premature freezing. -- More documentation needed??? why is this flag needed? what are these -- checks? why do they need disabling in some cases? ----------------- -- Subprograms -- ----------------- function Build_Renamed_Body (Decl : Node_Id; New_S : Entity_Id) return Node_Id; -- Rewrite renaming declaration as a subprogram body, whose single -- statement is a call to the renamed entity. New_S is the entity that -- appears in the renaming declaration. If this is a Renaming_As_Body, -- then Decl is the original subprogram declaration that is completed -- by the renaming, otherwise it is the renaming declaration itself. -- The caller inserts the body where required. If this call comes -- from a freezing action, the resulting body is analyzed at once. procedure Check_Compile_Time_Size (T : Entity_Id); -- Check to see whether the size of the type T is known at compile time. -- There are three possible cases: -- -- Size is not known at compile time. In this case, the call has no -- effect. Note that the processing is conservative here, in the sense -- that this routine may decide that the size is not known even if in -- fact Gigi decides it is known, but the opposite situation can never -- occur. -- -- Size is known at compile time, but the actual value of the size is not -- known to the front end or is greater than System_Max_Integer_Size. In -- this case, Size_Known_At_Compile_Time is set, but the RM_Size field is -- left set to zero (to be set by Gigi). -- -- Size is known at compile time, and the actual value of the size is -- known to the front end and not greater than System_Max_Integer_Size. -- In this case, Size_Known_At_Compile_Time is set, and in addition the -- RM_Size field is set to the required size, allowing for possible front -- end packing of an array using this type as a component type. -- -- Note: the flag Size_Known_At_Compile_Time is used to determine if the -- secondary stack must be used to return a value of the type, and also -- to determine whether a component clause is allowed for a component -- of the given type. -- -- Note: this is public because of one dubious use in Sem_Res??? -- -- Note: Check_Compile_Time_Size does not test the case of the size being -- known because a size clause is specifically given. That is because we -- do not allow a size clause if the size would not otherwise be known at -- compile time in any case. procedure Check_Inherited_Conditions (R : Entity_Id; Late_Overriding : Boolean := False); -- For a tagged derived type R, create wrappers for inherited operations -- that have class-wide conditions, so it can be properly rewritten if -- it involves calls to other overriding primitives. Late_Overriding is -- True when we are processing the body of a primitive with no previous -- spec defined after R is frozen (see Check_Dispatching_Operation). function Is_Full_Access_Aggregate (N : Node_Id) return Boolean; -- If a full access object is initialized with an aggregate or is assigned -- an aggregate, we have to prevent a piecemeal access or assignment to the -- object, even if the aggregate is to be expanded. We create a temporary -- for the aggregate, and assign the temporary instead, so that the back -- end can generate an atomic move for it. This is only done in the context -- of an object declaration or an assignment. Function is a noop and -- returns false in other contexts. procedure Explode_Initialization_Compound_Statement (E : Entity_Id); -- If Initialization_Statements (E) is an N_Compound_Statement, insert its -- actions in the enclosing list and reset the attribute. function Freeze_Entity (E : Entity_Id; N : Node_Id; Do_Freeze_Profile : Boolean := True) return List_Id; -- Freeze an entity, and return Freeze nodes, to be inserted at the point -- of call. N is a node whose source location corresponds to the freeze -- point. This is used in placing warning messages in the situation where -- it appears that a type has been frozen too early, e.g. when a primitive -- operation is declared after the freezing point of its tagged type. -- Returns No_List if no freeze nodes needed. Parameter Do_Freeze_Profile -- is used when E is a subprogram, and determines whether the profile of -- the subprogram should be frozen as well. procedure Freeze_All (From : Entity_Id; After : in out Node_Id); -- Before a non-instance body, or at the end of a declarative part, -- freeze all entities therein that are not yet frozen. Calls itself -- recursively to catch types in inner packages that were not frozen -- at the inner level because they were not yet completely defined. -- This routine also analyzes and freezes default parameter expressions -- in subprogram specifications (this has to be delayed until all the -- types are frozen). The resulting freeze nodes are inserted just -- after node After (which is a list node) and analyzed. On return, -- 'After' is updated to point to the last node inserted (or is returned -- unchanged if no nodes were inserted). 'From' is the last entity frozen -- in the scope. It is used to prevent a quadratic traversal over already -- frozen entities. procedure Freeze_Before (N : Node_Id; T : Entity_Id; Do_Freeze_Profile : Boolean := True); -- Freeze T then Insert the generated Freeze nodes before the node N. Flag -- Do_Freeze_Profile is used when T is an overloadable entity and indicates -- whether its profile should be frozen at the same time. procedure Freeze_Expression (N : Node_Id); -- Freezes the required entities when the Expression N causes freezing. -- The node N here is either a subexpression node (a "real" expression) -- or a subtype mark, or a subtype indication. The latter two cases are -- not really expressions, but they can appear within expressions and -- so need to be similarly treated. Freeze_Expression takes care of -- determining the proper insertion point for generated freeze actions. procedure Freeze_Expr_Types (Def_Id : Entity_Id; Typ : Entity_Id; Expr : Node_Id; N : Node_Id); -- N is the body constructed for an expression function that is a -- completion, and Def_Id is the function being completed. -- This procedure freezes before N all the types referenced in Expr, -- which is either the expression of the expression function, or -- the expression in a pre/post aspect that applies to Def_Id; procedure Freeze_Fixed_Point_Type (Typ : Entity_Id); -- Freeze fixed point type. For fixed-point types, we have to defer -- setting the size and bounds till the freeze point, since they are -- potentially affected by the presence of size and small clauses. procedure Freeze_Itype (T : Entity_Id; N : Node_Id); -- This routine is called when an Itype is created and must be frozen -- immediately at the point of creation (for the sake of the expansion -- activities in Exp_Ch3 (for example, the creation of packed array -- types). We can't just let Freeze_Expression do this job since it -- goes out of its way to make sure that the freeze node occurs at a -- point outside the current construct, e.g. outside the expression or -- outside the initialization procedure. That's normally right, but -- not in this case, since if we create an Itype in an expression it -- may be the case that it is not always elaborated (for example it -- may result from the right operand of a short circuit). In this case -- we want the freeze node to be inserted at the same point as the Itype. -- The node N provides both the location for the freezing and also the -- insertion point for the resulting freeze nodes. end Freeze;
zhmu/ananas
Ada
3,573
ads
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . C O M M A N D _ L I N E . E N V I R O N M E N T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1996-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Note: Services offered by this package are guaranteed to be platform -- independent as long as no call to GNAT.OS_Lib.Setenv or to C putenv -- routine is done. On some platforms the services below will report new -- environment variables (e.g. Windows) on some others it will not -- (e.g. GNU/Linux and Solaris). package Ada.Command_Line.Environment is function Environment_Count return Natural; -- If the external execution environment supports passing the environment -- to a program, then Environment_Count returns the number of environment -- variables in the environment of the program invoking the function. -- Otherwise it returns 0. And that's a lot of environment. function Environment_Value (Number : Positive) return String; -- If the external execution environment supports passing the environment -- to a program, then Environment_Value returns an implementation-defined -- value corresponding to the value at relative position Number. If Number -- is outside the range 1 .. Environment_Count, then Constraint_Error is -- propagated. -- -- in GNAT: Corresponds to envp [n-1] (for n > 0) in C. end Ada.Command_Line.Environment;
franklili3/coinapi-sdk
Ada
20,658
ads
-- OEML _ REST API -- This section will provide necessary information about the `CoinAPI OEML REST API` protocol. <br/> This API is also available in the Postman application: <a href=\"https://postman.coinapi.io/\" target=\"_blank\">https://postman.coinapi.io/</a> <br/><br/> Implemented Standards: * [HTTP1.0](https://datatracker.ietf.org/doc/html/rfc1945) * [HTTP1.1](https://datatracker.ietf.org/doc/html/rfc2616) * [HTTP2.0](https://datatracker.ietf.org/doc/html/rfc7540) -- -- The version of the OpenAPI document: v1 -- Contact: [email protected] -- -- NOTE: This package is auto generated by OpenAPI-Generator 5.3.0. -- https://openapi-generator.tech -- Do not edit the class manually. with Swagger.Streams; with Ada.Containers.Vectors; package .Models is pragma Style_Checks ("-mr"); type RejectReason_Type is record end record; package RejectReason_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => RejectReason_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in RejectReason_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in RejectReason_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out RejectReason_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out RejectReason_Type_Vectors.Vector); -- ------------------------------ -- MessageReject object. -- ------------------------------ type MessageReject_Type is record P_Type : Swagger.Nullable_UString; Reject_Reason : .Models.RejectReason_Type; Exchange_Id : Swagger.Nullable_UString; Message : Swagger.Nullable_UString; Rejected_Message : Swagger.Nullable_UString; end record; package MessageReject_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => MessageReject_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MessageReject_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MessageReject_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MessageReject_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MessageReject_Type_Vectors.Vector); -- ------------------------------ -- JSON validation error. -- ------------------------------ type ValidationError_Type is record P_Type : Swagger.Nullable_UString; Title : Swagger.Nullable_UString; Status : Swagger.Number; Trace_Id : Swagger.Nullable_UString; Errors : Swagger.Nullable_UString; end record; package ValidationError_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => ValidationError_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ValidationError_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ValidationError_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ValidationError_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ValidationError_Type_Vectors.Vector); type OrdType_Type is record end record; package OrdType_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrdType_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdType_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdType_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdType_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdType_Type_Vectors.Vector); type OrdStatus_Type is record end record; package OrdStatus_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrdStatus_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdStatus_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdStatus_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdStatus_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdStatus_Type_Vectors.Vector); type OrderCancelAllRequest_Type is record Exchange_Id : Swagger.UString; end record; package OrderCancelAllRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderCancelAllRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelAllRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelAllRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelAllRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelAllRequest_Type_Vectors.Vector); type OrderCancelSingleRequest_Type is record Exchange_Id : Swagger.UString; Exchange_Order_Id : Swagger.Nullable_UString; Client_Order_Id : Swagger.Nullable_UString; end record; package OrderCancelSingleRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderCancelSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelSingleRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelSingleRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelSingleRequest_Type_Vectors.Vector); type OrdSide_Type is record end record; package OrdSide_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrdSide_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdSide_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdSide_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdSide_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdSide_Type_Vectors.Vector); type TimeInForce_Type is record end record; package TimeInForce_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => TimeInForce_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in TimeInForce_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in TimeInForce_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out TimeInForce_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out TimeInForce_Type_Vectors.Vector); type OrderNewSingleRequest_Type is record Exchange_Id : Swagger.UString; Client_Order_Id : Swagger.UString; Symbol_Id_Exchange : Swagger.Nullable_UString; Symbol_Id_Coinapi : Swagger.Nullable_UString; Amount_Order : Swagger.Number; Price : Swagger.Number; Side : .Models.OrdSide_Type; Order_Type : .Models.OrdType_Type; Time_In_Force : .Models.TimeInForce_Type; Expire_Time : Swagger.Nullable_Date; Exec_Inst : Swagger.UString_Vectors.Vector; end record; package OrderNewSingleRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderNewSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderNewSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderNewSingleRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderNewSingleRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderNewSingleRequest_Type_Vectors.Vector); -- ------------------------------ -- Relay fill information on working orders. -- ------------------------------ type Fills_Type is record Time : Swagger.Nullable_Date; Price : Swagger.Number; Amount : Swagger.Number; end record; package Fills_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Fills_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Fills_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Fills_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Fills_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Fills_Type_Vectors.Vector); type OrderExecutionReport_Type is record Exchange_Id : Swagger.UString; Client_Order_Id : Swagger.UString; Symbol_Id_Exchange : Swagger.Nullable_UString; Symbol_Id_Coinapi : Swagger.Nullable_UString; Amount_Order : Swagger.Number; Price : Swagger.Number; Side : .Models.OrdSide_Type; Order_Type : .Models.OrdType_Type; Time_In_Force : .Models.TimeInForce_Type; Expire_Time : Swagger.Nullable_Date; Exec_Inst : Swagger.UString_Vectors.Vector; Client_Order_Id_Format_Exchange : Swagger.UString; Exchange_Order_Id : Swagger.Nullable_UString; Amount_Open : Swagger.Number; Amount_Filled : Swagger.Number; Avg_Px : Swagger.Number; Status : .Models.OrdStatus_Type; Status_History : Swagger.UString_Vectors.Vector_Vectors.Vector; Error_Message : Swagger.Nullable_UString; Fills : .Models.Fills_Type_Vectors.Vector; end record; package OrderExecutionReport_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderExecutionReport_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReport_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReport_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReport_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReport_Type_Vectors.Vector); type OrderExecutionReportAllOf_Type is record Client_Order_Id_Format_Exchange : Swagger.UString; Exchange_Order_Id : Swagger.Nullable_UString; Amount_Open : Swagger.Number; Amount_Filled : Swagger.Number; Avg_Px : Swagger.Number; Status : .Models.OrdStatus_Type; Status_History : Swagger.UString_Vectors.Vector_Vectors.Vector; Error_Message : Swagger.Nullable_UString; Fills : .Models.Fills_Type_Vectors.Vector; end record; package OrderExecutionReportAllOf_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderExecutionReportAllOf_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReportAllOf_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReportAllOf_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReportAllOf_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReportAllOf_Type_Vectors.Vector); type BalanceData_Type is record Asset_Id_Exchange : Swagger.Nullable_UString; Asset_Id_Coinapi : Swagger.Nullable_UString; Balance : double; Available : double; Locked : double; Last_Updated_By : Swagger.Nullable_UString; Rate_Usd : double; Traded : double; end record; package BalanceData_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => BalanceData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in BalanceData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in BalanceData_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out BalanceData_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out BalanceData_Type_Vectors.Vector); type Balance_Type is record Exchange_Id : Swagger.Nullable_UString; Data : .Models.BalanceData_Type_Vectors.Vector; end record; package Balance_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Balance_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Balance_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Balance_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Balance_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Balance_Type_Vectors.Vector); type Position_Type is record Exchange_Id : Swagger.Nullable_UString; Data : .Models.PositionData_Type_Vectors.Vector; end record; package Position_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Position_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Position_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Position_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Position_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Position_Type_Vectors.Vector); type PositionData_Type is record Symbol_Id_Exchange : Swagger.Nullable_UString; Symbol_Id_Coinapi : Swagger.Nullable_UString; Avg_Entry_Price : Swagger.Number; Quantity : Swagger.Number; Side : .Models.OrdSide_Type; Unrealized_Pnl : Swagger.Number; Leverage : Swagger.Number; Cross_Margin : Swagger.Nullable_Boolean; Liquidation_Price : Swagger.Number; Raw_Data : Swagger.Object; end record; package PositionData_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => PositionData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PositionData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PositionData_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PositionData_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PositionData_Type_Vectors.Vector); end .Models;
zhmu/ananas
Ada
9,072
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 0 4 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; package body System.Pack_104 is subtype Bit_Order is System.Bit_Order; Reverse_Bit_Order : constant Bit_Order := Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order)); subtype Ofs is System.Storage_Elements.Storage_Offset; subtype Uns is System.Unsigned_Types.Unsigned; subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7; use type System.Storage_Elements.Storage_Offset; use type System.Unsigned_Types.Unsigned; type Cluster is record E0, E1, E2, E3, E4, E5, E6, E7 : Bits_104; end record; for Cluster use record E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1; E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1; E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1; E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1; E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1; E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1; E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1; E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1; end record; for Cluster'Size use Bits * 8; for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment, 1 + 1 * Boolean'Pos (Bits mod 2 = 0) + 2 * Boolean'Pos (Bits mod 4 = 0)); -- Use maximum possible alignment, given the bit field size, since this -- will result in the most efficient code possible for the field. type Cluster_Ref is access Cluster; type Rev_Cluster is new Cluster with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_Cluster_Ref is access Rev_Cluster; -- The following declarations are for the case where the address -- passed to GetU_104 or SetU_104 is not guaranteed to be aligned. -- These routines are used when the packed array is itself a -- component of a packed record, and therefore may not be aligned. type ClusterU is new Cluster; for ClusterU'Alignment use 1; type ClusterU_Ref is access ClusterU; type Rev_ClusterU is new ClusterU with Bit_Order => Reverse_Bit_Order, Scalar_Storage_Order => Reverse_Bit_Order; type Rev_ClusterU_Ref is access Rev_ClusterU; ------------ -- Get_104 -- ------------ function Get_104 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_104 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end Get_104; ------------- -- GetU_104 -- ------------- function GetU_104 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_104 is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => return RC.E0; when 1 => return RC.E1; when 2 => return RC.E2; when 3 => return RC.E3; when 4 => return RC.E4; when 5 => return RC.E5; when 6 => return RC.E6; when 7 => return RC.E7; end case; else case N07 (Uns (N) mod 8) is when 0 => return C.E0; when 1 => return C.E1; when 2 => return C.E2; when 3 => return C.E3; when 4 => return C.E4; when 5 => return C.E5; when 6 => return C.E6; when 7 => return C.E7; end case; end if; end GetU_104; ------------ -- Set_104 -- ------------ procedure Set_104 (Arr : System.Address; N : Natural; E : Bits_104; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : Cluster_Ref with Address => A'Address, Import; RC : Rev_Cluster_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end Set_104; ------------- -- SetU_104 -- ------------- procedure SetU_104 (Arr : System.Address; N : Natural; E : Bits_104; Rev_SSO : Boolean) is A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8); C : ClusterU_Ref with Address => A'Address, Import; RC : Rev_ClusterU_Ref with Address => A'Address, Import; begin if Rev_SSO then case N07 (Uns (N) mod 8) is when 0 => RC.E0 := E; when 1 => RC.E1 := E; when 2 => RC.E2 := E; when 3 => RC.E3 := E; when 4 => RC.E4 := E; when 5 => RC.E5 := E; when 6 => RC.E6 := E; when 7 => RC.E7 := E; end case; else case N07 (Uns (N) mod 8) is when 0 => C.E0 := E; when 1 => C.E1 := E; when 2 => C.E2 := E; when 3 => C.E3 := E; when 4 => C.E4 := E; when 5 => C.E5 := E; when 6 => C.E6 := E; when 7 => C.E7 := E; end case; end if; end SetU_104; end System.Pack_104;
AdaCore/gpr
Ada
2,395
ads
-- -- Copyright (C) 2020-2023, AdaCore -- -- SPDX-License-Identifier: Apache-2.0 WITH LLVM-Exception -- -- This package provides a low-level API that can be used to creates bindings -- to the GPR2 library. -- -- Variable: represents a project variable -- -- {'name': str, -- 'type': Optional[str], -- 'value': Union[List[str], str]} -- -- Source: represents a source -- -- {'path': str, -- 'is_aggregated': bool, -- 'is_compilable': bool, -- 'is_interface': bool, -- 'has_naming_exception': bool, -- 'is_main': bool, -- 'language': str, -- 'timestamp': int} with Interfaces.C.Strings; package GPR2.C is type C_Function is new Integer; -- Function to invoke -- Tree functions TREE_LOAD : constant C_Function := 1; TREE_UNLOAD : constant C_Function := 2; TREE_LOG_MESSAGES : constant C_Function := 3; TREE_INVALIDATE_SOURCE_LIST : constant C_Function := 4; TREE_UPDATE_SOURCE_LIST : constant C_Function := 5; TREE_UPDATE_SOURCE_INFOS : constant C_Function := 6; VIEW_LOAD : constant C_Function := 7; VIEW_ATTRIBUTE : constant C_Function := 8; VIEW_SOURCES : constant C_Function := 9; VIEW_UNITS : constant C_Function := 10; SOURCE_DEPENDENCIES : constant C_Function := 11; SOURCE_UPDATE_SOURCE_INFOS : constant C_Function := 12; type C_Request is new Interfaces.C.Strings.chars_ptr; -- Request C null terminated string type C_Answer is new Interfaces.C.Strings.chars_ptr; -- Answer C null terminater string type C_Status is new Integer; -- Integer status GPR2_C_Exception : exception; OK : constant C_Status := 0; Invalid_Request : constant C_Status := 1; Call_Error : constant C_Status := 2; Unknown_Error : constant C_Status := 3; procedure GPR2_Free_Answer (Answer : C_Answer); -- Releases the memory held by an answer function GPR2_Request (Fun : C_Function; Request : C_Request; Answer : out C_Answer) return C_Status; -- Emits a GPR2 request. -- -- Fun is the function to invoke. -- Request contains the function request. private pragma Export (C, GPR2_Free_Answer, "gpr2_free_answer"); pragma Export (C, GPR2_Request, "gpr2_request"); end GPR2.C;
reznikmm/matreshka
Ada
4,597
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Fo.Page_Height_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Fo_Page_Height_Attribute_Node is begin return Self : Fo_Page_Height_Attribute_Node do Matreshka.ODF_Fo.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Fo_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Fo_Page_Height_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Page_Height_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Fo_URI, Matreshka.ODF_String_Constants.Page_Height_Attribute, Fo_Page_Height_Attribute_Node'Tag); end Matreshka.ODF_Fo.Page_Height_Attributes;
shintakezou/adaplayground
Ada
709
adb
package body Measure_Units is function To_Mps (V : Kn) return Mps is (Mps (Float (V) * Mps_per_Knot)); function To_Meters (V : NM) return Meter is (Meter (Float (V) * Meters_per_Nautical_Mile)); function To_Meters (V : Ft) return Meter is (Meter (Float (V) * Meters_per_Foot)); function "*" (Speed : Kn; T : Duration) return NM is (NM (Float (Speed) * Float (T) / 3600.0)); function "*" (CR : Climb_Rate; T : Duration) return Ft is (Ft (Float (CR) * Float (T) / 60.0)); function "/" (D : Ft; T : Duration) return Climb_Rate is (Climb_Rate (60.0 * Float (D) / Float (T))); end Measure_Units;
AdaCore/Ada_Drivers_Library
Ada
3,812
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- This file provides subprograms necessary to handle the cache on the -- Cortex-M7 family of CPU. with System; package Cortex_M.Cache is procedure Enable_I_Cache; procedure Enable_D_Cache; procedure Disable_I_Cache; procedure Disable_D_Cache; function I_Cache_Enabled return Boolean with Inline_Always; function D_Cache_Enabled return Boolean with Inline_Always; procedure Clean_DCache (Start : System.Address; Len : Natural) with Inline_Always; -- This ensures that the data cache region do not contain any "dirty" -- data, which is data that has been modified by the CPU but has not been -- synchronized yet with the main memory. -- This make sure that any peripheral accessing the region will see -- the updated data. procedure Invalidate_DCache (Start : System.Address; Len : Natural) with Inline_Always; -- Invalidates the Data Cache for the specified region. -- Note that if the cache is dirty (e.g. contains updated data that has -- not been synchronized with the main memory), then such data will be -- lost. -- Calling this subprogram ensures that the main memory will be read -- instead of values from the cache. procedure Clean_Invalidate_DCache (Start : System.Address; Len : Natural) with Inline_Always; -- Performs both clean and invalidate operations. end Cortex_M.Cache;
charlie5/aIDE
Ada
18,431
adb
with aIDE.Palette.of_exceptions_subpackages; -- AdaM.Declaration.of_exception; with Ada.Text_IO; use Ada.Text_IO; with Glib; use Glib; with Glib.Error; use Glib.Error; with Glib.Object; use Glib.Object; with Gtk.Builder; use Gtk.Builder; with Gtk.Button; use Gtk.Button; with Gtk.Handlers; -- Gtk.Label; with Common_Gtk; use Common_Gtk; with Gtk.Window; use Gtk.Window; with adam.Assist; with ada.Containers.Ordered_Sets; with Ada.Containers.Vectors; with ada.Strings.Unbounded; with AdaM.a_Package; package body aIDE.Palette.of_exceptions is -- Recent Exceptions -- package recent_Exceptions is procedure register_Usage (the_Exception : in AdaM.Declaration.of_exception.view); function fetch return AdaM.Declaration.of_exception.vector; end recent_Exceptions; package body recent_Exceptions is type exception_Usage is record the_Exception : AdaM.Declaration.of_exception.view; Count : Natural; end record; function "<" (L, R : in exception_Usage) return Boolean is use type AdaM.Identifier; begin return L.the_Exception.Name < R.the_Exception.Name; end "<"; overriding function "=" (L, R : in exception_Usage) return Boolean is use type AdaM.Identifier; begin return L.the_Exception.Name = R.the_Exception.Name; end "="; package exception_Usage_Sets is new ada.Containers.Ordered_Sets (exception_Usage); the_usage_Stats : exception_Usage_Sets.Set; -- procedure register_Usage (the_Exception : in adam.Text) -- is -- use exception_Usage_Sets; -- -- the_exception_Usage : exception_Usage := (the_Exception, others => <>); -- Current : constant exception_Usage_Sets.Cursor := the_usage_Stats.find (the_exception_Usage); -- begin -- if Current /= No_Element -- then -- the_exception_Usage.Count := Element (Current).Count + 1; -- the_usage_Stats.replace_Element (Current, the_exception_Usage); -- else -- the_exception_Usage.Count := 1; -- the_usage_Stats.insert (the_exception_Usage); -- end if; -- end register_Usage; procedure register_Usage (the_Exception : in AdaM.Declaration.of_exception.view) is use exception_Usage_Sets; use type AdaM.Declaration.of_exception.view; the_exception_Usage : exception_Usage := (the_Exception, others => <>); Current : constant exception_Usage_Sets.Cursor := the_usage_Stats.find (the_exception_Usage); begin if the_Exception = null then raise program_Error with "NULLLLLLLL exception !!!"; else put_Line ("ALL FINEEEEEEEEEEEEEEEEEEEEEE"); end if; if Current /= No_Element then the_exception_Usage.Count := Element (Current).Count + 1; the_usage_Stats.replace_Element (Current, the_exception_Usage); else the_exception_Usage.Count := 1; the_usage_Stats.insert (the_exception_Usage); end if; end register_Usage; function fetch return AdaM.Declaration.of_exception.vector is use exception_Usage_Sets, ada.Containers; -- the_Lines : AdaM.text_Lines; the_Exceptions : AdaM.Declaration.of_exception.vector; package type_Usage_Vectors is new ada.Containers.Vectors (Positive, exception_Usage); use type_Usage_Vectors; the_usage_List : type_Usage_Vectors.Vector; begin declare Cursor : exception_Usage_Sets.Cursor := the_usage_Stats.First; begin while has_Element (Cursor) loop if Element (Cursor).Count > 0 then the_usage_List.append (Element (Cursor)); end if; exit when the_Exceptions.Length = 25; -- Limit results to 25 entries. next (Cursor); end loop; end; declare function "<" (L, R : in exception_Usage) return Boolean is begin return L.Count > R.Count; end "<"; package Sorter is new type_Usage_Vectors.Generic_Sorting ("<"); begin Sorter.sort (the_usage_List); end; declare use type AdaM.Declaration.of_exception.view; Cursor : type_Usage_Vectors.Cursor := the_usage_List.First; begin while has_Element (Cursor) loop if Element (Cursor).Count > 0 then if Element (Cursor).the_Exception = null then raise Program_Error with "KKKKKKKKKKKKKKKKKKKKK"; end if; the_Exceptions.append (Element (Cursor).the_Exception); end if; next (Cursor); end loop; end; return the_Exceptions; end fetch; -- function fetch return adam.text_Lines -- is -- use exception_Usage_Sets, -- ada.Containers; -- -- the_Lines : adam.text_Lines; -- -- package exception_Usage_Vectors is new ada.Containers.Vectors (Positive, exception_Usage); -- use exception_Usage_Vectors; -- -- the_usage_List : exception_Usage_Vectors.Vector; -- -- begin -- declare -- Cursor : exception_Usage_Sets.Cursor := the_usage_Stats.First; -- begin -- while has_Element (Cursor) -- loop -- if Element (Cursor).Count > 0 then -- the_usage_List.append (Element (Cursor)); -- end if; -- -- exit when the_Lines.Length = 25; -- next (Cursor); -- end loop; -- end; -- -- declare -- function "<" (L, R : in exception_Usage) return Boolean -- is -- begin -- return L.Count > R.Count; -- end "<"; -- -- package Sorter is new exception_Usage_Vectors.Generic_Sorting ("<"); -- begin -- Sorter.sort (the_usage_List); -- end; -- -- declare -- Cursor : exception_Usage_Vectors.Cursor := the_usage_List.First; -- begin -- while has_Element (Cursor) -- loop -- if Element (Cursor).Count > 0 then -- the_Lines.Append (Element (Cursor).Name); -- end if; -- -- exit when the_Lines.Length = 25; -- next (Cursor); -- end loop; -- end; -- -- return the_Lines; -- end fetch; end recent_Exceptions; -- Events -- procedure on_delete_Button_clicked (the_Button : access Gtk_Button_Record'Class; Self : in aIDE.Palette.of_exceptions.view) is pragma Unreferenced (the_Button); -- the_Label : String := the_Button.Get_Label; begin Self.Invoked_by.hide; Self.Target.my_Exception_is (Self.Slot, null); -- "free"); Self.Top.hide; end on_delete_Button_clicked; procedure on_close_Button_clicked (the_Button : access Gtk_Button_Record'Class; Self : in aIDE.Palette.of_exceptions.view) is pragma Unreferenced (the_Button); begin Self.Top.Hide; end on_close_Button_clicked; -- use gtk.Label; -- type label_Info is -- record -- -- package_Name : AdaM.Text; -- Palette : aIDE.Palette.of_exceptions.view; -- end record; package Button_Callbacks is new Gtk.Handlers.User_Callback (Gtk_Button_Record, aIDE.Palette.of_exceptions.view); -- package Label_return_Callbacks is new Gtk.Handlers.User_Return_Callback (gtk.Label.Gtk_Label_Record, -- Boolean, -- label_Info); -- Forge -- function to_exceptions_Palette return View is Self : constant Palette.of_exceptions.view := new Palette.of_exceptions.item; the_Builder : Gtk_Builder; Error : aliased GError; Result : Guint; pragma Unreferenced (Result); begin gtk_New (the_Builder); Result := the_Builder.add_from_File ("glade/palette/exception_palette.glade", Error'Access); if Error /= null then raise program_Error with "Error: 'adam.Palette.exceptions.to_exceptions_Palette' ~ " & Get_Message (Error); end if; Self.Top := gtk_Window (the_Builder.get_Object ("top_Window")); Self.top_Notebook := gtk_Notebook (the_Builder.get_Object ("top_Notebook")); Self.all_Notebook := gtk_Notebook (the_Builder.get_Object ("all_Notebook")); Self.recent_Table := gtk_Table (the_Builder.get_Object ("recent_Table")); Self.delete_Button := gtk_Button (the_Builder.get_Object ("delete_Button")); Self.close_Button := gtk_Button (the_Builder.get_Object ("close_Button")); Button_Callbacks.connect (Self.delete_Button, "clicked", on_delete_Button_clicked'Access, Self); Button_Callbacks.connect (Self.close_Button, "clicked", on_close_Button_clicked'Access, Self); Self.freshen; enable_bold_Tabs_for (Self.top_Notebook); enable_bold_Tabs_for (Self.all_Notebook); return Self; end to_exceptions_Palette; -- Attributes -- function top_Widget (Self : in Item) return gtk.Widget.Gtk_Widget is begin return gtk.Widget.Gtk_Widget (Self.Top); end top_Widget; -- Operations -- procedure choice_is (Self : in out Item; --Now : in String; -- package_Name : in String; the_Exception : in AdaM.Declaration.of_exception.view) is use AdaM, AdaM.Assist; -- full_Name : constant String := package_Name & "." & Now; full_Name : constant String := String (the_Exception.full_Name); begin -- recent_Exceptions.register_Usage (+full_Name); recent_Exceptions.register_Usage (the_Exception); Self.build_recent_List; Self.Invoked_by.set_Label (String (strip_standard_Prefix (identifier_Suffix (the_Exception.full_Name, 2)))); Self.Invoked_by.set_Tooltip_Text (full_Name); Self.Target.my_Exception_is (Self.Slot, the_Exception); -- Self.Target.my_add_Exception (the_Exception); Self.Top.hide; end choice_is; procedure show (Self : in out Item; Invoked_by : in gtk_Button; Target : in adam.exception_Handler.view; Slot : in Positive) is begin Self.Invoked_by := Invoked_by; Self.Target := Target; Self.Slot := Slot; Self.Top.show_All; end show; procedure freshen (Self : in out Item) is use Adam; -- type a_Package; -- type Package_view is access all a_Package; -- -- package package_Vectors is new ada.Containers.Vectors (Positive, Package_view); -- subtype Package_vector is package_Vectors.Vector; -- -- type a_Package is -- record -- Name : adam.Text; -- Parent : Package_view; -- Children : Package_vector; -- -- Exceptions : adam.text_Lines; -- end record; -- the_Exceptions : constant adam.text_Lines := adam.Assist.known_Exceptions; -- Root : aliased a_Package; begin -- Root.Name := +"Root"; -- Clear out old notebook pages. -- while Self.all_Notebook.Get_N_Pages > 0 loop Self.all_Notebook.Get_Nth_Page (0).Destroy; end loop; -- Build the Gui tree. -- build_Gui_Tree: declare procedure build_Gui_for (the_Package : in AdaM.a_Package.view; children_Notebook : in gtk_Notebook) is the_Children : AdaM.a_Package.Vector renames the_Package.child_Packages; the_exceptions_Palette_package : constant Palette.of_exceptions_subpackages.view := aIDE.Palette.of_exceptions_subpackages.to_exceptions_Palette_package; begin -- Build the package pane. -- the_exceptions_Palette_package.Parent_is (Self'unchecked_Access); the_exceptions_Palette_package.top_Widget.Reparent (children_Notebook); children_Notebook.set_Tab_Label_Text (the_exceptions_Palette_package.top_Widget, +the_Package.Name); -- Build the exceptions sub-pane. -- for Each of the_Package.all_Exceptions loop the_exceptions_Palette_package.add_Exception (Each, the_Package); -- the_exceptions_Palette_package.add_Exception (named => Each.Name, -- package_Name => the_Package.Name); -- -- package_Name => full_Name (the_Package)); end loop; -- Configure event handling. -- -- declare -- use gtk.Label; -- the_tab_Label : constant gtk_Label -- := gtk_Label (children_Notebook.get_tab_Label (the_exceptions_Palette_package.top_Widget)); -- begin -- the_tab_Label.set_Selectable (True); -- label_return_Callbacks.connect (the_tab_Label, -- "button-release-event", -- on_tab_Label_clicked'Access, -- (package_name => the_Package.Name, -- palette => Self'unchecked_Access)); -- end; -- Build each childs Gui. -- for i in 1 .. Integer (the_Children.Length) loop build_Gui_for (the_Children.Element (i), the_exceptions_Palette_package.children_Notebook); -- Recurse. end loop; enable_bold_Tabs_for (the_exceptions_Palette_package.children_Notebook); end build_Gui_for; begin -- Recursively add sub-gui's for each package, rooted at 'Standard'. -- -- for i in 1 .. Integer (the_Environ.standard_Package.Children.Length) -- loop -- build_Gui_for (the_Environ.standard_Package.child_Packages.Element (i).all'Access, -- Self.all_Notebook); -- end loop; -- for i in 1 .. Integer (the_entity_Environ.standard_Package.child_Packages.Length) -- loop -- build_Gui_for (the_Environ.standard_Package.child_Packages.Element (i).all'Access, -- Self.all_Notebook); -- end loop; build_Gui_for (the_entity_Environ.standard_Package, Self.all_Notebook); Self.all_Notebook.Popup_enable; Self.all_Notebook.Show_All; end build_Gui_Tree; Self.build_recent_List; -- todo: This is useless til usage stats are made persistent. end freshen; procedure destroy_Callback (Widget : not null access Gtk.Widget.Gtk_Widget_Record'Class) is begin Widget.destroy; end destroy_Callback; procedure build_recent_List (Self : in out Item) is -- the_Recent : constant adam.text_Lines := recent_Exceptions.fetch; the_Recent : constant adam.Declaration.of_exception.vector := recent_Exceptions.fetch; the_Button : gtk_Button; Row, Col : Guint := 0; begin Self.recent_Table.Foreach (destroy_Callback'Access); for i in 1 .. Integer (the_Recent.Length) loop declare use adam, ada.Strings.Unbounded; -- the_Exception : adam.Text renames the_Recent.Element (i); the_Exception : constant adam.Declaration.of_exception.view := the_Recent.Element (i); begin put_Line ("Recent: " & String (the_Exception.full_Name)); put_Line ("Named : " & String (assist. Tail_of (the_Exception.full_Name))); put_Line ("package_Name: " & String (assist.strip_Tail_of (the_Exception.full_Name))); -- gtk_New (the_Button, +the_Exception); the_Button := aIDE.Palette.of_exceptions_subpackages.new_Button (for_Exception => the_Exception, Named => String (assist. Tail_of (the_Exception.full_Name)), package_Name => String (assist.strip_Tail_of (the_Exception.full_Name)), exceptions_Palette => Self'unchecked_Access, use_simple_Name => False); Self.recent_Table.attach (the_Button, Col, Col + 1, Row, Row + 1, Xoptions => 0, Yoptions => 0); the_Button.show_All; if Row = 6 then Row := 0; Col := Col + 1; else Row := Row + 1; end if; end; end loop; end build_recent_List; end aIDE.Palette.of_exceptions;
AdaCore/Ada_Drivers_Library
Ada
22,597
ads
-- Copyright (c) 2010 - 2018, Nordic Semiconductor ASA -- -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without modification, -- are permitted provided that the following conditions are met: -- -- 1. Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form, except as embedded into a Nordic -- Semiconductor ASA integrated circuit in a product or a software update for -- such product, must reproduce the above copyright notice, this list of -- conditions and the following disclaimer in the documentation and/or other -- materials provided with the distribution. -- -- 3. Neither the name of Nordic Semiconductor ASA nor the names of its -- contributors may be used to endorse or promote products derived from this -- software without specific prior written permission. -- -- 4. This software, with or without modification, must only be used with a -- Nordic Semiconductor ASA integrated circuit. -- -- 5. Any software provided in binary form under this license must not be reverse -- engineered, decompiled, modified and/or disassembled. -- -- THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS -- OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -- OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE -- DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE -- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE -- GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT -- OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- This spec has been automatically generated from nrf52.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package NRF_SVD.TWI is pragma Preelaborate; --------------- -- Registers -- --------------- -- Shortcut between BB event and SUSPEND task type SHORTS_BB_SUSPEND_Field is (-- Disable shortcut Disabled, -- Enable shortcut Enabled) with Size => 1; for SHORTS_BB_SUSPEND_Field use (Disabled => 0, Enabled => 1); -- Shortcut between BB event and STOP task type SHORTS_BB_STOP_Field is (-- Disable shortcut Disabled, -- Enable shortcut Enabled) with Size => 1; for SHORTS_BB_STOP_Field use (Disabled => 0, Enabled => 1); -- Shortcut register type SHORTS_Register is record -- Shortcut between BB event and SUSPEND task BB_SUSPEND : SHORTS_BB_SUSPEND_Field := NRF_SVD.TWI.Disabled; -- Shortcut between BB event and STOP task BB_STOP : SHORTS_BB_STOP_Field := NRF_SVD.TWI.Disabled; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SHORTS_Register use record BB_SUSPEND at 0 range 0 .. 0; BB_STOP at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- Write '1' to Enable interrupt for STOPPED event type INTENSET_STOPPED_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENSET_STOPPED_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Enable interrupt for STOPPED event type INTENSET_STOPPED_Field_1 is (-- Reset value for the field Intenset_Stopped_Field_Reset, -- Enable Set) with Size => 1; for INTENSET_STOPPED_Field_1 use (Intenset_Stopped_Field_Reset => 0, Set => 1); -- Write '1' to Enable interrupt for RXDREADY event type INTENSET_RXDREADY_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENSET_RXDREADY_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Enable interrupt for RXDREADY event type INTENSET_RXDREADY_Field_1 is (-- Reset value for the field Intenset_Rxdready_Field_Reset, -- Enable Set) with Size => 1; for INTENSET_RXDREADY_Field_1 use (Intenset_Rxdready_Field_Reset => 0, Set => 1); -- Write '1' to Enable interrupt for TXDSENT event type INTENSET_TXDSENT_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENSET_TXDSENT_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Enable interrupt for TXDSENT event type INTENSET_TXDSENT_Field_1 is (-- Reset value for the field Intenset_Txdsent_Field_Reset, -- Enable Set) with Size => 1; for INTENSET_TXDSENT_Field_1 use (Intenset_Txdsent_Field_Reset => 0, Set => 1); -- Write '1' to Enable interrupt for ERROR event type INTENSET_ERROR_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENSET_ERROR_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Enable interrupt for ERROR event type INTENSET_ERROR_Field_1 is (-- Reset value for the field Intenset_Error_Field_Reset, -- Enable Set) with Size => 1; for INTENSET_ERROR_Field_1 use (Intenset_Error_Field_Reset => 0, Set => 1); -- Write '1' to Enable interrupt for BB event type INTENSET_BB_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENSET_BB_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Enable interrupt for BB event type INTENSET_BB_Field_1 is (-- Reset value for the field Intenset_Bb_Field_Reset, -- Enable Set) with Size => 1; for INTENSET_BB_Field_1 use (Intenset_Bb_Field_Reset => 0, Set => 1); -- Write '1' to Enable interrupt for SUSPENDED event type INTENSET_SUSPENDED_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENSET_SUSPENDED_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Enable interrupt for SUSPENDED event type INTENSET_SUSPENDED_Field_1 is (-- Reset value for the field Intenset_Suspended_Field_Reset, -- Enable Set) with Size => 1; for INTENSET_SUSPENDED_Field_1 use (Intenset_Suspended_Field_Reset => 0, Set => 1); -- Enable interrupt type INTENSET_Register is record -- unspecified Reserved_0_0 : HAL.Bit := 16#0#; -- Write '1' to Enable interrupt for STOPPED event STOPPED : INTENSET_STOPPED_Field_1 := Intenset_Stopped_Field_Reset; -- Write '1' to Enable interrupt for RXDREADY event RXDREADY : INTENSET_RXDREADY_Field_1 := Intenset_Rxdready_Field_Reset; -- unspecified Reserved_3_6 : HAL.UInt4 := 16#0#; -- Write '1' to Enable interrupt for TXDSENT event TXDSENT : INTENSET_TXDSENT_Field_1 := Intenset_Txdsent_Field_Reset; -- unspecified Reserved_8_8 : HAL.Bit := 16#0#; -- Write '1' to Enable interrupt for ERROR event ERROR : INTENSET_ERROR_Field_1 := Intenset_Error_Field_Reset; -- unspecified Reserved_10_13 : HAL.UInt4 := 16#0#; -- Write '1' to Enable interrupt for BB event BB : INTENSET_BB_Field_1 := Intenset_Bb_Field_Reset; -- unspecified Reserved_15_17 : HAL.UInt3 := 16#0#; -- Write '1' to Enable interrupt for SUSPENDED event SUSPENDED : INTENSET_SUSPENDED_Field_1 := Intenset_Suspended_Field_Reset; -- unspecified Reserved_19_31 : HAL.UInt13 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTENSET_Register use record Reserved_0_0 at 0 range 0 .. 0; STOPPED at 0 range 1 .. 1; RXDREADY at 0 range 2 .. 2; Reserved_3_6 at 0 range 3 .. 6; TXDSENT at 0 range 7 .. 7; Reserved_8_8 at 0 range 8 .. 8; ERROR at 0 range 9 .. 9; Reserved_10_13 at 0 range 10 .. 13; BB at 0 range 14 .. 14; Reserved_15_17 at 0 range 15 .. 17; SUSPENDED at 0 range 18 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; -- Write '1' to Disable interrupt for STOPPED event type INTENCLR_STOPPED_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENCLR_STOPPED_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Disable interrupt for STOPPED event type INTENCLR_STOPPED_Field_1 is (-- Reset value for the field Intenclr_Stopped_Field_Reset, -- Disable Clear) with Size => 1; for INTENCLR_STOPPED_Field_1 use (Intenclr_Stopped_Field_Reset => 0, Clear => 1); -- Write '1' to Disable interrupt for RXDREADY event type INTENCLR_RXDREADY_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENCLR_RXDREADY_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Disable interrupt for RXDREADY event type INTENCLR_RXDREADY_Field_1 is (-- Reset value for the field Intenclr_Rxdready_Field_Reset, -- Disable Clear) with Size => 1; for INTENCLR_RXDREADY_Field_1 use (Intenclr_Rxdready_Field_Reset => 0, Clear => 1); -- Write '1' to Disable interrupt for TXDSENT event type INTENCLR_TXDSENT_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENCLR_TXDSENT_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Disable interrupt for TXDSENT event type INTENCLR_TXDSENT_Field_1 is (-- Reset value for the field Intenclr_Txdsent_Field_Reset, -- Disable Clear) with Size => 1; for INTENCLR_TXDSENT_Field_1 use (Intenclr_Txdsent_Field_Reset => 0, Clear => 1); -- Write '1' to Disable interrupt for ERROR event type INTENCLR_ERROR_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENCLR_ERROR_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Disable interrupt for ERROR event type INTENCLR_ERROR_Field_1 is (-- Reset value for the field Intenclr_Error_Field_Reset, -- Disable Clear) with Size => 1; for INTENCLR_ERROR_Field_1 use (Intenclr_Error_Field_Reset => 0, Clear => 1); -- Write '1' to Disable interrupt for BB event type INTENCLR_BB_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENCLR_BB_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Disable interrupt for BB event type INTENCLR_BB_Field_1 is (-- Reset value for the field Intenclr_Bb_Field_Reset, -- Disable Clear) with Size => 1; for INTENCLR_BB_Field_1 use (Intenclr_Bb_Field_Reset => 0, Clear => 1); -- Write '1' to Disable interrupt for SUSPENDED event type INTENCLR_SUSPENDED_Field is (-- Read: Disabled Disabled, -- Read: Enabled Enabled) with Size => 1; for INTENCLR_SUSPENDED_Field use (Disabled => 0, Enabled => 1); -- Write '1' to Disable interrupt for SUSPENDED event type INTENCLR_SUSPENDED_Field_1 is (-- Reset value for the field Intenclr_Suspended_Field_Reset, -- Disable Clear) with Size => 1; for INTENCLR_SUSPENDED_Field_1 use (Intenclr_Suspended_Field_Reset => 0, Clear => 1); -- Disable interrupt type INTENCLR_Register is record -- unspecified Reserved_0_0 : HAL.Bit := 16#0#; -- Write '1' to Disable interrupt for STOPPED event STOPPED : INTENCLR_STOPPED_Field_1 := Intenclr_Stopped_Field_Reset; -- Write '1' to Disable interrupt for RXDREADY event RXDREADY : INTENCLR_RXDREADY_Field_1 := Intenclr_Rxdready_Field_Reset; -- unspecified Reserved_3_6 : HAL.UInt4 := 16#0#; -- Write '1' to Disable interrupt for TXDSENT event TXDSENT : INTENCLR_TXDSENT_Field_1 := Intenclr_Txdsent_Field_Reset; -- unspecified Reserved_8_8 : HAL.Bit := 16#0#; -- Write '1' to Disable interrupt for ERROR event ERROR : INTENCLR_ERROR_Field_1 := Intenclr_Error_Field_Reset; -- unspecified Reserved_10_13 : HAL.UInt4 := 16#0#; -- Write '1' to Disable interrupt for BB event BB : INTENCLR_BB_Field_1 := Intenclr_Bb_Field_Reset; -- unspecified Reserved_15_17 : HAL.UInt3 := 16#0#; -- Write '1' to Disable interrupt for SUSPENDED event SUSPENDED : INTENCLR_SUSPENDED_Field_1 := Intenclr_Suspended_Field_Reset; -- unspecified Reserved_19_31 : HAL.UInt13 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for INTENCLR_Register use record Reserved_0_0 at 0 range 0 .. 0; STOPPED at 0 range 1 .. 1; RXDREADY at 0 range 2 .. 2; Reserved_3_6 at 0 range 3 .. 6; TXDSENT at 0 range 7 .. 7; Reserved_8_8 at 0 range 8 .. 8; ERROR at 0 range 9 .. 9; Reserved_10_13 at 0 range 10 .. 13; BB at 0 range 14 .. 14; Reserved_15_17 at 0 range 15 .. 17; SUSPENDED at 0 range 18 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; -- Overrun error type ERRORSRC_OVERRUN_Field is (-- Read: no overrun occured Notpresent, -- Read: overrun occured Present) with Size => 1; for ERRORSRC_OVERRUN_Field use (Notpresent => 0, Present => 1); -- Overrun error type ERRORSRC_OVERRUN_Field_1 is (-- Reset value for the field Errorsrc_Overrun_Field_Reset, -- Write: clear error on writing '1' Clear) with Size => 1; for ERRORSRC_OVERRUN_Field_1 use (Errorsrc_Overrun_Field_Reset => 0, Clear => 1); -- NACK received after sending the address (write '1' to clear) type ERRORSRC_ANACK_Field is (-- Read: error not present Notpresent, -- Read: error present Present) with Size => 1; for ERRORSRC_ANACK_Field use (Notpresent => 0, Present => 1); -- NACK received after sending the address (write '1' to clear) type ERRORSRC_ANACK_Field_1 is (-- Reset value for the field Errorsrc_Anack_Field_Reset, -- Write: clear error on writing '1' Clear) with Size => 1; for ERRORSRC_ANACK_Field_1 use (Errorsrc_Anack_Field_Reset => 0, Clear => 1); -- NACK received after sending a data byte (write '1' to clear) type ERRORSRC_DNACK_Field is (-- Read: error not present Notpresent, -- Read: error present Present) with Size => 1; for ERRORSRC_DNACK_Field use (Notpresent => 0, Present => 1); -- NACK received after sending a data byte (write '1' to clear) type ERRORSRC_DNACK_Field_1 is (-- Reset value for the field Errorsrc_Dnack_Field_Reset, -- Write: clear error on writing '1' Clear) with Size => 1; for ERRORSRC_DNACK_Field_1 use (Errorsrc_Dnack_Field_Reset => 0, Clear => 1); -- Error source type ERRORSRC_Register is record -- Overrun error OVERRUN : ERRORSRC_OVERRUN_Field_1 := Errorsrc_Overrun_Field_Reset; -- NACK received after sending the address (write '1' to clear) ANACK : ERRORSRC_ANACK_Field_1 := Errorsrc_Anack_Field_Reset; -- NACK received after sending a data byte (write '1' to clear) DNACK : ERRORSRC_DNACK_Field_1 := Errorsrc_Dnack_Field_Reset; -- unspecified Reserved_3_31 : HAL.UInt29 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ERRORSRC_Register use record OVERRUN at 0 range 0 .. 0; ANACK at 0 range 1 .. 1; DNACK at 0 range 2 .. 2; Reserved_3_31 at 0 range 3 .. 31; end record; -- Enable or disable TWI type ENABLE_ENABLE_Field is (-- Disable TWI Disabled, -- Enable TWI Enabled) with Size => 4; for ENABLE_ENABLE_Field use (Disabled => 0, Enabled => 5); -- Enable TWI type ENABLE_Register is record -- Enable or disable TWI ENABLE : ENABLE_ENABLE_Field := NRF_SVD.TWI.Disabled; -- unspecified Reserved_4_31 : HAL.UInt28 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ENABLE_Register use record ENABLE at 0 range 0 .. 3; Reserved_4_31 at 0 range 4 .. 31; end record; subtype RXD_RXD_Field is HAL.UInt8; -- RXD register type RXD_Register is record -- Read-only. *** Reading this field has side effects on other resources -- ***. RXD register RXD : RXD_RXD_Field; -- unspecified Reserved_8_31 : HAL.UInt24; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RXD_Register use record RXD at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype TXD_TXD_Field is HAL.UInt8; -- TXD register type TXD_Register is record -- TXD register TXD : TXD_TXD_Field := 16#0#; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TXD_Register use record TXD at 0 range 0 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; subtype ADDRESS_ADDRESS_Field is HAL.UInt7; -- Address used in the TWI transfer type ADDRESS_Register is record -- Address used in the TWI transfer ADDRESS : ADDRESS_ADDRESS_Field := 16#0#; -- unspecified Reserved_7_31 : HAL.UInt25 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ADDRESS_Register use record ADDRESS at 0 range 0 .. 6; Reserved_7_31 at 0 range 7 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- I2C compatible Two-Wire Interface 0 type TWI_Peripheral is record -- Start TWI receive sequence TASKS_STARTRX : aliased HAL.UInt32; -- Start TWI transmit sequence TASKS_STARTTX : aliased HAL.UInt32; -- Stop TWI transaction TASKS_STOP : aliased HAL.UInt32; -- Suspend TWI transaction TASKS_SUSPEND : aliased HAL.UInt32; -- Resume TWI transaction TASKS_RESUME : aliased HAL.UInt32; -- TWI stopped EVENTS_STOPPED : aliased HAL.UInt32; -- TWI RXD byte received EVENTS_RXDREADY : aliased HAL.UInt32; -- TWI TXD byte sent EVENTS_TXDSENT : aliased HAL.UInt32; -- TWI error EVENTS_ERROR : aliased HAL.UInt32; -- TWI byte boundary, generated before each byte that is sent or -- received EVENTS_BB : aliased HAL.UInt32; -- TWI entered the suspended state EVENTS_SUSPENDED : aliased HAL.UInt32; -- Shortcut register SHORTS : aliased SHORTS_Register; -- Enable interrupt INTENSET : aliased INTENSET_Register; -- Disable interrupt INTENCLR : aliased INTENCLR_Register; -- Error source ERRORSRC : aliased ERRORSRC_Register; -- Enable TWI ENABLE : aliased ENABLE_Register; -- Pin select for SCL PSELSCL : aliased HAL.UInt32; -- Pin select for SDA PSELSDA : aliased HAL.UInt32; -- RXD register RXD : aliased RXD_Register; -- TXD register TXD : aliased TXD_Register; -- TWI frequency FREQUENCY : aliased HAL.UInt32; -- Address used in the TWI transfer ADDRESS : aliased ADDRESS_Register; end record with Volatile; for TWI_Peripheral use record TASKS_STARTRX at 16#0# range 0 .. 31; TASKS_STARTTX at 16#8# range 0 .. 31; TASKS_STOP at 16#14# range 0 .. 31; TASKS_SUSPEND at 16#1C# range 0 .. 31; TASKS_RESUME at 16#20# range 0 .. 31; EVENTS_STOPPED at 16#104# range 0 .. 31; EVENTS_RXDREADY at 16#108# range 0 .. 31; EVENTS_TXDSENT at 16#11C# range 0 .. 31; EVENTS_ERROR at 16#124# range 0 .. 31; EVENTS_BB at 16#138# range 0 .. 31; EVENTS_SUSPENDED at 16#148# range 0 .. 31; SHORTS at 16#200# range 0 .. 31; INTENSET at 16#304# range 0 .. 31; INTENCLR at 16#308# range 0 .. 31; ERRORSRC at 16#4C4# range 0 .. 31; ENABLE at 16#500# range 0 .. 31; PSELSCL at 16#508# range 0 .. 31; PSELSDA at 16#50C# range 0 .. 31; RXD at 16#518# range 0 .. 31; TXD at 16#51C# range 0 .. 31; FREQUENCY at 16#524# range 0 .. 31; ADDRESS at 16#588# range 0 .. 31; end record; -- I2C compatible Two-Wire Interface 0 TWI0_Periph : aliased TWI_Peripheral with Import, Address => TWI0_Base; -- I2C compatible Two-Wire Interface 1 TWI1_Periph : aliased TWI_Peripheral with Import, Address => TWI1_Base; end NRF_SVD.TWI;
io7m/coreland-math_2d
Ada
541
ads
with Ada.Numerics; with Math_2D.Types; generic with package Types is new Math_2D.Types (<>); package Math_2D.Trigonometry is use type Types.Real_Type'Base; type Degrees_t is new Types.Real_Type'Base range 0.0 .. 360.0; type Radians_t is new Types.Real_Type'Base range 0.0 .. 360.0 * (Ada.Numerics.Pi / 180.0); function To_Radians (Degrees : in Degrees_t) return Radians_t; pragma Inline (To_Radians); function To_Degrees (Radians : in Radians_t) return Degrees_t; pragma Inline (To_Degrees); end Math_2D.Trigonometry;
Tim-Tom/project-euler
Ada
1,413
adb
with Ada.Integer_Text_IO; with Ada.Text_IO; package body Problem_19 is package IO renames Ada.Text_IO; package I_IO renames Ada.Integer_Text_IO; procedure Solve is type Day_Of_Week is mod 7; type Year is new Positive range 1900 .. 2010; current_day : Day_Of_Week := 1; count : Natural := 0; type Month_Count_Array is Array (1 .. 12) of Day_Of_Week; Normal_Days_In_Month : aliased constant Month_Count_Array := (3, 0, 3, 2, 3, 2, 3, 3, 2, 3, 2, 3); Leap_Days_In_Month : aliased constant Month_Count_Array := (3, 1, 3, 2, 3, 2, 3, 3, 2, 3, 2, 3); Current_Days_In_Month : access constant Month_Count_Array; procedure New_Year(current_year : in Year) is begin if (current_year mod 4 = 0 and current_year mod 100 /= 0) or (current_year mod 400 = 0) then Current_Days_In_Month := Leap_Days_In_Month'Access; else Current_Days_In_Month := Normal_Days_In_Month'Access; end if; end; begin for current_year in year'Range loop New_Year(current_year); for month in 1 .. 12 loop if current_day = 0 and current_year /= 1900 then count := count + 1; end if; current_day := current_day + Current_Days_In_Month(month); end loop; end loop; I_IO.Put(count); IO.New_Line; end Solve; end Problem_19;
optikos/oasis
Ada
4,260
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Slices is function Create (Prefix : not null Program.Elements.Expressions .Expression_Access; Left_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Slice_Range : not null Program.Elements.Discrete_Ranges .Discrete_Range_Access; Right_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Slice is begin return Result : Slice := (Prefix => Prefix, Left_Bracket_Token => Left_Bracket_Token, Slice_Range => Slice_Range, Right_Bracket_Token => Right_Bracket_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Prefix : not null Program.Elements.Expressions .Expression_Access; Slice_Range : not null Program.Elements.Discrete_Ranges .Discrete_Range_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Slice is begin return Result : Implicit_Slice := (Prefix => Prefix, Slice_Range => Slice_Range, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Prefix (Self : Base_Slice) return not null Program.Elements.Expressions.Expression_Access is begin return Self.Prefix; end Prefix; overriding function Slice_Range (Self : Base_Slice) return not null Program.Elements.Discrete_Ranges.Discrete_Range_Access is begin return Self.Slice_Range; end Slice_Range; overriding function Left_Bracket_Token (Self : Slice) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Slice) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Slice) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Slice) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Slice) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Slice'Class) is begin Set_Enclosing_Element (Self.Prefix, Self'Unchecked_Access); Set_Enclosing_Element (Self.Slice_Range, Self'Unchecked_Access); null; end Initialize; overriding function Is_Slice_Element (Self : Base_Slice) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Slice_Element; overriding function Is_Expression_Element (Self : Base_Slice) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Expression_Element; overriding procedure Visit (Self : not null access Base_Slice; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Slice (Self); end Visit; overriding function To_Slice_Text (Self : aliased in out Slice) return Program.Elements.Slices.Slice_Text_Access is begin return Self'Unchecked_Access; end To_Slice_Text; overriding function To_Slice_Text (Self : aliased in out Implicit_Slice) return Program.Elements.Slices.Slice_Text_Access is pragma Unreferenced (Self); begin return null; end To_Slice_Text; end Program.Nodes.Slices;
rtoal/enhanced-dining-philosophers
Ada
738
adb
------------------------------------------------------------------------------ -- reporter.adb -- -- Implementation of the Reporter package. ------------------------------------------------------------------------------ with Ada.Text_IO; use Ada.Text_IO; package body Reporter is protected Output is procedure Send (Message: String); end Output; protected body Output is procedure Send (Message: String) is begin Put_Line (Message); end Send; end Output; procedure Report (Message: String) is begin Output.Send (Message); end Report; procedure Report (Message: Unbounded_String) is begin Output.Send (To_String(Message)); end Report; end Reporter;
PThierry/ewok-kernel
Ada
856
ads
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- 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. -- -- package ewok.syscalls.cfg with spark_mode => off is end ewok.syscalls.cfg;
reznikmm/matreshka
Ada
22,230
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.Schema.Complex_Type_Definitions; with XML.Schema.Model_Groups; with XML.Schema.Named_Maps; with XML.Schema.Object_Lists; with XML.Schema.Terms; with XML.Schema.Particles; with XSD_To_Ada.Utils; pragma Style_Checks ("N"); package body XSD2Ada.Analyzer is use type League.Strings.Universal_String; use all type XML.Schema.Complex_Type_Definitions.Content_Types; procedure Add_Node (Vector : in out Items; Value : Item); -------------- -- Add_Node -- -------------- procedure Add_Node (Vector : in out Items; Value : Item) is function Contains (X : Item'Class) return Boolean; -------------- -- Contains -- -------------- function Contains (X : Item'Class) return Boolean is begin for Index of Vector loop if Index.all = X then return True; end if; end loop; return False; end Contains; Definition_Node : XSD2Ada.Analyzer.Item; begin Definition_Node := Value; Definition_Node.Min := False; Definition_Node.Max := False; Definition_Node.Element_Name.Clear; if Value.Element_Name.To_Wide_Wide_String /= Value.Object.Get_Name.To_Wide_Wide_String and then not Value.Object.Get_Name.Is_Empty then Definition_Node.Element_Name := Value.Element_Name; end if; if not Contains (Definition_Node) then Vector.Append (new Item'(Definition_Node)); end if; if Value.Max then Definition_Node.Max := True; Definition_Node.Short_Ada_Type_Name := Definition_Node.Short_Ada_Type_Name & "_Vector"; if not Contains (Definition_Node) then Vector.Append (new Item'(Definition_Node)); end if; Definition_Node.Max := False; end if; if Value.Min then Definition_Node.Min := True; Definition_Node.Short_Ada_Type_Name := "Optional_" & Definition_Node.Short_Ada_Type_Name; if not Contains (Definition_Node) then Vector.Append (new Item'(Definition_Node)); end if; Definition_Node.Min := False; end if; end Add_Node; ------------ -- Choice -- ------------ function Choice (Self : Item) return Boolean is use type XML.Schema.Model_Groups.Compositor_Kinds; begin if Self.Object.Is_Type_Definition then return XSD_To_Ada.Utils.Is_Choice (Self.Type_Def); else return Self.Object.To_Model_Group.Get_Compositor = XML.Schema.Model_Groups.Compositor_Choice; end if; end Choice; ------------------------- -- Short_Ada_Type_Name -- ------------------------- function Short_Ada_Type_Name (Self : Item) return League.Strings.Universal_String is begin return Self.Short_Ada_Type_Name; end Short_Ada_Type_Name; procedure Traverse_Type_Definition (Type_D : XML.Schema.Type_Definitions.XS_Type_Definition; Node_Vector : in out Items; Anonym_Prefix : League.Strings.Universal_String; Namespace : League.Strings.Universal_String); -- Recursive find all types in dependency for Type_D and add them to -- Node_Vector. Use Anonym_Prefix to name anonymous items procedure Traverse_Model_Group (XS_Model_Group : XML.Schema.Model_Groups.XS_Model_Group; Node_Vector : in out Items; Anonym_Prefix : League.Strings.Universal_String; Namespace : League.Strings.Universal_String); -- Recursive find all types in dependency for XS_Model_Group and add them -- to Node_Vector. Use Anonym_Prefix to name anonymous items procedure Traverse_Term (XS_Term : XML.Schema.Terms.XS_Term; Node_Vector : in out Items; Anonym_Prefix : League.Strings.Universal_String; Max_Occurs : XML.Schema.Particles.Unbounded_Natural; Min_Occurs : Natural; Namespace : League.Strings.Universal_String); -- Recursive find all types in dependency for XS_Term and add them -- to Node_Vector. Use Anonym_Prefix to name anonymous items procedure Create_Node_Vector (Object : XML.Schema.Objects.XS_Object'Class; Node_Vector : in out XSD2Ada.Analyzer.Items; Min_Occurs : Natural; Max_Occurs : XML.Schema.Particles.Unbounded_Natural; Namespace : League.Strings.Universal_String; Element_Name : League.Strings.Universal_String := League.Strings.Empty_Universal_String; Anonym_Name : League.Strings.Universal_String := League.Strings.Empty_Universal_String; Short_Ada_Type_Name : League.Strings.Universal_String := League.Strings.Empty_Universal_String); -------------------------- -- Traverse_Model_Group -- -------------------------- procedure Traverse_Model_Group (XS_Model_Group : XML.Schema.Model_Groups.XS_Model_Group; Node_Vector : in out Items; Anonym_Prefix : League.Strings.Universal_String; Namespace : League.Strings.Universal_String) is XS_Particle : XML.Schema.Particles.XS_Particle; XS_List : constant XML.Schema.Object_Lists.XS_Object_List := XS_Model_Group.Get_Particles; begin for J in 1 .. XS_List.Get_Length loop XS_Particle := XS_List.Item (J).To_Particle; Traverse_Term (XS_Term => XS_Particle.Get_Term, Node_Vector => Node_Vector, Anonym_Prefix => Anonym_Prefix, Max_Occurs => XS_Particle.Get_Max_Occurs, Min_Occurs => XS_Particle.Get_Min_Occurs, Namespace => Namespace); end loop; end Traverse_Model_Group; ------------------------- -- Create_Element_Node -- ------------------------- procedure Create_Element_Node (Element : XML.Schema.Element_Declarations.XS_Element_Declaration; Node_Vector : in out XSD2Ada.Analyzer.Items; Namespace : League.Strings.Universal_String) is begin XSD2Ada.Analyzer.Create_Node_Vector (Object => Element.Get_Type_Definition, Node_Vector => Node_Vector, Min_Occurs => 1, Max_Occurs => (False, 1), Namespace => Namespace, Element_Name => Element.Get_Name, Short_Ada_Type_Name => Element.Get_Name); end Create_Element_Node; ------------------------- -- Create_Element_Type -- ------------------------- procedure Create_Element_Nodes (Model : XML.Schema.Models.XS_Model; Node_Vector : in out Items) is Element_Declarations : constant XML.Schema.Named_Maps.XS_Named_Map := Model.Get_Components_By_Namespace (Object_Type => XML.Schema.Element_Declaration, Namespace => XSD_To_Ada.Utils.Namespace); Crutches_Element_Declarations : constant XML.Schema.Named_Maps.XS_Named_Map := Model.Get_Components_By_Namespace (Object_Type => XML.Schema.Element_Declaration, Namespace => League.Strings.To_Universal_String ("http://www.actforex.com/iats/crutches")); begin for J in 1 .. Crutches_Element_Declarations.Length loop XSD2Ada.Analyzer.Create_Element_Node (Crutches_Element_Declarations.Item (J).To_Element_Declaration, Node_Vector, XSD_To_Ada.Utils.Crutches_Namespace); end loop; for J in 1 .. Element_Declarations.Length loop Create_Element_Node (Element_Declarations.Item (J).To_Element_Declaration, Node_Vector, XSD_To_Ada.Utils.Namespace); end loop; end Create_Element_Nodes; ------------------------ -- Create_Node_Vector -- ------------------------ procedure Create_Node_Vector (Object : XML.Schema.Objects.XS_Object'Class; Node_Vector : in out XSD2Ada.Analyzer.Items; Min_Occurs : Natural; Max_Occurs : XML.Schema.Particles.Unbounded_Natural; Namespace : League.Strings.Universal_String; Element_Name : League.Strings.Universal_String := League.Strings.Empty_Universal_String; Anonym_Name : League.Strings.Universal_String := League.Strings.Empty_Universal_String; Short_Ada_Type_Name : League.Strings.Universal_String := League.Strings.Empty_Universal_String) is use type XML.Schema.Particles.Unbounded_Natural; Item : XSD2Ada.Analyzer.Item; begin Item.Object := XML.Schema.Objects.XS_Object (Object); Item.Element_Name := Element_Name; Item.Namespace := Namespace; Item.Short_Ada_Type_Name := Short_Ada_Type_Name; Item.Max := Max_Occurs /= (False, 1); Item.Min := Min_Occurs = 0; if Object.Is_Type_Definition then if Object.Get_Name.Is_Empty then Traverse_Type_Definition (Type_D => Object.To_Type_Definition, Node_Vector => Node_Vector, Anonym_Prefix => Short_Ada_Type_Name, Namespace => Namespace); else Traverse_Type_Definition (Type_D => Object.To_Type_Definition, Node_Vector => Node_Vector, Anonym_Prefix => XSD_To_Ada.Utils.Add_Separator (Object.Get_Name), Namespace => Namespace); end if; elsif Object.Is_Model_Group then Traverse_Model_Group (Object.To_Model_Group, Node_Vector, Anonym_Name, Namespace); else raise Constraint_Error; end if; Add_Node (Node_Vector, Item); end Create_Node_Vector; ---------------------- -- Create_Type_Node -- ---------------------- procedure Create_Type_Node (Type_D : XML.Schema.Type_Definitions.XS_Type_Definition; Node_Vector : in out XSD2Ada.Analyzer.Items; Mapping : XSD_To_Ada.Mappings.Mapping; Namespace : League.Strings.Universal_String) is begin Analyzer_Mapping := Mapping; Create_Node_Vector (Object => Type_D, Node_Vector => Node_Vector, Min_Occurs => 1, Max_Occurs => (False, 1), Namespace => Namespace, Short_Ada_Type_Name => Type_D.Get_Name); end Create_Type_Node; ------------------ -- Element_Name -- ------------------ function Element_Name (Self : Item) return League.Strings.Universal_String is begin return Self.Element_Name; end Element_Name; ----------------- -- Find_Object -- ----------------- function Find_Object (Node_Vector : XSD2Ada.Analyzer.Items; Object : XML.Schema.Objects.XS_Object'Class; Min_Occurs : Boolean; Max_Occurs : Boolean) return XSD2Ada.Analyzer.Item_Access is Item : XSD2Ada.Analyzer.Item_Access; begin for Index in 1 .. Natural (Node_Vector.Length) loop Item := Node_Vector.Element (Index); if Object.Is_Equal (Item.Object) and then Min_Occurs = Item.Min and then Max_Occurs = Item.Max and then Item.Element_Name.Is_Empty then return Item; end if; end loop; return Item; end Find_Object; ------------------- -- Get_Type_Name -- ------------------- function Get_Type_Name (Item : XSD2Ada.Analyzer.Item_Access) return League.Strings.Universal_String is begin if Item.Object.Get_Name.Is_Empty then return Item.Full_Ada_Type_Name; else return Analyzer_Mapping.Ada_Type_Qualified_Name (XSD_Type_Name => Item.Object.Get_Name, Min_Occurs => Item.Min, Max_Occurs => Item.Max); end if; end Get_Type_Name; ------------------- -- Get_Namespace -- ------------------- function Get_Namespace (Self : Item) return League.Strings.Universal_String is begin return Self.Namespace; end Get_Namespace; --------------------------- -- Full_Ada_Package_Name -- --------------------------- function Full_Ada_Package_Name (Self : Item) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return League.Strings.To_Universal_String ("IATS_Types"); end Full_Ada_Package_Name; ------------------------ -- Full_Ada_Type_Name -- ------------------------ function Full_Ada_Type_Name (Self : Item) return League.Strings.Universal_String is begin return Self.Full_Ada_Package_Name & "." & XSD_To_Ada.Utils.Add_Separator (Self.Short_Ada_Type_Name); end Full_Ada_Type_Name; --------- -- Max -- --------- function Max (Self : Item) return Boolean is begin return Self.Max; end Max; --------- -- Min -- --------- function Min (Self : Item) return Boolean is begin return Self.Min; end Min; ------------ -- Object -- ------------ function Object (Self : Item) return XML.Schema.Objects.XS_Object is begin return Self.Object; end Object; ---------------- -- Print_Term -- ---------------- procedure Traverse_Term (XS_Term : XML.Schema.Terms.XS_Term; Node_Vector : in out Items; Anonym_Prefix : League.Strings.Universal_String; Max_Occurs : XML.Schema.Particles.Unbounded_Natural; Min_Occurs : Natural; Namespace : League.Strings.Universal_String) is use type XML.Schema.Model_Groups.Compositor_Kinds; use type XML.Schema.Objects.XS_Object; Decl : XML.Schema.Element_Declarations.XS_Element_Declaration; Type_D : XML.Schema.Type_Definitions.XS_Type_Definition; Anonym_Name : League.Strings.Universal_String; begin if XS_Term.Is_Model_Group then if XS_Term.To_Model_Group.Get_Compositor = XML.Schema.Model_Groups.Compositor_Choice then Create_Node_Vector (Object => XS_Term, Node_Vector => Node_Vector, Min_Occurs => Min_Occurs, Max_Occurs => Max_Occurs, Namespace => Namespace, Anonym_Name => Anonym_Prefix & "Case", Short_Ada_Type_Name => Anonym_Prefix & "Case_Anonym"); else Create_Node_Vector (Object => XS_Term, Node_Vector => Node_Vector, Min_Occurs => Min_Occurs, Max_Occurs => Max_Occurs, Namespace => Namespace, Anonym_Name => Anonym_Prefix, Short_Ada_Type_Name => Anonym_Prefix & "Anonym"); end if; elsif XS_Term.Is_Element_Declaration then Decl := XS_Term.To_Element_Declaration; Type_D := Decl.Get_Type_Definition; if Type_D.Get_Name.Is_Empty then if not Anonym_Prefix.Is_Empty then Anonym_Name := Anonym_Prefix; Anonym_Name.Append ("_"); end if; Anonym_Name.Append (XSD_To_Ada.Utils.Add_Separator (Decl.Get_Name)); if not Anonym_Prefix.Is_Empty then Anonym_Name.Append ("_Anonym"); end if; Create_Node_Vector (Object => Type_D, Node_Vector => Node_Vector, Min_Occurs => Min_Occurs, Max_Occurs => Max_Occurs, Namespace => Namespace, Anonym_Name => Anonym_Name, Short_Ada_Type_Name => Anonym_Name); else Create_Node_Vector (Object => Type_D, Node_Vector => Node_Vector, Min_Occurs => Min_Occurs, Max_Occurs => Max_Occurs, Namespace => Type_D.Get_Namespace, Anonym_Name => Anonym_Name, Short_Ada_Type_Name => Type_D.Get_Name); end if; end if; end Traverse_Term; -------------------------- -- Node_Type_Definition -- -------------------------- procedure Traverse_Type_Definition (Type_D : XML.Schema.Type_Definitions.XS_Type_Definition; Node_Vector : in out Items; Anonym_Prefix : League.Strings.Universal_String; Namespace : League.Strings.Universal_String) is use type XML.Schema.Type_Definitions.XS_Type_Definition; XS_Particle : XML.Schema.Particles.XS_Particle; XS_Term : XML.Schema.Terms.XS_Term; XS_Base : XML.Schema.Type_Definitions.XS_Type_Definition; CTD : XML.Schema.Complex_Type_Definitions.XS_Complex_Type_Definition; begin XS_Base := Type_D.Get_Base_Type; if XS_Base.Get_Type_Category in XML.Schema.Complex_Type and XS_Base /= Type_D then if XS_Base.Get_Name.To_UTF_8_String /= "anyType" then XSD2Ada.Analyzer.Create_Node_Vector (Object => XS_Base, Node_Vector => Node_Vector, Min_Occurs => 1, Max_Occurs => (False, 1), Namespace => XS_Base.Get_Namespace, -- base Short_Ada_Type_Name => XS_Base.Get_Name); end if; end if; case Type_D.Get_Type_Category is when XML.Schema.Complex_Type => CTD := Type_D.To_Complex_Type_Definition; if CTD.Get_Content_Type in Element_Only | Mixed then XS_Particle := CTD.Get_Particle; XS_Term := XS_Particle.Get_Term; Traverse_Model_Group (XS_Model_Group => XS_Term.To_Model_Group, Node_Vector => Node_Vector, Anonym_Prefix => Anonym_Prefix, Namespace => Namespace); end if; when XML.Schema.Simple_Type => null; when XML.Schema.None => raise Constraint_Error; end case; end Traverse_Type_Definition; -------------- -- Type_Def -- -------------- function Type_Def (Self : Item) return XML.Schema.Type_Definitions.XS_Type_Definition is begin return Self.Object.To_Type_Definition; end Type_Def; --------------- -- Type_Name -- --------------- function Type_Name (Name : League.Strings.Universal_String) return League.Strings.Universal_String is begin if Name.Slice (1, 9).To_Wide_Wide_String = "Optional_" then return Name.Slice (10, Name.Length); elsif Name.Ends_With ("_Vector") then return Name.Slice (1, Name.Length - 7); else return Name; end if; end Type_Name; end XSD2Ada.Analyzer;
charlie5/cBound
Ada
1,267
ads
-- This file is generated by SWIG. Please do *not* modify by hand. -- with Swig; with Interfaces.C; package gmp_c.a_a_gmp_randstate_struct_a_mp_algdata is -- Item -- type Item_variant is (a_mp_lc_variant); type Item (union_Variant : Item_variant := Item_variant'First) is record case union_Variant is when a_mp_lc_variant => a_mp_lc : aliased Swig.void_ptr; end case; end record; pragma Unchecked_Union (Item); -- Items -- type Items is array (Interfaces.C .size_t range <>) of aliased gmp_c .a_a_gmp_randstate_struct_a_mp_algdata .Item; -- Pointer -- type Pointer is access all gmp_c.a_a_gmp_randstate_struct_a_mp_algdata.Item; -- Pointers -- type Pointers is array (Interfaces.C .size_t range <>) of aliased gmp_c .a_a_gmp_randstate_struct_a_mp_algdata .Pointer; -- Pointer_Pointer -- type Pointer_Pointer is access all gmp_c.a_a_gmp_randstate_struct_a_mp_algdata.Pointer; function construct return gmp_c.a_a_gmp_randstate_struct_a_mp_algdata.Item; private pragma Import (C, construct, "Ada_new___gmp_randstate_struct__mp_algdata"); end gmp_c.a_a_gmp_randstate_struct_a_mp_algdata;
reznikmm/matreshka
Ada
4,007
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Svg_Font_Stretch_Attributes; package Matreshka.ODF_Svg.Font_Stretch_Attributes is type Svg_Font_Stretch_Attribute_Node is new Matreshka.ODF_Svg.Abstract_Svg_Attribute_Node and ODF.DOM.Svg_Font_Stretch_Attributes.ODF_Svg_Font_Stretch_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Svg_Font_Stretch_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Svg_Font_Stretch_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Svg.Font_Stretch_Attributes;
sungyeon/drake
Ada
2,756
ads
pragma License (Unrestricted); -- runtime unit package System.Unwind.Standard is pragma Preelaborate; -- Standard.Constraint_Error / Numeric_Error (s-stalib.ads) Constraint_Error_Name : aliased constant String (1 .. 17) := "CONSTRAINT_ERROR" & Character'Val (0); Constraint_Error : aliased constant Exception_Data := ( Not_Handled_By_Others => False, Lang => 'A', Name_Length => Constraint_Error_Name'Length, Full_Name => Constraint_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null) with Export, Convention => Ada, External_Name => "constraint_error"; -- Standard.Program_Error (s-stalib.ads) Program_Error_Name : aliased constant String (1 .. 14) := "PROGRAM_ERROR" & Character'Val (0); Program_Error : aliased constant Exception_Data := ( Not_Handled_By_Others => False, Lang => 'A', Name_Length => Program_Error_Name'Length, Full_Name => Program_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null) with Export, Convention => Ada, External_Name => "program_error"; -- Standard.Storage_Error (s-stalib.ads) Storage_Error_Name : aliased constant String (1 .. 14) := "STORAGE_ERROR" & Character'Val (0); Storage_Error : aliased constant Exception_Data := ( Not_Handled_By_Others => False, Lang => 'A', Name_Length => Storage_Error_Name'Length, Full_Name => Storage_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null) with Export, Convention => Ada, External_Name => "storage_error"; -- Standard.Tasking_Error (s-stalib.ads) Tasking_Error_Name : aliased constant String (1 .. 14) := "TASKING_ERROR" & Character'Val (0); Tasking_Error : aliased constant Exception_Data := ( Not_Handled_By_Others => False, Lang => 'A', Name_Length => Tasking_Error_Name'Length, Full_Name => Tasking_Error_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null) with Export, Convention => Ada, External_Name => "tasking_error"; -- Standard'Abort_Signal (s-stalib.ads) Abort_Signal_Name : aliased constant String (1 .. 14) := "_ABORT_SIGNAL" & Character'Val (0); Abort_Signal : aliased constant Exception_Data := ( Not_Handled_By_Others => True, Lang => 'A', Name_Length => Abort_Signal_Name'Length, Full_Name => Abort_Signal_Name'Address, HTable_Ptr => null, Foreign_Data => Null_Address, Raise_Hook => null) with Export, Convention => Ada, External_Name => "_abort_signal"; end System.Unwind.Standard;
charlie5/cBound
Ada
1,582
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_create_gc_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; cid : aliased xcb.xcb_gcontext_t; drawable : aliased xcb.xcb_drawable_t; value_mask : aliased Interfaces.Unsigned_32; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_create_gc_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_create_gc_request_t.Item, Element_Array => xcb.xcb_create_gc_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_create_gc_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_create_gc_request_t.Pointer, Element_Array => xcb.xcb_create_gc_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_create_gc_request_t;
reznikmm/matreshka
Ada
3,671
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Tools Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Asis; with Engines.Contexts; with League.Strings; package Properties.Statements.Raise_Statement is function Code (Engine : access Engines.Contexts.Context; Element : Asis.Expression; Name : Engines.Text_Property) return League.Strings.Universal_String; end Properties.Statements.Raise_Statement;
buotex/BICEPS
Ada
3,720
adb
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2004 Dmitriy Anisimkov -- -- -- -- Open source license information is in the zlib.ads file. -- ---------------------------------------------------------------- -- -- $Id: buffer_demo.adb,v 1.1 2008/06/11 20:00:39 chambers Exp $ -- This demo program provided by Dr Steve Sangwine <[email protected]> -- -- Demonstration of a problem with Zlib-Ada (already fixed) when a buffer -- of exactly the correct size is used for decompressed data, and the last -- few bytes passed in to Zlib are checksum bytes. -- This program compresses a string of text, and then decompresses the -- compressed text into a buffer of the same size as the original text. with Ada.Streams; use Ada.Streams; with Ada.Text_IO; with ZLib; use ZLib; procedure Buffer_Demo is EOL : Character renames ASCII.LF; Text : constant String := "Four score and seven years ago our fathers brought forth," & EOL & "upon this continent, a new nation, conceived in liberty," & EOL & "and dedicated to the proposition that `all men are created equal'."; Source : Stream_Element_Array (1 .. Text'Length); for Source'Address use Text'Address; begin Ada.Text_IO.Put (Text); Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes"); declare Compressed_Data : Stream_Element_Array (1 .. Text'Length); L : Stream_Element_Offset; begin Compress : declare Compressor : Filter_Type; I : Stream_Element_Offset; begin Deflate_Init (Compressor); -- Compress the whole of T at once. Translate (Compressor, Source, I, Compressed_Data, L, Finish); pragma Assert (I = Source'Last); Close (Compressor); Ada.Text_IO.Put_Line ("Compressed size : " & Stream_Element_Offset'Image (L) & " bytes"); end Compress; -- Now we decompress the data, passing short blocks of data to Zlib -- (because this demonstrates the problem - the last block passed will -- contain checksum information and there will be no output, only a -- check inside Zlib that the checksum is correct). Decompress : declare Decompressor : Filter_Type; Uncompressed_Data : Stream_Element_Array (1 .. Text'Length); Block_Size : constant := 4; -- This makes sure that the last block contains -- only Adler checksum data. P : Stream_Element_Offset := Compressed_Data'First - 1; O : Stream_Element_Offset; begin Inflate_Init (Decompressor); loop Translate (Decompressor, Compressed_Data (P + 1 .. Stream_Element_Offset'Min (P + Block_Size, L)), P, Uncompressed_Data (Total_Out (Decompressor) + 1 .. Uncompressed_Data'Last), O, No_Flush); Ada.Text_IO.Put_Line ("Total in : " & Count'Image (Total_In (Decompressor)) & ", out : " & Count'Image (Total_Out (Decompressor))); exit when P = L; end loop; Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line ("Decompressed text matches original text : " & Boolean'Image (Uncompressed_Data = Source)); end Decompress; end; end Buffer_Demo;
reznikmm/matreshka
Ada
3,839
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.ODF_Attributes.FO.Border_Bottom; package ODF.DOM.Attributes.FO.Border_Bottom.Internals is function Create (Node : Matreshka.ODF_Attributes.FO.Border_Bottom.FO_Border_Bottom_Access) return ODF.DOM.Attributes.FO.Border_Bottom.ODF_FO_Border_Bottom; function Wrap (Node : Matreshka.ODF_Attributes.FO.Border_Bottom.FO_Border_Bottom_Access) return ODF.DOM.Attributes.FO.Border_Bottom.ODF_FO_Border_Bottom; end ODF.DOM.Attributes.FO.Border_Bottom.Internals;
riccardo-bernardini/eugen
Ada
90
ads
package Utilities is function Slurp (Filename : String) return String; end Utilities;
PacoReinaCampo/vhdl2verilog
Ada
7,313
adb
----------------------------------------------------------------------------------- -- __ _ _ _ -- -- / _(_) | | | | -- -- __ _ _ _ ___ ___ _ __ | |_ _ ___| | __| | -- -- / _` | | | |/ _ \/ _ \ '_ \| _| |/ _ \ |/ _` | -- -- | (_| | |_| | __/ __/ | | | | | | __/ | (_| | -- -- \__, |\__,_|\___|\___|_| |_|_| |_|\___|_|\__,_| -- -- | | -- -- |_| -- -- -- -- -- -- Peripheral-NTM for MPSoC -- -- Neural Turing Machine for MPSoC -- -- -- ----------------------------------------------------------------------------------- ----------------------------------------------------------------------------------- -- -- -- Copyright (c) 2020-2024 by the author(s) -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- -- of this software and associated documentation files (the "Software"), to deal -- -- in the Software without restriction, including without limitation the rights -- -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included in -- -- all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -- -- THE SOFTWARE. -- -- -- -- ============================================================================= -- -- Author(s): -- -- Paco Reina Campo <[email protected]> -- -- -- ----------------------------------------------------------------------------------- with Ada.Text_IO; use Ada.Text_IO; package body ntm_matrix_algebra is procedure ntm_matrix_convolution ( data_a_in : in matrix; data_b_in : in matrix; data_out : out matrix ) is temporal : float; begin for i in data_out'Range(1) loop for j in data_out'Range(2) loop temporal := 0.0; for m in 1 .. i loop for n in 1 .. j loop temporal := temporal + data_a_in(m, n) * data_b_in(i-m, j-n); data_out(i, j) := temporal; end loop; end loop; end loop; end loop; end ntm_matrix_convolution; procedure ntm_matrix_inverse ( data_in : in matrix; data_out : out matrix ) is begin for i in data_out'Range(1) loop for j in data_out'Range(2) loop data_out(i, j) := data_in(i, j); end loop; end loop; end ntm_matrix_inverse; procedure ntm_matrix_multiplication ( data_in : in tensor; data_out : out matrix ) is begin for i in data_out'Range(1) loop for j in data_out'Range(2) loop data_out(i, j) := 1.0; for k in data_in'Range(3) loop data_out(i, j) := data_out(i, j) * data_in(i, j, k); end loop; end loop; end loop; end ntm_matrix_multiplication; procedure ntm_matrix_product ( data_a_in : in matrix; data_b_in : in matrix; data_out : out matrix ) is temporal : float; begin for i in data_out'Range(1) loop for j in data_out'Range(2) loop temporal := 0.0; for m in data_a_in'Range(2) loop temporal := temporal + data_a_in(i, m) * data_b_in(m, j); data_out(i, j) := temporal; end loop; end loop; end loop; end ntm_matrix_product; procedure ntm_matrix_summation ( data_in : in tensor; data_out : out matrix ) is begin for i in data_out'Range(1) loop for j in data_out'Range(2) loop data_out(i, j) := 0.0; for k in data_in'Range(3) loop data_out(i, j) := data_out(i, j) + data_in(i, j, k); end loop; end loop; end loop; end ntm_matrix_summation; procedure ntm_matrix_transpose ( data_in : in matrix; data_out : out matrix ) is begin for i in data_out'Range(1) loop for j in data_out'Range(2) loop data_out(i, j) := data_in(j, i); end loop; end loop; end ntm_matrix_transpose; procedure ntm_matrix_vector_convolution ( data_a_in : in matrix; data_b_in : in vector; data_out : out vector ) is temporal : float; begin for i in data_a_in'Range(1) loop for j in data_a_in'Range(2) loop temporal := 0.0; for m in 1 .. i loop for n in 1 .. j loop temporal := temporal + data_a_in(m, n) * data_b_in(i-m); data_out(i) := temporal; end loop; end loop; end loop; end loop; end ntm_matrix_vector_convolution; procedure ntm_matrix_vector_product ( data_a_in : in matrix; data_b_in : in vector; data_out : out vector ) is temporal : float; begin for i in data_a_in'Range(1) loop for j in data_a_in'Range(2) loop temporal := 0.0; for m in data_b_in'Range loop temporal := temporal + data_a_in(i, m) * data_b_in(m); data_out(i) := temporal; end loop; end loop; end loop; end ntm_matrix_vector_product; procedure ntm_transpose_vector_product ( data_a_in : vector; data_b_in : vector; data_out : out matrix ) is begin for i in data_a_in'Range loop for j in data_b_in'Range loop data_out(i, j) := data_a_in(i) * data_b_in(j); end loop; end loop; end ntm_transpose_vector_product; end ntm_matrix_algebra;
sungyeon/drake
Ada
2,097
adb
with Ada.Exceptions; with Ada.Unchecked_Conversion; with Interfaces.C.Strings; with System.Address_To_Access_Conversions; with System.Storage_Elements; with System.Unwind.Foreign; with C.unwind; procedure exception_cpp is pragma Linker_Options ("-lstdc++"); use type Interfaces.C.char_array; use type System.Storage_Elements.Storage_Offset; type type_info is record vtbl : System.Address; name : Interfaces.C.Strings.const_chars_ptr; end record with Convention => Cpp; char_const_ptr : aliased constant type_info with Import, Convention => Cpp, External_Name => "_ZTIPKc"; Message : aliased constant Interfaces.C.char_array := "This is a C++ exception!" & Interfaces.C.nul; package Conv is new System.Address_To_Access_Conversions ( Interfaces.C.Strings.const_chars_ptr); begin declare function cxa_allocate_exception ( size : Interfaces.C.size_t) return System.Address with Import, Convention => C, External_Name => "__cxa_allocate_exception"; procedure cxa_throw ( obj : System.Address; tinfo : access constant type_info; dest : System.Address) with Import, Convention => C, External_Name => "__cxa_throw"; pragma No_Return (cxa_throw); Cpp_Exception : System.Address; begin Cpp_Exception := cxa_allocate_exception (Interfaces.C.Strings.const_chars_ptr'Max_Size_In_Storage_Elements); Conv.To_Pointer (Cpp_Exception).all := Interfaces.C.Strings.To_Const_Chars_ptr (Message'Access); cxa_throw (Cpp_Exception, char_const_ptr'Access, System.Null_Address); end; exception when E : System.Unwind.Foreign.Foreign_Exception => declare function To_Repr is new Ada.Unchecked_Conversion ( Ada.Exceptions.Exception_Occurrence_Access, System.Unwind.Exception_Occurrence_Access); GCC_Exception : constant System.Address := To_Repr (E'Unrestricted_Access).Machine_Occurrence; Cpp_Exception : constant System.Address := GCC_Exception + C.unwind.struct_Unwind_Exception'Max_Size_In_Storage_Elements; begin Ada.Debug.Put (Interfaces.C.Strings.Value (Conv.To_Pointer (Cpp_Exception).all)); end; end exception_cpp;
docandrew/troodon
Ada
336
ads
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with bits_types_struct_FILE_h; package bits_types_FILE_h is -- The opaque type of streams. This is the definition used elsewhere. subtype FILE is bits_types_struct_FILE_h.u_IO_FILE; -- /usr/include/bits/types/FILE.h:7 end bits_types_FILE_h;
reznikmm/matreshka
Ada
4,297
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Nodes; with XML.DOM.Elements.Internals; package body ODF.DOM.Elements.Office.Document_Styles.Internals is ------------ -- Create -- ------------ function Create (Node : Matreshka.ODF_Elements.Office.Document_Styles.Office_Document_Styles_Access) return ODF.DOM.Elements.Office.Document_Styles.ODF_Office_Document_Styles is begin return (XML.DOM.Elements.Internals.Create (Matreshka.DOM_Nodes.Element_Access (Node)) with null record); end Create; ---------- -- Wrap -- ---------- function Wrap (Node : Matreshka.ODF_Elements.Office.Document_Styles.Office_Document_Styles_Access) return ODF.DOM.Elements.Office.Document_Styles.ODF_Office_Document_Styles is begin return (XML.DOM.Elements.Internals.Wrap (Matreshka.DOM_Nodes.Element_Access (Node)) with null record); end Wrap; end ODF.DOM.Elements.Office.Document_Styles.Internals;
reznikmm/matreshka
Ada
6,343
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with AMF.Internals.Element_Collections; with AMF.Internals.Tables.CMOF_Attributes; package body AMF.Internals.CMOF_Namespaces is use AMF.Internals.Tables.CMOF_Attributes; ------------------------ -- Get_Element_Import -- ------------------------ overriding function Get_Element_Import (Self : not null access constant CMOF_Namespace_Proxy) return AMF.CMOF.Element_Imports.Collections.Set_Of_CMOF_Element_Import is begin return AMF.CMOF.Element_Imports.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (Internal_Get_Element_Import (Self.Element))); end Get_Element_Import; ------------------------- -- Get_Imported_Member -- ------------------------- overriding function Get_Imported_Member (Self : not null access constant CMOF_Namespace_Proxy) return AMF.CMOF.Packageable_Elements.Collections. Set_Of_CMOF_Packageable_Element is begin return AMF.CMOF.Packageable_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (Internal_Get_Imported_Member (Self.Element))); end Get_Imported_Member; ---------------- -- Get_Member -- ---------------- overriding function Get_Member (Self : not null access constant CMOF_Namespace_Proxy) return AMF.CMOF.Named_Elements.Collections.Set_Of_CMOF_Named_Element is begin return AMF.CMOF.Named_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (Internal_Get_Member (Self.Element))); end Get_Member; ---------------------- -- Get_Owned_Member -- ---------------------- overriding function Get_Owned_Member (Self : not null access constant CMOF_Namespace_Proxy) return AMF.CMOF.Named_Elements.Collections.Set_Of_CMOF_Named_Element is begin return AMF.CMOF.Named_Elements.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (Internal_Get_Owned_Member (Self.Element))); end Get_Owned_Member; -------------------- -- Get_Owned_Rule -- -------------------- overriding function Get_Owned_Rule (Self : not null access constant CMOF_Namespace_Proxy) return AMF.CMOF.Constraints.Collections.Set_Of_CMOF_Constraint is begin return AMF.CMOF.Constraints.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (Internal_Get_Owned_Rule (Self.Element))); end Get_Owned_Rule; ------------------------ -- Get_Package_Import -- ------------------------ overriding function Get_Package_Import (Self : not null access constant CMOF_Namespace_Proxy) return AMF.CMOF.Package_Imports.Collections.Set_Of_CMOF_Package_Import is begin return AMF.CMOF.Package_Imports.Collections.Wrap (AMF.Internals.Element_Collections.Wrap (Internal_Get_Package_Import (Self.Element))); end Get_Package_Import; end AMF.Internals.CMOF_Namespaces;
apple-oss-distributions/old_ncurses
Ada
10,029
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- ncurses -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 2000 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Eugene V. Melaragno <[email protected]> 2000 -- Version Control -- $Revision: 1.1.1.1 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ -- Character input test -- test the keypad feature with ncurses2.util; use ncurses2.util; with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Terminal_Interface.Curses.Mouse; use Terminal_Interface.Curses.Mouse; with Ada.Characters.Handling; with Ada.Strings.Bounded; with ncurses2.genericPuts; procedure ncurses2.getch_test is use Int_IO; function mouse_decode (ep : Mouse_Event) return String; function mouse_decode (ep : Mouse_Event) return String is Y : Line_Position; X : Column_Position; Button : Mouse_Button; State : Button_State; package BS is new Ada.Strings.Bounded.Generic_Bounded_Length (200); use BS; buf : Bounded_String := To_Bounded_String (""); begin -- Note that these bindings do not allow -- two button states, -- The C version can print {click-1, click-3} for example. -- They also don't have the 'id' or z coordinate. Get_Event (ep, Y, X, Button, State); -- TODO Append (buf, "id "); from C version Append (buf, "at ("); Append (buf, Column_Position'Image (X)); Append (buf, ", "); Append (buf, Line_Position'Image (Y)); Append (buf, ") state"); Append (buf, Mouse_Button'Image (Button)); Append (buf, " = "); Append (buf, Button_State'Image (State)); return To_String (buf); end mouse_decode; buf : String (1 .. 1024); -- TODO was BUFSIZE n : Integer; c : Key_Code; blockflag : Timeout_Mode := Blocking; firsttime : Boolean := True; tmp2 : Event_Mask; tmp6 : String (1 .. 6); tmp20 : String (1 .. 20); x : Column_Position; y : Line_Position; tmpx : Integer; incount : Integer := 0; begin Refresh; tmp2 := Start_Mouse (All_Events); Add (Str => "Delay in 10ths of a second (<CR> for blocking input)? "); Set_Echo_Mode (SwitchOn => True); Get (Str => buf); Set_Echo_Mode (SwitchOn => False); Set_NL_Mode (SwitchOn => False); if Ada.Characters.Handling.Is_Digit (buf (1)) then Get (Item => n, From => buf, Last => tmpx); Set_Timeout_Mode (Mode => Delayed, Amount => n * 100); blockflag := Delayed; end if; c := Character'Pos ('?'); Set_Raw_Mode (SwitchOn => True); loop if not firsttime then Add (Str => "Key pressed: "); Put (tmp6, Integer (c), 8); Add (Str => tmp6); Add (Ch => ' '); if c = Key_Mouse then declare event : Mouse_Event; begin event := Get_Mouse; Add (Str => "KEY_MOUSE, "); Add (Str => mouse_decode (event)); Add (Ch => newl); end; elsif c >= Key_Min then Key_Name (c, tmp20); Add (Str => tmp20); -- I used tmp and got bitten by the length problem:-> Add (Ch => newl); elsif c > 16#80# then -- TODO fix, use constant if possible declare c2 : Character := Character'Val (c mod 16#80#); begin if Ada.Characters.Handling.Is_Graphic (c2) then Add (Str => "M-"); Add (Ch => c2); else Add (Str => "M-"); Add (Str => Un_Control ((Ch => c2, Color => Color_Pair'First, Attr => Normal_Video))); end if; Add (Str => " (high-half character)"); Add (Ch => newl); end; else declare c2 : Character := Character'Val (c mod 16#80#); begin if Ada.Characters.Handling.Is_Graphic (c2) then Add (Ch => c2); Add (Str => " (ASCII printable character)"); Add (Ch => newl); else Add (Str => Un_Control ((Ch => c2, Color => Color_Pair'First, Attr => Normal_Video))); Add (Str => " (ASCII control character)"); Add (Ch => newl); end if; end; end if; -- TODO I am not sure why this was in the C version -- the delay statement scroll anyway. Get_Cursor_Position (Line => y, Column => x); if y >= Lines - 1 then Move_Cursor (Line => 0, Column => 0); end if; Clear_To_End_Of_Line; end if; firsttime := False; if c = Character'Pos ('g') then declare package p is new ncurses2.genericPuts (1024); use p; use p.BS; timedout : Boolean := False; boundedbuf : Bounded_String; begin Add (Str => "getstr test: "); Set_Echo_Mode (SwitchOn => True); -- Note that if delay mode is set -- Get can raise an exception. -- The C version would print the string it had so far -- also TODO get longer length string, like the C version declare begin myGet (Str => boundedbuf); exception when Curses_Exception => Add (Str => "Timed out."); Add (Ch => newl); timedout := True; end; -- note that the Ada Get will stop reading at 1024. if not timedout then Set_Echo_Mode (SwitchOn => False); Add (Str => " I saw '"); myAdd (Str => boundedbuf); Add (Str => "'."); Add (ch => newl); end if; end; elsif c = Character'Pos ('s') then ShellOut (True); elsif c = Character'Pos ('x') or c = Character'Pos ('q') or (c = Key_None and blockflag = Blocking) then exit; elsif c = Character'Pos ('?') then Add (Str => "Type any key to see its keypad value. Also:"); Add (Ch => newl); Add (Str => "g -- triggers a getstr test"); Add (Ch => newl); Add (Str => "s -- shell out"); Add (Ch => newl); Add (Str => "q -- quit"); Add (Ch => newl); Add (Str => "? -- repeats this help message"); Add (Ch => newl); end if; loop c := Getchar; exit when c /= Key_None; if blockflag /= Blocking then Put (tmp6, incount); -- argh string length! Add (Str => tmp6); Add (Str => ": input timed out"); Add (Ch => newl); else Put (tmp6, incount); Add (Str => tmp6); Add (Str => ": input error"); Add (Ch => newl); exit; end if; incount := incount + 1; end loop; end loop; tmp2 := Start_Mouse (No_Events); Set_Timeout_Mode (Mode => Blocking, Amount => 0); -- amount is ignored Set_Raw_Mode (SwitchOn => False); Set_NL_Mode (SwitchOn => True); Erase; End_Windows; end ncurses2.getch_test;
yannickmoy/spat
Ada
1,012
ads
------------------------------------------------------------------------------ -- Copyright (C) 2020 by Heisenbug Ltd. ([email protected]) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See the LICENSE file for more details. ------------------------------------------------------------------------------ pragma License (Unrestricted); ------------------------------------------------------------------------------ -- -- SPARK Proof Analysis Tool -- -- S.P.A.T. - Version information -- ------------------------------------------------------------------------------ with GNAT.Compiler_Version; package SPAT.Version is package Implementation is package Compiler_Info is new GNAT.Compiler_Version; end Implementation; Number : constant String := "0.9.4-pre"; Compiler : constant String := Implementation.Compiler_Info.Version; end SPAT.Version;
SayCV/rtems-addon-packages
Ada
36,564
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Forms -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2009,2011 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision$ -- $Date$ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Ada.Unchecked_Deallocation; with Ada.Unchecked_Conversion; with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Interfaces.C.Pointers; with Terminal_Interface.Curses.Aux; package body Terminal_Interface.Curses.Forms is use Terminal_Interface.Curses.Aux; type C_Field_Array is array (Natural range <>) of aliased Field; package F_Array is new Interfaces.C.Pointers (Natural, Field, C_Field_Array, Null_Field); ------------------------------------------------------------------------------ -- | -- | -- | -- subtype chars_ptr is Interfaces.C.Strings.chars_ptr; function FOS_2_CInt is new Ada.Unchecked_Conversion (Field_Option_Set, C_Int); function CInt_2_FOS is new Ada.Unchecked_Conversion (C_Int, Field_Option_Set); function FrmOS_2_CInt is new Ada.Unchecked_Conversion (Form_Option_Set, C_Int); function CInt_2_FrmOS is new Ada.Unchecked_Conversion (C_Int, Form_Option_Set); procedure Request_Name (Key : Form_Request_Code; Name : out String) is function Form_Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Form_Request_Name, "form_request_name"); begin Fill_String (Form_Request_Name (C_Int (Key)), Name); end Request_Name; function Request_Name (Key : Form_Request_Code) return String is function Form_Request_Name (Key : C_Int) return chars_ptr; pragma Import (C, Form_Request_Name, "form_request_name"); begin return Fill_String (Form_Request_Name (C_Int (Key))); end Request_Name; ------------------------------------------------------------------------------ -- | -- | -- | -- | -- |===================================================================== -- | man page form_field_new.3x -- |===================================================================== -- | -- | -- | function Create (Height : Line_Count; Width : Column_Count; Top : Line_Position; Left : Column_Position; Off_Screen : Natural := 0; More_Buffers : Buffer_Number := Buffer_Number'First) return Field is function Newfield (H, W, T, L, O, M : C_Int) return Field; pragma Import (C, Newfield, "new_field"); Fld : constant Field := Newfield (C_Int (Height), C_Int (Width), C_Int (Top), C_Int (Left), C_Int (Off_Screen), C_Int (More_Buffers)); begin if Fld = Null_Field then raise Form_Exception; end if; return Fld; end Create; -- | -- | -- | procedure Delete (Fld : in out Field) is function Free_Field (Fld : Field) return C_Int; pragma Import (C, Free_Field, "free_field"); Res : Eti_Error; begin Res := Free_Field (Fld); if Res /= E_Ok then Eti_Exception (Res); end if; Fld := Null_Field; end Delete; -- | -- | -- | function Duplicate (Fld : Field; Top : Line_Position; Left : Column_Position) return Field is function Dup_Field (Fld : Field; Top : C_Int; Left : C_Int) return Field; pragma Import (C, Dup_Field, "dup_field"); F : constant Field := Dup_Field (Fld, C_Int (Top), C_Int (Left)); begin if F = Null_Field then raise Form_Exception; end if; return F; end Duplicate; -- | -- | -- | function Link (Fld : Field; Top : Line_Position; Left : Column_Position) return Field is function Lnk_Field (Fld : Field; Top : C_Int; Left : C_Int) return Field; pragma Import (C, Lnk_Field, "link_field"); F : constant Field := Lnk_Field (Fld, C_Int (Top), C_Int (Left)); begin if F = Null_Field then raise Form_Exception; end if; return F; end Link; -- | -- |===================================================================== -- | man page form_field_just.3x -- |===================================================================== -- | -- | -- | procedure Set_Justification (Fld : Field; Just : Field_Justification := None) is function Set_Field_Just (Fld : Field; Just : C_Int) return C_Int; pragma Import (C, Set_Field_Just, "set_field_just"); Res : constant Eti_Error := Set_Field_Just (Fld, C_Int (Field_Justification'Pos (Just))); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Justification; -- | -- | -- | function Get_Justification (Fld : Field) return Field_Justification is function Field_Just (Fld : Field) return C_Int; pragma Import (C, Field_Just, "field_just"); begin return Field_Justification'Val (Field_Just (Fld)); end Get_Justification; -- | -- |===================================================================== -- | man page form_field_buffer.3x -- |===================================================================== -- | -- | -- | procedure Set_Buffer (Fld : Field; Buffer : Buffer_Number := Buffer_Number'First; Str : String) is type Char_Ptr is access all Interfaces.C.char; function Set_Fld_Buffer (Fld : Field; Bufnum : C_Int; S : Char_Ptr) return C_Int; pragma Import (C, Set_Fld_Buffer, "set_field_buffer"); Txt : char_array (0 .. Str'Length); Len : size_t; Res : Eti_Error; begin To_C (Str, Txt, Len); Res := Set_Fld_Buffer (Fld, C_Int (Buffer), Txt (Txt'First)'Access); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Buffer; -- | -- | -- | procedure Get_Buffer (Fld : Field; Buffer : Buffer_Number := Buffer_Number'First; Str : out String) is function Field_Buffer (Fld : Field; B : C_Int) return chars_ptr; pragma Import (C, Field_Buffer, "field_buffer"); begin Fill_String (Field_Buffer (Fld, C_Int (Buffer)), Str); end Get_Buffer; function Get_Buffer (Fld : Field; Buffer : Buffer_Number := Buffer_Number'First) return String is function Field_Buffer (Fld : Field; B : C_Int) return chars_ptr; pragma Import (C, Field_Buffer, "field_buffer"); begin return Fill_String (Field_Buffer (Fld, C_Int (Buffer))); end Get_Buffer; -- | -- | -- | procedure Set_Status (Fld : Field; Status : Boolean := True) is function Set_Fld_Status (Fld : Field; St : C_Int) return C_Int; pragma Import (C, Set_Fld_Status, "set_field_status"); Res : constant Eti_Error := Set_Fld_Status (Fld, Boolean'Pos (Status)); begin if Res /= E_Ok then raise Form_Exception; end if; end Set_Status; -- | -- | -- | function Changed (Fld : Field) return Boolean is function Field_Status (Fld : Field) return C_Int; pragma Import (C, Field_Status, "field_status"); Res : constant C_Int := Field_Status (Fld); begin if Res = Curses_False then return False; else return True; end if; end Changed; -- | -- | -- | procedure Set_Maximum_Size (Fld : Field; Max : Natural := 0) is function Set_Field_Max (Fld : Field; M : C_Int) return C_Int; pragma Import (C, Set_Field_Max, "set_max_field"); Res : constant Eti_Error := Set_Field_Max (Fld, C_Int (Max)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Maximum_Size; -- | -- |===================================================================== -- | man page form_field_opts.3x -- |===================================================================== -- | -- | -- | procedure Set_Options (Fld : Field; Options : Field_Option_Set) is function Set_Field_Opts (Fld : Field; Opt : C_Int) return C_Int; pragma Import (C, Set_Field_Opts, "set_field_opts"); Opt : constant C_Int := FOS_2_CInt (Options); Res : Eti_Error; begin Res := Set_Field_Opts (Fld, Opt); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Options; -- | -- | -- | procedure Switch_Options (Fld : Field; Options : Field_Option_Set; On : Boolean := True) is function Field_Opts_On (Fld : Field; Opt : C_Int) return C_Int; pragma Import (C, Field_Opts_On, "field_opts_on"); function Field_Opts_Off (Fld : Field; Opt : C_Int) return C_Int; pragma Import (C, Field_Opts_Off, "field_opts_off"); Err : Eti_Error; Opt : constant C_Int := FOS_2_CInt (Options); begin if On then Err := Field_Opts_On (Fld, Opt); else Err := Field_Opts_Off (Fld, Opt); end if; if Err /= E_Ok then Eti_Exception (Err); end if; end Switch_Options; -- | -- | -- | procedure Get_Options (Fld : Field; Options : out Field_Option_Set) is function Field_Opts (Fld : Field) return C_Int; pragma Import (C, Field_Opts, "field_opts"); Res : constant C_Int := Field_Opts (Fld); begin Options := CInt_2_FOS (Res); end Get_Options; -- | -- | -- | function Get_Options (Fld : Field := Null_Field) return Field_Option_Set is Fos : Field_Option_Set; begin Get_Options (Fld, Fos); return Fos; end Get_Options; -- | -- |===================================================================== -- | man page form_field_attributes.3x -- |===================================================================== -- | -- | -- | procedure Set_Foreground (Fld : Field; Fore : Character_Attribute_Set := Normal_Video; Color : Color_Pair := Color_Pair'First) is function Set_Field_Fore (Fld : Field; Attr : C_Chtype) return C_Int; pragma Import (C, Set_Field_Fore, "set_field_fore"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Fore); Res : constant Eti_Error := Set_Field_Fore (Fld, AttrChar_To_Chtype (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Foreground; -- | -- | -- | procedure Foreground (Fld : Field; Fore : out Character_Attribute_Set) is function Field_Fore (Fld : Field) return C_Chtype; pragma Import (C, Field_Fore, "field_fore"); begin Fore := Chtype_To_AttrChar (Field_Fore (Fld)).Attr; end Foreground; procedure Foreground (Fld : Field; Fore : out Character_Attribute_Set; Color : out Color_Pair) is function Field_Fore (Fld : Field) return C_Chtype; pragma Import (C, Field_Fore, "field_fore"); begin Fore := Chtype_To_AttrChar (Field_Fore (Fld)).Attr; Color := Chtype_To_AttrChar (Field_Fore (Fld)).Color; end Foreground; -- | -- | -- | procedure Set_Background (Fld : Field; Back : Character_Attribute_Set := Normal_Video; Color : Color_Pair := Color_Pair'First) is function Set_Field_Back (Fld : Field; Attr : C_Chtype) return C_Int; pragma Import (C, Set_Field_Back, "set_field_back"); Ch : constant Attributed_Character := (Ch => Character'First, Color => Color, Attr => Back); Res : constant Eti_Error := Set_Field_Back (Fld, AttrChar_To_Chtype (Ch)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Background; -- | -- | -- | procedure Background (Fld : Field; Back : out Character_Attribute_Set) is function Field_Back (Fld : Field) return C_Chtype; pragma Import (C, Field_Back, "field_back"); begin Back := Chtype_To_AttrChar (Field_Back (Fld)).Attr; end Background; procedure Background (Fld : Field; Back : out Character_Attribute_Set; Color : out Color_Pair) is function Field_Back (Fld : Field) return C_Chtype; pragma Import (C, Field_Back, "field_back"); begin Back := Chtype_To_AttrChar (Field_Back (Fld)).Attr; Color := Chtype_To_AttrChar (Field_Back (Fld)).Color; end Background; -- | -- | -- | procedure Set_Pad_Character (Fld : Field; Pad : Character := Space) is function Set_Field_Pad (Fld : Field; Ch : C_Int) return C_Int; pragma Import (C, Set_Field_Pad, "set_field_pad"); Res : constant Eti_Error := Set_Field_Pad (Fld, C_Int (Character'Pos (Pad))); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Pad_Character; -- | -- | -- | procedure Pad_Character (Fld : Field; Pad : out Character) is function Field_Pad (Fld : Field) return C_Int; pragma Import (C, Field_Pad, "field_pad"); begin Pad := Character'Val (Field_Pad (Fld)); end Pad_Character; -- | -- |===================================================================== -- | man page form_field_info.3x -- |===================================================================== -- | -- | -- | procedure Info (Fld : Field; Lines : out Line_Count; Columns : out Column_Count; First_Row : out Line_Position; First_Column : out Column_Position; Off_Screen : out Natural; Additional_Buffers : out Buffer_Number) is type C_Int_Access is access all C_Int; function Fld_Info (Fld : Field; L, C, Fr, Fc, Os, Ab : C_Int_Access) return C_Int; pragma Import (C, Fld_Info, "field_info"); L, C, Fr, Fc, Os, Ab : aliased C_Int; Res : constant Eti_Error := Fld_Info (Fld, L'Access, C'Access, Fr'Access, Fc'Access, Os'Access, Ab'Access); begin if Res /= E_Ok then Eti_Exception (Res); else Lines := Line_Count (L); Columns := Column_Count (C); First_Row := Line_Position (Fr); First_Column := Column_Position (Fc); Off_Screen := Natural (Os); Additional_Buffers := Buffer_Number (Ab); end if; end Info; -- | -- | -- | procedure Dynamic_Info (Fld : Field; Lines : out Line_Count; Columns : out Column_Count; Max : out Natural) is type C_Int_Access is access all C_Int; function Dyn_Info (Fld : Field; L, C, M : C_Int_Access) return C_Int; pragma Import (C, Dyn_Info, "dynamic_field_info"); L, C, M : aliased C_Int; Res : constant Eti_Error := Dyn_Info (Fld, L'Access, C'Access, M'Access); begin if Res /= E_Ok then Eti_Exception (Res); else Lines := Line_Count (L); Columns := Column_Count (C); Max := Natural (M); end if; end Dynamic_Info; -- | -- |===================================================================== -- | man page form_win.3x -- |===================================================================== -- | -- | -- | procedure Set_Window (Frm : Form; Win : Window) is function Set_Form_Win (Frm : Form; Win : Window) return C_Int; pragma Import (C, Set_Form_Win, "set_form_win"); Res : constant Eti_Error := Set_Form_Win (Frm, Win); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Window; -- | -- | -- | function Get_Window (Frm : Form) return Window is function Form_Win (Frm : Form) return Window; pragma Import (C, Form_Win, "form_win"); W : constant Window := Form_Win (Frm); begin return W; end Get_Window; -- | -- | -- | procedure Set_Sub_Window (Frm : Form; Win : Window) is function Set_Form_Sub (Frm : Form; Win : Window) return C_Int; pragma Import (C, Set_Form_Sub, "set_form_sub"); Res : constant Eti_Error := Set_Form_Sub (Frm, Win); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Sub_Window; -- | -- | -- | function Get_Sub_Window (Frm : Form) return Window is function Form_Sub (Frm : Form) return Window; pragma Import (C, Form_Sub, "form_sub"); W : constant Window := Form_Sub (Frm); begin return W; end Get_Sub_Window; -- | -- | -- | procedure Scale (Frm : Form; Lines : out Line_Count; Columns : out Column_Count) is type C_Int_Access is access all C_Int; function M_Scale (Frm : Form; Yp, Xp : C_Int_Access) return C_Int; pragma Import (C, M_Scale, "scale_form"); X, Y : aliased C_Int; Res : constant Eti_Error := M_Scale (Frm, Y'Access, X'Access); begin if Res /= E_Ok then Eti_Exception (Res); end if; Lines := Line_Count (Y); Columns := Column_Count (X); end Scale; -- | -- |===================================================================== -- | man page menu_hook.3x -- |===================================================================== -- | -- | -- | procedure Set_Field_Init_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Field_Init (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Field_Init, "set_field_init"); Res : constant Eti_Error := Set_Field_Init (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Field_Init_Hook; -- | -- | -- | procedure Set_Field_Term_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Field_Term (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Field_Term, "set_field_term"); Res : constant Eti_Error := Set_Field_Term (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Field_Term_Hook; -- | -- | -- | procedure Set_Form_Init_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Form_Init (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Form_Init, "set_form_init"); Res : constant Eti_Error := Set_Form_Init (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Form_Init_Hook; -- | -- | -- | procedure Set_Form_Term_Hook (Frm : Form; Proc : Form_Hook_Function) is function Set_Form_Term (Frm : Form; Proc : Form_Hook_Function) return C_Int; pragma Import (C, Set_Form_Term, "set_form_term"); Res : constant Eti_Error := Set_Form_Term (Frm, Proc); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Form_Term_Hook; -- | -- |===================================================================== -- | man page form_fields.3x -- |===================================================================== -- | -- | -- | procedure Redefine (Frm : Form; Flds : Field_Array_Access) is function Set_Frm_Fields (Frm : Form; Items : System.Address) return C_Int; pragma Import (C, Set_Frm_Fields, "set_form_fields"); Res : Eti_Error; begin pragma Assert (Flds.all (Flds'Last) = Null_Field); if Flds.all (Flds'Last) /= Null_Field then raise Form_Exception; else Res := Set_Frm_Fields (Frm, Flds.all (Flds'First)'Address); if Res /= E_Ok then Eti_Exception (Res); end if; end if; end Redefine; -- | -- | -- | function Fields (Frm : Form; Index : Positive) return Field is use F_Array; function C_Fields (Frm : Form) return Pointer; pragma Import (C, C_Fields, "form_fields"); P : Pointer := C_Fields (Frm); begin if P = null or else Index > Field_Count (Frm) then raise Form_Exception; else P := P + ptrdiff_t (C_Int (Index) - 1); return P.all; end if; end Fields; -- | -- | -- | function Field_Count (Frm : Form) return Natural is function Count (Frm : Form) return C_Int; pragma Import (C, Count, "field_count"); begin return Natural (Count (Frm)); end Field_Count; -- | -- | -- | procedure Move (Fld : Field; Line : Line_Position; Column : Column_Position) is function Move (Fld : Field; L, C : C_Int) return C_Int; pragma Import (C, Move, "move_field"); Res : constant Eti_Error := Move (Fld, C_Int (Line), C_Int (Column)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Move; -- | -- |===================================================================== -- | man page form_new.3x -- |===================================================================== -- | -- | -- | function Create (Fields : Field_Array_Access) return Form is function NewForm (Fields : System.Address) return Form; pragma Import (C, NewForm, "new_form"); M : Form; begin pragma Assert (Fields.all (Fields'Last) = Null_Field); if Fields.all (Fields'Last) /= Null_Field then raise Form_Exception; else M := NewForm (Fields.all (Fields'First)'Address); if M = Null_Form then raise Form_Exception; end if; return M; end if; end Create; -- | -- | -- | procedure Delete (Frm : in out Form) is function Free (Frm : Form) return C_Int; pragma Import (C, Free, "free_form"); Res : constant Eti_Error := Free (Frm); begin if Res /= E_Ok then Eti_Exception (Res); end if; Frm := Null_Form; end Delete; -- | -- |===================================================================== -- | man page form_opts.3x -- |===================================================================== -- | -- | -- | procedure Set_Options (Frm : Form; Options : Form_Option_Set) is function Set_Form_Opts (Frm : Form; Opt : C_Int) return C_Int; pragma Import (C, Set_Form_Opts, "set_form_opts"); Opt : constant C_Int := FrmOS_2_CInt (Options); Res : Eti_Error; begin Res := Set_Form_Opts (Frm, Opt); if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Options; -- | -- | -- | procedure Switch_Options (Frm : Form; Options : Form_Option_Set; On : Boolean := True) is function Form_Opts_On (Frm : Form; Opt : C_Int) return C_Int; pragma Import (C, Form_Opts_On, "form_opts_on"); function Form_Opts_Off (Frm : Form; Opt : C_Int) return C_Int; pragma Import (C, Form_Opts_Off, "form_opts_off"); Err : Eti_Error; Opt : constant C_Int := FrmOS_2_CInt (Options); begin if On then Err := Form_Opts_On (Frm, Opt); else Err := Form_Opts_Off (Frm, Opt); end if; if Err /= E_Ok then Eti_Exception (Err); end if; end Switch_Options; -- | -- | -- | procedure Get_Options (Frm : Form; Options : out Form_Option_Set) is function Form_Opts (Frm : Form) return C_Int; pragma Import (C, Form_Opts, "form_opts"); Res : constant C_Int := Form_Opts (Frm); begin Options := CInt_2_FrmOS (Res); end Get_Options; -- | -- | -- | function Get_Options (Frm : Form := Null_Form) return Form_Option_Set is Fos : Form_Option_Set; begin Get_Options (Frm, Fos); return Fos; end Get_Options; -- | -- |===================================================================== -- | man page form_post.3x -- |===================================================================== -- | -- | -- | procedure Post (Frm : Form; Post : Boolean := True) is function M_Post (Frm : Form) return C_Int; pragma Import (C, M_Post, "post_form"); function M_Unpost (Frm : Form) return C_Int; pragma Import (C, M_Unpost, "unpost_form"); Res : Eti_Error; begin if Post then Res := M_Post (Frm); else Res := M_Unpost (Frm); end if; if Res /= E_Ok then Eti_Exception (Res); end if; end Post; -- | -- |===================================================================== -- | man page form_cursor.3x -- |===================================================================== -- | -- | -- | procedure Position_Cursor (Frm : Form) is function Pos_Form_Cursor (Frm : Form) return C_Int; pragma Import (C, Pos_Form_Cursor, "pos_form_cursor"); Res : constant Eti_Error := Pos_Form_Cursor (Frm); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Position_Cursor; -- | -- |===================================================================== -- | man page form_data.3x -- |===================================================================== -- | -- | -- | function Data_Ahead (Frm : Form) return Boolean is function Ahead (Frm : Form) return C_Int; pragma Import (C, Ahead, "data_ahead"); Res : constant C_Int := Ahead (Frm); begin if Res = Curses_False then return False; else return True; end if; end Data_Ahead; -- | -- | -- | function Data_Behind (Frm : Form) return Boolean is function Behind (Frm : Form) return C_Int; pragma Import (C, Behind, "data_behind"); Res : constant C_Int := Behind (Frm); begin if Res = Curses_False then return False; else return True; end if; end Data_Behind; -- | -- |===================================================================== -- | man page form_driver.3x -- |===================================================================== -- | -- | -- | function Driver (Frm : Form; Key : Key_Code) return Driver_Result is function Frm_Driver (Frm : Form; Key : C_Int) return C_Int; pragma Import (C, Frm_Driver, "form_driver"); R : constant Eti_Error := Frm_Driver (Frm, C_Int (Key)); begin if R /= E_Ok then if R = E_Unknown_Command then return Unknown_Request; elsif R = E_Invalid_Field then return Invalid_Field; elsif R = E_Request_Denied then return Request_Denied; else Eti_Exception (R); return Form_Ok; end if; else return Form_Ok; end if; end Driver; -- | -- |===================================================================== -- | man page form_page.3x -- |===================================================================== -- | -- | -- | procedure Set_Current (Frm : Form; Fld : Field) is function Set_Current_Fld (Frm : Form; Fld : Field) return C_Int; pragma Import (C, Set_Current_Fld, "set_current_field"); Res : constant Eti_Error := Set_Current_Fld (Frm, Fld); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Current; -- | -- | -- | function Current (Frm : Form) return Field is function Current_Fld (Frm : Form) return Field; pragma Import (C, Current_Fld, "current_field"); Fld : constant Field := Current_Fld (Frm); begin if Fld = Null_Field then raise Form_Exception; end if; return Fld; end Current; -- | -- | -- | procedure Set_Page (Frm : Form; Page : Page_Number := Page_Number'First) is function Set_Frm_Page (Frm : Form; Pg : C_Int) return C_Int; pragma Import (C, Set_Frm_Page, "set_form_page"); Res : constant Eti_Error := Set_Frm_Page (Frm, C_Int (Page)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_Page; -- | -- | -- | function Page (Frm : Form) return Page_Number is function Get_Page (Frm : Form) return C_Int; pragma Import (C, Get_Page, "form_page"); P : constant C_Int := Get_Page (Frm); begin if P < 0 then raise Form_Exception; else return Page_Number (P); end if; end Page; function Get_Index (Fld : Field) return Positive is function Get_Fieldindex (Fld : Field) return C_Int; pragma Import (C, Get_Fieldindex, "field_index"); Res : constant C_Int := Get_Fieldindex (Fld); begin if Res = Curses_Err then raise Form_Exception; end if; return Positive (Natural (Res) + Positive'First); end Get_Index; -- | -- |===================================================================== -- | man page form_new_page.3x -- |===================================================================== -- | -- | -- | procedure Set_New_Page (Fld : Field; New_Page : Boolean := True) is function Set_Page (Fld : Field; Flg : C_Int) return C_Int; pragma Import (C, Set_Page, "set_new_page"); Res : constant Eti_Error := Set_Page (Fld, Boolean'Pos (New_Page)); begin if Res /= E_Ok then Eti_Exception (Res); end if; end Set_New_Page; -- | -- | -- | function Is_New_Page (Fld : Field) return Boolean is function Is_New (Fld : Field) return C_Int; pragma Import (C, Is_New, "new_page"); Res : constant C_Int := Is_New (Fld); begin if Res = Curses_False then return False; else return True; end if; end Is_New_Page; procedure Free (FA : in out Field_Array_Access; Free_Fields : Boolean := False) is procedure Release is new Ada.Unchecked_Deallocation (Field_Array, Field_Array_Access); begin if FA /= null and then Free_Fields then for I in FA'First .. (FA'Last - 1) loop if FA.all (I) /= Null_Field then Delete (FA.all (I)); end if; end loop; end if; Release (FA); end Free; -- |===================================================================== function Default_Field_Options return Field_Option_Set is begin return Get_Options (Null_Field); end Default_Field_Options; function Default_Form_Options return Form_Option_Set is begin return Get_Options (Null_Form); end Default_Form_Options; end Terminal_Interface.Curses.Forms;
dksmiffs/gnatmake-examples
Ada
429
adb
with Ada.Text_IO; use Ada.Text_IO; with Ada.Strings.Unbounded; procedure Main is package SU renames Ada.Strings.Unbounded; procedure I_Return_String(Sun : out SU.Unbounded_String) is begin Sun := SU.To_Unbounded_String("Hellew, I am an Ada string."); end I_Return_String; SUnb : SU.Unbounded_String; begin I_Return_String(SUnb); Put_Line("Output string is here ==>" & SU.To_String(SUnb) & "<=="); end Main;
reznikmm/matreshka
Ada
4,785
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Chart_Error_Indicator_Elements; package Matreshka.ODF_Chart.Error_Indicator_Elements is type Chart_Error_Indicator_Element_Node is new Matreshka.ODF_Chart.Abstract_Chart_Element_Node and ODF.DOM.Chart_Error_Indicator_Elements.ODF_Chart_Error_Indicator with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Chart_Error_Indicator_Element_Node; overriding function Get_Local_Name (Self : not null access constant Chart_Error_Indicator_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Chart_Error_Indicator_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Chart_Error_Indicator_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Chart_Error_Indicator_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Chart.Error_Indicator_Elements;
silky/synth
Ada
59,343
adb
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with Replicant.Platform; with Ada.Containers.Vectors; with Ada.Exceptions; with GNAT.OS_Lib; package body Replicant is package AC renames Ada.Containers; package EX renames Ada.Exceptions; package OSL renames GNAT.OS_Lib; package PLT renames Replicant.Platform; ------------------- -- mount_point -- ------------------- function location (mount_base : String; point : folder) return String is begin case point is when bin => return mount_base & root_bin; when sbin => return mount_base & root_sbin; when usr_bin => return mount_base & root_usr_bin; when usr_games => return mount_base & root_usr_games; when usr_include => return mount_base & root_usr_include; when usr_lib => return mount_base & root_usr_lib; when usr_lib32 => return mount_base & root_usr_lib32; when usr_libdata => return mount_base & root_usr_libdata; when usr_libexec => return mount_base & root_usr_libexec; when usr_local => return mount_base & root_localbase; when usr_sbin => return mount_base & root_usr_sbin; when usr_share => return mount_base & root_usr_share; when usr_src => return mount_base & root_usr_src; when usr_x11r7 => return mount_base & root_X11R7; when lib => return mount_base & root_lib; when dev => return mount_base & root_dev; when etc => return mount_base & root_etc; when etc_default => return mount_base & root_etc_default; when etc_mtree => return mount_base & root_etc_mtree; when etc_rcd => return mount_base & root_etc_rcd; when tmp => return mount_base & root_tmp; when var => return mount_base & root_var; when home => return mount_base & root_home; when proc => return mount_base & root_proc; when linux => return mount_base & root_linux; when boot => return mount_base & root_boot; when root => return mount_base & root_root; when xports => return mount_base & root_xports; when options => return mount_base & root_options; when libexec => return mount_base & root_libexec; when packages => return mount_base & root_packages; when distfiles => return mount_base & root_distfiles; when wrkdirs => return mount_base & root_wrkdirs; when ccache => return mount_base & root_ccache; end case; end location; -------------------- -- mount_target -- -------------------- function mount_target (point : folder) return String is begin case point is when xports => return JT.USS (PM.configuration.dir_portsdir); when options => return JT.USS (PM.configuration.dir_options); when packages => return JT.USS (PM.configuration.dir_packages); when distfiles => return JT.USS (PM.configuration.dir_distfiles); when ccache => return JT.USS (PM.configuration.dir_ccache); when others => return "ERROR"; end case; end mount_target; ------------------------ -- get_master_mount -- ------------------------ function get_master_mount return String is begin return JT.USS (PM.configuration.dir_buildbase) & "/" & reference_base; end get_master_mount; ----------------------- -- get_slave_mount -- ----------------------- function get_slave_mount (id : builders) return String is begin return JT.USS (PM.configuration.dir_buildbase) & "/" & slave_name (id); end get_slave_mount; ------------------------------ -- procedure set_platform -- ------------------------------ procedure set_platform is begin if JT.equivalent (PM.configuration.operating_sys, "FreeBSD") then platform_type := freebsd; elsif JT.equivalent (PM.configuration.operating_sys, "NetBSD") then platform_type := netbsd; elsif JT.equivalent (PM.configuration.operating_sys, "Linux") then platform_type := linux; elsif JT.equivalent (PM.configuration.operating_sys, "SunOS") then platform_type := solaris; else platform_type := dragonfly; end if; end set_platform; ------------------ -- initialize -- ------------------ procedure initialize (testmode : Boolean; num_cores : cpu_range) is mm : constant String := get_master_mount; etcmp : constant String := "/etc/master.passwd"; command : constant String := "/usr/sbin/pwd_mkdb -p -d "; begin smp_cores := num_cores; developer_mode := testmode; support_locks := testmode and then Unix.env_variable_defined ("LOCK"); start_abnormal_logging; if AD.Exists (mm) then annihilate_directory_tree (mm); end if; AD.Create_Path (mm & "/etc"); case platform_type is when dragonfly | netbsd | freebsd => create_base_passwd (mm); when linux => null; -- master.passwd not used when solaris => null; -- master.passwd not used when unknown => null; end case; create_base_group (mm); case platform_type is when dragonfly | freebsd => execute (command & mm & "/etc " & mm & etcmp); when netbsd => execute (command & mm & " " & mm & etcmp); when others => null; end case; PLT.cache_port_variables (mm); create_mtree_exc_preinst (mm); create_mtree_exc_preconfig (mm); end initialize; ---------------- -- finalize -- ---------------- procedure finalize is mm : constant String := get_master_mount; begin if AD.Exists (mm) then annihilate_directory_tree (mm); end if; stop_abnormal_logging; end finalize; -------------------- -- mount_nullfs -- -------------------- procedure mount_nullfs (target, mount_point : String; mode : mount_mode := readonly) is cmd_freebsd : constant String := "/sbin/mount_nullfs"; cmd_dragonfly : constant String := "/sbin/mount_null"; cmd_solaris : constant String := "/usr/sbin/mount -F lofs"; cmd_linux : constant String := "/usr/bin/mount --bind"; command : JT.Text; begin if not AD.Exists (mount_point) then raise scenario_unexpected with "mount point " & mount_point & " does not exist"; end if; if not AD.Exists (target) then raise scenario_unexpected with "mount target " & target & " does not exist"; end if; case platform_type is when freebsd => command := JT.SUS (cmd_freebsd); when dragonfly | netbsd => command := JT.SUS (cmd_dragonfly); when solaris => command := JT.SUS (cmd_solaris); when linux => command := JT.SUS (cmd_linux); when unknown => raise scenario_unexpected with "Mounting on unknown operating system"; end case; case mode is when readonly => JT.SU.Append (command, " -o ro"); when readwrite => null; end case; JT.SU.Append (command, " " & target); JT.SU.Append (command, " " & mount_point); execute (JT.USS (command)); end mount_nullfs; ----------------------- -- mount_linprocfs -- ----------------------- procedure mount_linprocfs (mount_point : String) is cmd_freebsd : constant String := "/sbin/mount -t linprocfs linproc " & mount_point; cmd_netbsd : constant String := "/sbin/mount_procfs -o linux procfs " & mount_point; begin -- DragonFly has lost it's Linux Emulation capability. -- FreeBSD has it for both amd64 and i386 -- We should return if FreeBSD arch is not amd64 or i386, but synth -- will not run on any other arches at the moment, so we don't have -- to check (and we don't have that information yet anyway) case platform_type is when freebsd => execute (cmd_freebsd); when netbsd => execute (cmd_netbsd); when dragonfly => null; when solaris => null; when linux => null; when unknown => null; end case; end mount_linprocfs; --------------- -- unmount -- --------------- procedure unmount (device_or_node : String) is bsd_command : constant String := "/sbin/umount " & device_or_node; sol_command : constant String := "/usr/sbin/umount " & device_or_node; lin_command : constant String := "/usr/bin/umount " & device_or_node; begin -- failure to unmount causes stderr squawks which messes up curses display -- Just log it and ignore for now (Add robustness later) case platform_type is when dragonfly | freebsd | netbsd => execute (bsd_command); when linux => execute (lin_command); when solaris => execute (sol_command); when unknown => null; end case; exception when others => null; -- silently fail end unmount; ----------------------- -- forge_directory -- ----------------------- procedure forge_directory (target : String) is begin AD.Create_Path (New_Directory => target); exception when failed : others => TIO.Put_Line (EX.Exception_Information (failed)); raise scenario_unexpected with "failed to create " & target & " directory"; end forge_directory; ------------------- -- mount_tmpfs -- ------------------- procedure mount_tmpfs (mount_point : String; max_size_M : Natural := 0) is cmd_freebsd : constant String := "/sbin/mount -t tmpfs"; cmd_dragonfly : constant String := "/sbin/mount_tmpfs"; cmd_solaris : constant String := "/sbin/mount -F tmpfs"; command : JT.Text; begin case platform_type is when freebsd | netbsd | linux => command := JT.SUS (cmd_freebsd); when dragonfly => command := JT.SUS (cmd_dragonfly); when solaris => command := JT.SUS (cmd_solaris); when unknown => raise scenario_unexpected with "Mounting on unknown operating system"; end case; if max_size_M > 0 then JT.SU.Append (command, " -o size=" & JT.trim (max_size_M'Img) & "M"); end if; case platform_type is when solaris => JT.SU.Append (command, " swap " & mount_point); when freebsd | dragonfly | netbsd | linux => JT.SU.Append (command, " tmpfs " & mount_point); when unknown => null; end case; execute (JT.USS (command)); end mount_tmpfs; --------------------- -- mount_devices -- --------------------- procedure mount_devices (path_to_dev : String) is bsd_command : constant String := "/sbin/mount -t devfs devfs " & path_to_dev; lin_command : constant String := "/usr/bin/mount --bind /dev " & path_to_dev; begin case platform_type is when dragonfly | freebsd => execute (bsd_command); when linux => execute (lin_command); when netbsd => mount_nullfs (target => "/dev", mount_point => path_to_dev); when solaris => null; when unknown => null; end case; end mount_devices; ----------------------- -- unmount_devices -- ----------------------- procedure unmount_devices (path_to_dev : String) is begin case platform_type is when dragonfly | freebsd | linux => unmount (path_to_dev); when netbsd => unmount (path_to_dev); when solaris => null; when unknown => null; end case; end unmount_devices; -------------------- -- mount_procfs -- -------------------- procedure mount_procfs (path_to_proc : String) is bsd_command : constant String := "/sbin/mount -t procfs proc " & path_to_proc; net_command : constant String := "/sbin/mount_procfs /proc " & path_to_proc; lin_command : constant String := "/usr/bin/mount --bind /proc " & path_to_proc; begin case platform_type is when dragonfly | freebsd => execute (bsd_command); when netbsd => execute (net_command); when linux => execute (lin_command); when solaris => null; when unknown => null; end case; end mount_procfs; --------------------- -- umount_procfs -- --------------------- procedure unmount_procfs (path_to_proc : String) is begin case platform_type is when dragonfly | freebsd | netbsd | linux => unmount (path_to_proc); when solaris => null; when unknown => null; end case; end unmount_procfs; ------------------ -- get_suffix -- ------------------ function slave_name (id : builders) return String is id_image : constant String := Integer (id)'Img; suffix : String := "SL00"; begin if id < 10 then suffix (4) := id_image (2); else suffix (3 .. 4) := id_image (2 .. 3); end if; return suffix; end slave_name; --------------------- -- folder_access -- --------------------- procedure folder_access (path : String; operation : folder_operation) is cmd_freebsd : constant String := "/bin/chflags"; cmd_dragonfly : constant String := "/usr/bin/chflags"; cmd_linux : constant String := "/usr/bin/chattr"; cmd_solaris : constant String := "/usr/bin/chmod"; flag_lock : constant String := " schg "; flag_unlock : constant String := " noschg "; chattr_lock : constant String := " +i "; chattr_unlock : constant String := " -i "; sol_lock : constant String := " S+ci "; sol_unlock : constant String := " S-ci "; command : JT.Text; begin if not AD.Exists (path) then -- e.g. <slave>/var/empty does not exist on NetBSD return; end if; case platform_type is when freebsd => command := JT.SUS (cmd_freebsd); when dragonfly | netbsd => command := JT.SUS (cmd_dragonfly); when linux => command := JT.SUS (cmd_linux); when solaris => command := JT.SUS (cmd_solaris); when unknown => raise scenario_unexpected with "Executing chflags on unknown operating system"; end case; case platform_type is when freebsd | dragonfly | netbsd => case operation is when lock => JT.SU.Append (command, flag_lock & path); when unlock => JT.SU.Append (command, flag_unlock & path); end case; when linux => case operation is when lock => JT.SU.Append (command, chattr_lock & path); when unlock => JT.SU.Append (command, chattr_unlock & path); end case; when solaris => case operation is when lock => JT.SU.Append (command, sol_lock & path); when unlock => JT.SU.Append (command, sol_unlock & path); end case; when unknown => null; end case; execute (JT.USS (command)); end folder_access; ---------------------- -- create_symlink -- ---------------------- procedure create_symlink (destination, symbolic_link : String) is bsd_command : constant String := "/bin/ln -s "; lin_command : constant String := "/usr/bin/ln -s "; begin case platform_type is when dragonfly | freebsd | netbsd | solaris => execute (bsd_command & destination & " " & symbolic_link); when linux => execute (lin_command & destination & " " & symbolic_link); when unknown => raise scenario_unexpected with "Executing ln on unknown operating system"; end case; end create_symlink; --------------------------- -- populate_var_folder -- --------------------------- procedure populate_var_folder (path : String) is bsd_command : constant String := "/usr/sbin/mtree -p " & path & " -f /etc/mtree/BSD.var.dist -deqU"; net_command : constant String := "/usr/sbin/mtree -p " & path & " -f /etc/mtree/special -deqU"; begin case platform_type is when dragonfly | freebsd => silent_exec (bsd_command); when netbsd => silent_exec (net_command); when linux => null; when solaris => null; when unknown => null; end case; end populate_var_folder; --------------- -- execute -- --------------- procedure execute (command : String) is Exit_Status : Integer; output : JT.Text := Unix.piped_command (command, Exit_Status); begin if abn_log_ready and then not JT.IsBlank (output) then TIO.Put_Line (abnormal_log, JT.USS (output)); end if; if Exit_Status /= 0 then raise scenario_unexpected with command & " => failed with code" & Exit_Status'Img; end if; end execute; ------------------- -- silent_exec -- ------------------- procedure silent_exec (command : String) is cmd_output : JT.Text; success : Boolean := Unix.piped_mute_command (command, cmd_output); begin if not success then if abn_log_ready and then not JT.IsBlank (cmd_output) then TIO.Put_Line (abnormal_log, "piped_mute_command failure:"); TIO.Put_Line (abnormal_log, JT.USS (cmd_output)); end if; raise scenario_unexpected with command & " => failed (exit code not 0)"; end if; end silent_exec; ------------------------------ -- internal_system_command -- ------------------------------ function internal_system_command (command : String) return JT.Text is content : JT.Text; status : Integer; begin content := Unix.piped_command (command, status); if status /= 0 then raise scenario_unexpected with "cmd: " & command & " (return code =" & status'Img & ")"; end if; return content; end internal_system_command; ------------------------- -- create_base_group -- ------------------------- procedure create_base_group (path_to_mm : String) is subtype sysgroup is String (1 .. 8); type groupset is array (1 .. 52) of sysgroup; users : constant groupset := ("wheel ", "daemon ", "kmem ", "sys ", "tty ", "operator", "mail ", "bin ", "news ", "man ", "games ", "staff ", "sshd ", "smmsp ", "mailnull", "guest ", "bind ", "proxy ", "authpf ", "_pflogd ", "unbound ", "ftp ", "video ", "hast ", "uucp ", "xten ", "dialer ", "network ", "_sdpd ", "_dhcp ", "www ", "vknet ", "nogroup ", "nobody ", -- Unique to NetBSD "wsrc ", "maildrop", "postfix ", "named ", "ntpd ", "_rwhod ", "_proxy ", "_timedc ", "_httpd ", "_mdnsd ", "_tests ", "_tcpdump", "_tss ", "_gpio ", "_rtadvd ", "_unbound", "utmp ", "users "); group : TIO.File_Type; live_file : TIO.File_Type; keepit : Boolean; target : constant String := path_to_mm & "/group"; live_origin : constant String := "/etc/group"; begin TIO.Open (File => live_file, Mode => TIO.In_File, Name => live_origin); TIO.Create (File => group, Mode => TIO.Out_File, Name => target); while not TIO.End_Of_File (live_file) loop keepit := False; declare line : String := TIO.Get_Line (live_file); begin for grpindex in groupset'Range loop declare grpcolon : String := JT.trim (users (grpindex)) & ":"; begin if grpcolon'Length <= line'Length then if grpcolon = line (1 .. grpcolon'Last) then keepit := True; exit; end if; end if; end; end loop; if keepit then TIO.Put_Line (group, line); end if; end; end loop; TIO.Close (live_file); TIO.Close (group); end create_base_group; -------------------------- -- create_base_passwd -- -------------------------- procedure create_base_passwd (path_to_mm : String) is subtype syspasswd is String (1 .. 10); type passwdset is array (1 .. 41) of syspasswd; users : constant passwdset := ("root ", "toor ", "daemon ", "operator ", "bin ", "tty ", "kmem ", "mail ", "games ", "news ", "man ", "sshd ", "smmsp ", "mailnull ", "bind ", "unbound ", "proxy ", "_pflogd ", "_dhcp ", "uucp ", "xten ", "pop ", "auditdistd", "_sdpd ", "www ", "_ypldap ", "hast ", "nobody ", -- Unique to NetBSD "postfix ", "named ", "ntpd ", "_rwhod ", "_proxy ", "_timedc ", "_httpd ", "_mdnsd ", "_tests ", "_tcpdump ", "_tss ", "_rtadvd ", "_unbound "); masterpwd : TIO.File_Type; live_file : TIO.File_Type; keepit : Boolean; live_origin : constant String := "/etc/master.passwd"; target : constant String := path_to_mm & live_origin; begin TIO.Open (File => live_file, Mode => TIO.In_File, Name => live_origin); TIO.Create (File => masterpwd, Mode => TIO.Out_File, Name => target); while not TIO.End_Of_File (live_file) loop keepit := False; declare line : String := TIO.Get_Line (live_file); begin for pwdindex in passwdset'Range loop declare pwdcolon : String := JT.trim (users (pwdindex)) & ":"; begin if pwdcolon'Length <= line'Length then if pwdcolon = line (1 .. pwdcolon'Last) then keepit := True; exit; end if; end if; end; end loop; if keepit then TIO.Put_Line (masterpwd, line); end if; end; end loop; TIO.Close (live_file); TIO.Close (masterpwd); end create_base_passwd; -------------------- -- create_group -- -------------------- procedure create_group (path_to_etc : String) is mm : constant String := get_master_mount; group : constant String := "/group"; begin AD.Copy_File (Source_Name => mm & group, Target_Name => path_to_etc & group); end create_group; --------------------- -- create_passwd -- --------------------- procedure create_passwd (path_to_etc : String) is mmetc : constant String := get_master_mount & "/etc"; maspwd : constant String := "/master.passwd"; passwd : constant String := "/passwd"; spwd : constant String := "/spwd.db"; pwd : constant String := "/pwd.db"; begin AD.Copy_File (Source_Name => mmetc & passwd, Target_Name => path_to_etc & passwd); AD.Copy_File (Source_Name => mmetc & maspwd, Target_Name => path_to_etc & maspwd); AD.Copy_File (Source_Name => mmetc & spwd, Target_Name => path_to_etc & spwd); AD.Copy_File (Source_Name => mmetc & pwd, Target_Name => path_to_etc & pwd); end create_passwd; ------------------------ -- copy_mtree_files -- ------------------------ procedure copy_mtree_files (path_to_mtree : String) is mtree : constant String := "/etc/mtree"; root : constant String := "/BSD.root.dist"; usr : constant String := "/BSD.usr.dist"; var : constant String := "/BSD.var.dist"; spec : constant String := "/special"; begin case platform_type is when dragonfly | freebsd => AD.Copy_File (Source_Name => mtree & root, Target_Name => path_to_mtree & root); AD.Copy_File (Source_Name => mtree & usr, Target_Name => path_to_mtree & usr); AD.Copy_File (Source_Name => mtree & var, Target_Name => path_to_mtree & var); when netbsd => AD.Copy_File (Source_Name => mtree & spec, Target_Name => path_to_mtree & spec); when solaris => null; when linux => null; when unknown => null; end case; end copy_mtree_files; ------------------------ -- create_make_conf -- ------------------------ procedure create_make_conf (path_to_etc : String; skip_cwrappers : Boolean) is makeconf : TIO.File_Type; profilemc : constant String := PM.synth_confdir & "/" & JT.USS (PM.configuration.profile) & "-make.conf"; varcache : constant String := get_master_mount & "/varcache.conf"; profile : constant String := JT.USS (PM.configuration.profile); mjnum : constant Integer := Integer (PM.configuration.jobs_limit); begin case software_framework is when ports_collection => TIO.Create (File => makeconf, Mode => TIO.Out_File, Name => path_to_etc & "/make.conf"); TIO.Put_Line (makeconf, "SYNTHPROFILE=" & profile & LAT.LF & "USE_PACKAGE_DEPENDS_ONLY=yes" & LAT.LF & "PACKAGE_BUILDING=yes" & LAT.LF & "BATCH=yes" & LAT.LF & "PKG_CREATE_VERBOSE=yes" & LAT.LF & "PORTSDIR=/xports" & LAT.LF & "DISTDIR=/distfiles" & LAT.LF & "WRKDIRPREFIX=/construction" & LAT.LF & "PORT_DBDIR=/options" & LAT.LF & "PACKAGES=/packages" & LAT.LF & "MAKE_JOBS_NUMBER_LIMIT=" & JT.int2str (mjnum)); if developer_mode then TIO.Put_Line (makeconf, "DEVELOPER=1"); end if; if AD.Exists (JT.USS (PM.configuration.dir_ccache)) then TIO.Put_Line (makeconf, "WITH_CCACHE_BUILD=yes"); TIO.Put_Line (makeconf, "CCACHE_DIR=/ccache"); end if; when pkgsrc => TIO.Create (File => makeconf, Mode => TIO.Out_File, Name => path_to_etc & "/mk.conf"); -- Note there is no equivalent for PORT_DBDIR -- Custom options must be set in <profile>-make.conf TIO.Put_Line (makeconf, "SYNTHPROFILE=" & profile & LAT.LF & "USE_PACKAGE_DEPENDS_ONLY=yes" & LAT.LF & "PACKAGE_BUILDING=yes" & LAT.LF & "ALLOW_VULNERABLE_PACKAGES=yes" & LAT.LF & "PKG_CREATE_VERBOSE=yes" & LAT.LF & "PKG_FORMAT=pkgng" & LAT.LF & "PKGSRCDIR=/xports" & LAT.LF & "DISTDIR=/distfiles" & LAT.LF & "WRKOBJDIR=/construction" & LAT.LF & "PACKAGES=/packages" & LAT.LF & "MAKE_JOBS=" & JT.int2str (mjnum)); if skip_cwrappers then TIO.Put_Line (makeconf, "USE_CWRAPPERS=no"); end if; if developer_mode then TIO.Put_Line (makeconf, "PKG_DEVELOPER=yes"); end if; if AD.Exists (JT.USS (PM.configuration.dir_ccache)) then TIO.Put_Line (makeconf, "PKGSRC_COMPILER=ccache gcc"); TIO.Put_Line (makeconf, "CCACHE_DIR=/ccache"); end if; end case; concatenate_makeconf (makeconf, profilemc); concatenate_makeconf (makeconf, varcache); TIO.Close (makeconf); end create_make_conf; ------------------------ -- copy_resolv_conf -- ------------------------ procedure copy_resolv_conf (path_to_etc : String) is original : constant String := "/etc/resolv.conf"; begin if not AD.Exists (original) then return; end if; AD.Copy_File (Source_Name => original, Target_Name => path_to_etc & "/resolv.conf"); end copy_resolv_conf; ----------------------- -- copy_rc_default -- ----------------------- procedure copy_rc_default (path_to_etc : String) is rc_default : constant String := "/defaults/rc.conf"; etc_rcconf : constant String := "/etc" & rc_default; begin if not AD.Exists (etc_rcconf) then return; end if; AD.Copy_File (Source_Name => etc_rcconf, Target_Name => path_to_etc & rc_default); end copy_rc_default; --------------------------- -- create_etc_services -- --------------------------- procedure create_etc_services (path_to_etc : String) is svcfile : TIO.File_Type; begin TIO.Create (File => svcfile, Mode => TIO.Out_File, Name => path_to_etc & "/services"); TIO.Put_Line (svcfile, "ftp 21/tcp" & LAT.LF & "ftp 21/udp" & LAT.LF & "ssh 22/tcp" & LAT.LF & "ssh 22/udp" & LAT.LF & "http 80/tcp" & LAT.LF & "http 80/udp" & LAT.LF & "https 443/tcp" & LAT.LF & "https 443/udp" & LAT.LF); TIO.Close (svcfile); end create_etc_services; ------------------------ -- create_etc_fstab -- ------------------------ procedure create_etc_fstab (path_to_etc : String) is fstab : TIO.File_Type; begin TIO.Create (File => fstab, Mode => TIO.Out_File, Name => path_to_etc & "/fstab"); case platform_type is when dragonfly | freebsd => TIO.Put_Line (fstab, "linproc /usr/compat/proc linprocfs rw 0 0"); when netbsd => TIO.Put_Line (fstab, "procfs /emul/linux/proc procfs ro,linux 0 0"); when linux | solaris => null; when unknown => null; end case; TIO.Close (fstab); end create_etc_fstab; ------------------------- -- create_etc_shells -- ------------------------- procedure create_etc_shells (path_to_etc : String) is shells : TIO.File_Type; begin TIO.Create (File => shells, Mode => TIO.Out_File, Name => path_to_etc & "/shells"); case platform_type is when dragonfly | freebsd => TIO.Put_Line (shells, "/bin/sh" & LAT.LF & "/bin/csh" & LAT.LF & "/bin/tcsh" & LAT.LF); when netbsd => TIO.Put_Line (shells, "/bin/sh" & LAT.LF & "/bin/csh" & LAT.LF & "/bin/ksh" & LAT.LF); when linux => TIO.Put_Line (shells, "/bin/sh" & LAT.LF & "/bin/bash" & LAT.LF & "/sbin/nologin" & LAT.LF & "/usr/bin/sh" & LAT.LF & "/usr/bin/bash" & LAT.LF & "/usr/sbin/nologin" & LAT.LF); when solaris => TIO.Put_Line (shells, "/bin/bash" & LAT.LF & "/bin/csh" & LAT.LF & "/bin/ksh" & LAT.LF & "/bin/ksh93" & LAT.LF & "/bin/sh" & LAT.LF & "/bin/tcsh" & LAT.LF & "/bin/zsh" & LAT.LF & "/sbin/sh" & LAT.LF & "/usr/bin/bash" & LAT.LF & "/usr/bin/csh" & LAT.LF & "/usr/bin/ksh" & LAT.LF & "/usr/bin/ksh93" & LAT.LF & "/usr/bin/sh" & LAT.LF & "/usr/bin/tcsh" & LAT.LF & "/usr/bin/zsh"); when unknown => null; end case; TIO.Close (shells); end create_etc_shells; ------------------------ -- execute_ldconfig -- ------------------------ procedure execute_ldconfig (id : builders) is smount : constant String := get_slave_mount (id); bsd_command : constant String := chroot & smount & " /sbin/ldconfig -m /lib /usr/lib"; lin_command : constant String := chroot & smount & " /usr/sbin/ldconfig /lib /usr/lib"; begin case platform_type is when dragonfly | freebsd => execute (bsd_command); when linux => execute (lin_command); when netbsd | solaris => null; when unknown => null; end case; end execute_ldconfig; ------------------------------- -- copy_directory_contents -- ------------------------------- function copy_directory_contents (src_directory : String; tgt_directory : String; pattern : String) return Boolean is Search : AD.Search_Type; Dir_Ent : AD.Directory_Entry_Type; Filter : constant AD.Filter_Type := (AD.Ordinary_File => True, AD.Special_File => False, AD.Directory => False); begin if not AD.Exists (src_directory) then return False; end if; AD.Create_Path (tgt_directory); AD.Start_Search (Search => Search, Directory => src_directory, Filter => Filter, Pattern => pattern); while AD.More_Entries (Search => Search) loop AD.Get_Next_Entry (Search => Search, Directory_Entry => Dir_Ent); AD.Copy_File (Source_Name => src_directory & "/" & AD.Simple_Name (Dir_Ent), Target_Name => tgt_directory & "/" & AD.Simple_Name (Dir_Ent)); end loop; return True; exception when others => return False; end copy_directory_contents; ------------------------ -- build_repository -- ------------------------ function build_repository (id : builders; sign_command : String := "") return Boolean is smount : constant String := get_slave_mount (id); command : constant String := chroot & smount & " " & root_localbase & "/sbin/pkg-static repo /packages"; sc_cmd : constant String := host_pkg8 & " repo " & smount & "/packages signing_command: "; key_loc : constant String := "/etc/repo.key"; use_key : constant Boolean := AD.Exists (smount & key_loc); use_cmd : constant Boolean := not JT.IsBlank (sign_command); begin if not PLT.standalone_pkg8_install (id) then TIO.Put_Line ("Failed to install pkg-static in builder" & id'Img); return False; end if; if use_key then silent_exec (command & " " & key_loc); elsif use_cmd then silent_exec (sc_cmd & sign_command); else silent_exec (command); end if; return True; exception when quepaso : others => TIO.Put_Line (EX.Exception_Message (quepaso)); return False; end build_repository; --------------------------------- -- annihilate_directory_tree -- --------------------------------- procedure annihilate_directory_tree (tree : String) is command : constant String := "/bin/rm -rf " & tree; begin silent_exec (command); exception when others => null; end annihilate_directory_tree; -------------------- -- launch_slave -- -------------------- procedure launch_slave (id : builders; opts : slave_options) is function clean_mount_point (point : folder) return String; slave_base : constant String := get_slave_mount (id); slave_work : constant String := slave_base & "_work"; slave_local : constant String := slave_base & "_localbase"; slave_linux : constant String := slave_base & "_linux"; dir_system : constant String := JT.USS (PM.configuration.dir_system); live_system : constant Boolean := (dir_system = "/"); function clean_mount_point (point : folder) return String is begin if live_system then return location ("", point); else return location (dir_system, point); end if; end clean_mount_point; begin forge_directory (slave_base); mount_tmpfs (slave_base); for mnt in folder'Range loop forge_directory (location (slave_base, mnt)); end loop; for mnt in subfolder'Range loop mount_nullfs (target => clean_mount_point (mnt), mount_point => location (slave_base, mnt)); end loop; folder_access (location (slave_base, home), lock); folder_access (location (slave_base, root), lock); mount_nullfs (mount_target (xports), location (slave_base, xports)); mount_nullfs (mount_target (options), location (slave_base, options)); mount_nullfs (mount_target (packages), location (slave_base, packages), mode => readwrite); mount_nullfs (mount_target (distfiles), location (slave_base, distfiles), mode => readwrite); if PM.configuration.tmpfs_workdir then mount_tmpfs (location (slave_base, wrkdirs), 12 * 1024); else forge_directory (slave_work); mount_nullfs (slave_work, location (slave_base, wrkdirs), readwrite); end if; if not support_locks and then PM.configuration.tmpfs_localbase then mount_tmpfs (slave_base & root_localbase, 12 * 1024); else forge_directory (slave_local); mount_nullfs (slave_local, slave_base & root_localbase, readwrite); end if; if opts.need_procfs then mount_procfs (path_to_proc => location (slave_base, proc)); end if; -- special platform handling case platform_type is when dragonfly => declare bootdir : String := clean_mount_point (boot); begin if AD.Exists (bootdir) then mount_nullfs (target => bootdir, mount_point => location (slave_base, boot)); mount_tmpfs (slave_base & root_lmodules, 100); end if; end; declare games : String := clean_mount_point (usr_games); begin if AD.Exists (games) then mount_nullfs (target => games, mount_point => location (slave_base, usr_games)); end if; end; when freebsd => if opts.need_linprocfs then if PM.configuration.tmpfs_localbase then mount_tmpfs (slave_base & root_linux, 12 * 1024); else forge_directory (slave_linux); mount_nullfs (target => slave_linux, mount_point => slave_base & root_linux, mode => readwrite); end if; forge_directory (slave_base & root_linproc); mount_linprocfs (mount_point => slave_base & root_linproc); end if; declare lib32 : String := clean_mount_point (usr_lib32); begin if AD.Exists (lib32) then mount_nullfs (target => lib32, mount_point => location (slave_base, usr_lib32)); end if; end; declare bootdir : String := clean_mount_point (boot); begin if AD.Exists (bootdir) then mount_nullfs (target => bootdir, mount_point => location (slave_base, boot)); mount_tmpfs (slave_base & root_kmodules, 100); end if; end; declare games : String := clean_mount_point (usr_games); begin if AD.Exists (games) then mount_nullfs (target => games, mount_point => location (slave_base, usr_games)); end if; end; when netbsd => declare x11_dir : String := clean_mount_point (usr_x11r7); begin if AD.Exists (x11_dir) then mount_nullfs (target => x11_dir, mount_point => location (slave_base, usr_x11r7)); end if; end; when linux => null; -- for now when solaris => null; -- for now when unknown => null; end case; declare srcdir : String := clean_mount_point (usr_src); begin if AD.Exists (srcdir) then mount_nullfs (srcdir, location (slave_base, usr_src)); if AD.Exists (srcdir & "/sys") then create_symlink (destination => "usr/src/sys", symbolic_link => slave_base & "/sys"); end if; end if; end; if AD.Exists (mount_target (ccache)) then mount_nullfs (mount_target (ccache), location (slave_base, ccache), mode => readwrite); end if; mount_devices (location (slave_base, dev)); populate_var_folder (location (slave_base, var)); copy_mtree_files (location (slave_base, etc_mtree)); copy_rc_default (location (slave_base, etc)); copy_resolv_conf (location (slave_base, etc)); create_make_conf (location (slave_base, etc), opts.skip_cwrappers); create_passwd (location (slave_base, etc)); create_group (location (slave_base, etc)); create_etc_services (location (slave_base, etc)); create_etc_shells (location (slave_base, etc)); create_etc_fstab (location (slave_base, etc)); execute_ldconfig (id); exception when hiccup : others => EX.Reraise_Occurrence (hiccup); end launch_slave; --------------------- -- destroy_slave -- --------------------- procedure destroy_slave (id : builders; opts : slave_options) is slave_base : constant String := get_slave_mount (id); slave_work : constant String := slave_base & "_work"; slave_local : constant String := slave_base & "_localbase"; slave_linux : constant String := slave_base & "_linux"; dir_system : constant String := JT.USS (PM.configuration.dir_system); begin unmount (slave_base & root_localbase); if support_locks or else not PM.configuration.tmpfs_localbase then -- We can't use AD.Delete_Tree because it skips directories -- starting with "." (pretty useless then) annihilate_directory_tree (slave_local); end if; unmount (location (slave_base, wrkdirs)); if not PM.configuration.tmpfs_workdir then annihilate_directory_tree (slave_work); end if; if AD.Exists (location (dir_system, usr_src)) then unmount (location (slave_base, usr_src)); end if; if AD.Exists (mount_target (ccache)) then unmount (location (slave_base, ccache)); end if; case platform_type is when dragonfly => if AD.Exists (location (dir_system, boot)) then unmount (slave_base & root_lmodules); unmount (location (slave_base, boot)); end if; if AD.Exists (location (dir_system, usr_games)) then unmount (location (slave_base, usr_games)); end if; when freebsd => if opts.need_linprocfs then unmount (slave_base & root_linproc); unmount (slave_base & root_linux); if not PM.configuration.tmpfs_localbase then annihilate_directory_tree (slave_linux); end if; end if; if AD.Exists (location (dir_system, usr_lib32)) then unmount (location (slave_base, usr_lib32)); end if; if AD.Exists (location (dir_system, boot)) then unmount (slave_base & root_kmodules); unmount (location (slave_base, boot)); end if; if AD.Exists (location (dir_system, usr_games)) then unmount (location (slave_base, usr_games)); end if; when netbsd => if AD.Exists (location (dir_system, usr_x11r7)) then unmount (location (slave_base, usr_x11r7)); end if; when linux => null; when solaris => null; when unknown => null; end case; if opts.need_procfs then unmount_procfs (location (slave_base, proc)); end if; unmount_devices (location (slave_base, dev)); unmount (location (slave_base, xports)); unmount (location (slave_base, options)); unmount (location (slave_base, packages)); unmount (location (slave_base, distfiles)); for mnt in subfolder'Range loop unmount (location (slave_base, mnt)); end loop; folder_access (location (slave_base, home), unlock); folder_access (location (slave_base, root), unlock); folder_access (location (slave_base, var) & "/empty", unlock); unmount (slave_base); annihilate_directory_tree (slave_base); exception when hiccup : others => EX.Reraise_Occurrence (hiccup); end destroy_slave; -------------------------- -- synth_mounts_exist -- -------------------------- function synth_mounts_exist return Boolean is buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; begin comres := internal_system_command (PLT.df_command); crlen1 := JT.SU.Length (comres); loop JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; if JT.contains (topline, buildbase) then return True; end if; end loop; return False; exception when others => return True; end synth_mounts_exist; ----------------------------- -- clear_existing_mounts -- ----------------------------- function clear_existing_mounts return Boolean is package crate is new AC.Vectors (Index_Type => Positive, Element_Type => JT.Text, "=" => JT.SU."="); procedure annihilate (cursor : crate.Cursor); buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; mindex : Natural; mlength : Natural; mpoints : crate.Vector; procedure annihilate (cursor : crate.Cursor) is mountpoint : constant String := JT.USS (crate.Element (cursor)); begin unmount (mountpoint); if AD.Exists (mountpoint) then AD.Delete_Directory (mountpoint); end if; exception when others => null; end annihilate; begin comres := internal_system_command (PLT.df_command); crlen1 := JT.SU.Length (comres); loop JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; if JT.contains (topline, buildbase) then mindex := JT.SU.Index (topline, buildbase); mlength := JT.SU.Length (topline); mpoints.Append (JT.SUS (JT.SU.Slice (topline, mindex, mlength))); end if; end loop; mpoints.Reverse_Iterate (Process => annihilate'Access); if synth_mounts_exist then return False; end if; -- No need to remove empty dirs, the upcoming run will do that. return True; end clear_existing_mounts; ---------------------------- -- disk_workareas_exist -- ---------------------------- function disk_workareas_exist return Boolean is Search : AD.Search_Type; buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); result : Boolean := False; begin if not AD.Exists (buildbase) then return False; end if; AD.Start_Search (Search => Search, Directory => buildbase, Filter => (AD.Directory => True, others => False), Pattern => "SL*_*"); result := AD.More_Entries (Search => Search); return result; end disk_workareas_exist; -------------------------------- -- clear_existing_workareas -- -------------------------------- function clear_existing_workareas return Boolean is Search : AD.Search_Type; Dir_Ent : AD.Directory_Entry_Type; buildbase : constant String := JT.USS (PM.configuration.dir_buildbase); begin AD.Start_Search (Search => Search, Directory => buildbase, Filter => (AD.Directory => True, others => False), Pattern => "SL*_*"); while AD.More_Entries (Search => Search) loop AD.Get_Next_Entry (Search => Search, Directory_Entry => Dir_Ent); declare target : constant String := buildbase & "/" & AD.Simple_Name (Dir_Ent); begin annihilate_directory_tree (target); end; end loop; return True; exception when others => return False; end clear_existing_workareas; ---------------------------- -- concatenate_makeconf -- ---------------------------- procedure concatenate_makeconf (makeconf_handle : TIO.File_Type; target_name : String) is fragment : TIO.File_Type; begin if AD.Exists (target_name) then TIO.Open (File => fragment, Mode => TIO.In_File, Name => target_name); while not TIO.End_Of_File (fragment) loop declare Line : String := TIO.Get_Line (fragment); begin TIO.Put_Line (makeconf_handle, Line); end; end loop; TIO.Close (fragment); end if; exception when others => null; end concatenate_makeconf; --------------------------------------- -- write_common_mtree_exclude_base -- --------------------------------------- procedure write_common_mtree_exclude_base (mtreefile : TIO.File_Type) is begin TIO.Put_Line (mtreefile, "./bin" & LAT.LF & "./boot" & LAT.LF & "./ccache" & LAT.LF & "./compat/linux/proc" & LAT.LF & "./construction" & LAT.LF & "./dev" & LAT.LF & "./distfiles" & LAT.LF & "./lib" & LAT.LF & "./libexec" & LAT.LF & "./home" & LAT.LF & "./options" & LAT.LF & "./packages" & LAT.LF & "./proc" & LAT.LF & "./root" & LAT.LF & "./sbin" & LAT.LF & "./tmp" & LAT.LF & "./usr/bin" & LAT.LF & "./usr/include" & LAT.LF & "./usr/lib" & LAT.LF & "./usr/lib32" & LAT.LF & "./usr/libdata" & LAT.LF & "./usr/libexec" & LAT.LF & "./usr/sbin" & LAT.LF & "./usr/share" & LAT.LF & "./usr/src" & LAT.LF & "./var/db/fontconfig" & LAT.LF & "./var/run" & LAT.LF & "./var/tmp" & LAT.LF & "./xports" ); end write_common_mtree_exclude_base; -------------------------------- -- write_preinstall_section -- -------------------------------- procedure write_preinstall_section (mtreefile : TIO.File_Type) is begin case software_framework is when ports_collection => TIO.Put_Line (mtreefile, "./etc/group" & LAT.LF & "./etc/make.conf" & LAT.LF & "./etc/make.conf.bak" & LAT.LF & "./etc/make.nxb.conf" & LAT.LF & "./etc/master.passwd" & LAT.LF & "./etc/passwd" & LAT.LF & "./etc/pwd.db" & LAT.LF & "./etc/shells" & LAT.LF & "./etc/spwd.db" & LAT.LF & "./var/db" & LAT.LF & "./var/log" & LAT.LF & "./var/mail" & LAT.LF & "./var/spool" & LAT.LF & "./var/tmp" & LAT.LF & "./usr/local/etc/gconf/gconf.xml.defaults/%gconf-tree*.xml" & LAT.LF & "./usr/local/lib/gio/modules/giomodule.cache" & LAT.LF & "./usr/local/info/dir" & LAT.LF & "./usr/local/info" & LAT.LF & "./usr/local/*/info/dir" & LAT.LF & "./usr/local/*/info" & LAT.LF & "./usr/local/*/ls-R" & LAT.LF & "./usr/local/share/octave/octave_packages" & LAT.LF & "./usr/local/share/xml/catalog.ports" ); when pkgsrc => TIO.Put_Line (mtreefile, "./etc/group" & LAT.LF & "./etc/mk.conf" & LAT.LF & "./etc/master.passwd" & LAT.LF & "./etc/passwd" & LAT.LF & "./etc/pwd.db" & LAT.LF & "./etc/shells" & LAT.LF & "./etc/spwd.db" & LAT.LF & "./var/db" & LAT.LF & "./var/log" & LAT.LF & "./var/mail" & LAT.LF & "./var/spool" & LAT.LF & "./var/tmp" & LAT.LF & "./usr/pkg/etc/gconf/gconf.xml.defaults/%gconf-tree*.xml" & LAT.LF & "./usr/pkg/lib/gio/modules/giomodule.cache" & LAT.LF & "./usr/pkg/info/dir" & LAT.LF & "./usr/pkg/info" & LAT.LF & "./usr/pkg/*/info/dir" & LAT.LF & "./usr/pkg/*/info" & LAT.LF & "./usr/pkg/*/ls-R" & LAT.LF & "./usr/pkg/share/xml/catalog.ports" ); end case; end write_preinstall_section; -------------------------------- -- create_mtree_exc_preinst -- -------------------------------- procedure create_mtree_exc_preinst (path_to_mm : String) is mtreefile : TIO.File_Type; filename : constant String := path_to_mm & "/mtree.prestage.exclude"; begin TIO.Create (File => mtreefile, Mode => TIO.Out_File, Name => filename); write_common_mtree_exclude_base (mtreefile); write_preinstall_section (mtreefile); TIO.Close (mtreefile); end create_mtree_exc_preinst; ---------------------------------- -- create_mtree_exc_preconfig -- ---------------------------------- procedure create_mtree_exc_preconfig (path_to_mm : String) is mtreefile : TIO.File_Type; filename : constant String := path_to_mm & "/mtree.preconfig.exclude"; begin TIO.Create (File => mtreefile, Mode => TIO.Out_File, Name => filename); write_common_mtree_exclude_base (mtreefile); TIO.Close (mtreefile); end create_mtree_exc_preconfig; ------------------------ -- jail_environment -- ------------------------ function jail_environment return JT.Text is begin return builder_env; end jail_environment; -------------------------------------- -- boot_modules_directory_missing -- -------------------------------------- function boot_modules_directory_missing return Boolean is begin if JT.equivalent (PM.configuration.operating_sys, "DragonFly") then declare sroot : constant String := JT.USS (PM.configuration.dir_system); bootdir : constant String := sroot & root_boot; modsdir : constant String := sroot & root_lmodules; begin if AD.Exists (bootdir) and then not AD.Exists (modsdir) then return True; end if; end; end if; if JT.equivalent (PM.configuration.operating_sys, "FreeBSD") then declare sroot : constant String := JT.USS (PM.configuration.dir_system); bootdir : constant String := sroot & root_boot; modsdir : constant String := sroot & root_kmodules; begin if AD.Exists (bootdir) and then not AD.Exists (modsdir) then return True; end if; end; end if; return False; end boot_modules_directory_missing; ------------------------------ -- start_abnormal_logging -- ------------------------------ procedure start_abnormal_logging is logpath : constant String := JT.USS (PM.configuration.dir_logs) & "/" & abnormal_cmd_logname; begin if AD.Exists (logpath) then AD.Delete_File (logpath); end if; TIO.Create (File => abnormal_log, Mode => TIO.Out_File, Name => logpath); abn_log_ready := True; exception when others => abn_log_ready := False; end start_abnormal_logging; ----------------------------- -- stop_abnormal_logging -- ----------------------------- procedure stop_abnormal_logging is begin if abn_log_ready then TIO.Close (abnormal_log); end if; end stop_abnormal_logging; end Replicant;
sungyeon/drake
Ada
19
adb
../zcx/s-unrase.adb
MinimSecure/unum-sdk
Ada
1,158
ads
-- Copyright 2015-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Array_List_G; package Reprod is package Objects is type T is record I : Integer; end record; package List is new Array_List_G (Index_Base_T => Natural, Component_T => T); end Objects; type Obj_T (Len : Natural) is record Data : Objects.List.T (1 .. Len); end record; type T is access Obj_T; procedure Do_Nothing (Broken : Obj_T); end Reprod;
gitter-badger/libAnne
Ada
51,787
ads
package Generics.Mathematics.Matrices with Pure is --@Description Provides generic, serial, but highly portable, operations for matrices. --@Version 1.0 --This package is meant to provide reliable support for all platforms, but not in any efficient way. --Because of the lack of ability to overload in generics, a unique naming scheme of <type>_<operation>_(scalar|matrix)_(scalar|matrix) is used. -------------------- -- Integer Matrix -- -------------------- generic type Integer_Type is range <>; type Integer_Matrix_Type is array(Positive range <>, Positive range <>) of Integer_Type; function Integer_Assert_Matrix(Value : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array(Positive range <>, Positive range <>) of Integer_Type; function Integer_Negate_Matrix(Value : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Absolute_Value_Matrix(Value : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Add_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Add_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Add_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Subtract_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Subtract_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Subtract_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Multiply_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Multiply_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Multiply_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Divide_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Divide_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Divide_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Modulus_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Modulus_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Modulus_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Remainder_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Remainder_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Remainder_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Integer_Matrix_Type with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Equal_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Equal_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Equal_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Lesser_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Lesser_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Lesser_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Greater_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Greater_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Greater_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Lesser_Or_Equal_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Lesser_Or_Equal_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Lesser_Or_Equal_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Greater_Or_Equal_Matrix_Matrix(Left : Integer_Matrix_Type; Right : Integer_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Greater_Or_Equal_Matrix_Scalar(Left : Integer_Matrix_Type; Right : Integer_Type) return Boolean with Pure_Function; generic type Integer_Type is range <>; type Integer_Matrix_Type is array (Positive range <>, Positive range <>) of Integer_Type; function Integer_Greater_Or_Equal_Scalar_Matrix(Left : Integer_Type; Right : Integer_Matrix_Type) return Boolean with Pure_Function; -------------------- -- Modular Matrix -- -------------------- generic type Modular_Type is mod <>; type Modular_Matrix_Type is array(Positive range <>, Positive range <>) of Modular_Type; function Modular_Assert_Matrix(Value : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array(Positive range <>, Positive range <>) of Modular_Type; function Modular_Negate_Matrix(Value : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Absolute_Value_Matrix(Value : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Add_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Add_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Add_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Subtract_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Subtract_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Subtract_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Multiply_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Multiply_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Multiply_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Divide_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Divide_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Divide_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Modulus_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Modulus_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Modulus_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Remainder_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Remainder_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Remainder_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Modular_Matrix_Type with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Equal_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Equal_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Equal_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Lesser_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Lesser_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Lesser_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Greater_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Greater_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Greater_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Lesser_Or_Equal_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Lesser_Or_Equal_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Lesser_Or_Equal_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Greater_Or_Equal_Matrix_Matrix(Left : Modular_Matrix_Type; Right : Modular_Matrix_Type) return Boolean with Pre => Left'Length = Right'Length, Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Greater_Or_Equal_Matrix_Scalar(Left : Modular_Matrix_Type; Right : Modular_Type) return Boolean with Pure_Function; generic type Modular_Type is mod <>; type Modular_Matrix_Type is array (Positive range <>, Positive range <>) of Modular_Type; function Modular_Greater_Or_Equal_Scalar_Matrix(Left : Modular_Type; Right : Modular_Matrix_Type) return Boolean with Pure_Function; ------------------ -- Fixed Matrix -- ------------------ generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Assert_Matrix(Value : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Negate_Matrix(Value : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Absolute_Value_Matrix(Value : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Add_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Add_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Add_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Subtract_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Subtract_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Subtract_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Multiply_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Multiply_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Multiply_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Divide_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Divide_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Divide_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; with function "rem"(Left : Fixed_Type; Right : Fixed_Type) return Fixed_Type is <>; function Fixed_Remainder_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; with function "rem"(Left : Fixed_Type; Right : Fixed_Type) return Fixed_Type is <>; function Fixed_Remainder_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; with function "rem"(Left : Fixed_Type; Right : Fixed_Type) return Fixed_Type is <>; function Fixed_Remainder_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; with function "mod"(Left : Fixed_Type; Right : Fixed_Type) return Fixed_Type is <>; function Fixed_Modulus_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; with function "mod"(Left : Fixed_Type; Right : Fixed_Type) return Fixed_Type is <>; function Fixed_Modulus_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; with function "mod"(Left : Fixed_Type; Right : Fixed_Type) return Fixed_Type is <>; function Fixed_Modulus_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Fixed_Matrix_Type with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Equal_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Equal_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Equal_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Lesser_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Lesser_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Lesser_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Greater_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Greater_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Greater_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Lesser_Or_Equal_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Lesser_Or_Equal_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Lesser_Or_Equal_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Greater_Or_Equal_Matrix_Matrix(Left : Fixed_Matrix_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Greater_Or_Equal_Matrix_Scalar(Left : Fixed_Matrix_Type; Right : Fixed_Type) return Boolean with Pure_Function; generic type Fixed_Type is delta <>; type Fixed_Matrix_Type is array(Positive range <>, Positive range <>) of Fixed_Type; function Fixed_Greater_Or_Equal_Scalar_Matrix(Left : Fixed_Type; Right : Fixed_Matrix_Type) return Boolean with Pure_Function; -------------------- -- Decimal Matrix -- -------------------- generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Assert_Matrix(Value : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Negate_Matrix(Value : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Absolute_Value_Matrix(Value : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Add_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Add_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Add_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Subtract_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Subtract_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Subtract_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Multiply_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Multiply_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Multiply_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Divide_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Divide_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Divide_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; with function "rem"(Left : Decimal_Type; Right : Decimal_Type) return Decimal_Type is <>; function Decimal_Remainder_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; with function "rem"(Left : Decimal_Type; Right : Decimal_Type) return Decimal_Type is <>; function Decimal_Remainder_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; with function "rem"(Left : Decimal_Type; Right : Decimal_Type) return Decimal_Type is <>; function Decimal_Remainder_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; with function "mod"(Left : Decimal_Type; Right : Decimal_Type) return Decimal_Type is <>; function Decimal_Modulus_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; with function "mod"(Left : Decimal_Type; Right : Decimal_Type) return Decimal_Type is <>; function Decimal_Modulus_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; with function "mod"(Left : Decimal_Type; Right : Decimal_Type) return Decimal_Type is <>; function Decimal_Modulus_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Decimal_Matrix_Type with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Equal_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Equal_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Equal_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Lesser_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Lesser_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Lesser_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Greater_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Greater_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Greater_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Lesser_Or_Equal_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Lesser_Or_Equal_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Lesser_Or_Equal_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Greater_Or_Equal_Matrix_Matrix(Left : Decimal_Matrix_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Greater_Or_Equal_Matrix_Scalar(Left : Decimal_Matrix_Type; Right : Decimal_Type) return Boolean with Pure_Function; generic type Decimal_Type is delta <> digits <>; type Decimal_Matrix_Type is array(Positive range <>, Positive range <>) of Decimal_Type; function Decimal_Greater_Or_Equal_Scalar_Matrix(Left : Decimal_Type; Right : Decimal_Matrix_Type) return Boolean with Pure_Function; ------------------ -- Float Matrix -- ------------------ generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Assert_Matrix(Value : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Negate_Matrix(Value : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Absolute_Value_Matrix(Value : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Add_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Add_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Add_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Subtract_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Subtract_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Subtract_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Multiply_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Multiply_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Multiply_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Divide_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Divide_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Divide_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; with function "rem"(Left : Float_Type; Right : Float_Type) return Float_Type is <>; function Float_Remainder_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; with function "rem"(Left : Float_Type; Right : Float_Type) return Float_Type is <>; function Float_Remainder_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; with function "rem"(Left : Float_Type; Right : Float_Type) return Float_Type is <>; function Float_Remainder_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; with function "mod"(Left : Float_Type; Right : Float_Type) return Float_Type is <>; function Float_Modulus_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; with function "mod"(Left : Float_Type; Right : Float_Type) return Float_Type is <>; function Float_Modulus_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; with function "mod"(Left : Float_Type; Right : Float_Type) return Float_Type is <>; function Float_Modulus_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Float_Matrix_Type with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Equal_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Equal_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Equal_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Lesser_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Lesser_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Lesser_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Greater_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Greater_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Greater_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Lesser_Or_Equal_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Lesser_Or_Equal_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Lesser_Or_Equal_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Greater_Or_Equal_Matrix_Matrix(Left : Float_Matrix_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function, Pre => Left'Length = Right'Length; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Greater_Or_Equal_Matrix_Scalar(Left : Float_Matrix_Type; Right : Float_Type) return Boolean with Pure_Function; generic type Float_Type is digits <>; type Float_Matrix_Type is array(Positive range <>, Positive range <>) of Float_Type; function Float_Greater_Or_Equal_Scalar_Matrix(Left : Float_Type; Right : Float_Matrix_Type) return Boolean with Pure_Function; end Generics.Mathematics.Matrices;
charlie5/cBound
Ada
1,548
ads
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_change_save_set_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; mode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; window : aliased xcb.xcb_window_t; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_change_save_set_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_change_save_set_request_t.Item, Element_Array => xcb.xcb_change_save_set_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_change_save_set_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_change_save_set_request_t.Pointer, Element_Array => xcb.xcb_change_save_set_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_change_save_set_request_t;
sungyeon/drake
Ada
7,372
adb
with Ada.Containers.Generic_Array_Access_Types; with Ada.Unchecked_Deallocation; procedure cntnr_array_sorting is type SA is access String; procedure Free is new Ada.Unchecked_Deallocation (String, SA); Data : SA := null; Comp_Count : Natural; Swap_Count : Natural; procedure Setup (Source : String) is begin Free (Data); Data := new String'(Source); Comp_Count := 0; Swap_Count := 0; end Setup; procedure Report ( Message : String; Source_Location : String := Ada.Debug.Source_Location; Enclosing_Entity : String := Ada.Debug.Enclosing_Entity) is begin Ada.Debug.Put ( Message & Natural'Image (Comp_Count) & Natural'Image (Swap_Count), Source_Location => Source_Location, Enclosing_Entity => Enclosing_Entity); end Report; procedure Increment (X : in out Natural) is begin X := X + 1; end Increment; function LT (Left, Right : Character) return Boolean is pragma Debug (Increment (Comp_Count)); begin return Left < Right; end LT; procedure Swap (Data : in out SA; Left, Right : Integer) is pragma Debug (Increment (Swap_Count)); Temp : Character := Data (Left); begin Data (Left) := Data (Right); Data (Right) := Temp; end Swap; package SA_Op is new Ada.Containers.Generic_Array_Access_Types ( Positive, Character, String, SA); package SA_Reversing is new SA_Op.Generic_Reversing (Swap); package SA_Sorting is new SA_Op.Generic_Sorting (LT, Swap); begin -- Is_Sorted begin Setup (""); pragma Assert (SA_Sorting.Is_Sorted (Data)); Setup ("ABCDEF"); pragma Assert (SA_Sorting.Is_Sorted (Data)); Setup ("ABCCDD"); pragma Assert (SA_Sorting.Is_Sorted (Data)); Setup ("ABCBA"); pragma Assert (not SA_Sorting.Is_Sorted (Data)); end; -- In_Place_Reverse begin Setup (""); SA_Reversing.Reverse_Elements (Data); pragma Assert (Data.all = ""); pragma Assert (Swap_Count = 0); Setup ("A"); SA_Reversing.Reverse_Elements (Data); pragma Assert (Data.all = "A"); pragma Assert (Swap_Count = 0); Setup ("BA"); SA_Reversing.Reverse_Elements (Data); pragma Assert (Data.all = "AB"); pragma Assert (Swap_Count = 1); Setup ("CBA"); SA_Reversing.Reverse_Elements (Data); pragma Assert (Data.all = "ABC"); pragma Assert (Swap_Count = 1); Setup ("DCBA"); SA_Reversing.Reverse_Elements (Data); pragma Assert (Data.all = "ABCD"); pragma Assert (Swap_Count = 2); end; -- rotate an empty data declare Source : constant String := ""; Middle : constant Integer := 0; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = ""); pragma Assert (Swap_Count = 0); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = ""); pragma Assert (Swap_Count = 0); end; -- rotate 1 declare Source : constant String := "A"; Middle : constant Integer := 1; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "A"); pragma Assert (Swap_Count = 0); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "A"); pragma Assert (Swap_Count = 0); end; -- rotate 2 declare Source : constant String := "BA"; Middle : constant Integer := 1; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "AB"); pragma Assert (Swap_Count = 1); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "AB"); pragma Assert (Swap_Count = 1); end; -- rotate 3-1 declare Source : constant String := "CAB"; Middle : constant Integer := 1; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABC"); pragma Debug (Report ("R3-1 rev")); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABC"); pragma Debug (Report ("R3-1 jug")); end; -- rotate 3-2 declare Source : constant String := "BCA"; Middle : constant Integer := 2; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABC"); pragma Debug (Report ("R3-2 rev")); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABC"); pragma Debug (Report ("R3-2 jug")); end; -- rotate 4-1 declare Source : constant String := "DABC"; Middle : constant Integer := 1; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABCD"); pragma Debug (Report ("R4-1 rev")); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABCD"); pragma Debug (Report ("R4-1 jug")); end; -- rotate 4-2 declare Source : constant String := "CDAB"; Middle : constant Integer := 2; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABCD"); pragma Debug (Report ("R4-2 rev")); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABCD"); pragma Debug (Report ("R4-2 jug")); end; -- rotate 4-3 declare Source : constant String := "BCDA"; Middle : constant Integer := 3; begin Setup (Source); SA_Reversing.Reverse_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABCD"); pragma Debug (Report ("R4-3 rev")); Setup (Source); SA_Reversing.Juggling_Rotate_Elements (Data, Before => Middle + 1); pragma Assert (Data.all = "ABCD"); pragma Debug (Report ("R4-3 jug")); end; -- sort a sorted data declare Source : constant String := "ABBCDDEFFG"; begin Setup (Source); SA_Sorting.Insertion_Sort (Data); pragma Assert (Data.all = "ABBCDDEFFG"); pragma Assert (Swap_Count = 0); pragma Debug (Report ("S1 ins")); Setup (Source); SA_Sorting.Merge_Sort (Data); pragma Assert (Data.all = "ABBCDDEFFG"); pragma Assert (Swap_Count = 0); pragma Debug (Report ("S1 ipm")); end; -- sort a random data declare Source : constant String := "DBFGHIECJA"; begin Setup (Source); SA_Sorting.Insertion_Sort (Data); pragma Assert (Data.all = "ABCDEFGHIJ"); pragma Debug (Report ("S2 ins")); Setup (Source); SA_Sorting.Merge_Sort (Data); pragma Assert (Data.all = "ABCDEFGHIJ"); pragma Debug (Report ("S2 ipm")); end; -- sort a random long data declare Source : constant String := "LOOOOOOOOOONGDATA"; begin Setup (Source); SA_Sorting.Insertion_Sort (Data); pragma Assert (Data.all = "AADGLNOOOOOOOOOOT"); pragma Debug (Report ("S3 ins")); Setup (Source); SA_Sorting.Merge_Sort (Data); pragma Assert (Data.all = "AADGLNOOOOOOOOOOT"); pragma Debug (Report ("S3 ipm")); end; -- sort a keyboard declare Source : constant String := "ASDFGHJKL"; begin Setup (Source); SA_Sorting.Insertion_Sort (Data); pragma Assert (Data.all = "ADFGHJKLS"); pragma Debug (Report ("S4 ins")); Setup (Source); SA_Sorting.Merge_Sort (Data); pragma Assert (Data.all = "ADFGHJKLS"); pragma Debug (Report ("S4 ipm")); end; Free (Data); pragma Debug (Ada.Debug.Put ("OK")); end cntnr_array_sorting;
onox/orka
Ada
55,610
adb
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2019 onox <[email protected]> -- -- 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. with Ada.Containers.Indefinite_Hashed_Maps; with Ada.Strings.Fixed; with Ada.Strings.Hash; with Ada.Strings.Unbounded; with Ada.Streams; with Ada.Unchecked_Conversion; with GL.Objects.Textures; with GL.Toggles; with GL.Types; with Orka.Logging.Default; with Orka.Rendering.Drawing; with Orka.Rendering.Programs.Modules; with Orka.Rendering.Programs.Uniforms; with Orka.Strings; with Orka.Types; package body Orka.Frame_Graphs is use all type Orka.Logging.Default_Module; use all type Orka.Logging.Severity; procedure Log is new Orka.Logging.Default.Generic_Log (Renderer); function Trim_Image (Value : Integer) return String is (Orka.Strings.Trim (Integer'Image (Value))); function Trim_Image (Value : Size) return String is (Orka.Strings.Trim (Value'Image)); function Trim_Image (Value : Render_Pass_Index) return String is (Trim_Image (Positive (Value))); function Trim_Image (Value : Size_3D) return String is (Trim_Image (Value (X)) & Orka.Strings.Unicode (" × ") & Trim_Image (Value (Y)) & Orka.Strings.Unicode (" × ") & Trim_Image (Value (Z))); function Trim_Image (Value : GL.Buffers.Buffer_Bits) return String is package SU renames Ada.Strings.Unbounded; Result : SU.Unbounded_String; begin if Value.Color then SU.Append (Result, " color"); end if; if Value.Depth then SU.Append (Result, " depth"); end if; if Value.Stencil then SU.Append (Result, " stencil"); end if; return Orka.Strings.Trim (SU.To_String (Result)); end Trim_Image; procedure Log_Resource (Value : Resource) is begin Log (Debug, " " & (+Value.Name) & ":"); Log (Debug, " kind: " & Value.Kind'Image); Log (Debug, " format: " & Value.Format'Image); Log (Debug, " size: " & Trim_Image (Value.Size)); Log (Debug, " samples: " & Trim_Image (Value.Samples)); Log (Debug, " version: " & Trim_Image (Natural (Value.Version))); end Log_Resource; function Name (Object : Resource_Data) return String is (+Object.Description.Name); function "+" (Value : Name_Strings.Bounded_String) return String is (Name_Strings.To_String (Value)); function "+" (Value : String) return Name_Strings.Bounded_String is (Name_Strings.To_Bounded_String (Value)); function Name (Object : Render_Pass) return String is (+Object.Frame_Graph.Passes (Object.Index).Name); function Name (Pass : Render_Pass_Data) return String is (+Pass.Name); ----------------------------------------------------------------------------- procedure Find_Resource (Object : in out Frame_Graph; Subject : Resource; Handle : out Handle_Type; Found : out Boolean) is use type Name_Strings.Bounded_String; begin Found := False; for Index in 1 .. Object.Resources.Length loop declare Description : Resource renames Object.Resources (Index).Description; Implicit : Boolean renames Object.Resources (Index).Implicit; begin if Subject.Name = Description.Name and Subject.Version = Description.Version and not Implicit then if Description /= Subject then raise Constraint_Error with "Already added different resource '" & (+Subject.Name) & "'"; end if; Found := True; Handle := Index; exit; end if; end; end loop; end Find_Resource; procedure Add_Resource (Object : in out Frame_Graph; Subject : Resource; Handle : out Handle_Type) is Found : Boolean; begin Object.Find_Resource (Subject, Handle, Found); if not Found then Object.Resources.Append ((Description => Subject, others => <>)); Handle := Object.Resources.Length; end if; end Add_Resource; ----------------------------------------------------------------------------- type Input_Resource is record Mode : Read_Mode; Data : Resource; Binding : Binding_Point; Implicit : Boolean; Written : Boolean; -- Written to by a previous render pass end record; type Output_Resource is record Mode : Write_Mode; Data : Resource; Binding : Binding_Point; Implicit : Boolean; Read : Boolean; -- Read by a subsequent render pass end record; type Input_Resource_Array is array (Positive range <>) of Input_Resource; type Output_Resource_Array is array (Positive range <>) of Output_Resource; ----------------------------------------------------------------------------- subtype Attachment_Format is Orka.Rendering.Textures.Format_Kind; procedure Verify_Depth_Stencil (Pass : Render_Pass_Data; Format : Attachment_Format) is begin if Pass.Has_Depth and then Format in Depth_Stencil | Depth then raise Program_Error with "Render pass '" & Name (Pass) & "' already has a depth attachment"; end if; if Pass.Has_Stencil and then Format in Depth_Stencil | Stencil then raise Program_Error with "Render pass '" & Name (Pass) & "' already has a stencil attachment"; end if; end Verify_Depth_Stencil; procedure Set_Depth_Stencil (Pass : in out Render_Pass_Data; Format : Attachment_Format) is begin if Format in Depth_Stencil | Depth then Pass.Has_Depth := True; end if; if Format in Depth_Stencil | Stencil then Pass.Has_Stencil := True; end if; end Set_Depth_Stencil; function Get_Attachment_Format (Format : GL.Pixels.Internal_Format) return Attachment_Format renames Orka.Rendering.Textures.Get_Format_Kind; ----------------------------------------------------------------------------- use type GL.Objects.Textures.Texture; package Texture_Maps is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => GL.Objects.Textures.Texture, Hash => Ada.Strings.Hash, Equivalent_Keys => "="); Textures : Texture_Maps.Map; function Get_Texture (Subject : Resource) return GL.Objects.Textures.Texture with Post => Get_Texture'Result.Allocated is begin return Textures.Element (+Subject.Name); exception when Constraint_Error => declare Result : GL.Objects.Textures.Texture (Subject.Kind); begin Result.Allocate_Storage (Levels => Size (Subject.Levels), Samples => Size (Subject.Samples), Format => Subject.Format, Width => Subject.Size (X), Height => Subject.Size (Y), Depth => Subject.Size (Z)); Textures.Insert (+Subject.Name, Result); return Result; end; end Get_Texture; ----------------------------------------------------------------------------- procedure Add_Input (Object : Render_Pass; Subject : Resource; Mode : Read_Mode; Binding : Binding_Point; Handle : out Handle_Type; Implicit : Boolean); function Add_Pass (Object : in out Frame_Graph; Name : String; State : Rendering.States.State; Program : Rendering.Programs.Program; Callback : not null Program_Callback; Side_Effect, Present : Boolean) return Render_Pass'Class is begin Object.Passes.Append ((Name => +Name, Side_Effect => Side_Effect, Present => Present, State => State, Program => Program, Callback => Callback, others => <>)); return Render_Pass' (Frame_Graph => Object'Access, Index => Object.Passes.Length); end Add_Pass; function Add_Pass (Object : in out Frame_Graph; Name : String; State : Rendering.States.State; Program : Rendering.Programs.Program; Callback : not null Program_Callback; Side_Effect : Boolean := False) return Render_Pass'Class is (Object.Add_Pass (Name, State, Program, Callback, Side_Effect => Side_Effect, Present => False)); procedure Unused_Callback (Program : in out Rendering.Programs.Program) is null; procedure Add_Present (Object : in out Frame_Graph; Subject : Resource; Handle : out Handle_Type) is Found : Boolean; begin Object.Find_Resource (Subject, Handle, Found); if not Found then raise Constraint_Error with "Presented resource not found in graph"; end if; declare Unused_Program : Rendering.Programs.Program; Pass : constant Render_Pass'Class := Object.Add_Pass ("Present", (others => <>), Unused_Program, Unused_Callback'Access, Side_Effect => True, Present => True); begin -- The present pass does not always read the resource: the previous -- render pass will use the default framebuffer to write to the -- resource (mode 1), or the present pass will blit (mode 2) or -- render (mode 3) the resource to the default framebuffer Render_Pass (Pass).Add_Input (Subject, Texture_Read, 0, Handle, Implicit => False); Object.Present_Pass := Pass.Index; end; end Add_Present; ----------------------------------------------------------------------------- procedure Add_Output (Object : Render_Pass; Subject : Resource; Write : Write_Mode; Binding : Binding_Point; Handle : out Handle_Type; Implicit : Boolean) is Graph : Orka.Frame_Graphs.Frame_Graph renames Object.Frame_Graph.all; Pass : Render_Pass_Data renames Graph.Passes (Object.Index); Attachment : constant Attachment_Format := Get_Attachment_Format (Subject.Format); begin if Pass.Write_Count > 0 and then Pass.Write_Offset + Pass.Write_Count /= Graph.Write_Handles.Length + 1 then raise Program_Error with "Cannot interleave Add_Output calls for different passes"; end if; if Implicit and Write = Framebuffer_Attachment then Verify_Depth_Stencil (Pass, Attachment); declare Handle : Handle_Type; Prev_Subject : Resource := Subject; begin Prev_Subject.Version := Subject.Version - 1; Object.Add_Input (Prev_Subject, Framebuffer_Attachment, Binding, Handle, Implicit => False); Graph.Resources (Handle).Implicit := True; end; end if; Add_Resource (Graph, Subject, Handle); declare Resource : Resource_Data renames Graph.Resources (Handle); begin if Resource.Render_Pass /= No_Render_Pass then raise Constraint_Error with "Resource '" & Name (Resource) & "'" & " already written by pass '" & Name (Graph.Passes (Resource.Render_Pass)) & "'"; end if; pragma Assert (Resource.Output_Mode = Not_Used); Resource.Render_Pass := Object.Index; Resource.Output_Mode := Write; Resource.Output_Binding := Binding; end; -- Register resource as 'written' by the render pass Graph.Write_Handles.Append (Handle); if Pass.Write_Count = 0 then Pass.Write_Offset := Graph.Write_Handles.Length; end if; Pass.Write_Count := Pass.Write_Count + 1; Set_Depth_Stencil (Pass, Attachment); end Add_Output; procedure Add_Output (Object : Render_Pass; Subject : Resource; Mode : Write_Mode; Binding : Binding_Point) is Handle : Handle_Type; begin Object.Add_Output (Subject, Mode, Binding, Handle, Implicit => True); pragma Assert (Object.Frame_Graph.Resources (Handle).Output_Mode = Mode); pragma Assert (Object.Frame_Graph.Resources (Handle).Output_Binding = Binding); end Add_Output; procedure Add_Input (Object : Render_Pass; Subject : Resource; Mode : Read_Mode; Binding : Binding_Point; Handle : out Handle_Type; Implicit : Boolean) is Graph : Orka.Frame_Graphs.Frame_Graph renames Object.Frame_Graph.all; Pass : Render_Pass_Data renames Graph.Passes (Object.Index); Attachment : constant Attachment_Format := Get_Attachment_Format (Subject.Format); begin if Pass.Read_Count > 0 and then Pass.Read_Offset + Pass.Read_Count /= Graph.Read_Handles.Length + 1 then raise Program_Error with "Cannot interleave Add_Input calls for different passes"; end if; if Implicit and Mode = Framebuffer_Attachment then if Attachment = Color then raise Program_Error with "Use Add_Output or Add_Input_Output for color resource"; end if; Verify_Depth_Stencil (Pass, Attachment); declare Handle : Handle_Type; Next_Subject : Resource := Subject; begin Next_Subject.Version := Subject.Version + 1; Object.Add_Output (Next_Subject, Framebuffer_Attachment, Binding, Handle, Implicit => False); Graph.Resources (Handle).Implicit := True; end; end if; Add_Resource (Graph, Subject, Handle); declare Resource : Resource_Data renames Graph.Resources (Handle); begin -- Resource is not considered modified if the next version is implicit if Resource.Modified then raise Constraint_Error with "Cannot read old version of modified resource '" & Name (Resource) & "'"; end if; -- Because a resource records only one input mode, verify this -- resource is read by multiple render passes using only one -- particular method if Resource.Input_Mode not in Not_Used | Mode then raise Constraint_Error with "Resource '" & Name (Resource) & "' must be read as " & Resource.Input_Mode'Image; end if; Resource.Read_Count := Resource.Read_Count + 1; Resource.Input_Mode := Mode; Resource.Input_Binding := Binding; end; -- Register resource as 'read' by the render pass Graph.Read_Handles.Append (Handle); if Pass.Read_Count = 0 then Pass.Read_Offset := Graph.Read_Handles.Length; end if; Pass.Read_Count := Pass.Read_Count + 1; Set_Depth_Stencil (Pass, Attachment); end Add_Input; procedure Add_Input (Object : Render_Pass; Subject : Resource; Mode : Read_Mode; Binding : Binding_Point) is Handle : Handle_Type; begin Object.Add_Input (Subject, Mode, Binding, Handle, Implicit => True); pragma Assert (Object.Frame_Graph.Resources (Handle).Input_Mode = Mode); pragma Assert (Object.Frame_Graph.Resources (Handle).Input_Binding = Binding); end Add_Input; function Add_Input_Output (Object : Render_Pass; Subject : Resource; Mode : Read_Write_Mode; Binding : Binding_Point) return Resource is Graph : Orka.Frame_Graphs.Frame_Graph renames Object.Frame_Graph.all; Handle : Handle_Type; Read : constant Read_Mode := (case Mode is when Not_Used => Not_Used, when Framebuffer_Attachment => Framebuffer_Attachment, when Image_Load_Store => Image_Load); Write : constant Write_Mode := (case Mode is when Not_Used => Not_Used, when Framebuffer_Attachment => Framebuffer_Attachment, when Image_Load_Store => Image_Store); Next_Subject : Resource := Subject; begin Object.Add_Input (Subject, Read, Binding, Handle, Implicit => False); declare Resource : Resource_Data renames Graph.Resources (Handle); begin Resource.Modified := True; end; Next_Subject.Version := Subject.Version + 1; Object.Add_Output (Next_Subject, Write, Binding, Handle, Implicit => False); return Next_Subject; end Add_Input_Output; function Cull (Object : Frame_Graph; Present : Resource) return Renderable_Graph'Class is Stack : Handle_Vectors.Vector (Positive (Object.Resources.Length)); Index : Handle_Type; begin return Result : Renderable_Graph (Maximum_Passes => Object.Maximum_Passes, Maximum_Handles => Object.Maximum_Handles, Maximum_Resources => Object.Maximum_Resources) do -- Copy data structures before culling Result.Graph.Passes := Object.Passes; Result.Graph.Resources := Object.Resources; Result.Graph.Read_Handles := Object.Read_Handles; Result.Graph.Write_Handles := Object.Write_Handles; Result.Initialized := False; Add_Present (Result.Graph, Present, Index); declare Resource : Resource_Data renames Result.Graph.Resources (Index); begin if Resource.Render_Pass = No_Render_Pass then raise Constraint_Error with "Presented resource not written by a pass"; end if; end; -- Raise an error if there is a render pass that will be -- culled immediately. This simplifies the stack so that it -- only needs to contain indices of resources. for Pass of Result.Graph.Passes loop Pass.References := Pass.Write_Count; if not Pass.Side_Effect and Pass.References = 0 then raise Constraint_Error with "Render pass '" & (+Pass.Name) & "' does not write to any resource"; end if; end loop; for Index in 1 .. Result.Graph.Resources.Length loop declare Resource : Resource_Data renames Result.Graph.Resources (Index); begin Resource.References := Resource.Read_Count; if Resource.References = 0 then if Resource.Render_Pass = No_Render_Pass then raise Constraint_Error with "Resource '" & Name (Resource) & " not connected"; end if; Stack.Append (Index); end if; end; end loop; while not Stack.Is_Empty loop Stack.Remove_Last (Index); declare -- Pass is the render pass that writes to the resource Resource : Resource_Data renames Result.Graph.Resources (Index); Pass : Render_Pass_Data renames Result.Graph.Passes (Resource.Render_Pass); -- Assert that the render pass does write to the resource Write_Offset : Positive renames Pass.Write_Offset; Write_Count : Natural renames Pass.Write_Count; pragma Assert (for some Offset in Write_Offset .. Write_Offset + Write_Count - 1 => Result.Graph.Write_Handles (Offset) = Index); begin Pass.References := Pass.References - 1; -- Update ref count of resources read by the render pass -- if the render pass got culled if not Pass.Side_Effect and Pass.References = 0 then for Index in Pass.Read_Offset .. Pass.Read_Offset + Pass.Read_Count - 1 loop declare Resource_Handle : constant Handle_Type := Result.Graph.Read_Handles (Index); Resource : Resource_Data renames Result.Graph.Resources (Resource_Handle); begin Resource.References := Resource.References - 1; if Resource.References = 0 and Resource.Render_Pass /= No_Render_Pass then Stack.Append (Resource_Handle); end if; end; end loop; end if; end; end loop; -- Here we are done with culling. Next step is to iterate over -- the passes that survived culling and create framebuffers and -- textures. end return; end Cull; function Input_Resources (Object : Renderable_Graph; Pass : Render_Pass_Data) return Input_Resource_Array is begin return Result : Input_Resource_Array (1 .. Pass.Read_Count) do for Index in 1 .. Pass.Read_Count loop declare Data : Resource_Data renames Object.Graph.Resources (Object.Graph.Read_Handles (Pass.Read_Offset + Index - 1)); begin Result (Index) := (Mode => Data.Input_Mode, Data => Data.Description, Binding => Data.Input_Binding, Written => Data.Render_Pass /= No_Render_Pass, Implicit => Data.Implicit); end; end loop; end return; end Input_Resources; function Output_Resources (Object : Renderable_Graph; Pass : Render_Pass_Data) return Output_Resource_Array is begin return Result : Output_Resource_Array (1 .. Pass.Write_Count) do for Index in 1 .. Pass.Write_Count loop declare Data : Resource_Data renames Object.Graph.Resources (Object.Graph.Write_Handles (Pass.Write_Offset + Index - 1)); begin Result (Index) := (Mode => Data.Output_Mode, Data => Data.Description, Binding => Data.Output_Binding, Read => Data.References > 0, Implicit => Data.Implicit); end; end loop; end return; end Output_Resources; function Is_Initialized (Object : Renderable_Graph) return Boolean is (Object.Initialized); procedure Initialize (Object : in out Renderable_Graph; Location : Resources.Locations.Location_Ptr; Default : Rendering.Framebuffers.Framebuffer) is subtype Selector_Type is GL.Buffers.Explicit_Color_Buffer_Selector; subtype Buffer_Type is GL.Buffers.Draw_Buffer_Index; subtype Point_Type is Rendering.Framebuffers.Color_Attachment_Point; function To_Color_Buffer (Value : Attachment_Point) return Selector_Type is (Selector_Type'Val (Selector_Type'Pos (Selector_Type'First) + Value)); function To_Attachment_Point (Value : Attachment_Point) return Point_Type is (Point_Type'Val (Point_Type'Pos (Point_Type'First) + Value)); Present_Pass : Render_Pass_Data renames Object.Graph.Passes (Object.Graph.Present_Pass); pragma Assert (Present_Pass.Read_Count = 1); -- Look up the resource that is going to be presented to the screen Present_Resource_Handle : constant Handle_Type := Object.Graph.Read_Handles (Present_Pass.Read_Offset); Present_Resource : Resource_Data renames Object.Graph.Resources (Present_Resource_Handle); Default_Size : constant Size_3D := (Default.Width, Default.Height, 1); Last_Pass_Index : constant Render_Pass_Index := Present_Resource.Render_Pass; begin declare package Programs renames Orka.Rendering.Programs; Resource : Resource_Data renames Present_Resource; Format : constant Attachment_Format := Get_Attachment_Format (Resource.Description.Format); -- Look up the last render pass *before* the present pass Last_Render_Pass : Render_Pass_Data renames Object.Graph.Passes (Last_Pass_Index); Attachments : Natural := 0; Has_Non_Color_Attachment : Boolean := False; begin -- Mode 1: Previous render pass has one FB color attachment (this resource) -- Action: Previous render pass can use the default framebuffer -- -- Mode 2: Previous render pass has multiple FB color attachments -- or other non-color FB attachments -- Action: Blit the resource to the default framebuffer -- -- Mode 3: Resource is not written as a FB color attachment -- or resource is a depth and/or stencil attachment -- Action: Bind the resource as a texture and render to the -- default framebuffer if Resource.Output_Mode /= Framebuffer_Attachment or Format /= Color then -- Mode 3: Bind resource as texture and render to default framebuffer -- (Presented resource is added as input to present pass in procedure Add_Present) Object.Present_Mode := Render_To_Default; Object.Present_Program := Programs.Create_Program (Programs.Modules.Create_Module (Location, VS => "oversized-triangle.vert", FS => "frame-graph-present.frag")); Object.Present_Program.Uniform ("screenResolution").Set_Vector (Orka.Types.Singles.Vector4' (Orka.Float_32 (Default.Width), Orka.Float_32 (Default.Height), 0.0, 0.0)); Log (Warning, "Presenting " & Name (Resource) & " using extra render pass"); if Resource.Output_Mode /= Framebuffer_Attachment then Log (Warning, " output mode: " & Resource.Output_Mode'Image & " (/= " & Read_Mode'Image (Framebuffer_Attachment) & ")"); end if; if Format /= Color then Log (Warning, " format: " & Format'Image & " (/= " & Color'Image & ")"); end if; else for Last_Resource of Object.Output_Resources (Last_Render_Pass) loop if Last_Resource.Mode = Framebuffer_Attachment then case Get_Attachment_Format (Last_Resource.Data.Format) is when Color => Attachments := Attachments + 1; when Depth | Depth_Stencil | Stencil => -- Cannot use mode 1, because we have no control over the format -- of the depth/stencil buffer of the default framebuffer Has_Non_Color_Attachment := True; end case; end if; end loop; if Attachments = 1 and not Has_Non_Color_Attachment and Resource.Description.Kind = Texture_2D and Resource.Description.Size = Default_Size and Resource.Description.Samples = Natural (Default.Samples) then -- Mode 1: Use Default as the framebuffer of Last_Render_Pass Object.Present_Mode := Use_Default; Log (Debug, "Presenting " & Name (Resource) & " using default framebuffer"); elsif Resource.Description.Kind in Texture_2D | Texture_2D_Multisample then -- Mode 2 Object.Present_Mode := Blit_To_Default; Log (Warning, "Presenting " & Name (Resource) & " by blitting"); if Attachments /= 1 or Has_Non_Color_Attachment then Log (Warning, " last render pass:"); Log (Warning, " name: " & Name (Last_Render_Pass)); if Attachments /= 1 then Log (Warning, " attachments: " & Trim_Image (Attachments) & " (/= 1)"); end if; if Has_Non_Color_Attachment then Log (Warning, " has depth or stencil attachments"); end if; end if; if Resource.Description.Kind /= Texture_2D then Log (Warning, " kind: " & Resource.Description.Kind'Image & " (/= " & Texture_2D'Image & ")"); end if; if Resource.Description.Size /= Default_Size then Log (Warning, " scaling: from " & Trim_Image (Resource.Description.Size) & " to " & Trim_Image (Default_Size)); end if; if Resource.Description.Samples /= Natural (Default.Samples) then Log (Warning, " samples: " & Trim_Image (Resource.Description.Samples) & " (/= " & Trim_Image (Natural (Default.Samples)) & ")"); end if; end if; end if; end; for Index in 1 .. Object.Graph.Passes.Length loop declare Pass : Render_Pass_Data renames Object.Graph.Passes (Index); Width, Height : Size := Size'First; Samples_Attachments : Natural := Natural'First; Clear_Mask : GL.Buffers.Buffer_Bits := (others => False); Invalidate_Mask : GL.Buffers.Buffer_Bits := (others => False); -- If Clear_Buffers = Render_Buffers then we only need to call -- Set_Draw_Buffers once after creating the framebuffer, otherwise -- buffers need to be set before clearing and rendering Clear_Buffers : GL.Buffers.Color_Buffer_List (0 .. 7) := (others => GL.Buffers.None); Render_Buffers : GL.Buffers.Color_Buffer_List (0 .. 7) := (others => GL.Buffers.None); Buffers_Equal : Boolean := False; Invalidate_Points : Rendering.Framebuffers.Use_Point_Array := (others => False); Depth_Writes, Stencil_Writes : Boolean := True; Clear_Buffer, Invalidate_Buffer : Boolean; begin if Pass.Side_Effect or Pass.References > 0 then -- Clear input resources read as framebuffer attachments -- which are new (not written by a previous render pass) for Resource of Object.Input_Resources (Pass) loop if Resource.Mode = Framebuffer_Attachment then Clear_Buffer := not Resource.Written; case Get_Attachment_Format (Resource.Data.Format) is when Depth_Stencil => Clear_Mask.Depth := Clear_Buffer; Clear_Mask.Stencil := Clear_Buffer; when Depth => Clear_Mask.Depth := Clear_Buffer; when Stencil => Clear_Mask.Stencil := Clear_Buffer; when Color => -- Clear the color buffers, but only those that -- do not have a render pass that writes to it if Clear_Buffer then Clear_Buffers (Buffer_Type (Resource.Binding)) := To_Color_Buffer (Resource.Binding); Clear_Mask.Color := True; end if; end case; end if; end loop; -- Present pass is always the default framebuffer. Make sure -- the color buffer of the default framebuffer is cleared when -- we manually need to blit or render some texture to the screen if Pass.Present then Clear_Mask.Color := True; end if; -- Invalidate output attachments that are transcient -- (not read by a subsequent render pass) for Resource of Object.Output_Resources (Pass) loop if Resource.Mode = Framebuffer_Attachment then Invalidate_Buffer := not Resource.Read; Samples_Attachments := Natural'Max (Samples_Attachments, Resource.Data.Samples); case Get_Attachment_Format (Resource.Data.Format) is when Depth_Stencil => Invalidate_Mask.Depth := Invalidate_Buffer; Invalidate_Mask.Stencil := Invalidate_Buffer; Depth_Writes := not Resource.Implicit; Stencil_Writes := not Resource.Implicit; when Depth => Invalidate_Mask.Depth := Invalidate_Buffer; Depth_Writes := not Resource.Implicit; when Stencil => Invalidate_Mask.Stencil := Invalidate_Buffer; Stencil_Writes := not Resource.Implicit; when Color => -- Invalidate the color buffers, but only those that -- are not read by a subsequent render pass if Invalidate_Buffer then Invalidate_Points (To_Attachment_Point (Resource.Binding)) := True; Invalidate_Mask.Color := True; end if; -- Even if the resource is not read, the buffer is -- still used as a draw buffer because the shader -- will probably render to it Render_Buffers (Buffer_Type (Resource.Binding)) := To_Color_Buffer (Resource.Binding); end case; end if; -- Compute maximum width and height over all the output -- resources (which may be attached to the framebuffer). -- Ideally all attachments have the same size, but the -- GL spec allows for them to be different. Furthermore, -- a framebuffer may have zero attachments, so iterate over -- all resources irrespective of their write mode. Width := Size'Max (Width, Resource.Data.Size (X)); Height := Size'Max (Height, Resource.Data.Size (Y)); end loop; if Pass.Write_Count = 0 then pragma Assert (Pass.Side_Effect); -- Use width and height from default framebuffer Width := Default.Width; Height := Default.Height; else pragma Assert (Width > 0 and Height > 0); end if; declare use type GL.Buffers.Color_Buffer_List; begin -- Output attachments always have a corresponding -- input resource (implicit if necessary), but if -- the resource is not new (written by previous pass) -- then the resource is not cleared Buffers_Equal := Clear_Buffers = Render_Buffers; end; -- Skip present pass if last normal render pass already uses default framebuffer if Object.Present_Mode /= Use_Default or not Pass.Present then Object.Framebuffers.Append ((Index => Index, Framebuffer => Framebuffer_Holders.To_Holder (if Object.Present_Mode = Use_Default and Last_Pass_Index = Index then Default elsif Object.Present_Mode /= Use_Default and Pass.Present then Default else Rendering.Framebuffers.Create_Framebuffer (Width => Width, Height => Height, Samples => Size (Samples_Attachments))), Clear_Mask => Clear_Mask, Invalidate_Mask => Invalidate_Mask, Clear_Buffers => Clear_Buffers, Render_Buffers => Render_Buffers, Buffers_Equal => Buffers_Equal, Invalidate_Points => Invalidate_Points, Depth_Writes => Depth_Writes, Stencil_Writes => Stencil_Writes)); if Object.Present_Mode = Use_Default and Last_Pass_Index = Index then Pass.Side_Effect := True; Pass.Present := True; elsif Object.Present_Mode = Blit_To_Default and Last_Pass_Index = Index then Object.Last_Pass_Index := Object.Framebuffers.Length; end if; declare procedure Set_Buffers (Framebuffer : in out Rendering.Framebuffers.Framebuffer) is use type GL.Buffers.Color_Buffer_Selector; begin -- Clear color to black and depth to 0.0 (because of reversed Z) Framebuffer.Set_Default_Values ((Color => (0.0, 0.0, 0.0, 1.0), Depth => 0.0, others => <>)); if Framebuffer.Default then -- The resource is 'read' by the present pass pragma Assert (not Invalidate_Mask.Color); if not Buffers_Equal then pragma Assert (for all Buffer of Clear_Buffers => Buffer = GL.Buffers.None); end if; if Object.Present_Mode = Use_Default then pragma Assert (Render_Buffers (Render_Buffers'First) = GL.Buffers.Color_Attachment0); pragma Assert (for all Index in Render_Buffers'First + 1 .. Render_Buffers'Last => Render_Buffers (Index) = GL.Buffers.None); -- Not calling Set_Draw_Buffers because the default -- framebuffer already has an initial draw buffer -- (GL.Buffers.Back_Left for double-buffered context) end if; else if Object.Present_Mode = Blit_To_Default and Last_Pass_Index = Index then -- Compute the point of the resource read by the present pass for Resource of Object.Output_Resources (Pass) loop if Resource.Mode = Framebuffer_Attachment and Get_Attachment_Format (Resource.Data.Format) = Color and Resource.Data = Present_Resource.Description then Framebuffer.Set_Read_Buffer (To_Color_Buffer (Resource.Binding)); end if; end loop; end if; if Buffers_Equal then Framebuffer.Set_Draw_Buffers (Render_Buffers); end if; for Resource of Object.Input_Resources (Pass) loop if Resource.Mode = Framebuffer_Attachment then -- TODO Support attaching layer of resource -- using value in 1 .. Resource.Data.Size (Z) if Get_Attachment_Format (Resource.Data.Format) /= Color then Framebuffer.Attach (Get_Texture (Resource.Data)); else Framebuffer.Attach (Texture => Get_Texture (Resource.Data), Attachment => To_Attachment_Point (Resource.Binding)); end if; end if; end loop; end if; end Set_Buffers; begin Object.Framebuffers (Object.Framebuffers.Length).Framebuffer.Update_Element (Set_Buffers'Access); end; end if; end if; end; end loop; Object.Initialized := True; end Initialize; procedure Log_Graph (Object : in out Renderable_Graph) is begin for Data of Object.Framebuffers loop declare Pass : Render_Pass_Data renames Object.Graph.Passes (Data.Index); pragma Assert (Pass.Side_Effect or else Pass.References > 0); procedure Execute_Pass (Framebuffer : Rendering.Framebuffers.Framebuffer) is use type GL.Buffers.Explicit_Color_Buffer_Selector; begin Log (Debug, "Pass " & Name (Pass) & " (" & Trim_Image (Data.Index) & ")"); Log (Debug, " count:"); Log (Debug, " read: " & Pass.Read_Count'Image); Log (Debug, " write: " & Pass.Write_Count'Image); Log (Debug, " references: " & Pass.References'Image); Log (Debug, " side effects: " & Pass.Side_Effect'Image); Log (Debug, " present: " & Pass.Present'Image); Log (Debug, " framebuffer: " & Framebuffer.Image); Log (Debug, " writes:"); Log (Debug, " depth: " & Data.Depth_Writes'Image); Log (Debug, " stencil: " & Data.Stencil_Writes'Image); Log (Debug, " masks:"); Log (Debug, " clear: " & Trim_Image (Data.Clear_Mask)); Log (Debug, " invalidate: " & Trim_Image (Data.Invalidate_Mask)); if not Framebuffer.Default then Log (Debug, " invalidate:"); for I in Data.Invalidate_Points'Range loop if Data.Invalidate_Points (I) then Log (Debug, " - " & I'Image); end if; end loop; Log (Debug, " buffers:"); Log (Debug, " clear:"); for I in Data.Clear_Buffers'Range loop if Data.Clear_Buffers (I) /= GL.Buffers.None then Log (Debug, " - " & Data.Clear_Buffers (I)'Image); end if; end loop; if not Data.Buffers_Equal then Log (Debug, " render:"); for I in Data.Render_Buffers'Range loop if Data.Clear_Buffers (I) /= GL.Buffers.None then Log (Debug, " - " & Data.Render_Buffers (I)'Image); end if; end loop; end if; end if; Log (Debug, " inputs:"); for Resource of Object.Input_Resources (Pass) loop Log_Resource (Resource.Data); Log (Debug, " mode: " & Resource.Mode'Image); Log (Debug, " binding: " & Trim_Image (Natural (Resource.Binding))); Log (Debug, " implicit: " & Resource.Implicit'Image); Log (Debug, " written: " & Resource.Written'Image); end loop; Log (Debug, " outputs:"); for Resource of Object.Output_Resources (Pass) loop Log_Resource (Resource.Data); Log (Debug, " mode: " & Resource.Mode'Image); Log (Debug, " binding: " & Trim_Image (Natural (Resource.Binding))); Log (Debug, " implicit: " & Resource.Implicit'Image); Log (Debug, " read: " & Resource.Read'Image); end loop; if Pass.Present then Log (Debug, "Present pass mode: " & Object.Present_Mode'Image); case Object.Present_Mode is when Blit_To_Default => Log (Debug, "Blitting to default framebuffer from pass " & Trim_Image (Object.Framebuffers (Object.Last_Pass_Index).Index)); when Use_Default | Render_To_Default => null; end case; end if; end Execute_Pass; begin Data.Framebuffer.Query_Element (Execute_Pass'Access); end; end loop; end Log_Graph; procedure Render (Object : in out Renderable_Graph; Context : in out Contexts.Context'Class) is package Textures renames Orka.Rendering.Textures; begin for Data of Object.Framebuffers loop declare Pass : Render_Pass_Data renames Object.Graph.Passes (Data.Index); pragma Assert (Pass.Side_Effect or else Pass.References > 0); procedure Execute_Pass (Framebuffer : in out Rendering.Framebuffers.Framebuffer) is begin Framebuffer.Use_Framebuffer; GL.Buffers.Set_Depth_Mask (True); GL.Buffers.Set_Stencil_Mask (2#1111_1111#); if Data.Buffers_Equal then Framebuffer.Clear (Data.Clear_Mask); else Framebuffer.Set_Draw_Buffers (Data.Clear_Buffers); Framebuffer.Clear (Data.Clear_Mask); Framebuffer.Set_Draw_Buffers (Data.Render_Buffers); end if; GL.Buffers.Set_Depth_Mask (Data.Depth_Writes); GL.Buffers.Set_Stencil_Mask (if Data.Stencil_Writes then 2#1111_1111# else 0); GL.Toggles.Set (GL.Toggles.Depth_Test, Pass.Has_Depth); GL.Toggles.Set (GL.Toggles.Stencil_Test, Pass.Has_Stencil); -- Note: unconditional writing (write + no test) would require -- enable testing + GL.Buffers.Set_Depth_Function (GL.Types.Always), -- but is not supported because otherwise a user would need to call -- Add_Input_Output instead of just Add_Output for a depth resource -- Apply GL state updates Context.Update_State (Pass.State); -- Bind textures and images for Resource of Object.Input_Resources (Pass) loop case Resource.Mode is when Texture_Read => Textures.Bind (Get_Texture (Resource.Data), Textures.Texture, Natural (Resource.Binding)); when Image_Load => Textures.Bind (Get_Texture (Resource.Data), Textures.Image, Natural (Resource.Binding)); when Not_Used | Framebuffer_Attachment => null; end case; end loop; for Resource of Object.Output_Resources (Pass) loop -- Resource has already been attached in procedure Initialize -- if mode is Framebuffer_Attachment if Resource.Mode = Image_Store then Textures.Bind (Get_Texture (Resource.Data), Textures.Image, Natural (Resource.Binding)); end if; end loop; pragma Assert (Framebuffer.Default = Pass.Present); if Pass.Present then case Object.Present_Mode is when Use_Default => -- User-defined program will use default framebuffer to render to screen Pass.Program.Use_Program; Pass.Callback (Pass.Program); when Blit_To_Default => declare procedure Resolve_From_Pass (Other_Framebuffer : Rendering.Framebuffers.Framebuffer) is begin Other_Framebuffer.Resolve_To (Framebuffer); end Resolve_From_Pass; begin -- Blit input texture to screen Object.Framebuffers (Object.Last_Pass_Index).Framebuffer.Query_Element (Resolve_From_Pass'Access); end; when Render_To_Default => -- Render input texture to screen Object.Present_Program.Use_Program; GL.Buffers.Set_Depth_Function (GL.Types.Always); Orka.Rendering.Drawing.Draw (GL.Types.Triangles, 0, 3); GL.Buffers.Set_Depth_Function (GL.Types.Greater); -- FIXME Need to know depth func of previous state end case; else Pass.Program.Use_Program; Pass.Callback (Pass.Program); end if; -- Invalidate attachments that are transcient -- (not read by a subsequent render pass) Framebuffer.Invalidate (Data.Invalidate_Mask); -- TODO Use Data.Invalidate_Points for the color attachment points end Execute_Pass; begin Data.Framebuffer.Update_Element (Execute_Pass'Access); end; end loop; end Render; ---------------------------------------------------------------------- procedure Write_Graph (Object : in out Renderable_Graph; Location : Resources.Locations.Writable_Location_Ptr; Path : String) is package SU renames Ada.Strings.Unbounded; package SF renames Ada.Strings.Fixed; function Trim (Value : String) return String is (SF.Trim (Value, Ada.Strings.Both)); function Image (Value : String) return String is ('"' & Value & '"'); function Image (Value : Integer) return String is (Trim (Value'Image)); function Image (Value : Boolean) return String is (if Value then "true" else "false"); Result : SU.Unbounded_String; First : Boolean; procedure Append (Key, Value : String; Comma : Boolean := False) is begin SU.Append (Result, '"' & Key & '"' & ':' & Value); if Comma then SU.Append (Result, ','); end if; end Append; procedure Append_Comma is begin if not First then SU.Append (Result, ','); end if; First := False; end Append_Comma; begin SU.Append (Result, "{"); -- Vertices (render passes and resources) First := True; Append ("passes", "["); for Pass of Object.Graph.Passes loop Append_Comma; SU.Append (Result, '{'); Append ("name", Image (+Pass.Name), True); Append ("readCount", Image (Pass.Read_Count), True); Append ("writeCount", Image (Pass.Write_Count), True); Append ("sideEffect", Image (Pass.Side_Effect), True); Append ("references", Image (Pass.References)); SU.Append (Result, '}'); end loop; SU.Append (Result, "],"); First := True; Append ("resources", "["); for Resource of Object.Graph.Resources loop Append_Comma; SU.Append (Result, '{'); Append ("name", Image (+Resource.Description.Name), True); Append ("kind", Image (Resource.Description.Kind'Image), True); Append ("format", Image (Resource.Description.Format'Image), True); Append ("version", Image (Natural (Resource.Description.Version)), True); Append ("implicit", Image (Resource.Implicit), True); Append ("readMode", Image (Resource.Input_Mode'Image), True); Append ("writeMode", Image (Resource.Output_Mode'Image), True); Append ("readCount", Image (Resource.Read_Count), True); Append ("references", Image (Resource.References)); SU.Append (Result, '}'); end loop; SU.Append (Result, "],"); -- Edges (reads and writes) First := True; Append ("reads", "["); for Index in 1 .. Object.Graph.Passes.Length loop declare Pass : Render_Pass_Data renames Object.Graph.Passes (Index); begin -- Passes reading from resources for Resource_Index in Pass.Read_Offset .. Pass.Read_Offset + Pass.Read_Count - 1 loop declare Handle : Handle_Type renames Object.Graph.Read_Handles (Resource_Index); begin Append_Comma; SU.Append (Result, '{'); Append ("source", Image (Natural (Handle) - 1), True); Append ("target", Image (Natural (Index - 1))); SU.Append (Result, '}'); end; end loop; end; end loop; SU.Append (Result, "],"); First := True; Append ("writes", "["); for Index in 1 .. Object.Graph.Passes.Length loop declare Pass : Render_Pass_Data renames Object.Graph.Passes (Index); begin -- Passes writing to resources for Resource_Index in Pass.Write_Offset .. Pass.Write_Offset + Pass.Write_Count - 1 loop declare Handle : Handle_Type renames Object.Graph.Write_Handles (Resource_Index); begin Append_Comma; SU.Append (Result, '{'); Append ("source", Image (Natural (Index - 1)), True); Append ("target", Image (Natural (Handle) - 1)); SU.Append (Result, '}'); end; end loop; end; end loop; SU.Append (Result, "]"); SU.Append (Result, "}"); declare subtype JSON_Byte_Array is Resources.Byte_Array (1 .. Ada.Streams.Stream_Element_Offset (SU.Length (Result))); function Convert is new Ada.Unchecked_Conversion (Source => String, Target => JSON_Byte_Array); begin Location.Write_Data (Path, Convert (SU.To_String (Result))); end; end Write_Graph; end Orka.Frame_Graphs;
reznikmm/matreshka
Ada
3,540
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with GNAT.Table; with AMF.Internals.Tables.AMF_Types; package AMF.Internals.Tables.AMF_Link_Table is new GNAT.Table (AMF.Internals.Tables.AMF_Types.Link_Record, AMF_Link, 1, 20_000, 100);
FROL256/ada-ray-tracer
Ada
3,419
ads
with Interfaces; with Ada.Numerics.Float_Random; with Ada.Assertions; with Vector_Math; with Materials; with Lights; with Geometry; with Scene; with Ada.Unchecked_Deallocation; use Interfaces; use Vector_Math; use Materials; use Lights; use Ada.Assertions; use Geometry; package Ray_Tracer is width : Positive := 1024; height : Positive := 768; Threads_Num : Positive := 14*2; Anti_Aliasing_On : boolean := true; Max_Trace_Depth : Positive := 8; Background_Color : float3 := (0.0,0.0,0.0); G_Epsilon : constant float := 1.0e-5; -- small value for geometry offsets G_Epsilon_Div : constant float := 1.0e-20; -- small value for bsdf/pdf divisions g_gamma : constant float := 2.0; g_scn : Scene.Render_Scene; type ScreenBufferData is array(integer range <>, integer range <>) of Unsigned_32; type ScreenBufferDataRef is access ScreenBufferData; screen_buffer : ScreenBufferDataRef := null; type Render_Type is (RT_DEBUG, RT_WHITTED, PT_STUPID, PT_SHADOW, PT_MIS); -- render type procedure Init_Render(a_rendType : Render_Type); procedure Render_Pass; procedure Resize_Viewport(size_x,size_y : integer); function GetSPP return integer; function Finished return Boolean; private -- -- type AccumBuff is array (Integer range <>, integer range <>) of float3; type AccumBuffRef is access AccumBuff; -- pragma Atomic_Components(AccumBuff); -- atomic access to component of "AccumBuff" cannot be guaranteed type FloatBuff is array (Integer range <>, integer range <>) of float; type FloatBuffRef is access FloatBuff; type Color is record Red : float range 0.0..1.0; Green : float range 0.0..1.0; Blue : float range 0.0..1.0; end record; function ColorToUnsigned_32(c: Color) return Unsigned_32; function ToneMapping(v : float3) return Color; pragma Inline (ColorToUnsigned_32); pragma Inline (ToneMapping); function EyeRayDirection (x, y : Natural) return float3; function Compute_Shadow(hit_pos : float3; lpos : float3) return Shadow_Hit; type RayDirPack is array (0 .. 3) of float3; procedure Generate4RayDirections (x, y : in Natural; res : out RayDirPack); type IntRef is access integer; -- multithreaded rendering stuff -- task type Path_Trace_Thread(threadId : integer; Acc_Buff : AccumBuffRef) is entry Resume; entry Finish(spp : IntRef); end Path_Trace_Thread; type Path_Trace_Thread_Ptr is access Path_Trace_Thread; g_threads : array(0..Threads_Num-1) of Path_Trace_Thread_Ptr; g_threadsCreated : boolean := false; ---- instantiate deallocation procedures -- procedure delete is new Ada.Unchecked_Deallocation(Object => ScreenBufferData, Name => ScreenBufferDataRef); --procedure delete is new Ada.Unchecked_Deallocation(Object => RandomGenerator, Name => RandRef); procedure delete is new Ada.Unchecked_Deallocation(Object => integer, Name => IntRef); procedure delete is new Ada.Unchecked_Deallocation(Object => AccumBuff, Name => AccumBuffRef); procedure delete is new Ada.Unchecked_Deallocation(Object => Path_Trace_Thread, Name => Path_Trace_Thread_Ptr); function Find_Closest_Hit(r: Ray) return Hit; pragma Inline(Find_Closest_Hit); g_accBuff : AccumBuffRef := null; g_spp : IntRef := null; g_rend_type : Render_Type := PT_MIS; g_finish : Boolean := false; end Ray_Tracer;
reznikmm/matreshka
Ada
4,655
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.DOM_Documents; with Matreshka.ODF_String_Constants; with ODF.DOM.Iterators; with ODF.DOM.Visitors; package body Matreshka.ODF_Draw.Start_Glue_Point_Attributes is ------------ -- Create -- ------------ overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Draw_Start_Glue_Point_Attribute_Node is begin return Self : Draw_Start_Glue_Point_Attribute_Node do Matreshka.ODF_Draw.Constructors.Initialize (Self'Unchecked_Access, Parameters.Document, Matreshka.ODF_String_Constants.Draw_Prefix); end return; end Create; -------------------- -- Get_Local_Name -- -------------------- overriding function Get_Local_Name (Self : not null access constant Draw_Start_Glue_Point_Attribute_Node) return League.Strings.Universal_String is pragma Unreferenced (Self); begin return Matreshka.ODF_String_Constants.Start_Glue_Point_Attribute; end Get_Local_Name; begin Matreshka.DOM_Documents.Register_Attribute (Matreshka.ODF_String_Constants.Draw_URI, Matreshka.ODF_String_Constants.Start_Glue_Point_Attribute, Draw_Start_Glue_Point_Attribute_Node'Tag); end Matreshka.ODF_Draw.Start_Glue_Point_Attributes;
onox/orka
Ada
2,593
adb
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2015 onox <[email protected]> -- -- 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. with GL.Types; with Orka.Contexts.AWT; with Orka.Rendering.Buffers; with Orka.Rendering.Drawing; with Orka.Rendering.Framebuffers; with Orka.Rendering.Programs.Modules; with Orka.Resources.Locations.Directories; with Orka.Windows; with AWT; procedure Orka_13_Geometry is Context : constant Orka.Contexts.Context'Class := Orka.Contexts.AWT.Create_Context (Version => (4, 2), Flags => (Debug => True, others => False)); Window : constant Orka.Windows.Window'Class := Orka.Contexts.AWT.Create_Window (Context, Width => 500, Height => 500, Resizable => False); use Orka.Rendering.Buffers; use Orka.Rendering.Framebuffers; use Orka.Rendering.Programs; use Orka.Resources; Location_Shaders : constant Locations.Location_Ptr := Locations.Directories.Create_Location ("data/shaders"); Program_1 : Program := Create_Program (Modules.Create_Module (Location_Shaders, VS => "geometry.vert", GS => "geometry.geom", FS => "geometry.frag")); FB_D : Framebuffer := Create_Default_Framebuffer (500, 500); use Orka; Vertices : constant Float_32_Array -- Position Color Sides := (-0.45, 0.45, 0.0, 1.0, 1.0, 0.0, 0.0, 4.0, 0.45, 0.45, 0.0, 1.0, 0.0, 1.0, 0.0, 8.0, 0.45, -0.45, 0.0, 1.0, 0.0, 0.0, 1.0, 16.0, -0.45, -0.45, 0.0, 1.0, 1.0, 1.0, 0.0, 32.0); Buffer_1 : constant Buffer := Create_Buffer ((others => False), Vertices); begin Buffer_1.Bind (Shader_Storage, 0); Program_1.Use_Program; FB_D.Set_Default_Values ((Color => (0.0, 0.0, 0.0, 1.0), others => <>)); while not Window.Should_Close loop AWT.Process_Events (0.001); FB_D.Clear ((Color => True, others => False)); Orka.Rendering.Drawing.Draw (GL.Types.Points, 0, 4); -- Swap front and back buffers and process events Window.Swap_Buffers; end loop; end Orka_13_Geometry;
SietsevanderMolen/fly-thing
Ada
6,043
ads
with I2C; use I2C; with Vector_Math; with Interfaces; with Ada.Unchecked_Conversion; package HMC5883L is type Chip is new I2C.Chip with null record; subtype Degree is Integer range 0 .. 359; subtype Minute is Integer range 0 .. 59; type Gain is (Gain_0, Gain_1, Gain_2, Gain_3, Gain_4, Gain_5, Gain_6, Gain_7); LSb_Per_Gauss_List : constant array (0 .. 7) of Float := (1370.0, 1090.0, 820.0, 660.0, 440.0, 390.0, 330.0, 230.0); -- Reset the HMC5883L to default settings procedure Reset (C : in Chip); -- Set the gain procedure Set_Gain (C : in Chip; G : in Gain); -- Run the self test procedure, return True if passed function Self_Test (C : in Chip) return Boolean; -- Return the current heading in deg as a Float function Get_Heading (C : in Chip) return Float; -- Set the current declination -- Magnetic declination or variation is the angle on the horizontal plane -- between magnetic north and true north . This angle varies depending on -- position on the Earth's surface, and changes over time. procedure Set_Declination (C : in Chip; Degrees : in Degree; Minutes : in Minute); HMC5883L_CRA_AVERAGE_BIT : constant Integer := 16#06#; HMC5883L_CRA_AVERAGE_LENGTH : constant Integer := 16#02#; HMC5883L_CRA_RATE_BIT : constant Integer := 16#04#; HMC5883L_CRA_RATE_LENGTH : constant Integer := 16#03#; HMC5883L_CRA_BIAS_BIT : constant Integer := 16#01#; HMC5883L_CRA_BIAS_LENGTH : constant Integer := 16#02#; HMC5883L_AVERAGING_1 : constant Integer := 16#00#; HMC5883L_AVERAGING_2 : constant Integer := 16#01#; HMC5883L_AVERAGING_4 : constant Integer := 16#02#; HMC5883L_AVERAGING_8 : constant Integer := 16#03#; HMC5883L_RATE_0P75 : constant Integer := 16#00#; HMC5883L_RATE_1P5 : constant Integer := 16#01#; HMC5883L_RATE_3 : constant Integer := 16#02#; HMC5883L_RATE_7P5 : constant Integer := 16#03#; HMC5883L_RATE_15 : constant Integer := 16#04#; HMC5883L_RATE_30 : constant Integer := 16#05#; HMC5883L_RATE_75 : constant Integer := 16#06#; HMC5883L_BIAS_NORMAL : constant Integer := 16#00#; HMC5883L_BIAS_POSITIVE : constant Integer := 16#01#; HMC5883L_BIAS_NEGATIVE : constant Integer := 16#02#; HMC5883L_CRB_GAIN_BIT : constant Integer := 16#07#; HMC5883L_CRB_GAIN_LENGTH : constant Integer := 16#03#; HMC5883L_GAIN_1370 : constant Integer := 16#00#; HMC5883L_GAIN_1090 : constant Integer := 16#01#; HMC5883L_GAIN_820 : constant Integer := 16#02#; HMC5883L_GAIN_660 : constant Integer := 16#03#; HMC5883L_GAIN_440 : constant Integer := 16#04#; HMC5883L_GAIN_390 : constant Integer := 16#05#; HMC5883L_GAIN_330 : constant Integer := 16#06#; HMC5883L_GAIN_220 : constant Integer := 16#07#; HMC5883L_MODEREG_BIT : constant Integer := 16#01#; HMC5883L_MODEREG_LENGTH : constant Integer := 16#02#; HMC5883L_MODE_CONTINUOUS : constant Integer := 16#00#; HMC5883L_MODE_SINGLE : constant Integer := 16#01#; HMC5883L_MODE_IDLE : constant Integer := 16#02#; HMC5883L_STATUS_LOCK_BIT : constant Integer := 16#01#; HMC5883L_STATUS_READY_BIT : constant Integer := 16#00#; private -- One magnetometer axis reading, eg X, Y or Z type Axis_Reading is record L : Byte; H : Byte; end record; for Axis_Reading use record L at 0 range 0 .. 7; H at 0 range 8 .. 15; end record; function Pack is new Ada.Unchecked_Conversion (Source => Axis_Reading, Target => Interfaces.Integer_16); -- Configuration register a type ConfigA is record Pad : Integer range 0 .. 0; Averaged_Samples : Integer range 0 .. 3; Data_Output_Rate : Integer range 0 .. 6; Measurement_Mode : Integer range 0 .. 2; end record; for ConfigA use record Pad at 0 range 7 .. 7; Averaged_Samples at 0 range 5 .. 6; Data_Output_Rate at 0 range 2 .. 4; Measurement_Mode at 0 range 0 .. 1; end record; ConfigA_Address : constant Register := 16#00#; function Pack is new Ada.Unchecked_Conversion (Source => ConfigA, Target => Byte); -- Configuration register b type ConfigB is record Gain : Integer range 0 .. 7; Pad : Integer range 0 .. 0; end record; for ConfigB use record Gain at 0 range 5 .. 7; Pad at 0 range 0 .. 4; end record; ConfigB_Address : constant Register := 16#01#; function Pack is new Ada.Unchecked_Conversion (Source => ConfigB, Target => Byte); -- Mode register type Mode is record High_Speed_Enable : Integer range 0 .. 1; Pad : Integer range 0 .. 0; Mode_Select : Integer range 0 .. 3; end record; for Mode use record High_Speed_Enable at 0 range 7 .. 7; Pad at 0 range 2 .. 6; Mode_Select at 0 range 0 .. 1; end record; Mode_Address : constant Register := 16#02#; function Pack is new Ada.Unchecked_Conversion (Source => Mode, Target => Byte); X_L : constant Register := 16#03#; Status_Address : constant Register := 16#09#; Declination : Float; -- Get the axes' raw values function Get_Axes (C : in Chip) return Vector_Math.Float3; -- Read the RDY register. It turns high when new values are written to the -- data registers procedure Wait_Ready (C : in Chip; Timeout : in Duration := 1.0); end HMC5883L;
reznikmm/matreshka
Ada
4,754
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Office_Binary_Data_Elements; package Matreshka.ODF_Office.Binary_Data_Elements is type Office_Binary_Data_Element_Node is new Matreshka.ODF_Office.Abstract_Office_Element_Node and ODF.DOM.Office_Binary_Data_Elements.ODF_Office_Binary_Data with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Office_Binary_Data_Element_Node; overriding function Get_Local_Name (Self : not null access constant Office_Binary_Data_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Office_Binary_Data_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Office_Binary_Data_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Office_Binary_Data_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Office.Binary_Data_Elements;
eqcola/ada-ado
Ada
28,870
adb
----------------------------------------------------------------------- -- Regtests.Simple.Model -- Regtests.Simple.Model ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-body.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 1095 ----------------------------------------------------------------------- -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Ada.Unchecked_Deallocation; package body Regtests.Simple.Model is use type ADO.Objects.Object_Record_Access; use type ADO.Objects.Object_Ref; use type ADO.Objects.Object_Record; pragma Warnings (Off, "formal parameter * is not referenced"); function Allocate_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => ALLOCATE_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Allocate_Key; function Allocate_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => ALLOCATE_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Allocate_Key; function "=" (Left, Right : Allocate_Ref'Class) return Boolean is begin return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right); end "="; procedure Set_Field (Object : in out Allocate_Ref'Class; Impl : out Allocate_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := Allocate_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out Allocate_Ref) is Impl : Allocate_Access; begin Impl := new Allocate_Impl; Impl.Version := 0; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: Allocate -- ---------------------------------------- procedure Set_Id (Object : in out Allocate_Ref; Value : in ADO.Identifier) is Impl : Allocate_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in Allocate_Ref) return ADO.Identifier is Impl : constant Allocate_Access := Allocate_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; function Get_Version (Object : in Allocate_Ref) return Integer is Impl : constant Allocate_Access := Allocate_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Version; end Get_Version; procedure Set_Name (Object : in out Allocate_Ref; Value : in String) is Impl : Allocate_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 3, Impl.Name, Value); end Set_Name; procedure Set_Name (Object : in out Allocate_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : Allocate_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 3, Impl.Name, Value); end Set_Name; function Get_Name (Object : in Allocate_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Name); end Get_Name; function Get_Name (Object : in Allocate_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant Allocate_Access := Allocate_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Name; end Get_Name; -- Copy of the object. procedure Copy (Object : in Allocate_Ref; Into : in out Allocate_Ref) is Result : Allocate_Ref; begin if not Object.Is_Null then declare Impl : constant Allocate_Access := Allocate_Impl (Object.Get_Load_Object.all)'Access; Copy : constant Allocate_Access := new Allocate_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.Version := Impl.Version; Copy.Name := Impl.Name; end; end if; Into := Result; end Copy; procedure Find (Object : in out Allocate_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant Allocate_Access := new Allocate_Impl; begin Impl.Find (Session, Query, Found); if Found then ADO.Objects.Set_Object (Object, Impl.all'Access); else ADO.Objects.Set_Object (Object, null); Destroy (Impl); end if; end Find; procedure Load (Object : in out Allocate_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant Allocate_Access := new Allocate_Impl; Found : Boolean; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); raise ADO.Objects.NOT_FOUND; end if; ADO.Objects.Set_Object (Object, Impl.all'Access); end Load; procedure Load (Object : in out Allocate_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant Allocate_Access := new Allocate_Impl; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); else ADO.Objects.Set_Object (Object, Impl.all'Access); end if; end Load; procedure Save (Object : in out Allocate_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl = null then Impl := new Allocate_Impl; ADO.Objects.Set_Object (Object, Impl); end if; if not ADO.Objects.Is_Created (Impl.all) then Impl.Create (Session); else Impl.Save (Session); end if; end Save; procedure Delete (Object : in out Allocate_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl /= null then Impl.Delete (Session); end if; end Delete; -- -------------------- -- Free the object -- -------------------- procedure Destroy (Object : access Allocate_Impl) is type Allocate_Impl_Ptr is access all Allocate_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Allocate_Impl, Allocate_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : Allocate_Impl_Ptr := Allocate_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out Allocate_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, ALLOCATE_DEF'Access); begin Stmt.Execute; if Stmt.Has_Elements then Object.Load (Stmt, Session); Stmt.Next; Found := not Stmt.Has_Elements; else Found := False; end if; end Find; overriding procedure Load (Object : in out Allocate_Impl; Session : in out ADO.Sessions.Session'Class) is Found : Boolean; Query : ADO.SQL.Query; Id : constant ADO.Identifier := Object.Get_Key_Value; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Object.Find (Session, Query, Found); if not Found then raise ADO.Objects.NOT_FOUND; end if; end Load; procedure Save (Object : in out Allocate_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (ALLOCATE_DEF'Access); begin if Object.Is_Modified (1) then Stmt.Save_Field (Name => COL_0_1_NAME, -- ID Value => Object.Get_Key); Object.Clear_Modified (1); end if; if Object.Is_Modified (3) then Stmt.Save_Field (Name => COL_2_1_NAME, -- NAME Value => Object.Name); Object.Clear_Modified (3); end if; if Stmt.Has_Save_Fields then Object.Version := Object.Version + 1; Stmt.Save_Field (Name => "version", Value => Object.Version); Stmt.Set_Filter (Filter => "id = ? and version = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Add_Param (Value => Object.Version - 1); declare Result : Integer; begin Stmt.Execute (Result); if Result /= 1 then if Result /= 0 then raise ADO.Objects.UPDATE_ERROR; else raise ADO.Objects.LAZY_LOCK; end if; end if; end; end if; end Save; procedure Create (Object : in out Allocate_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (ALLOCATE_DEF'Access); Result : Integer; begin Object.Version := 1; Session.Allocate (Id => Object); Query.Save_Field (Name => COL_0_1_NAME, -- ID Value => Object.Get_Key); Query.Save_Field (Name => COL_1_1_NAME, -- version Value => Object.Version); Query.Save_Field (Name => COL_2_1_NAME, -- NAME Value => Object.Name); Query.Execute (Result); if Result /= 1 then raise ADO.Objects.INSERT_ERROR; end if; ADO.Objects.Set_Created (Object); end Create; procedure Delete (Object : in out Allocate_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (ALLOCATE_DEF'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; -- ------------------------------ -- Get the bean attribute identified by the name. -- ------------------------------ overriding function Get_Value (From : in Allocate_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : ADO.Objects.Object_Record_Access; Impl : access Allocate_Impl; begin if From.Is_Null then return Util.Beans.Objects.Null_Object; end if; Obj := From.Get_Load_Object; Impl := Allocate_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); elsif Name = "name" then return Util.Beans.Objects.To_Object (Impl.Name); end if; return Util.Beans.Objects.Null_Object; end Get_Value; procedure List (Object : in out Allocate_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, ALLOCATE_DEF'Access); begin Stmt.Execute; Allocate_Vectors.Clear (Object); while Stmt.Has_Elements loop declare Item : Allocate_Ref; Impl : constant Allocate_Access := new Allocate_Impl; begin Impl.Load (Stmt, Session); ADO.Objects.Set_Object (Item, Impl.all'Access); Object.Append (Item); end; Stmt.Next; end loop; end List; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out Allocate_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class) is pragma Unreferenced (Session); begin Object.Set_Key_Value (Stmt.Get_Identifier (0)); Object.Name := Stmt.Get_Unbounded_String (2); Object.Version := Stmt.Get_Integer (1); ADO.Objects.Set_Created (Object); end Load; function User_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => USER_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end User_Key; function User_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_INTEGER, Of_Class => USER_DEF'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end User_Key; function "=" (Left, Right : User_Ref'Class) return Boolean is begin return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right); end "="; procedure Set_Field (Object : in out User_Ref'Class; Impl : out User_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := User_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out User_Ref) is Impl : User_Access; begin Impl := new User_Impl; Impl.Version := 0; Impl.Value := ADO.NO_IDENTIFIER; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: User -- ---------------------------------------- procedure Set_Id (Object : in out User_Ref; Value : in ADO.Identifier) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in User_Ref) return ADO.Identifier is Impl : constant User_Access := User_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; function Get_Version (Object : in User_Ref) return Integer is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Version; end Get_Version; procedure Set_Value (Object : in out User_Ref; Value : in ADO.Identifier) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Identifier (Impl.all, 3, Impl.Value, Value); end Set_Value; function Get_Value (Object : in User_Ref) return ADO.Identifier is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Value; end Get_Value; procedure Set_Name (Object : in out User_Ref; Value : in String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 4, Impl.Name, Value); end Set_Name; procedure Set_Name (Object : in out User_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 4, Impl.Name, Value); end Set_Name; function Get_Name (Object : in User_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Name); end Get_Name; function Get_Name (Object : in User_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Name; end Get_Name; procedure Set_Select_Name (Object : in out User_Ref; Value : in String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 5, Impl.Select_Name, Value); end Set_Select_Name; procedure Set_Select_Name (Object : in out User_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 5, Impl.Select_Name, Value); end Set_Select_Name; function Get_Select_Name (Object : in User_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Select_Name); end Get_Select_Name; function Get_Select_Name (Object : in User_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Select_Name; end Get_Select_Name; -- Copy of the object. procedure Copy (Object : in User_Ref; Into : in out User_Ref) is Result : User_Ref; begin if not Object.Is_Null then declare Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; Copy : constant User_Access := new User_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.Version := Impl.Version; Copy.Value := Impl.Value; Copy.Name := Impl.Name; Copy.Select_Name := Impl.Select_Name; end; end if; Into := Result; end Copy; procedure Find (Object : in out User_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant User_Access := new User_Impl; begin Impl.Find (Session, Query, Found); if Found then ADO.Objects.Set_Object (Object, Impl.all'Access); else ADO.Objects.Set_Object (Object, null); Destroy (Impl); end if; end Find; procedure Load (Object : in out User_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant User_Access := new User_Impl; Found : Boolean; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); raise ADO.Objects.NOT_FOUND; end if; ADO.Objects.Set_Object (Object, Impl.all'Access); end Load; procedure Load (Object : in out User_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant User_Access := new User_Impl; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); else ADO.Objects.Set_Object (Object, Impl.all'Access); end if; end Load; procedure Save (Object : in out User_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl = null then Impl := new User_Impl; ADO.Objects.Set_Object (Object, Impl); end if; if not ADO.Objects.Is_Created (Impl.all) then Impl.Create (Session); else Impl.Save (Session); end if; end Save; procedure Delete (Object : in out User_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl /= null then Impl.Delete (Session); end if; end Delete; -- -------------------- -- Free the object -- -------------------- procedure Destroy (Object : access User_Impl) is type User_Impl_Ptr is access all User_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (User_Impl, User_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : User_Impl_Ptr := User_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out User_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, USER_DEF'Access); begin Stmt.Execute; if Stmt.Has_Elements then Object.Load (Stmt, Session); Stmt.Next; Found := not Stmt.Has_Elements; else Found := False; end if; end Find; overriding procedure Load (Object : in out User_Impl; Session : in out ADO.Sessions.Session'Class) is Found : Boolean; Query : ADO.SQL.Query; Id : constant ADO.Identifier := Object.Get_Key_Value; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Object.Find (Session, Query, Found); if not Found then raise ADO.Objects.NOT_FOUND; end if; end Load; procedure Save (Object : in out User_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (USER_DEF'Access); begin if Object.Is_Modified (1) then Stmt.Save_Field (Name => COL_0_2_NAME, -- ID Value => Object.Get_Key); Object.Clear_Modified (1); end if; if Object.Is_Modified (3) then Stmt.Save_Field (Name => COL_2_2_NAME, -- VALUE Value => Object.Value); Object.Clear_Modified (3); end if; if Object.Is_Modified (4) then Stmt.Save_Field (Name => COL_3_2_NAME, -- NAME Value => Object.Name); Object.Clear_Modified (4); end if; if Object.Is_Modified (5) then Stmt.Save_Field (Name => COL_4_2_NAME, -- select Value => Object.Select_Name); Object.Clear_Modified (5); end if; if Stmt.Has_Save_Fields then Object.Version := Object.Version + 1; Stmt.Save_Field (Name => "version", Value => Object.Version); Stmt.Set_Filter (Filter => "id = ? and version = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Add_Param (Value => Object.Version - 1); declare Result : Integer; begin Stmt.Execute (Result); if Result /= 1 then if Result /= 0 then raise ADO.Objects.UPDATE_ERROR; else raise ADO.Objects.LAZY_LOCK; end if; end if; end; end if; end Save; procedure Create (Object : in out User_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (USER_DEF'Access); Result : Integer; begin Object.Version := 1; Session.Allocate (Id => Object); Query.Save_Field (Name => COL_0_2_NAME, -- ID Value => Object.Get_Key); Query.Save_Field (Name => COL_1_2_NAME, -- version Value => Object.Version); Query.Save_Field (Name => COL_2_2_NAME, -- VALUE Value => Object.Value); Query.Save_Field (Name => COL_3_2_NAME, -- NAME Value => Object.Name); Query.Save_Field (Name => COL_4_2_NAME, -- select Value => Object.Select_Name); Query.Execute (Result); if Result /= 1 then raise ADO.Objects.INSERT_ERROR; end if; ADO.Objects.Set_Created (Object); end Create; procedure Delete (Object : in out User_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (USER_DEF'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; -- ------------------------------ -- Get the bean attribute identified by the name. -- ------------------------------ overriding function Get_Value (From : in User_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : ADO.Objects.Object_Record_Access; Impl : access User_Impl; begin if From.Is_Null then return Util.Beans.Objects.Null_Object; end if; Obj := From.Get_Load_Object; Impl := User_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); elsif Name = "value" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Value)); elsif Name = "name" then return Util.Beans.Objects.To_Object (Impl.Name); elsif Name = "select_name" then return Util.Beans.Objects.To_Object (Impl.Select_Name); end if; return Util.Beans.Objects.Null_Object; end Get_Value; procedure List (Object : in out User_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Query, USER_DEF'Access); begin Stmt.Execute; User_Vectors.Clear (Object); while Stmt.Has_Elements loop declare Item : User_Ref; Impl : constant User_Access := new User_Impl; begin Impl.Load (Stmt, Session); ADO.Objects.Set_Object (Item, Impl.all'Access); Object.Append (Item); end; Stmt.Next; end loop; end List; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out User_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class) is pragma Unreferenced (Session); begin Object.Set_Key_Value (Stmt.Get_Identifier (0)); Object.Value := Stmt.Get_Identifier (2); Object.Name := Stmt.Get_Unbounded_String (3); Object.Select_Name := Stmt.Get_Unbounded_String (4); Object.Version := Stmt.Get_Integer (1); ADO.Objects.Set_Created (Object); end Load; end Regtests.Simple.Model;
AdaCore/gpr
Ada
85
ads
package Ada_Lib2 is procedure Do_It2; pragma Export (C, Do_It2); end Ada_Lib2;
AdaCore/training_material
Ada
870
adb
pragma Ada_2022; procedure Main is package JSON is type JSON_Value is private with Integer_Literal => To_JSON_Value; function To_JSON_Value (Text : String) return JSON_Value; --$ begin cut type JSON_Array is private with Aggregate => (Empty => New_JSON_Array, Add_Unnamed => Append); function New_JSON_Array return JSON_Array; procedure Append (Self : in out JSON_Array; Value : JSON_Value) is null; --$ end cut private type JSON_Value is null record; type JSON_Array is null record; function To_JSON_Value (Text : String) return JSON_Value is (null record); function New_JSON_Array return JSON_Array is (null record); end JSON; --$ line cut List : JSON.JSON_Array := [1, 2, 3]; begin null; end Main;
ekoeppen/MSP430_Generic_Ada_Drivers
Ada
342
ads
with MSPGD.UART.Peripheral; with MSPGD.Clock; use MSPGD.Clock; with MSPGD.Clock.Source; package Board is pragma Preelaborate; package Clock is new MSPGD.Clock.Source (Source => SMCLK, Input => DCO, Frequency => 8_000_000); package UART is new MSPGD.UART.Peripheral (Speed => 9600, Clock => Clock); procedure Init; end Board;
persan/advent-of-code-2020
Ada
135
adb
with Ada.Text_IO; use Ada.Text_IO; procedure Adventofcode.Day_25.Main is begin Put_Line ("Day-25"); end Adventofcode.Day_25.Main;
stcarrez/ada-css
Ada
1,587
ads
----------------------------------------------------------------------- -- css-print-tests -- Unit tests for CSS printer -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Util.Tests; package CSS.Printer.Tests is procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test_Case with record Name : Ada.Strings.Unbounded.Unbounded_String; File : Ada.Strings.Unbounded.Unbounded_String; Expect : Ada.Strings.Unbounded.Unbounded_String; Result : Ada.Strings.Unbounded.Unbounded_String; Compress : Boolean := False; end record; type Test_Case_Access is access all Test; -- Test case name overriding function Name (T : Test) return Util.Tests.Message_String; -- Perform the test. overriding procedure Run_Test (T : in out Test); end CSS.Printer.Tests;
reznikmm/matreshka
Ada
4,053
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with ODF.DOM.Number_Display_Factor_Attributes; package Matreshka.ODF_Number.Display_Factor_Attributes is type Number_Display_Factor_Attribute_Node is new Matreshka.ODF_Number.Abstract_Number_Attribute_Node and ODF.DOM.Number_Display_Factor_Attributes.ODF_Number_Display_Factor_Attribute with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters) return Number_Display_Factor_Attribute_Node; overriding function Get_Local_Name (Self : not null access constant Number_Display_Factor_Attribute_Node) return League.Strings.Universal_String; end Matreshka.ODF_Number.Display_Factor_Attributes;
alexcamposruiz/dds-requestreply
Ada
8,299
ads
with DDS.Treats_Generic; generic with package TReq is new DDS.Treats_Generic (<>); with package TRep is new DDS.Treats_Generic (<>); package DDS.Request_Reply.Connext_C_Requester.Generic_Requester is pragma Elaborate_Body; type TRequester is abstract new RTI_Connext_Requester with null record; -- #define RTI_CONNEXT_REQUESTER_DECL(TReq, TRep, TRequester) \ -- \ -- typedef struct TRequester { \ -- RTI_Connext_Requester parent; \ -- } TRequester; \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- TRequester* TRequester ## _create( \ -- DDS_DomainParticipant * participant, const char* service_name); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- TRequester* TRequester ## _create_w_params( \ -- const RTI_Connext_RequesterParams* params); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _send_request( \ -- TRequester* self, const TReq* request); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _send_request_w_params( \ -- TRequester* self, const TReq* request, \ -- struct DDS_WriteParams_t* request_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _receive_reply( \ -- TRequester* self, TRep* reply, \ -- struct DDS_SampleInfo* sample_info, \ -- const struct DDS_Duration_t* timeout); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _receive_replies( \ -- TRequester* self, struct TRep ## Seq* received_data, \ -- struct DDS_SampleInfoSeq* info_seq, DDS_Long min_reply_count, \ -- DDS_Long max_reply_count, const struct DDS_Duration_t* max_wait); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _take_reply( \ -- TRequester* self, TRep* reply, \ -- struct DDS_SampleInfo* sample_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _take_replies( \ -- TRequester* self, struct TRep ## Seq* reply_seq, \ -- struct DDS_SampleInfoSeq* sample_info_seq, DDS_Long max_count); \ -- \ -- NDDSUSERDllExport XMQCDllExport DDS_ReturnCode_t \ -- TRequester ## _take_reply_for_related_request( \ -- TRequester* self, TRep* reply, \ -- struct DDS_SampleInfo* sample_info, \ -- const struct DDS_SampleIdentity_t* related_request_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport DDS_ReturnCode_t \ -- TRequester ## _take_replies_for_related_request( \ -- TRequester* self, struct TRep ## Seq* reply_seq, \ -- struct DDS_SampleInfoSeq* sample_info_seq, DDS_Long max_count, \ -- const struct DDS_SampleIdentity_t* related_request_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _read_reply( \ -- TRequester* self, TRep* reply, \ -- struct DDS_SampleInfo* sample_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _read_replies( \ -- TRequester* self, struct TRep ## Seq* reply_seq, \ -- struct DDS_SampleInfoSeq* sample_info_seq, DDS_Long max_count); \ -- \ -- NDDSUSERDllExport XMQCDllExport DDS_ReturnCode_t \ -- TRequester ## _read_reply_for_related_request( \ -- TRequester* self, TRep* reply, \ -- struct DDS_SampleInfo* sample_info, \ -- const struct DDS_SampleIdentity_t* related_request_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport DDS_ReturnCode_t \ -- TRequester ## _read_replies_for_related_request( \ -- TRequester* self, struct TRep ## Seq* reply_seq, \ -- struct DDS_SampleInfoSeq* sample_info_seq, DDS_Long max_count, \ -- const struct DDS_SampleIdentity_t* related_request_info); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- TReq ## DataWriter* TRequester ## _get_request_datawriter( \ -- TRequester* self); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- TRep ## DataReader* TRequester ## _get_reply_datareader( \ -- TRequester* self); \ -- \ -- NDDSUSERDllExport XMQCDllExport \ -- DDS_ReturnCode_t TRequester ## _return_loan( \ -- TRequester* self, struct TRep ## Seq *received_data, \ -- struct DDS_SampleInfoSeq *info_seq); \ -- -- end DDS.Request_Reply.Connext_C_Requester.Generic_Requester;
reznikmm/markdown
Ada
848
ads
-- SPDX-FileCopyrightText: 2020 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ---------------------------------------------------------------- with Ada.Tags; with Markdown.Blocks; limited with Markdown.Visitors; package Markdown.Thematic_Breaks is type Thematic_Break is new Markdown.Blocks.Block with private; overriding function Create (Line : not null access Markdown.Blocks.Text_Line) return Thematic_Break; overriding procedure Visit (Self : in out Thematic_Break; Visitor : in out Markdown.Visitors.Visitor'Class); procedure Filter (Line : Markdown.Blocks.Text_Line; Tag : in out Ada.Tags.Tag; CIP : out Can_Interrupt_Paragraph); private type Thematic_Break is new Markdown.Blocks.Block with record null; end record; end Markdown.Thematic_Breaks;
reznikmm/matreshka
Ada
6,903
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_0103 is pragma Preelaborate; Group_0103 : aliased constant Core_Second_Stage := (16#20# .. 16#23# => -- 010320 .. 010323 (Other_Number, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#24# .. 16#2F# => -- 010324 .. 01032F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#41# => -- 010341 (Letter_Number, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#4A# => -- 01034A (Letter_Number, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#4B# .. 16#4F# => -- 01034B .. 01034F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#76# .. 16#7A# => -- 010376 .. 01037A (Nonspacing_Mark, Neutral, Extend, Extend, Extend, Combining_Mark, (Other_Alphabetic | Alphabetic | Case_Ignorable | Grapheme_Extend | ID_Continue | XID_Continue => True, others => False)), 16#7B# .. 16#7F# => -- 01037B .. 01037F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#9E# => -- 01039E (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#9F# => -- 01039F (Other_Punctuation, Neutral, Other, Other, Other, Break_After, (Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#C4# .. 16#C7# => -- 0103C4 .. 0103C7 (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#D0# => -- 0103D0 (Other_Punctuation, Neutral, Other, Other, Other, Break_After, (Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#D1# .. 16#D5# => -- 0103D1 .. 0103D5 (Letter_Number, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#D6# .. 16#FF# => -- 0103D6 .. 0103FF (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), others => (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False))); end Matreshka.Internals.Unicode.Ucd.Core_0103;
gerr135/ada_composition
Ada
3,391
adb
-- with Ada.Text_IO; use Ada.Text_IO; package body Iface_Lists.Vectors is overriding function Element_Constant_Reference (Container : aliased in List; Index : Index_Type) return Constant_Reference_Type is VCR : ACV.Constant_Reference_Type := ACV.Vector(Container).Constant_Reference(Index); CR : Constant_Reference_Type(VCR.Element); begin -- Put_Line("Element_Constant_Reference (LD, " & Index'Img & ");"); return CR; end; overriding function Element_Constant_Reference (Container : aliased in List; Position : Cursor) return Constant_Reference_Type is begin -- Put_Line("Element_Constant_Reference (CLD, " & Position.Index'Img & ");"); return Element_Constant_Reference(Container, Position.Index); end; overriding function Element_Reference (Container : aliased in out List; Index : Index_Type) return Reference_Type is VR : ACV.Reference_Type := ACV.Vector(Container).Reference(Index); R : Reference_Type(VR.Element); begin -- Put_Line("Element_Reference (LD, " & Index'Img & ");"); return R; end; overriding function Element_Reference (Container : aliased in out List; Position : Cursor) return Reference_Type is begin -- Put_Line("Element_Reference (CLD, " & Position.Index'Img & ");"); return Element_Reference(Container, Position.Index); end; overriding function Iterate (Container : in List) return Iterator_Interface'Class is It : Iterator := (Container'Unrestricted_Access, Index_Base'First); begin return It; end; function Has_Element (L : List; Position : Index_Base) return Boolean is -- here we pass the check to the underlying Vector begin return ACV.Has_Element(L.To_Cursor(Position)); end; overriding function First (Object : Iterator) return Cursor is C : Cursor := (Object.Container, Index_Type'First); begin -- Put_Line("First (Iterator) = " & C.Index'Img & ";"); return C; end; overriding function Last (Object : Iterator) return Cursor is C : Cursor := (Object.Container, List(Object.Container.all).Last_Index); begin -- Put_Line("Last (Iterator) = " & C.Index'Img & ";"); return C; end; overriding function Next (Object : Iterator; Position : Cursor) return Cursor is C : Cursor := (Object.Container, Position.Index + 1); begin -- Put_Line("Next (Iterator) = " & C.Index'Img & ";"); return C; end; overriding function Previous (Object : Iterator; Position : Cursor) return Cursor is C : Cursor := (Object.Container, Position.Index - 1); begin -- Put_Line("Prev (Iterator) = " & C.Index'Img & ";"); return C; end; ---- Extras -- overriding function Length (Container : aliased in out List) return Index_Base is begin return Index_Base(ACV.Vector(Container).Length); end; overriding function First_Index(Container : aliased in out List) return Index_Type is begin return Index_Type'First; end; overriding function Last_Index (Container : aliased in out List) return Index_Type is begin return Index_Type'First + Index_Base(ACV.Vector(Container).Length) - 1; end; end Iface_Lists.Vectors;
DrenfongWong/tkm-rpc
Ada
397
ads
with Ada.Unchecked_Conversion; package Tkmrpc.Response.Ike.Isa_Auth.Convert is function To_Response is new Ada.Unchecked_Conversion ( Source => Isa_Auth.Response_Type, Target => Response.Data_Type); function From_Response is new Ada.Unchecked_Conversion ( Source => Response.Data_Type, Target => Isa_Auth.Response_Type); end Tkmrpc.Response.Ike.Isa_Auth.Convert;
sungyeon/drake
Ada
1,646
adb
with System.Runtime_Context; package body System.Storage_Pools.Overlaps is pragma Suppress (All_Checks); -- implementation procedure Set_Address (Storage_Address : Address) is TLS : constant not null Runtime_Context.Task_Local_Storage_Access := Runtime_Context.Get_Task_Local_Storage; begin TLS.Overlaid_Allocation := Storage_Address; end Set_Address; overriding procedure Allocate ( Pool : in out Overlay_Pool; Storage_Address : out Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count) is pragma Unreferenced (Pool); pragma Unreferenced (Size_In_Storage_Elements); pragma Unreferenced (Alignment); TLS : constant not null Runtime_Context.Task_Local_Storage_Access := Runtime_Context.Get_Task_Local_Storage; begin Storage_Address := TLS.Overlaid_Allocation; TLS.Overlaid_Allocation := Null_Address; end Allocate; overriding procedure Deallocate ( Pool : in out Overlay_Pool; Storage_Address : Address; Size_In_Storage_Elements : Storage_Elements.Storage_Count; Alignment : Storage_Elements.Storage_Count) is pragma Unreferenced (Pool); pragma Unreferenced (Size_In_Storage_Elements); pragma Unreferenced (Alignment); TLS : constant not null Runtime_Context.Task_Local_Storage_Access := Runtime_Context.Get_Task_Local_Storage; begin pragma Assert (Storage_Address = TLS.Overlaid_Allocation); TLS.Overlaid_Allocation := Null_Address; end Deallocate; end System.Storage_Pools.Overlaps;
AdaCore/gpr
Ada
182
ads
package p6_1 is function p6_1_0 (Item : Integer) return Integer; function p6_1_1 (Item : Integer) return Integer; function p6_1_2 (Item : Integer) return Integer; end p6_1;
sepidehsaran/appfs
Ada
2,986
adb
-- TK 21Apr2017 -- gnatmake ex1.adb -- with Ada.Text_IO; use Ada.Text_IO; with Ada.Containers; use Ada.Containers; with GNAT.String_Split; use GNAT.String_Split; with Ada.Strings.Fixed; use Ada.Strings.Fixed; with Ada.Numerics.Generic_Elementary_Functions; with Ada.Containers.Vectors; with Ada.Command_Line; with Ada.Characters.Latin_1; with Ada.Exceptions; use Ada.Characters; use GNAT; use Ada; procedure ex1 is type Real is digits 16; -- Just change here! subtype RealPl is Real range 0.0 .. Real'Last with Dynamic_Predicate => RealPl /= 0.0; package Value_Container is new Vectors (Natural, RealPl); package Real_Functions is new Ada.Numerics.Generic_Elementary_Functions(Real); use Value_Container; use Real_Functions; function geom_mean(x : Vector) return Real is sum : Real := 0.0; begin for e of x loop sum := sum + log(e); end loop; return exp(sum / real(x.length)); end geom_mean; capa_extend : constant Count_Type := 1_024 * 1_024; file : File_Type; values : array ( 1 .. 2) of Vector; lineno : Natural := 0; begin if command_line.argument_count < 1 then raise Constraint_Error with "Not enough arguments"; end if; open(file, in_file, command_line.argument(1)); while not end_of_file(file) loop declare fields : String_Split.Slice_Set; line : String := get_line (file); idx : Natural := index(line, "#"); loc : Natural range 1 .. 2; begin lineno := lineno + 1; -- Remove everything after a comment sign if idx > 0 then line := line(1 .. idx); end if; -- Create the split, using Multiple mode to treat strings of multiple -- whitespace characters as a single separator. -- This populates the Subs object. create(s => fields, from => line, separators => " ;" & Latin_1.HT, mode => string_split.multiple); if slice_count (fields) > 0 then -- This line is not empty if slice_count (fields) /= 3 then raise Constraint_Error with "Wrong number of fields"; end if; loc := Natural'value(slice (fields, 2)); values(loc).append(RealPl'value(slice (fields, 3))); -- Exend vector capacity if necessary if values(loc).length = values(loc).capacity then values(loc).reserve_capacity(length(values(loc)) + capa_extend); end if; end if; exception when event : others => put("Line" & Natural'image(lineno) & " " & ada.exceptions.exception_information (event)); end; end loop; close(file); put_line("Lines read = " & Natural'image(lineno)); for i in values'range loop put_line ( "Loc " & Natural'image(i) & " values = " & Count_Type'image(length(values(i))) & " GeoMean = " & Real'image(geom_mean(values(i)))); end loop; end ex1;
reznikmm/matreshka
Ada
3,548
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This is root package of Components of Ada Web Framework. ------------------------------------------------------------------------------ package AWFC.Components is pragma Pure; end AWFC.Components;
SayCV/rtems-addon-packages
Ada
7,915
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Header_Handler -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2009,2011 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control -- $Revision$ -- $Date$ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Ada.Calendar; use Ada.Calendar; with Terminal_Interface.Curses.Text_IO.Integer_IO; with Sample.Manifest; use Sample.Manifest; pragma Elaborate_All (Terminal_Interface.Curses.Text_Io.Integer_IO); -- This package handles the painting of the header line of the screen. -- package body Sample.Header_Handler is package Int_IO is new Terminal_Interface.Curses.Text_IO.Integer_IO (Integer); use Int_IO; Header_Window : Window := Null_Window; Display_Hour : Integer := -1; -- hour last displayed Display_Min : Integer := -1; -- minute last displayed Display_Day : Integer := -1; -- day last displayed Display_Month : Integer := -1; -- month last displayed -- This is the routine handed over to the curses library to be called -- as initialization routine when ripping of the header lines from -- the screen. This routine must follow C conventions. function Init_Header_Window (Win : Window; Columns : Column_Count) return Integer; pragma Convention (C, Init_Header_Window); procedure Internal_Update_Header_Window (Do_Update : Boolean); -- The initialization must be called before Init_Screen. It steals two -- lines from the top of the screen. procedure Init_Header_Handler is begin Rip_Off_Lines (2, Init_Header_Window'Access); end Init_Header_Handler; procedure N_Out (N : Integer); -- Emit a two digit number and ensure that a leading zero is generated if -- necessary. procedure N_Out (N : Integer) is begin if N < 10 then Add (Header_Window, '0'); Put (Header_Window, N, 1); else Put (Header_Window, N, 2); end if; end N_Out; -- Paint the header window. The input parameter is a flag indicating -- whether or not the screen should be updated physically after painting. procedure Internal_Update_Header_Window (Do_Update : Boolean) is type Month_Name_Array is array (Month_Number'First .. Month_Number'Last) of String (1 .. 9); Month_Names : constant Month_Name_Array := ("January ", "February ", "March ", "April ", "May ", "June ", "July ", "August ", "September", "October ", "November ", "December "); Now : constant Time := Clock; Sec : constant Integer := Integer (Seconds (Now)); Hour : constant Integer := Sec / 3600; Minute : constant Integer := (Sec - Hour * 3600) / 60; Mon : constant Month_Number := Month (Now); D : constant Day_Number := Day (Now); begin if Header_Window /= Null_Window then if Minute /= Display_Min or else Hour /= Display_Hour or else Display_Day /= D or else Display_Month /= Mon then Move_Cursor (Header_Window, 0, 0); N_Out (D); Add (Header_Window, '.'); Add (Header_Window, Month_Names (Mon)); Move_Cursor (Header_Window, 1, 0); N_Out (Hour); Add (Header_Window, ':'); N_Out (Minute); Display_Min := Minute; Display_Hour := Hour; Display_Month := Mon; Display_Day := D; Refresh_Without_Update (Header_Window); if Do_Update then Update_Screen; end if; end if; end if; end Internal_Update_Header_Window; -- This routine is called in the keyboard input timeout handler. So it will -- periodically update the header line of the screen. procedure Update_Header_Window is begin Internal_Update_Header_Window (True); end Update_Header_Window; function Init_Header_Window (Win : Window; Columns : Column_Count) return Integer is Title : constant String := "Ada 95 ncurses Binding Sample"; Pos : Column_Position; begin Header_Window := Win; if Win /= Null_Window then if Has_Colors then Set_Background (Win => Win, Ch => (Ch => ' ', Color => Header_Color, Attr => Normal_Video)); Set_Character_Attributes (Win => Win, Attr => Normal_Video, Color => Header_Color); Erase (Win); end if; Leave_Cursor_After_Update (Win, True); Pos := Columns - Column_Position (Title'Length); Add (Win, 0, Pos / 2, Title); -- In this phase we must not allow a physical update, because -- ncurses is not properly initialized at this point. Internal_Update_Header_Window (False); return 0; else return -1; end if; end Init_Header_Window; end Sample.Header_Handler;
reznikmm/matreshka
Ada
4,906
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Table_Data_Pilot_Field_Reference_Elements; package Matreshka.ODF_Table.Data_Pilot_Field_Reference_Elements is type Table_Data_Pilot_Field_Reference_Element_Node is new Matreshka.ODF_Table.Abstract_Table_Element_Node and ODF.DOM.Table_Data_Pilot_Field_Reference_Elements.ODF_Table_Data_Pilot_Field_Reference with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Table_Data_Pilot_Field_Reference_Element_Node; overriding function Get_Local_Name (Self : not null access constant Table_Data_Pilot_Field_Reference_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Table_Data_Pilot_Field_Reference_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Table_Data_Pilot_Field_Reference_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Table_Data_Pilot_Field_Reference_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Table.Data_Pilot_Field_Reference_Elements;
reznikmm/matreshka
Ada
4,772
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Text_Initial_Creator_Elements; package Matreshka.ODF_Text.Initial_Creator_Elements is type Text_Initial_Creator_Element_Node is new Matreshka.ODF_Text.Abstract_Text_Element_Node and ODF.DOM.Text_Initial_Creator_Elements.ODF_Text_Initial_Creator with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Text_Initial_Creator_Element_Node; overriding function Get_Local_Name (Self : not null access constant Text_Initial_Creator_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Text_Initial_Creator_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Text_Initial_Creator_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Text_Initial_Creator_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Text.Initial_Creator_Elements;
AdaCore/gpr
Ada
1,740
ads
------------------------------------------------------------------------------ -- -- -- GPR2 PROJECT MANAGER -- -- -- -- Copyright (C) 2019-2023, AdaCore -- -- -- -- This is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. This software is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -- -- License for more details. You should have received a copy of the GNU -- -- General Public License distributed with GNAT; see file COPYING. If not, -- -- see <http://www.gnu.org/licenses/>. -- -- -- ------------------------------------------------------------------------------ with Ada.Containers.Indefinite_Vectors; package GPRname.Unit.Vector is package Vector is new Ada.Containers.Indefinite_Vectors (Positive, Unit.Object); subtype Object is Vector.Vector; subtype Cursor is Vector.Cursor; function "=" (Left, Right : Object) return Boolean renames Vector."="; Empty_Vector : constant Object := Vector.Empty_Vector; end GPRname.Unit.Vector;
google-code/ada-util
Ada
3,127
adb
----------------------------------------------------------------------- -- serialize-io-csv-tests -- Unit tests for CSV parser -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- with Util.Test_Caller; with Util.Serialize.Mappers.Tests; package body Util.Serialize.IO.CSV.Tests is package Caller is new Util.Test_Caller (Test, "Serialize.IO.CSV"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Util.Serialize.IO.CSV.Parse (parse Ok)", Test_Parser'Access); end Add_Tests; -- ------------------------------ -- Check various (basic) JSON valid strings (no mapper). -- ------------------------------ procedure Test_Parser (T : in out Test) is use Util.Serialize.Mappers.Tests; procedure Check_Parse (Content : in String; Expect : in Integer); Mapping : aliased Util.Serialize.Mappers.Tests.Map_Test_Mapper.Mapper; Mapper : aliased Util.Serialize.Mappers.Tests.Map_Test_Vector_Mapper.Mapper; procedure Check_Parse (Content : in String; Expect : in Integer) is P : Parser; Value : aliased Map_Test_Vector.Vector; begin P.Add_Mapping ("", Mapper'Unchecked_Access); Map_Test_Vector_Mapper.Set_Context (P, Value'Unchecked_Access); P.Parse_String (Content); T.Assert (not P.Has_Error, "Parse error for: " & Content); Util.Tests.Assert_Equals (T, 1, Integer (Value.Length), "Invalid result length"); Util.Tests.Assert_Equals (T, Expect, Integer (Value.Element (1).Value), "Invalid value"); end Check_Parse; HDR : constant String := "name,status,value,bool" & ASCII.CR & ASCII.LF; begin Mapping.Add_Mapping ("name", FIELD_NAME); Mapping.Add_Mapping ("value", FIELD_VALUE); Mapping.Add_Mapping ("status", FIELD_BOOL); Mapping.Add_Mapping ("bool", FIELD_BOOL); Mapper.Set_Mapping (Mapping'Unchecked_Access); Check_Parse (HDR & "joe,false,23,true", 23); Check_Parse (HDR & "billy,false,""12"",true", 12); Check_Parse (HDR & """John Potter"",false,""1234"",true", 1234); Check_Parse (HDR & """John" & ASCII.CR & "Potter"",False,""3234"",True", 3234); Check_Parse (HDR & """John" & ASCII.LF & "Potter"",False,""3234"",True", 3234); end Test_Parser; end Util.Serialize.IO.CSV.Tests;
reznikmm/matreshka
Ada
3,699
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Elements; package ODF.DOM.Draw_Regular_Polygon_Elements is pragma Preelaborate; type ODF_Draw_Regular_Polygon is limited interface and XML.DOM.Elements.DOM_Element; type ODF_Draw_Regular_Polygon_Access is access all ODF_Draw_Regular_Polygon'Class with Storage_Size => 0; end ODF.DOM.Draw_Regular_Polygon_Elements;
stcarrez/ada-asf
Ada
2,026
ads
----------------------------------------------------------------------- -- asf-navigations-render -- Navigator to render a page -- Copyright (C) 2010, 2011, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- 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. ----------------------------------------------------------------------- package ASF.Navigations.Render is -- ------------------------------ -- Render page navigator -- ------------------------------ -- The <b>Render_Navigator</b> defines the page that must be rendered for the response. type Render_Navigator (Len : Natural) is new Navigation_Case with private; type Render_Navigator_Access is access all Render_Navigator'Class; -- Navigate to the next page or action according to the controller's navigator. -- A navigator controller could redirect the user to another page, render a specific -- view or return some raw content. overriding procedure Navigate (Controller : in Render_Navigator; Context : in out ASF.Contexts.Faces.Faces_Context'Class); -- Create a navigation case to render a view. function Create_Render_Navigator (To_View : in String; Status : in Natural) return Navigation_Access; private type Render_Navigator (Len : Natural) is new Navigation_Case with record Status : Natural := 0; View_Name : String (1 .. Len); end record; end ASF.Navigations.Render;
wookey-project/ewok-legacy
Ada
1,018
ads
-- -- Copyright 2018 The wookey project team <[email protected]> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- 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. -- -- pragma warnings (Off, "use clause for package"); with interfaces; use interfaces; pragma unreferenced (interfaces); with types; use types; pragma unreferenced (types); pragma warnings (On, "use clause for package"); package c is end c;
reznikmm/matreshka
Ada
5,817
adb
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2017, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with WebAPI.DOM.Event_Targets; with WebAPI.HTML.Globals; package body WUI.Widgets.Buttons.Check_Boxes is ------------------ -- Constructors -- ------------------ package body Constructors is type Check_Box_Internal_Access is access all Check_Box'Class; ------------ -- Create -- ------------ function Create (Element : not null WebAPI.HTML.Input_Elements.HTML_Input_Element_Access) return not null Check_Box_Access is Result : constant not null Check_Box_Internal_Access := new Check_Box; begin Initialize (Result.all, Element); return Check_Box_Access (Result); end Create; ------------ -- Create -- ------------ function Create (Id : League.Strings.Universal_String) return not null Check_Box_Access is begin return Create (WebAPI.HTML.Input_Elements.HTML_Input_Element_Access (WebAPI.HTML.Globals.Window.Get_Document.Get_Element_By_Id (Id))); end Create; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : in out Check_Box'Class; Element : not null WebAPI.HTML.Input_Elements.HTML_Input_Element_Access) is begin WUI.Widgets.Buttons.Constructors.Initialize (Self, WebAPI.HTML.Elements.HTML_Element_Access (Element)); end Initialize; end Constructors; ------------------ -- Change_Event -- ------------------ overriding procedure Change_Event (Self : in out Check_Box) is begin Self.State_Changed.Emit (WebAPI.HTML.Input_Elements.HTML_Input_Element_Access (Self.Element).Get_Checked); end Change_Event; ----------------- -- Set_Enabled -- ----------------- overriding procedure Set_Enabled (Self : in out Check_Box; Enabled : Boolean) is begin WebAPI.HTML.Input_Elements.HTML_Input_Element_Access (Self.Element).Set_Disabled (not Enabled); end Set_Enabled; -------------------------- -- State_Changed_Signal -- -------------------------- not overriding function State_Changed_Signal (Self : in out Check_Box) return not null access WUI.Boolean_Slots.Signal'Class is begin return Self.State_Changed'Unchecked_Access; end State_Changed_Signal; end WUI.Widgets.Buttons.Check_Boxes;
sparre/Ada-2012-Examples
Ada
960
ads
package Mixed_Enumeration_And_Integer is type Integer_Values is range 1 .. 10; type Enumeration_Values is (Jack, Queen, King, Ace); type Object is private; function "+" (Item : Integer_Values) return Object; function "+" (Item : Enumeration_Values) return Object; function "+" (Item : Object) return Integer_Values; function "+" (Item : Object) return Enumeration_Values; function "=" (Left : Integer_Values; Right : Object) return Boolean; function "=" (Left : Enumeration_Values; Right : Object) return Boolean; private type States is (Uninitialized, Integer, Enumeration); type Object (State : States := Uninitialized) is record case State is when Uninitialized => null; when Integer => I : Integer_Values; when Enumeration => E : Enumeration_Values; end case; end record; end Mixed_Enumeration_And_Integer;
reznikmm/matreshka
Ada
5,762
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-2015, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_0109 is pragma Preelaborate; Group_0109 : aliased constant Core_Second_Stage := (16#00# .. 16#15# => -- 010900 .. 010915 (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#16# .. 16#1B# => -- 010916 .. 01091B (Other_Number, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#1F# => -- 01091F (Other_Punctuation, Neutral, Other, Other, Other, Break_After, (Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#20# .. 16#39# => -- 010920 .. 010939 (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#3F# => -- 01093F (Other_Punctuation, Neutral, Other, Other, Other, Alphabetic, (Grapheme_Base => True, others => False)), 16#80# .. 16#B7# => -- 010980 .. 0109B7 (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#BE# .. 16#BF# => -- 0109BE .. 0109BF (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), others => (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False))); end Matreshka.Internals.Unicode.Ucd.Core_0109;
usnistgov/rcslib
Ada
1,418
ads
-- -- New Ada Spec File starts here. -- This file should be named otherheader_n_ada.ads -- Automatically generated by NML CodeGen Java Applet. -- on Fri Aug 20 15:43:29 EDT 2004 -- with Nml_Msg; use Nml_Msg; with Cms; -- Some standard Ada Packages we always need. with Unchecked_Deallocation; with Unchecked_Conversion; with Interfaces.C; use Interfaces.C; package otherheader_n_ada is -- Create Ada versions of the Enumeration types. function Format(Nml_Type : in long; Msg : in NmlMsg_Access; Cms_Ptr : in Cms.Cms_Access) return int; pragma Export(C,Format,"ada_otherheader_n_ada_format"); -- Redefine the C++ NML message classes as Ada Records. type struct_from_other_header is record x : char; end record; type struct_from_other_header_Access is access all struct_from_other_header; procedure Update_Internal_struct_from_other_header(Cms_Ptr : Cms.Cms_Access; Msg : in out struct_from_other_header); procedure Free is new Unchecked_Deallocation(struct_from_other_header,struct_from_other_header_Access); type struct_from_other_header_Array is array(Integer range <>) of struct_from_other_header; end otherheader_n_ada; -- End of Ada spec file otherheader_n_ada.ads
kontena/ruby-packer
Ada
6,264
adb
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Curses_Demo -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2004,2011 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control -- $Revision: 1.17 $ -- $Date: 2011/03/23 00:29:04 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Terminal_Interface.Curses.Menus; use Terminal_Interface.Curses.Menus; with Terminal_Interface.Curses.Mouse; use Terminal_Interface.Curses.Mouse; with Terminal_Interface.Curses.Panels; use Terminal_Interface.Curses.Panels; with Terminal_Interface.Curses.Panels.User_Data; with Sample.Manifest; use Sample.Manifest; with Sample.Helpers; use Sample.Helpers; with Sample.Function_Key_Setting; use Sample.Function_Key_Setting; with Sample.Explanation; use Sample.Explanation; with Sample.Menu_Demo.Handler; with Sample.Curses_Demo.Mouse; with Sample.Curses_Demo.Attributes; package body Sample.Curses_Demo is type User_Data is new Integer; type User_Data_Access is access all User_Data; package PUD is new Panels.User_Data (User_Data, User_Data_Access); -- We use above instantiation of the generic User_Data package to -- demonstrate and test the use of the user data mechanism. procedure Demo is function My_Driver (M : Menu; K : Key_Code; Pan : Panel) return Boolean; package Mh is new Sample.Menu_Demo.Handler (My_Driver); Itm : Item_Array_Access := new Item_Array' (New_Item ("Attributes Demo"), New_Item ("Mouse Demo"), Null_Item); M : Menu := New_Menu (Itm); U1 : constant User_Data_Access := new User_Data'(4711); U2 : User_Data_Access; function My_Driver (M : Menu; K : Key_Code; Pan : Panel) return Boolean is Idx : constant Positive := Get_Index (Current (M)); Result : Boolean := False; begin PUD.Set_User_Data (Pan, U1); -- set some user data, just for fun if K in User_Key_Code'Range then if K = QUIT then Result := True; elsif K = SELECT_ITEM then if Idx in Itm'Range then Hide (Pan); Update_Panels; end if; case Idx is when 1 => Sample.Curses_Demo.Attributes.Demo; when 2 => Sample.Curses_Demo.Mouse.Demo; when others => Not_Implemented; end case; if Idx in Itm'Range then Top (Pan); Show (Pan); Update_Panels; Update_Screen; end if; end if; end if; PUD.Get_User_Data (Pan, U2); -- get the user data pragma Assert (U1.all = U2.all and then U1 = U2); return Result; end My_Driver; begin if (1 + Item_Count (M)) /= Itm'Length then raise Constraint_Error; end if; if not Has_Mouse then declare O : Item_Option_Set; begin Get_Options (Itm.all (2), O); O.Selectable := False; Set_Options (Itm.all (2), O); end; end if; Push_Environment ("CURSES00"); Notepad ("CURSES-PAD00"); Default_Labels; Refresh_Soft_Label_Keys_Without_Update; Mh.Drive_Me (M, " Demo "); Pop_Environment; Delete (M); Free (Itm, True); end Demo; end Sample.Curses_Demo;
zhmu/ananas
Ada
6,153
adb
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . G E N E R I C _ V E C T O R _ O P E R A T I O N S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2002-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Address_Operations; use System.Address_Operations; with System.Storage_Elements; use System.Storage_Elements; with Ada.Unchecked_Conversion; package body System.Generic_Vector_Operations is IU : constant Integer := Integer (Storage_Unit); VU : constant Address := Address (Vectors.Vector'Size / IU); EU : constant Address := Address (Element_Array'Component_Size / IU); ---------------------- -- Binary_Operation -- ---------------------- procedure Binary_Operation (R, X, Y : System.Address; Length : System.Storage_Elements.Storage_Count) is RA : Address := R; XA : Address := X; YA : Address := Y; -- Address of next element to process in R, X and Y VI : constant Integer_Address := To_Integer (VU); Unaligned : constant Integer_Address := Boolean'Pos (ModA (OrA (OrA (RA, XA), YA), VU) /= 0) - 1; -- Zero iff one or more argument addresses is not aligned, else all 1's type Vector_Ptr is access all Vectors.Vector; type Element_Ptr is access all Element; function VP is new Ada.Unchecked_Conversion (Address, Vector_Ptr); function EP is new Ada.Unchecked_Conversion (Address, Element_Ptr); pragma Assert (VI > 0); -- VI = VU -- VU = Vectors.Vector'Size / Storage_Unit -- Vector'Size = System.Word_Size -- System.Word_Size is a multiple of Storage_Unit -- Vector'Size > Storage_Unit -- VI > 0 SA : constant Address := AddA (XA, To_Address ((Integer_Address (Length) / VI * VI) and Unaligned)); -- First address of argument X to start serial processing begin while XA < SA loop VP (RA).all := Vector_Op (VP (XA).all, VP (YA).all); XA := AddA (XA, VU); YA := AddA (YA, VU); RA := AddA (RA, VU); end loop; while XA < X + Length loop EP (RA).all := Element_Op (EP (XA).all, EP (YA).all); XA := AddA (XA, EU); YA := AddA (YA, EU); RA := AddA (RA, EU); end loop; end Binary_Operation; ---------------------- -- Unary_Operation -- ---------------------- procedure Unary_Operation (R, X : System.Address; Length : System.Storage_Elements.Storage_Count) is RA : Address := R; XA : Address := X; -- Address of next element to process in R and X VI : constant Integer_Address := To_Integer (VU); Unaligned : constant Integer_Address := Boolean'Pos (ModA (OrA (RA, XA), VU) /= 0) - 1; -- Zero iff one or more argument addresses is not aligned, else all 1's type Vector_Ptr is access all Vectors.Vector; type Element_Ptr is access all Element; function VP is new Ada.Unchecked_Conversion (Address, Vector_Ptr); function EP is new Ada.Unchecked_Conversion (Address, Element_Ptr); pragma Assert (VI > 0); -- VI = VU -- VU = Vectors.Vector'Size / Storage_Unit -- Vector'Size = System.Word_Size -- System.Word_Size is a multiple of Storage_Unit -- Vector'Size > Storage_Unit -- VI > 0 SA : constant Address := AddA (XA, To_Address ((Integer_Address (Length) / VI * VI) and Unaligned)); -- First address of argument X to start serial processing begin while XA < SA loop VP (RA).all := Vector_Op (VP (XA).all); XA := AddA (XA, VU); RA := AddA (RA, VU); end loop; while XA < X + Length loop EP (RA).all := Element_Op (EP (XA).all); XA := AddA (XA, EU); RA := AddA (RA, EU); end loop; end Unary_Operation; end System.Generic_Vector_Operations;
reznikmm/matreshka
Ada
4,713
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Db_Table_Filter_Elements; package Matreshka.ODF_Db.Table_Filter_Elements is type Db_Table_Filter_Element_Node is new Matreshka.ODF_Db.Abstract_Db_Element_Node and ODF.DOM.Db_Table_Filter_Elements.ODF_Db_Table_Filter with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Db_Table_Filter_Element_Node; overriding function Get_Local_Name (Self : not null access constant Db_Table_Filter_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Db_Table_Filter_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Db_Table_Filter_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Db_Table_Filter_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Db.Table_Filter_Elements;
charlie5/lace
Ada
1,037
adb
with openGL.Tasks, GL.Binding, interfaces.C.Strings, ada.unchecked_Conversion; package body openGL.Server is function Version return String is use GL, GL.Binding, Interfaces; check_is_OK : constant Boolean := openGL.Tasks.Check with Unreferenced; type GLubyte_Pointer is access all GLubyte; function to_Chars_ptr is new ada.unchecked_Conversion (GLubyte_Pointer, c.Strings.Chars_ptr); Result : constant String := c.Strings.Value (to_Chars_ptr (glGetString (GL_VERSION))); begin return Result; end Version; function Version return a_Version is use GL, GL.Binding; Major : aliased glInt; Minor : aliased glInt; begin glGetIntegerv (GL_MAJOR_VERSION, Major'Access); glGetIntegerv (GL_MINOR_VERSION, Minor'Access); return (Major => Integer (Major), Minor => Integer (Minor)); end Version; end openGL.Server;
AdaCore/training_material
Ada
222
adb
package body Swaps is procedure Swap (Value_1 : in out Integer; Value_2 : in out Integer) is Tmp : Integer; begin Tmp := Value_1; Value_1 := Value_2; Value_2 := Tmp; end Swap; end Swaps;
zhmu/ananas
Ada
9,741
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- K R U N C H -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ procedure Krunch (Buffer : in out String; Len : in out Natural; Maxlen : Natural; No_Predef : Boolean) is pragma Assert (Buffer'First = 1); -- This is a documented requirement; the assert turns off index warnings B1 : Character renames Buffer (1); Curlen : Natural; Krlen : Natural; Num_Seps : Natural; Startloc : Natural; J : Natural; begin -- Deal with special predefined children cases. Startloc is the first -- location for the krunch, set to 1, except for the predefined children -- case, where it is set to 3, to start after the standard prefix. if No_Predef then Startloc := 1; Curlen := Len; Krlen := Maxlen; elsif Len >= 18 and then Buffer (1 .. 17) = "ada-wide_text_io-" then Startloc := 3; Buffer (2 .. 5) := "-wt-"; Buffer (6 .. Len - 12) := Buffer (18 .. Len); Curlen := Len - 12; Krlen := 8; elsif Len >= 23 and then Buffer (1 .. 22) = "ada-wide_wide_text_io-" then Startloc := 3; Buffer (2 .. 5) := "-zt-"; Buffer (6 .. Len - 17) := Buffer (23 .. Len); Curlen := Len - 17; Krlen := 8; elsif Len >= 27 and then Buffer (1 .. 27) = "ada-long_long_long_integer_" then Startloc := 3; Buffer (2 .. Len - 2) := Buffer (4 .. Len); Buffer (18 .. Len - 10) := Buffer (26 .. Len - 2); Curlen := Len - 10; Krlen := 8; elsif Len >= 4 and then Buffer (1 .. 4) = "ada-" then Startloc := 3; Buffer (2 .. Len - 2) := Buffer (4 .. Len); Curlen := Len - 2; Krlen := 8; elsif Len >= 5 and then Buffer (1 .. 5) = "gnat-" then Startloc := 3; Buffer (2 .. Len - 3) := Buffer (5 .. Len); Curlen := Len - 3; Krlen := 8; elsif Len >= 7 and then Buffer (1 .. 7) = "system-" then Startloc := 3; Buffer (2 .. Len - 5) := Buffer (7 .. Len); Curlen := Len - 5; if (Curlen >= 3 and then Buffer (Curlen - 2 .. Curlen) = "128") or else (Len >= 9 and then (Buffer (3 .. 9) = "exn_lll" or else Buffer (3 .. 9) = "exp_lll" or else Buffer (3 .. 9) = "img_lll" or else Buffer (3 .. 9) = "val_lll" or else Buffer (3 .. 9) = "wid_lll")) or else (Curlen = 10 and then Buffer (3 .. 6) = "pack") then if Len >= 15 and then Buffer (3 .. 15) = "compare_array" then Buffer (3 .. 4) := "ca"; Buffer (5 .. Curlen - 11) := Buffer (16 .. Curlen); Curlen := Curlen - 11; end if; Krlen := 9; else Krlen := 8; end if; elsif Len >= 11 and then Buffer (1 .. 11) = "interfaces-" then Startloc := 3; Buffer (2 .. Len - 9) := Buffer (11 .. Len); Curlen := Len - 9; -- Only fully krunch historical units. For new units, simply use -- the 'i-' prefix instead of 'interfaces-'. Packages Interfaces.C -- and Interfaces.Cobol are already in the right form. Package -- Interfaces.Definitions is krunched for backward compatibility. if (Curlen > 3 and then Buffer (3 .. 4) = "c-") or else (Curlen > 3 and then Buffer (3 .. 4) = "c_") or else (Curlen = 13 and then Buffer (3 .. 13) = "definitions") or else (Curlen = 9 and then Buffer (3 .. 9) = "fortran") or else (Curlen = 16 and then Buffer (3 .. 16) = "packed_decimal") or else (Curlen > 8 and then Buffer (3 .. 9) = "vxworks") or else (Curlen > 5 and then Buffer (3 .. 6) = "java") then Krlen := 8; else Krlen := Maxlen; end if; -- For the renamings in the obsolescent section, we also force krunching -- to 8 characters, but no other special processing is required here. -- Note that text_io and calendar are already short enough anyway. elsif (Len = 9 and then Buffer (1 .. 9) = "direct_io") or else (Len = 10 and then Buffer (1 .. 10) = "interfaces") or else (Len = 13 and then Buffer (1 .. 13) = "io_exceptions") or else (Len = 12 and then Buffer (1 .. 12) = "machine_code") or else (Len = 13 and then Buffer (1 .. 13) = "sequential_io") or else (Len = 20 and then Buffer (1 .. 20) = "unchecked_conversion") or else (Len = 22 and then Buffer (1 .. 22) = "unchecked_deallocation") then Startloc := 1; Krlen := 8; Curlen := Len; -- Special case of a child unit whose parent unit is a single letter that -- is A, G, I, or S. In order to prevent confusion with krunched names -- of predefined units use a tilde rather than a minus as the second -- character of the file name. elsif Len > 1 and then Buffer (2) = '-' and then (B1 = 'a' or else B1 = 'g' or else B1 = 'i' or else B1 = 's') and then Len <= Maxlen then Buffer (2) := '~'; return; -- Normal case, not a predefined file else Startloc := 1; Curlen := Len; Krlen := Maxlen; end if; -- Immediate return if file name is short enough now if Curlen <= Krlen then Len := Curlen; return; end if; -- If string contains Wide_Wide, replace by a single z J := Startloc; while J <= Curlen - 8 loop if Buffer (J .. J + 8) = "wide_wide" and then (J = Startloc or else Buffer (J - 1) = '-' or else Buffer (J - 1) = '_') and then (J + 8 = Curlen or else Buffer (J + 9) = '-' or else Buffer (J + 9) = '_') then Buffer (J) := 'z'; Buffer (J + 1 .. Curlen - 8) := Buffer (J + 9 .. Curlen); Curlen := Curlen - 8; end if; J := J + 1; end loop; -- For now, refuse to krunch a name that contains an ESC character (wide -- character sequence) since it's too much trouble to do this right ??? for J in 1 .. Curlen loop if Buffer (J) = ASCII.ESC then return; end if; end loop; -- Count number of separators (minus signs and underscores) and for now -- replace them by spaces. We keep them around till the end to control -- the krunching process, and then we eliminate them as the last step Num_Seps := 0; for J in Startloc .. Curlen loop if Buffer (J) = '-' or else Buffer (J) = '_' then Buffer (J) := ' '; Num_Seps := Num_Seps + 1; end if; end loop; -- Now we do the one character at a time krunch till we are short enough while Curlen - Num_Seps > Krlen loop declare Long_Length : Natural := 0; Long_Last : Natural := 0; Piece_Start : Natural; Ptr : Natural; begin Ptr := Startloc; -- Loop through pieces to find longest piece while Ptr <= Curlen loop Piece_Start := Ptr; -- Loop through characters in one piece of name while Ptr <= Curlen and then Buffer (Ptr) /= ' ' loop Ptr := Ptr + 1; end loop; if Ptr - Piece_Start > Long_Length then Long_Length := Ptr - Piece_Start; Long_Last := Ptr - 1; end if; Ptr := Ptr + 1; end loop; -- Remove last character of longest piece if Long_Last < Curlen then Buffer (Long_Last .. Curlen - 1) := Buffer (Long_Last + 1 .. Curlen); end if; Curlen := Curlen - 1; end; end loop; -- Final step, remove the spaces Len := 0; for J in 1 .. Curlen loop if Buffer (J) /= ' ' then Len := Len + 1; Buffer (Len) := Buffer (J); end if; end loop; return; end Krunch;
reznikmm/matreshka
Ada
3,689
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Attributes; package ODF.DOM.Form_Label_Attributes is pragma Preelaborate; type ODF_Form_Label_Attribute is limited interface and XML.DOM.Attributes.DOM_Attribute; type ODF_Form_Label_Attribute_Access is access all ODF_Form_Label_Attribute'Class with Storage_Size => 0; end ODF.DOM.Form_Label_Attributes;
ph0sph8/amass
Ada
2,220
ads
-- Copyright 2017 Jeff Foley. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. local json = require("json") name = "GitHub" type = "api" function start() setratelimit(7) end function vertical(ctx, domain) if (api == nil or api.key == nil or api.key == "") then return end for i=1,100 do local resp local vurl = buildurl(domain, i) -- Check if the response data is in the graph database if (api.ttl ~= nil and api.ttl > 0) then resp = obtain_response(vurl, api.ttl) end if (resp == nil or resp == "") then local err resp, err = request({ url=vurl, headers={ ['Authorization']="token " .. api.key, ['Content-Type']="application/json", }, }) if (err ~= nil and err ~= "") then return end if (api.ttl ~= nil and api.ttl > 0) then cache_response(vurl, resp) end end local d = json.decode(resp) if (d == nil or d['total_count'] == 0 or #(d.items) == 0) then return end for i, item in pairs(d.items) do search_item(ctx, item) end active(ctx) checkratelimit() end end function search_item(ctx, item) local info, err = request({ url=item.url, headers={['Content-Type']="application/json"}, }) if (err ~= nil and err ~= "") then return end local data = json.decode(info) if (data == nil or data['download_url'] == nil) then return end local content, err = request({url=data['download_url']}) if err == nil then sendnames(ctx, content) end end function buildurl(domain, pagenum) return "https://api.github.com/search/code?q=\"" .. domain .. "\"&page=" .. pagenum .. "&per_page=100" end function sendnames(ctx, content) local names = find(content, subdomainre) if names == nil then return end for i, v in pairs(names) do newname(ctx, v) end end
shinesolutions/swagger-aem-osgi
Ada
3,158,319
adb
-- Adobe Experience Manager OSGI config (AEM) API -- Swagger AEM OSGI is an OpenAPI specification for Adobe Experience Manager (AEM) OSGI Configurations API -- -- OpenAPI spec version: 1.0.0_pre.0 -- Contact: [email protected] -- -- NOTE: This package is auto generated by the swagger code generator 3.2.1-SNAPSHOT. -- https://openapi-generator.tech -- Do not edit the class manually. package body .Models is use Swagger.Streams; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyBoolean_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("optional", Value.Optional); Into.Write_Entity ("is_set", Value.Is_Set); Into.Write_Entity ("type", Value.P_Type); Into.Write_Entity ("value", Value.Value); Into.Write_Entity ("description", Value.Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyBoolean_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyBoolean_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "optional", Value.Optional); Swagger.Streams.Deserialize (Object, "is_set", Value.Is_Set); Swagger.Streams.Deserialize (Object, "type", Value.P_Type); Swagger.Streams.Deserialize (Object, "value", Value.Value); Swagger.Streams.Deserialize (Object, "description", Value.Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyBoolean_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyBoolean_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "formsManagerConfig.includeOOTBTemplates", Value.Forms_Manager_Config_Include_O_O_T_B_Templates); Serialize (Into, "formsManagerConfig.includeDeprecatedTemplates", Value.Forms_Manager_Config_Include_Deprecated_Templates); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "formsManagerConfig.includeOOTBTemplates", Value.Forms_Manager_Config_Include_O_O_T_B_Templates); Deserialize (Object, "formsManagerConfig.includeDeprecatedTemplates", Value.Forms_Manager_Config_Include_Deprecated_Templates); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemFormsndocumentsConfigAEMFormsManagerConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemTransactionCoreImplTransactionRecorderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "isTransactionRecordingEnabled", Value.Is_Transaction_Recording_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemTransactionCoreImplTransactionRecorderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemTransactionCoreImplTransactionRecorderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "isTransactionRecordingEnabled", Value.Is_Transaction_Recording_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemTransactionCoreImplTransactionRecorderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemTransactionCoreImplTransactionRecorderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemTransactionCoreImplTransactionRecorderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplPageEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.pageeventlistener.enabled", Value.Cq_Commerce_Pageeventlistener_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplPageEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplPageEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.pageeventlistener.enabled", Value.Cq_Commerce_Pageeventlistener_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplPageEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommercePimImplPageEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplPageEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplPageEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplPageEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplPageEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommercePimImplPageEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dmreplicateonmodify.enabled", Value.Dmreplicateonmodify_Enabled); Serialize (Into, "dmreplicateonmodify.forcesyncdeletes", Value.Dmreplicateonmodify_Forcesyncdeletes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dmreplicateonmodify.enabled", Value.Dmreplicateonmodify_Enabled); Deserialize (Object, "dmreplicateonmodify.forcesyncdeletes", Value.Dmreplicateonmodify_Forcesyncdeletes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamIpsImplReplicationTriggerReplicateOnModifyWorkerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "disableSmartSync", Value.Disable_Smart_Sync); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "disableSmartSync", Value.Disable_Smart_Sync); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensOfflinecontentImplOfflineContentServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enableDataTriggeredContent", Value.Enable_Data_Triggered_Content); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enableDataTriggeredContent", Value.Enable_Data_Triggered_Content); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensSegmentationImplSegmentationFeatureFlagInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cors.enabling", Value.Cors_Enabling); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cors.enabling", Value.Cors_Enabling); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCorsCORSAuthenticationFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "isMemberCheck", Value.Is_Member_Check); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "isMemberCheck", Value.Is_Member_Check); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementAdaptorsEnablementLearningPathAdaptorFInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "isMemberCheck", Value.Is_Member_Check); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "isMemberCheck", Value.Is_Member_Check); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementAdaptorsEnablementResourceAdaptorFactoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enableFallback", Value.Enable_Fallback); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enableFallback", Value.Enable_Fallback); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialServiceusersInternalImplServiceUserWrapperImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "isPrimaryPublisher", Value.Is_Primary_Publisher); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "isPrimaryPublisher", Value.Is_Primary_Publisher); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseImplPublisherConfigurationImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplSocialUtilsImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "legacyCloudUGCPathMapping", Value.Legacy_Cloud_U_G_C_Path_Mapping); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplSocialUtilsImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplSocialUtilsImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "legacyCloudUGCPathMapping", Value.Legacy_Cloud_U_G_C_Path_Mapping); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplSocialUtilsImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseImplSocialUtilsImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseImplSocialUtilsImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerBaseSystemStatusServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "disabled", Value.Disabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerBaseSystemStatusServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerBaseSystemStatusServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "disabled", Value.Disabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerBaseSystemStatusServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAnalyzerBaseSystemStatusServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAnalyzerBaseSystemStatusServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "disabled", Value.Disabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "disabled", Value.Disabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAnalyzerScriptsCompileAllScriptsCompilerServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteContexthubImplContextHubImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.granite.contexthub.silent_mode", Value.Com_Adobe_Granite_Contexthub_Silent_Mode); Serialize (Into, "com.adobe.granite.contexthub.show_ui", Value.Com_Adobe_Granite_Contexthub_Show_Ui); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteContexthubImplContextHubImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteContexthubImplContextHubImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.granite.contexthub.silent_mode", Value.Com_Adobe_Granite_Contexthub_Silent_Mode); Deserialize (Object, "com.adobe.granite.contexthub.show_ui", Value.Com_Adobe_Granite_Contexthub_Show_Ui); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteContexthubImplContextHubImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteContexthubImplContextHubImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteContexthubImplContextHubImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteContexthubImplContextHubImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteContexthubImplContextHubImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteContexthubImplContextHubImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteContexthubImplContextHubImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationDistributionTransProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "forward.requests", Value.Forward_Requests); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationDistributionTransProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationDistributionTransProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "forward.requests", Value.Forward_Requests); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationDistributionTransProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplReplicationDistributionTransProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplReplicationDistributionTransInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteInfocollectorInfoCollectorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "granite.infocollector.includeThreadDumps", Value.Granite_Infocollector_Include_Thread_Dumps); Serialize (Into, "granite.infocollector.includeHeapDump", Value.Granite_Infocollector_Include_Heap_Dump); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteInfocollectorInfoCollectorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteInfocollectorInfoCollectorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "granite.infocollector.includeThreadDumps", Value.Granite_Infocollector_Include_Thread_Dumps); Deserialize (Object, "granite.infocollector.includeHeapDump", Value.Granite_Infocollector_Include_Heap_Dump); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteInfocollectorInfoCollectorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteInfocollectorInfoCollectorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteInfocollectorInfoCollectorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteInfocollectorInfoCollectorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteInfocollectorInfoCollectorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteInfocollectorInfoCollectorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteInfocollectorInfoCollectorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.client.revocation.active", Value.Oauth_Client_Revocation_Active); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.client.revocation.active", Value.Oauth_Client_Revocation_Active); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2ClientRevocationServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.token.revocation.active", Value.Oauth_Token_Revocation_Active); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.token.revocation.active", Value.Oauth_Token_Revocation_Active); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2TokenRevocationServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobClonerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "offloading.jobcloner.enabled", Value.Offloading_Jobcloner_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobClonerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobClonerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "offloading.jobcloner.enabled", Value.Offloading_Jobcloner_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobClonerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplOffloadingJobClonerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplOffloadingJobClonerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobOffloaderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "offloading.offloader.enabled", Value.Offloading_Offloader_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobOffloaderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobOffloaderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "offloading.offloader.enabled", Value.Offloading_Offloader_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobOffloaderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplOffloadingJobOffloaderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplOffloadingJobOffloaderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "offloading.agentmanager.enabled", Value.Offloading_Agentmanager_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "offloading.agentmanager.enabled", Value.Offloading_Agentmanager_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplTransporterOffloadingAgentManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowConsoleFragsWorkflowWithdrawFeatureInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "granite.workflow.WorkflowPublishEventService.enabled", Value.Granite_Workflow_Workflow_Publish_Event_Service_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "granite.workflow.WorkflowPublishEventService.enabled", Value.Granite_Workflow_Workflow_Publish_Event_Service_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowConsolePublishWorkflowPublishEventServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.testandtarget.accountoptionsupdater.enabled", Value.Cq_Analytics_Testandtarget_Accountoptionsupdater_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.testandtarget.accountoptionsupdater.enabled", Value.Cq_Analytics_Testandtarget_Accountoptionsupdater_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplAccountOptionsUpdaterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.testandtarget.deleteauthoractivitylistener.enabled", Value.Cq_Analytics_Testandtarget_Deleteauthoractivitylistener_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.testandtarget.deleteauthoractivitylistener.enabled", Value.Cq_Analytics_Testandtarget_Deleteauthoractivitylistener_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplDeleteAuthorActivityListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.testandtarget.pushauthorcampaignpagelistener.enabled", Value.Cq_Analytics_Testandtarget_Pushauthorcampaignpagelistener_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.testandtarget.pushauthorcampaignpagelistener.enabled", Value.Cq_Analytics_Testandtarget_Pushauthorcampaignpagelistener_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplPushAuthorCampaignPageListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplSegmentImporterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.testandtarget.segmentimporter.enabled", Value.Cq_Analytics_Testandtarget_Segmentimporter_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplSegmentImporterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplSegmentImporterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.testandtarget.segmentimporter.enabled", Value.Cq_Analytics_Testandtarget_Segmentimporter_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplSegmentImporterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplSegmentImporterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplSegmentImporterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "isEnabled", Value.Is_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "isEnabled", Value.Is_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAssethomeAssetHomePageConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetMoveListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetMoveListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetMoveListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetMoveListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAssetMoveListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetMoveListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetMoveListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetMoveListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetMoveListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAssetMoveListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "isEnabled", Value.Is_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "isEnabled", Value.Is_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplFoldermetadataschemaFolderMetadataSchemaFeatInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplGfxCommonsGfxRendererProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "skip.bufferedcache", Value.Skip_Bufferedcache); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplGfxCommonsGfxRendererProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplGfxCommonsGfxRendererProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "skip.bufferedcache", Value.Skip_Bufferedcache); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplGfxCommonsGfxRendererProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplGfxCommonsGfxRendererProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplGfxCommonsGfxRendererInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.detect.asset.mime.from.content", Value.Cq_Dam_Detect_Asset_Mime_From_Content); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.detect.asset.mime.from.content", Value.Cq_Dam_Detect_Asset_Mime_From_Content); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMimeTypeDamMimeTypeServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetDownloadServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetDownloadServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetDownloadServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetDownloadServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletAssetDownloadServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletAssetDownloadServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCreateAssetServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "detect_duplicate", Value.Detect_Duplicate); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCreateAssetServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCreateAssetServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "detect_duplicate", Value.Detect_Duplicate); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCreateAssetServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCreateAssetServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCreateAssetServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCreateAssetServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCreateAssetServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCreateAssetServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCreateAssetServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletGuidLookupFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.core.guidlookupfilter.enabled", Value.Cq_Dam_Core_Guidlookupfilter_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletGuidLookupFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletGuidLookupFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.core.guidlookupfilter.enabled", Value.Cq_Dam_Core_Guidlookupfilter_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletGuidLookupFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletGuidLookupFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletGuidLookupFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMultipleLicenseAcceptServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.drm.enable", Value.Cq_Dam_Drm_Enable); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMultipleLicenseAcceptServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMultipleLicenseAcceptServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.drm.enable", Value.Cq_Dam_Drm_Enable); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMultipleLicenseAcceptServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletMultipleLicenseAcceptServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletMultipleLicenseAcceptServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPdfPdfHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "raster.annotation", Value.Raster_Annotation); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPdfPdfHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPdfPdfHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "raster.annotation", Value.Raster_Annotation); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPdfPdfHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerStandardPdfPdfHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerStandardPdfPdfHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsPostScriptHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "raster.annotation", Value.Raster_Annotation); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsPostScriptHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsPostScriptHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "raster.annotation", Value.Raster_Annotation); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsPostScriptHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerStandardPsPostScriptHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerStandardPsPostScriptHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "delete.zip.file", Value.Delete_Zip_File); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "delete.zip.file", Value.Delete_Zip_File); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamPimImplSourcingUploadProcessProductAssetsUploadProInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.s7dam.dynamicmediaconfigeventlistener.enabled", Value.Cq_Dam_S7dam_Dynamicmediaconfigeventlistener_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.s7dam.dynamicmediaconfigeventlistener.enabled", Value.Cq_Dam_S7dam_Dynamicmediaconfigeventlistener_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonAnalyticsImplS7damDynamicMediaConfigEvenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonS7damDamChangeEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.s7dam.damchangeeventlistener.enabled", Value.Cq_Dam_S7dam_Damchangeeventlistener_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonS7damDamChangeEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonS7damDamChangeEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.s7dam.damchangeeventlistener.enabled", Value.Cq_Dam_S7dam_Damchangeeventlistener_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonS7damDamChangeEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonS7damDamChangeEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonS7damDamChangeEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7ConfigurationEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.scene7.configurationeventlistener.enabled", Value.Cq_Dam_Scene7_Configurationeventlistener_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7ConfigurationEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7ConfigurationEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.scene7.configurationeventlistener.enabled", Value.Cq_Dam_Scene7_Configurationeventlistener_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7ConfigurationEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7ConfigurationEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7ConfigurationEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamVideoImplServletVideoTestServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamVideoImplServletVideoTestServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamVideoImplServletVideoTestServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamVideoImplServletVideoTestServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamVideoImplServletVideoTestServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamVideoImplServletVideoTestServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamVideoImplServletVideoTestServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamVideoImplServletVideoTestServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamVideoImplServletVideoTestServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamVideoImplServletVideoTestServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPersonalizationImplServletsTargetingConfigurationServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "forcelocation", Value.Forcelocation); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPersonalizationImplServletsTargetingConfigurationServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPersonalizationImplServletsTargetingConfigurationServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "forcelocation", Value.Forcelocation); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPersonalizationImplServletsTargetingConfigurationServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPersonalizationImplServletsTargetingConfigurationServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPersonalizationImplServletsTargetingConfigurationServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "distribute_events", Value.Distribute_Events); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "distribute_events", Value.Distribute_Events); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReplicatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReplicatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.searchpromote.confighandler.enabled", Value.Cq_Searchpromote_Confighandler_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.searchpromote.confighandler.enabled", Value.Cq_Searchpromote_Confighandler_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchpromoteImplPublishSearchPromoteConfigHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplJcrTagManagerFactoryImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "validation.enabled", Value.Validation_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplJcrTagManagerFactoryImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplJcrTagManagerFactoryImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "validation.enabled", Value.Validation_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplJcrTagManagerFactoryImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqTaggingImplJcrTagManagerFactoryImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqTaggingImplJcrTagManagerFactoryImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplSearchTagPredicateEvaluatorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "ignore_path", Value.Ignore_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplSearchTagPredicateEvaluatorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplSearchTagPredicateEvaluatorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "ignore_path", Value.Ignore_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplSearchTagPredicateEvaluatorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqTaggingImplSearchTagPredicateEvaluatorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqTaggingImplSearchTagPredicateEvaluatorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDebugFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "wcmdbgfilter.enabled", Value.Wcmdbgfilter_Enabled); Serialize (Into, "wcmdbgfilter.jspDebug", Value.Wcmdbgfilter_Jsp_Debug); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDebugFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDebugFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "wcmdbgfilter.enabled", Value.Wcmdbgfilter_Enabled); Deserialize (Object, "wcmdbgfilter.jspDebug", Value.Wcmdbgfilter_Jsp_Debug); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDebugFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplWCMDebugFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDebugFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDebugFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDebugFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDebugFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplWCMDebugFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDeveloperModeFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "wcmdevmodefilter.enabled", Value.Wcmdevmodefilter_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDeveloperModeFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDeveloperModeFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "wcmdevmodefilter.enabled", Value.Wcmdevmodefilter_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDeveloperModeFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplWCMDeveloperModeFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplWCMDeveloperModeFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailTaskEMailNotificationServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "notify.onupdate", Value.Notify_Onupdate); Serialize (Into, "notify.oncomplete", Value.Notify_Oncomplete); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailTaskEMailNotificationServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailTaskEMailNotificationServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "notify.onupdate", Value.Notify_Onupdate); Deserialize (Object, "notify.oncomplete", Value.Notify_Oncomplete); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailTaskEMailNotificationServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWorkflowImplEmailTaskEMailNotificationServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWorkflowImplEmailTaskEMailNotificationServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheAriesJmxFrameworkStateConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "attributeChangeNotificationEnabled", Value.Attribute_Change_Notification_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheAriesJmxFrameworkStateConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheAriesJmxFrameworkStateConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "attributeChangeNotificationEnabled", Value.Attribute_Change_Notification_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheAriesJmxFrameworkStateConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheAriesJmxFrameworkStateConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheAriesJmxFrameworkStateConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheAriesJmxFrameworkStateConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheAriesJmxFrameworkStateConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheAriesJmxFrameworkStateConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheAriesJmxFrameworkStateConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiNodeStateSolrServersInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "query.aggregation", Value.Query_Aggregation); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "query.aggregation", Value.Query_Aggregation); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrQueryIndexProvidInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "protectExternalId", Value.Protect_External_Id); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "protectExternalId", Value.Protect_External_Id); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplPrInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplConfigurationBindingsValueProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplDefDefaultConfigurationPersistenceStraInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "allow.only.system.user", Value.Allow_Only_System_User); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "allow.only.system.user", Value.Allow_Only_System_User); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrResourceInternalJcrSystemUserValidatorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "log.stacktrace.onclose", Value.Log_Stacktrace_Onclose); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "log.stacktrace.onclose", Value.Log_Stacktrace_Onclose); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingCoreImplScriptingResourceResolverProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyArray_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("optional", Value.Optional); Into.Write_Entity ("is_set", Value.Is_Set); Into.Write_Entity ("type", Value.P_Type); Serialize (Into, "values", Value.Values); Into.Write_Entity ("description", Value.Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyArray_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyArray_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "optional", Value.Optional); Swagger.Streams.Deserialize (Object, "is_set", Value.Is_Set); Swagger.Streams.Deserialize (Object, "type", Value.P_Type); Swagger.Streams.Deserialize (Object, "values", Value.Values); Swagger.Streams.Deserialize (Object, "description", Value.Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyArray_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyArray_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqExperiencelogImplExperienceLogConfigServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "disabledForGroups", Value.Disabled_For_Groups); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqExperiencelogImplExperienceLogConfigServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqExperiencelogImplExperienceLogConfigServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "disabledForGroups", Value.Disabled_For_Groups); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqExperiencelogImplExperienceLogConfigServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqExperiencelogImplExperienceLogConfigServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqExperiencelogImplExperienceLogConfigServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplUserSyncListenerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "nodetypes", Value.Nodetypes); Serialize (Into, "ignorableprops", Value.Ignorableprops); Serialize (Into, "ignorablenodes", Value.Ignorablenodes); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "distfolders", Value.Distfolders); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplUserSyncListenerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplUserSyncListenerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "nodetypes", Value.Nodetypes); Deserialize (Object, "ignorableprops", Value.Ignorableprops); Deserialize (Object, "ignorablenodes", Value.Ignorablenodes); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "distfolders", Value.Distfolders); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplUserSyncListenerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplUserSyncListenerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplUserSyncListenerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "automoderation.sequence", Value.Automoderation_Sequence); Serialize (Into, "automoderation.onfailurestop", Value.Automoderation_Onfailurestop); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "automoderation.sequence", Value.Automoderation_Sequence); Deserialize (Object, "automoderation.onfailurestop", Value.Automoderation_Onfailurestop); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseModerationImplAutoModerationImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteActivitystreamsImplActivityManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "aggregate.relationships", Value.Aggregate_Relationships); Serialize (Into, "aggregate.descend.virtual", Value.Aggregate_Descend_Virtual); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteActivitystreamsImplActivityManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteActivitystreamsImplActivityManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "aggregate.relationships", Value.Aggregate_Relationships); Deserialize (Object, "aggregate.descend.virtual", Value.Aggregate_Descend_Virtual); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteActivitystreamsImplActivityManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteActivitystreamsImplActivityManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteActivitystreamsImplActivityManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "compatgroups", Value.Compatgroups); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "compatgroups", Value.Compatgroups); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCompatrouterImplCompatSwitchingServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "fallbackPaths", Value.Fallback_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "fallbackPaths", Value.Fallback_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteConfImplRuntimeAwareConfigurationResourceResolvingInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "filter.methods", Value.Filter_Methods); Serialize (Into, "filter.enable.safe.user.agents", Value.Filter_Enable_Safe_User_Agents); Serialize (Into, "filter.safe.user.agents", Value.Filter_Safe_User_Agents); Serialize (Into, "filter.excluded.paths", Value.Filter_Excluded_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "filter.methods", Value.Filter_Methods); Deserialize (Object, "filter.enable.safe.user.agents", Value.Filter_Enable_Safe_User_Agents); Deserialize (Object, "filter.safe.user.agents", Value.Filter_Safe_User_Agents); Deserialize (Object, "filter.excluded.paths", Value.Filter_Excluded_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCsrfImplCSRFFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCsrfImplCSRFFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mime.allowEmpty", Value.Mime_Allow_Empty); Serialize (Into, "mime.allowed", Value.Mime_Allowed); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mime.allowEmpty", Value.Mime_Allow_Empty); Deserialize (Object, "mime.allowed", Value.Mime_Allowed); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRestAssetsImplAssetContentDispositionFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobJobHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "job.topics", Value.Job_Topics); Serialize (Into, "allow.self.process.termination", Value.Allow_Self_Process_Termination); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobJobHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobJobHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "job.topics", Value.Job_Topics); Deserialize (Object, "allow.self.process.termination", Value.Allow_Self_Process_Termination); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobJobHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreJobJobHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreJobJobHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "payload.move.white.list", Value.Payload_Move_White_List); Serialize (Into, "payload.move.handle.from.workflow.process", Value.Payload_Move_Handle_From_Workflow_Process); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "payload.move.white.list", Value.Payload_Move_White_List); Deserialize (Object, "payload.move.handle.from.workflow.process", Value.Payload_Move_Handle_From_Workflow_Process); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCorePayloadmapPayloadMoveListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.workflow.config.workflow.packages.root.path", Value.Cq_Workflow_Config_Workflow_Packages_Root_Path); Serialize (Into, "cq.workflow.config.workflow.process.legacy.mode", Value.Cq_Workflow_Config_Workflow_Process_Legacy_Mode); Serialize (Into, "cq.workflow.config.allow.locking", Value.Cq_Workflow_Config_Allow_Locking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.workflow.config.workflow.packages.root.path", Value.Cq_Workflow_Config_Workflow_Packages_Root_Path); Deserialize (Object, "cq.workflow.config.workflow.process.legacy.mode", Value.Cq_Workflow_Config_Workflow_Process_Legacy_Mode); Deserialize (Object, "cq.workflow.config.allow.locking", Value.Cq_Workflow_Config_Allow_Locking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreWorkflowConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreWorkflowConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsMetadataXmpFilterBlackWhiteProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "xmp.filter.apply_whitelist", Value.Xmp_Filter_Apply_Whitelist); Serialize (Into, "xmp.filter.whitelist", Value.Xmp_Filter_Whitelist); Serialize (Into, "xmp.filter.apply_blacklist", Value.Xmp_Filter_Apply_Blacklist); Serialize (Into, "xmp.filter.blacklist", Value.Xmp_Filter_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsMetadataXmpFilterBlackWhiteProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsMetadataXmpFilterBlackWhiteProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "xmp.filter.apply_whitelist", Value.Xmp_Filter_Apply_Whitelist); Deserialize (Object, "xmp.filter.whitelist", Value.Xmp_Filter_Whitelist); Deserialize (Object, "xmp.filter.apply_blacklist", Value.Xmp_Filter_Apply_Blacklist); Deserialize (Object, "xmp.filter.blacklist", Value.Xmp_Filter_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsMetadataXmpFilterBlackWhiteProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCommonsMetadataXmpFilterBlackWhiteProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCommonsMetadataXmpFilterBlackWhiteInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.allow.all.mime", Value.Cq_Dam_Allow_All_Mime); Serialize (Into, "cq.dam.allowed.asset.mimes", Value.Cq_Dam_Allowed_Asset_Mimes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.allow.all.mime", Value.Cq_Dam_Allow_All_Mime); Deserialize (Object, "cq.dam.allowed.asset.mimes", Value.Cq_Dam_Allowed_Asset_Mimes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMimeTypeAssetUploadRestrictionHelperInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplRenditionMakerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "xmp.propagate", Value.Xmp_Propagate); Serialize (Into, "xmp.excludes", Value.Xmp_Excludes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplRenditionMakerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplRenditionMakerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "xmp.propagate", Value.Xmp_Propagate); Deserialize (Object, "xmp.excludes", Value.Xmp_Excludes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplRenditionMakerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplRenditionMakerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplRenditionMakerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplRenditionMakerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplRenditionMakerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplRenditionMakerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplRenditionMakerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBinaryProviderServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Serialize (Into, "cq.dam.drm.enable", Value.Cq_Dam_Drm_Enable); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBinaryProviderServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBinaryProviderServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); Deserialize (Object, "cq.dam.drm.enable", Value.Cq_Dam_Drm_Enable); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBinaryProviderServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletBinaryProviderServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletBinaryProviderServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletDamContentDispositionFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.mime.type.blacklist", Value.Cq_Mime_Type_Blacklist); Serialize (Into, "cq.dam.empty.mime", Value.Cq_Dam_Empty_Mime); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletDamContentDispositionFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletDamContentDispositionFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.mime.type.blacklist", Value.Cq_Mime_Type_Blacklist); Deserialize (Object, "cq.dam.empty.mime", Value.Cq_Dam_Empty_Mime); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletDamContentDispositionFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletDamContentDispositionFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletDamContentDispositionFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7DamChangeEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.scene7.damchangeeventlistener.enabled", Value.Cq_Dam_Scene7_Damchangeeventlistener_Enabled); Serialize (Into, "cq.dam.scene7.damchangeeventlistener.observed.paths", Value.Cq_Dam_Scene7_Damchangeeventlistener_Observed_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7DamChangeEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7DamChangeEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.scene7.damchangeeventlistener.enabled", Value.Cq_Dam_Scene7_Damchangeeventlistener_Enabled); Deserialize (Object, "cq.dam.scene7.damchangeeventlistener.observed.paths", Value.Cq_Dam_Scene7_Damchangeeventlistener_Observed_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7DamChangeEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7DamChangeEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7DamChangeEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterProcessorImplHtmlParserFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "htmlparser.processTags", Value.Htmlparser_Process_Tags); Serialize (Into, "htmlparser.preserveCamelCase", Value.Htmlparser_Preserve_Camel_Case); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterProcessorImplHtmlParserFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterProcessorImplHtmlParserFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "htmlparser.processTags", Value.Htmlparser_Process_Tags); Deserialize (Object, "htmlparser.preserveCamelCase", Value.Htmlparser_Preserve_Camel_Case); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterProcessorImplHtmlParserFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterProcessorImplHtmlParserFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterProcessorImplHtmlParserFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplRedirectRedirectFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "redirect.enabled", Value.Redirect_Enabled); Serialize (Into, "redirect.stats.enabled", Value.Redirect_Stats_Enabled); Serialize (Into, "redirect.extensions", Value.Redirect_Extensions); Serialize (Into, "redirect.paths", Value.Redirect_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplRedirectRedirectFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplRedirectRedirectFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "redirect.enabled", Value.Redirect_Enabled); Deserialize (Object, "redirect.stats.enabled", Value.Redirect_Stats_Enabled); Deserialize (Object, "redirect.extensions", Value.Redirect_Extensions); Deserialize (Object, "redirect.paths", Value.Redirect_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplRedirectRedirectFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMobileCoreImplRedirectRedirectFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMobileCoreImplRedirectRedirectFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsPageMoveActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Serialize (Into, "cq.wcm.msm.impl.actions.pagemove.prop_referenceUpdate", Value.Cq_Wcm_Msm_Impl_Actions_Pagemove_Prop_Reference_Update); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsPageMoveActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsPageMoveActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Deserialize (Object, "cq.wcm.msm.impl.actions.pagemove.prop_referenceUpdate", Value.Cq_Wcm_Msm_Impl_Actions_Pagemove_Prop_Reference_Update); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsPageMoveActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsPageMoveActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsPageMoveActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Serialize (Into, "cq.wcm.msm.impl.action.referencesupdate.prop_updateNested", Value.Cq_Wcm_Msm_Impl_Action_Referencesupdate_Prop_Update_Nested); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Deserialize (Object, "cq.wcm.msm.impl.action.referencesupdate.prop_updateNested", Value.Cq_Wcm_Msm_Impl_Action_Referencesupdate_Prop_Update_Nested); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsReferencesUpdateActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplWidgetExtensionProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "extendable.widgets", Value.Extendable_Widgets); Serialize (Into, "widgetextensionprovider.debug", Value.Widgetextensionprovider_Debug); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplWidgetExtensionProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplWidgetExtensionProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "extendable.widgets", Value.Extendable_Widgets); Deserialize (Object, "widgetextensionprovider.debug", Value.Widgetextensionprovider_Debug); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplWidgetExtensionProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWidgetImplWidgetExtensionProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWidgetImplWidgetExtensionProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "configPropertyInheritancePropertyNames", Value.Config_Property_Inheritance_Property_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "configPropertyInheritancePropertyNames", Value.Config_Property_Inheritance_Property_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplDefDefaultConfigurationInheritanceStraInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJobConsumerManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.installer.configuration.persist", Value.Org_Apache_Sling_Installer_Configuration_Persist); Serialize (Into, "job.consumermanager.whitelist", Value.Job_Consumermanager_Whitelist); Serialize (Into, "job.consumermanager.blacklist", Value.Job_Consumermanager_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJobConsumerManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJobConsumerManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.installer.configuration.persist", Value.Org_Apache_Sling_Installer_Configuration_Persist); Deserialize (Object, "job.consumermanager.whitelist", Value.Job_Consumermanager_Whitelist); Deserialize (Object, "job.consumermanager.blacklist", Value.Job_Consumermanager_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJobConsumerManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplJobsJobConsumerManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplJobsJobConsumerManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplContentDispositionFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.content.disposition.paths", Value.Sling_Content_Disposition_Paths); Serialize (Into, "sling.content.disposition.excluded.paths", Value.Sling_Content_Disposition_Excluded_Paths); Serialize (Into, "sling.content.disposition.all.paths", Value.Sling_Content_Disposition_All_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplContentDispositionFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplContentDispositionFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.content.disposition.paths", Value.Sling_Content_Disposition_Paths); Deserialize (Object, "sling.content.disposition.excluded.paths", Value.Sling_Content_Disposition_Excluded_Paths); Deserialize (Object, "sling.content.disposition.all.paths", Value.Sling_Content_Disposition_All_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplContentDispositionFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingSecurityImplContentDispositionFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingSecurityImplContentDispositionFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplReferrerFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "allow.empty", Value.Allow_Empty); Serialize (Into, "allow.hosts", Value.Allow_Hosts); Serialize (Into, "allow.hosts.regexp", Value.Allow_Hosts_Regexp); Serialize (Into, "filter.methods", Value.Filter_Methods); Serialize (Into, "exclude.agents.regexp", Value.Exclude_Agents_Regexp); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplReferrerFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplReferrerFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "allow.empty", Value.Allow_Empty); Deserialize (Object, "allow.hosts", Value.Allow_Hosts); Deserialize (Object, "allow.hosts.regexp", Value.Allow_Hosts_Regexp); Deserialize (Object, "filter.methods", Value.Filter_Methods); Deserialize (Object, "exclude.agents.regexp", Value.Exclude_Agents_Regexp); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplReferrerFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingSecurityImplReferrerFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplReferrerFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSecurityImplReferrerFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplReferrerFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSecurityImplReferrerFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingSecurityImplReferrerFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetImplVersionVersionInfoServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "ecmaSuport", Value.Ecma_Suport); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetImplVersionVersionInfoServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetImplVersionVersionInfoServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "ecmaSuport", Value.Ecma_Suport); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetImplVersionVersionInfoServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsGetImplVersionVersionInfoServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsGetImplVersionVersionInfoServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "forms.formparagraphpostprocessor.enabled", Value.Forms_Formparagraphpostprocessor_Enabled); Serialize (Into, "forms.formparagraphpostprocessor.formresourcetypes", Value.Forms_Formparagraphpostprocessor_Formresourcetypes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "forms.formparagraphpostprocessor.enabled", Value.Forms_Formparagraphpostprocessor_Enabled); Deserialize (Object, "forms.formparagraphpostprocessor.formresourcetypes", Value.Forms_Formparagraphpostprocessor_Formresourcetypes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fontList", Value.Font_List); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fontList", Value.Font_List); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : AdaptiveFormAndInteractiveCommunicationWebChannelThemeConfigurInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pre-upgrade.maintenance.tasks", Value.Pre_Upgrade_Maintenance_Tasks); Serialize (Into, "pre-upgrade.hc.tags", Value.Pre_Upgrade_Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pre-upgrade.maintenance.tasks", Value.Pre_Upgrade_Maintenance_Tasks); Deserialize (Object, "pre-upgrade.hc.tags", Value.Pre_Upgrade_Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksMbeanImplPreUpgradeTasksMBeanImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "flush.agents", Value.Flush_Agents); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "flush.agents", Value.Flush_Agents); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCloudconfigCoreImplConfigurationReplicationEventHandleInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsReportingServicesProxyServleProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "reportingservices.proxy.whitelist", Value.Reportingservices_Proxy_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsReportingServicesProxyServleProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsReportingServicesProxyServleProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "reportingservices.proxy.whitelist", Value.Reportingservices_Proxy_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsReportingServicesProxyServleProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqContentinsightImplServletsReportingServicesProxyServleProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqContentinsightImplServletsReportingServicesProxyServleInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplConfFeatureConfigImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dam.cfm.resourceTypes", Value.Dam_Cfm_Resource_Types); Serialize (Into, "dam.cfm.referenceProperties", Value.Dam_Cfm_Reference_Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplConfFeatureConfigImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplConfFeatureConfigImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dam.cfm.resourceTypes", Value.Dam_Cfm_Resource_Types); Deserialize (Object, "dam.cfm.referenceProperties", Value.Dam_Cfm_Reference_Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplConfFeatureConfigImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplConfFeatureConfigImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplConfFeatureConfigImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoSpecialFilesHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.day.cq.dam.core.impl.io.SpecialFilesHandler.filepatters", Value.Com_Day_Cq_Dam_Core_Impl_Io_Special_Files_Handler_Filepatters); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoSpecialFilesHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoSpecialFilesHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.day.cq.dam.core.impl.io.SpecialFilesHandler.filepatters", Value.Com_Day_Cq_Dam_Core_Impl_Io_Special_Files_Handler_Filepatters); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoSpecialFilesHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamWebdavImplIoSpecialFilesHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamWebdavImplIoSpecialFilesHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServletsDTMDeployHookServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dtm.staging.ip.whitelist", Value.Dtm_Staging_Ip_Whitelist); Serialize (Into, "dtm.production.ip.whitelist", Value.Dtm_Production_Ip_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServletsDTMDeployHookServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServletsDTMDeployHookServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dtm.staging.ip.whitelist", Value.Dtm_Staging_Ip_Whitelist); Deserialize (Object, "dtm.production.ip.whitelist", Value.Dtm_Production_Ip_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServletsDTMDeployHookServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDtmImplServletsDTMDeployHookServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDtmImplServletsDTMDeployHookServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryRequestFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "history.requestFilter.excludedSelectors", Value.History_Request_Filter_Excluded_Selectors); Serialize (Into, "history.requestFilter.excludedExtensions", Value.History_Request_Filter_Excluded_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryRequestFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryRequestFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "history.requestFilter.excludedSelectors", Value.History_Request_Filter_Excluded_Selectors); Deserialize (Object, "history.requestFilter.excludedExtensions", Value.History_Request_Filter_Excluded_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryRequestFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqHistoryImplHistoryRequestFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqHistoryImplHistoryRequestFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "history.service.resourceTypes", Value.History_Service_Resource_Types); Serialize (Into, "history.service.pathFilter", Value.History_Service_Path_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "history.service.resourceTypes", Value.History_Service_Resource_Types); Deserialize (Object, "history.service.pathFilter", Value.History_Service_Path_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqHistoryImplHistoryServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHistoryImplHistoryServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHistoryImplHistoryServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqHistoryImplHistoryServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplHandlerChannelsUpdateHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.pagesupdatehandler.imageresourcetypes", Value.Cq_Pagesupdatehandler_Imageresourcetypes); Serialize (Into, "cq.pagesupdatehandler.productresourcetypes", Value.Cq_Pagesupdatehandler_Productresourcetypes); Serialize (Into, "cq.pagesupdatehandler.videoresourcetypes", Value.Cq_Pagesupdatehandler_Videoresourcetypes); Serialize (Into, "cq.pagesupdatehandler.dynamicsequenceresourcetypes", Value.Cq_Pagesupdatehandler_Dynamicsequenceresourcetypes); Serialize (Into, "cq.pagesupdatehandler.previewmodepaths", Value.Cq_Pagesupdatehandler_Previewmodepaths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplHandlerChannelsUpdateHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplHandlerChannelsUpdateHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.pagesupdatehandler.imageresourcetypes", Value.Cq_Pagesupdatehandler_Imageresourcetypes); Deserialize (Object, "cq.pagesupdatehandler.productresourcetypes", Value.Cq_Pagesupdatehandler_Productresourcetypes); Deserialize (Object, "cq.pagesupdatehandler.videoresourcetypes", Value.Cq_Pagesupdatehandler_Videoresourcetypes); Deserialize (Object, "cq.pagesupdatehandler.dynamicsequenceresourcetypes", Value.Cq_Pagesupdatehandler_Dynamicsequenceresourcetypes); Deserialize (Object, "cq.pagesupdatehandler.previewmodepaths", Value.Cq_Pagesupdatehandler_Previewmodepaths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplHandlerChannelsUpdateHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplHandlerChannelsUpdateHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplHandlerChannelsUpdateHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplScreensChannelPostProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "screens.channels.properties.to.remove", Value.Screens_Channels_Properties_To_Remove); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplScreensChannelPostProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplScreensChannelPostProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "screens.channels.properties.to.remove", Value.Screens_Channels_Properties_To_Remove); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplScreensChannelPostProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplScreensChannelPostProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplScreensChannelPostProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcBundlesImplHtmlLibraryManagerConfigHealthChInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcBundlesImplWcmFilterHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcPackagesImplExampleContentHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsEndpointsImplCommentOperationSeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsEndpointsImplTranslationOperatiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementLearningpathEndpointsImplEnablementLInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementResourceEndpointsImplEnablementResouInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialFilelibraryClientEndpointsImplFileLibraryOperaInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialForumClientEndpointsImplForumOperationsServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialIdeationClientEndpointsImplIdeationOperationsSInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialJournalClientEndpointsImplJournalOperationsSerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMembersEndpointsImplCommunityMemberGroupProfileInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMembersEndpointsImplCommunityMemberUserProfileOInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialQnaClientEndpointsImplQnaForumOperationsServicInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReviewClientEndpointsImplReviewOperationsServiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.social.console.analytics.components", Value.Cq_Social_Console_Analytics_Components); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.social.console.analytics.components", Value.Cq_Social_Console_Analytics_Components); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSiteImplAnalyticsComponentConfigurationServiceImInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplSiteConfiguratorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "componentsUsingTags", Value.Components_Using_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplSiteConfiguratorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplSiteConfiguratorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "componentsUsingTags", Value.Components_Using_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplSiteConfiguratorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSiteImplSiteConfiguratorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSiteImplSiteConfiguratorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplPublisherSyncServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "activeRunModes", Value.Active_Run_Modes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplPublisherSyncServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplPublisherSyncServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "activeRunModes", Value.Active_Run_Modes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplPublisherSyncServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplPublisherSyncServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplPublisherSyncServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "default.attachment.type.blacklist", Value.Default_Attachment_Type_Blacklist); Serialize (Into, "baseline.attachment.type.blacklist", Value.Baseline_Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "default.attachment.type.blacklist", Value.Default_Attachment_Type_Blacklist); Deserialize (Object, "baseline.attachment.type.blacklist", Value.Baseline_Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseSecurityImplDefaultAttachmentTypeBlackliInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "parameter.whitelist", Value.Parameter_Whitelist); Serialize (Into, "parameter.whitelist.prefixes", Value.Parameter_Whitelist_Prefixes); Serialize (Into, "binary.parameter.whitelist", Value.Binary_Parameter_Whitelist); Serialize (Into, "modifier.whitelist", Value.Modifier_Whitelist); Serialize (Into, "operation.whitelist", Value.Operation_Whitelist); Serialize (Into, "operation.whitelist.prefixes", Value.Operation_Whitelist_Prefixes); Serialize (Into, "typehint.whitelist", Value.Typehint_Whitelist); Serialize (Into, "resourcetype.whitelist", Value.Resourcetype_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "parameter.whitelist", Value.Parameter_Whitelist); Deserialize (Object, "parameter.whitelist.prefixes", Value.Parameter_Whitelist_Prefixes); Deserialize (Object, "binary.parameter.whitelist", Value.Binary_Parameter_Whitelist); Deserialize (Object, "modifier.whitelist", Value.Modifier_Whitelist); Deserialize (Object, "operation.whitelist", Value.Operation_Whitelist); Deserialize (Object, "operation.whitelist.prefixes", Value.Operation_Whitelist_Prefixes); Deserialize (Object, "typehint.whitelist", Value.Typehint_Whitelist); Deserialize (Object, "resourcetype.whitelist", Value.Resourcetype_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseSecurityImplSaferSlingPostValidatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.qrcode.servlet.whitelist", Value.Cq_Wcm_Qrcode_Servlet_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.qrcode.servlet.whitelist", Value.Cq_Wcm_Qrcode_Servlet_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmMobileQrcodeServletQRCodeImageGeneratorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplDefaultDataProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "alloweddataFileLocations", Value.Alloweddata_File_Locations); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplDefaultDataProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplDefaultDataProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "alloweddataFileLocations", Value.Alloweddata_File_Locations); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplDefaultDataProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFormsCommonServiceImplDefaultDataProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFormsCommonServiceImplDefaultDataProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "supportedPaths", Value.Supported_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "supportedPaths", Value.Supported_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthRequirementImplDefaultRequirementHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplCrxdeSupportBundleHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplDavExBundleHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "ignored.bundles", Value.Ignored_Bundles); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "ignored.bundles", Value.Ignored_Bundles); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplInactiveBundlesHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingGetServletHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingJavaScriptHandlerHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingJspScriptHandlerHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplSlingReferrerFilterHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplWebDavBundleHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "replicate.comment.resourceTypes", Value.Replicate_Comment_Resource_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "replicate.comment.resourceTypes", Value.Replicate_Comment_Resource_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCommentsInternalCommentReplicationContentFilterFacInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheImplOuterCacheFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.granite.httpcache.url.paths", Value.Com_Adobe_Granite_Httpcache_Url_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheImplOuterCacheFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheImplOuterCacheFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.granite.httpcache.url.paths", Value.Com_Adobe_Granite_Httpcache_Url_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheImplOuterCacheFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteHttpcacheImplOuterCacheFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteHttpcacheImplOuterCacheFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplBundlePseudoTranslationsProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pseudo.patterns", Value.Pseudo_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplBundlePseudoTranslationsProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplBundlePseudoTranslationsProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pseudo.patterns", Value.Pseudo_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplBundlePseudoTranslationsProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteI18nImplBundlePseudoTranslationsProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteI18nImplBundlePseudoTranslationsInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogErrorHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogErrorHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogErrorHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogErrorHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteLoggingImplLogErrorHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteLoggingImplLogErrorHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOptoutImplOptOutServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "optout.cookies", Value.Optout_Cookies); Serialize (Into, "optout.headers", Value.Optout_Headers); Serialize (Into, "optout.whitelist.cookies", Value.Optout_Whitelist_Cookies); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOptoutImplOptOutServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOptoutImplOptOutServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "optout.cookies", Value.Optout_Cookies); Deserialize (Object, "optout.headers", Value.Optout_Headers); Deserialize (Object, "optout.whitelist.cookies", Value.Optout_Whitelist_Cookies); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOptoutImplOptOutServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOptoutImplOptOutServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOptoutImplOptOutServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcQueriesStatusHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcQueryLimitsHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteReplicationHcImplReplicationTransportUsersHealthCInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplAuthorizableNodeNameHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "exclude.search.path", Value.Exclude_Search_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "exclude.search.path", Value.Exclude_Search_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplContentSlingSlingContentHealthCInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplContinuousRGCHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplDefaultAccessUserProfileHealthCheInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "account.logins", Value.Account_Logins); Serialize (Into, "console.logins", Value.Console_Logins); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "account.logins", Value.Account_Logins); Deserialize (Object, "console.logins", Value.Console_Logins); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplDefaultLoginsHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplObservationQueueLengthHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRequestsLoggingImplHcRequestsStatusHealthCheckImInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSecurityUserUiInternalServletsSSLConfigurationSInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsImplStorePropertiesChangeListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.store.listener.additionalStorePaths", Value.Cq_Store_Listener_Additional_Store_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsImplStorePropertiesChangeListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsImplStorePropertiesChangeListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.store.listener.additionalStorePaths", Value.Cq_Store_Listener_Additional_Store_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsImplStorePropertiesChangeListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsImplStorePropertiesChangeListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsImplStorePropertiesChangeListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.adapterfactory.contextstores", Value.Cq_Analytics_Adapterfactory_Contextstores); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.adapterfactory.contextstores", Value.Cq_Analytics_Adapterfactory_Contextstores); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplSitecatalystAdapterFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "codeupgradetasks", Value.Codeupgradetasks); Serialize (Into, "codeupgradetaskfilters", Value.Codeupgradetaskfilters); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "codeupgradetasks", Value.Codeupgradetasks); Deserialize (Object, "codeupgradetaskfilters", Value.Codeupgradetaskfilters); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCompatCodeupgradeImplCodeUpgradeExecutionConditionCheckeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "upgradeTaskIgnoreList", Value.Upgrade_Task_Ignore_List); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "upgradeTaskIgnoreList", Value.Upgrade_Task_Ignore_List); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCompatCodeupgradeImplUpgradeTaskIgnoreListInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamChangeEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "changeeventlistener.observed.paths", Value.Changeeventlistener_Observed_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamChangeEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamChangeEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "changeeventlistener.observed.paths", Value.Changeeventlistener_Observed_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamChangeEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplDamChangeEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamChangeEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamChangeEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamChangeEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamChangeEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplDamChangeEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerIndesignFormatHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mimetype", Value.Mimetype); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerIndesignFormatHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerIndesignFormatHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mimetype", Value.Mimetype); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerIndesignFormatHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerIndesignFormatHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerIndesignFormatHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "xmphandler.cq.formats", Value.Xmphandler_Cq_Formats); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "xmphandler.cq.formats", Value.Xmphandler_Cq_Formats); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerXmpNCommXMPHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "granite:data", Value.Granitedata); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "granite:data", Value.Granitedata); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMetadataEditorSelectComponentHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerFfmpegLocatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "executable.searchpath", Value.Executable_Searchpath); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerFfmpegLocatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerFfmpegLocatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "executable.searchpath", Value.Executable_Searchpath); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerFfmpegLocatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerFfmpegLocatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerFfmpegLocatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerFfmpegLocatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerFfmpegLocatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerFfmpegLocatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerFfmpegLocatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.scene7.assetmimetypeservice.mapping", Value.Cq_Dam_Scene7_Assetmimetypeservice_Mapping); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.scene7.assetmimetypeservice.mapping", Value.Cq_Dam_Scene7_Assetmimetypeservice_Mapping); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7AssetMimeTypeServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportBinaryLessTransportHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "disabled.cipher.suites", Value.Disabled_Cipher_Suites); Serialize (Into, "enabled.cipher.suites", Value.Enabled_Cipher_Suites); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportBinaryLessTransportHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportBinaryLessTransportHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "disabled.cipher.suites", Value.Disabled_Cipher_Suites); Deserialize (Object, "enabled.cipher.suites", Value.Enabled_Cipher_Suites); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportBinaryLessTransportHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplTransportBinaryLessTransportHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplTransportBinaryLessTransportHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportHttpProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "disabled.cipher.suites", Value.Disabled_Cipher_Suites); Serialize (Into, "enabled.cipher.suites", Value.Enabled_Cipher_Suites); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportHttpProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportHttpProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "disabled.cipher.suites", Value.Disabled_Cipher_Suites); Deserialize (Object, "enabled.cipher.suites", Value.Enabled_Cipher_Suites); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportHttpProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplTransportHttpProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportHttpInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplTransportHttpInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportHttpInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplTransportHttpInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplTransportHttpInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSecurityACLSetupProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.aclsetup.rules", Value.Cq_Aclsetup_Rules); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSecurityACLSetupProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSecurityACLSetupProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.aclsetup.rules", Value.Cq_Aclsetup_Rules); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSecurityACLSetupProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSecurityACLSetupProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSecurityACLSetupInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSecurityACLSetupInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSecurityACLSetupInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSecurityACLSetupInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSecurityACLSetupInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.pagesupdatehandler.imageresourcetypes", Value.Cq_Pagesupdatehandler_Imageresourcetypes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.pagesupdatehandler.imageresourcetypes", Value.Cq_Pagesupdatehandler_Imageresourcetypes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmContentsyncImplHandlerPagesUpdateHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplCommandsWCMCommandServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "wcmcommandservlet.delete_whitelist", Value.Wcmcommandservlet_Delete_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplCommandsWCMCommandServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplCommandsWCMCommandServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "wcmcommandservlet.delete_whitelist", Value.Wcmcommandservlet_Delete_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplCommandsWCMCommandServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplCommandsWCMCommandServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplCommandsWCMCommandServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPagePostProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "paths", Value.Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPagePostProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPagePostProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "paths", Value.Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPagePostProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventPagePostProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventPagePostProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventRepositoryChangeEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "paths", Value.Paths); Serialize (Into, "excludedPaths", Value.Excluded_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventRepositoryChangeEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventRepositoryChangeEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "paths", Value.Paths); Deserialize (Object, "excludedPaths", Value.Excluded_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventRepositoryChangeEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventRepositoryChangeEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventRepositoryChangeEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplReferencesContentContentReferenceConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "contentReferenceConfig.resourceTypes", Value.Content_Reference_Config_Resource_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplReferencesContentContentReferenceConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplReferencesContentContentReferenceConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "contentReferenceConfig.resourceTypes", Value.Content_Reference_Config_Resource_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplReferencesContentContentReferenceConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplReferencesContentContentReferenceConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplReferencesContentContentReferenceConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "item.resource.types", Value.Item_Resource_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "item.resource.types", Value.Item_Resource_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsContentfinderConnectorConnectorVieInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsFindReplaceServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scope", Value.Scope); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsFindReplaceServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsFindReplaceServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scope", Value.Scope); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsFindReplaceServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsFindReplaceServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsFindReplaceServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterDesignPackageImporterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "extract.filter", Value.Extract_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterDesignPackageImporterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterDesignPackageImporterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "extract.filter", Value.Extract_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterDesignPackageImporterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterDesignPackageImporterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterDesignPackageImporterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplAdaptiveImageComponentServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "adapt.supported.widths", Value.Adapt_Supported_Widths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplAdaptiveImageComponentServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplAdaptiveImageComponentServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "adapt.supported.widths", Value.Adapt_Supported_Widths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplAdaptiveImageComponentServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplAdaptiveImageComponentServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplAdaptiveImageComponentServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageRedirectServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "excluded.resource.types", Value.Excluded_Resource_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageRedirectServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageRedirectServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "excluded.resource.types", Value.Excluded_Resource_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageRedirectServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplPageRedirectServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageRedirectServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageRedirectServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageRedirectServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageRedirectServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplPageRedirectServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "default.attachment.type.blacklist", Value.Default_Attachment_Type_Blacklist); Serialize (Into, "baseline.attachment.type.blacklist", Value.Baseline_Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "default.attachment.type.blacklist", Value.Default_Attachment_Type_Blacklist); Deserialize (Object, "baseline.attachment.type.blacklist", Value.Baseline_Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationSecurityImplDefaultAttachmentTypeBlacklistInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "parameter.whitelist", Value.Parameter_Whitelist); Serialize (Into, "parameter.whitelist.prefixes", Value.Parameter_Whitelist_Prefixes); Serialize (Into, "binary.parameter.whitelist", Value.Binary_Parameter_Whitelist); Serialize (Into, "modifier.whitelist", Value.Modifier_Whitelist); Serialize (Into, "operation.whitelist", Value.Operation_Whitelist); Serialize (Into, "operation.whitelist.prefixes", Value.Operation_Whitelist_Prefixes); Serialize (Into, "typehint.whitelist", Value.Typehint_Whitelist); Serialize (Into, "resourcetype.whitelist", Value.Resourcetype_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "parameter.whitelist", Value.Parameter_Whitelist); Deserialize (Object, "parameter.whitelist.prefixes", Value.Parameter_Whitelist_Prefixes); Deserialize (Object, "binary.parameter.whitelist", Value.Binary_Parameter_Whitelist); Deserialize (Object, "modifier.whitelist", Value.Modifier_Whitelist); Deserialize (Object, "operation.whitelist", Value.Operation_Whitelist); Deserialize (Object, "operation.whitelist.prefixes", Value.Operation_Whitelist_Prefixes); Deserialize (Object, "typehint.whitelist", Value.Typehint_Whitelist); Deserialize (Object, "resourcetype.whitelist", Value.Resourcetype_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationSecurityImplSaferSlingPostValidatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentDeleteActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentDeleteActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentDeleteActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentDeleteActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsContentDeleteActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsContentDeleteActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentUpdateActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Serialize (Into, "cq.wcm.msm.action.ignoredMixin", Value.Cq_Wcm_Msm_Action_Ignored_Mixin); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentUpdateActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentUpdateActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Deserialize (Object, "cq.wcm.msm.action.ignoredMixin", Value.Cq_Wcm_Msm_Action_Ignored_Mixin); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentUpdateActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsContentUpdateActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsContentUpdateActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsOrderChildrenActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsVersionCopyActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsVersionCopyActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsVersionCopyActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsVersionCopyActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsVersionCopyActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsVersionCopyActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationImplNotificationManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationImplNotificationManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationImplNotificationManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationImplNotificationManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmNotificationImplNotificationManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmNotificationImplNotificationManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmScriptingImplBVPManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.day.cq.wcm.scripting.bvp.script.engines", Value.Com_Day_Cq_Wcm_Scripting_Bvp_Script_Engines); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmScriptingImplBVPManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmScriptingImplBVPManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.day.cq.wcm.scripting.bvp.script.engines", Value.Com_Day_Cq_Wcm_Scripting_Bvp_Script_Engines); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmScriptingImplBVPManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmScriptingImplBVPManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmScriptingImplBVPManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmScriptingImplBVPManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmScriptingImplBVPManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmScriptingImplBVPManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmScriptingImplBVPManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWebservicesupportImplReplicationEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "Flush agents", Value.Flush_Agents); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWebservicesupportImplReplicationEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWebservicesupportImplReplicationEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "Flush agents", Value.Flush_Agents); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWebservicesupportImplReplicationEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmWebservicesupportImplReplicationEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmWebservicesupportImplReplicationEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in GuideLocalizationServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "supportedLocales", Value.Supported_Locales); Serialize (Into, "Localizable Properties", Value.Localizable_Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in GuideLocalizationServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out GuideLocalizationServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "supportedLocales", Value.Supported_Locales); Deserialize (Object, "Localizable Properties", Value.Localizable_Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out GuideLocalizationServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : GuideLocalizationServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in GuideLocalizationServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in GuideLocalizationServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out GuideLocalizationServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out GuideLocalizationServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : GuideLocalizationServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "persistentCacheIncludes", Value.Persistent_Cache_Includes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "persistentCacheIncludes", Value.Persistent_Cache_Includes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServicePreInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "commitsTrackerWriterGroups", Value.Commits_Tracker_Writer_Groups); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "commitsTrackerWriterGroups", Value.Commits_Tracker_Writer_Groups); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentSegmentNodeStoreMonitorServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "principalNames", Value.Principal_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "principalNames", Value.Principal_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugExcluInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingImplPackagingImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "packageRoots", Value.Package_Roots); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingImplPackagingImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingImplPackagingImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "packageRoots", Value.Package_Roots); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingImplPackagingImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitVaultPackagingImplPackagingImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitVaultPackagingImplPackagingImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationResolverImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "configBucketNames", Value.Config_Bucket_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationResolverImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationResolverImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "configBucketNames", Value.Config_Bucket_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationResolverImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplConfigurationResolverImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplConfigurationResolverImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "ignorePropertyNameRegex", Value.Ignore_Property_Name_Regex); Serialize (Into, "configCollectionPropertiesResourceNames", Value.Config_Collection_Properties_Resource_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "ignorePropertyNameRegex", Value.Ignore_Property_Name_Regex); Deserialize (Object, "configCollectionPropertiesResourceNames", Value.Config_Collection_Properties_Resource_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigManagementImplConfigurationManagementSettiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "parser.features", Value.Parser_Features); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "parser.features", Value.Parser_Features); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsHtmlInternalTagsoupHtmlParserInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mime.types", Value.Mime_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mime.types", Value.Mime_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsMimeInternalMimeTypeServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "users", Value.Users); Serialize (Into, "groups", Value.Groups); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "users", Value.Users); Deserialize (Object, "groups", Value.Groups); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingExtensionsWebconsolesecurityproviderInternalSlingWInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitImplRepositoryInitializerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "references", Value.References); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitImplRepositoryInitializerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitImplRepositoryInitializerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "references", Value.References); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitImplRepositoryInitializerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrRepoinitImplRepositoryInitializerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrRepoinitImplRepositoryInitializerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.scripting.sightly.js.bindings", Value.Org_Apache_Sling_Scripting_Sightly_Js_Bindings); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.scripting.sightly.js.bindings", Value.Org_Apache_Sling_Scripting_Sightly_Js_Bindings); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingSightlyJsImplJsapiSlyBindingsValuesProvInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "resource.types", Value.Resource_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "resource.types", Value.Resource_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqUiWcmCommonsInternalServletsRteRTEFilterServletFactInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "delete.name.regexps", Value.Delete_Name_Regexps); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "delete.name.regexps", Value.Delete_Name_Regexps); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqUpgradesCleanupImplUpgradeInstallFolderCleanupInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "importer.name", Value.Importer_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "importer.name", Value.Importer_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplDistributionToReplicationEvenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "full.gc.days", Value.Full_Gc_Days); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "full.gc.days", Value.Full_Gc_Days); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMaintenanceCrxImplRevisionCleanupTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmImplMCMConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "experience.indirection", Value.Experience_Indirection); Serialize (Into, "touchpoint.indirection", Value.Touchpoint_Indirection); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmImplMCMConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmImplMCMConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "experience.indirection", Value.Experience_Indirection); Deserialize (Object, "touchpoint.indirection", Value.Touchpoint_Indirection); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmImplMCMConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmImplMCMConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmImplMCMConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmImplMCMConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmImplMCMConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmImplMCMConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmImplMCMConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitRepositoryInitializerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "references", Value.References); Serialize (Into, "scripts", Value.Scripts); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitRepositoryInitializerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitRepositoryInitializerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "references", Value.References); Deserialize (Object, "scripts", Value.Scripts); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitRepositoryInitializerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrRepoinitRepositoryInitializerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrRepoinitRepositoryInitializerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyInteger_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("optional", Value.Optional); Into.Write_Entity ("is_set", Value.Is_Set); Into.Write_Entity ("type", Value.P_Type); Into.Write_Entity ("value", Value.Value); Into.Write_Entity ("description", Value.Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyInteger_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyInteger_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "optional", Value.Optional); Swagger.Streams.Deserialize (Object, "is_set", Value.Is_Set); Swagger.Streams.Deserialize (Object, "type", Value.P_Type); Swagger.Streams.Deserialize (Object, "value", Value.Value); Swagger.Streams.Deserialize (Object, "description", Value.Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyInteger_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyInteger_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplPsPlatformServerServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cache.enable", Value.Cache_Enable); Serialize (Into, "cache.rootPaths", Value.Cache_Root_Paths); Serialize (Into, "cache.maxSize", Value.Cache_Max_Size); Serialize (Into, "cache.maxEntries", Value.Cache_Max_Entries); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplPsPlatformServerServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplPsPlatformServerServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cache.enable", Value.Cache_Enable); Deserialize (Object, "cache.rootPaths", Value.Cache_Root_Paths); Deserialize (Object, "cache.maxSize", Value.Cache_Max_Size); Deserialize (Object, "cache.maxEntries", Value.Cache_Max_Entries); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplPsPlatformServerServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamS7imagingImplPsPlatformServerServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamS7imagingImplPsPlatformServerServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.webdav.version.linking.enable", Value.Cq_Dam_Webdav_Version_Linking_Enable); Serialize (Into, "cq.dam.webdav.version.linking.scheduler.period", Value.Cq_Dam_Webdav_Version_Linking_Scheduler_Period); Serialize (Into, "cq.dam.webdav.version.linking.staging.timeout", Value.Cq_Dam_Webdav_Version_Linking_Staging_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.webdav.version.linking.enable", Value.Cq_Dam_Webdav_Version_Linking_Enable); Deserialize (Object, "cq.dam.webdav.version.linking.scheduler.period", Value.Cq_Dam_Webdav_Version_Linking_Scheduler_Period); Deserialize (Object, "cq.dam.webdav.version.linking.staging.timeout", Value.Cq_Dam_Webdav_Version_Linking_Staging_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamWebdavImplIoDamWebdavVersionLinkingJobInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialAccountverificationImplAccountManagementConfigImProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enable", Value.Enable); Serialize (Into, "ttl1", Value.Ttl1); Serialize (Into, "ttl2", Value.Ttl2); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialAccountverificationImplAccountManagementConfigImProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialAccountverificationImplAccountManagementConfigImProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enable", Value.Enable); Deserialize (Object, "ttl1", Value.Ttl1); Deserialize (Object, "ttl2", Value.Ttl2); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialAccountverificationImplAccountManagementConfigImProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialAccountverificationImplAccountManagementConfigImProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialAccountverificationImplAccountManagementConfigImInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "accepted", Value.Accepted); Serialize (Into, "ranked", Value.Ranked); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "accepted", Value.Accepted); Deserialize (Object, "ranked", Value.Ranked); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplModerationEventExtenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "ranking", Value.Ranking); Serialize (Into, "enable", Value.Enable); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "ranking", Value.Ranking); Deserialize (Object, "enable", Value.Enable); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplRatingEventActivitySInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enableScheduledPostsSearch", Value.Enable_Scheduled_Posts_Search); Serialize (Into, "numberOfMinutes", Value.Number_Of_Minutes); Serialize (Into, "maxSearchLimit", Value.Max_Search_Limit); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enableScheduledPostsSearch", Value.Enable_Scheduled_Posts_Search); Deserialize (Object, "numberOfMinutes", Value.Number_Of_Minutes); Deserialize (Object, "maxSearchLimit", Value.Max_Search_Limit); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsSchedulerImplSearchScheduledPosInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enable", Value.Enable); Serialize (Into, "UGCLimit", Value.U_G_C_Limit); Serialize (Into, "ugcLimitDuration", Value.Ugc_Limit_Duration); Serialize (Into, "domains", Value.Domains); Serialize (Into, "toList", Value.To_List); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enable", Value.Enable); Deserialize (Object, "UGCLimit", Value.U_G_C_Limit); Deserialize (Object, "ugcLimitDuration", Value.Ugc_Limit_Duration); Deserialize (Object, "domains", Value.Domains); Deserialize (Object, "toList", Value.To_List); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsUgclimitsconfigImplCommunityUserUGCLimitInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.social.content.fragments.services.enabled", Value.Cq_Social_Content_Fragments_Services_Enabled); Serialize (Into, "cq.social.content.fragments.services.waitTimeSeconds", Value.Cq_Social_Content_Fragments_Services_Wait_Time_Seconds); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.social.content.fragments.services.enabled", Value.Cq_Social_Content_Fragments_Services_Enabled); Deserialize (Object, "cq.social.content.fragments.services.waitTimeSeconds", Value.Cq_Social_Content_Fragments_Services_Wait_Time_Seconds); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialContentFragmentsServicesImplCommunitiesFragmenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumDispatcherImplFlushOperationsProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "extension.order", Value.Extension_Order); Serialize (Into, "flush.forumontopic", Value.Flush_Forumontopic); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumDispatcherImplFlushOperationsProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumDispatcherImplFlushOperationsProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "extension.order", Value.Extension_Order); Deserialize (Object, "flush.forumontopic", Value.Flush_Forumontopic); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumDispatcherImplFlushOperationsProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialForumDispatcherImplFlushOperationsProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialForumDispatcherImplFlushOperationsInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "group.listing.pagination.enable", Value.Group_Listing_Pagination_Enable); Serialize (Into, "group.listing.lazyloading.enable", Value.Group_Listing_Lazyloading_Enable); Serialize (Into, "page.size", Value.Page_Size); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "group.listing.pagination.enable", Value.Group_Listing_Pagination_Enable); Deserialize (Object, "group.listing.lazyloading.enable", Value.Group_Listing_Lazyloading_Enable); Deserialize (Object, "page.size", Value.Page_Size); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialGroupClientImplCommunityGroupCollectionComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLicenseImplLicenseCheckFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "checkInternval", Value.Check_Internval); Serialize (Into, "excludeIds", Value.Exclude_Ids); Serialize (Into, "encryptPing", Value.Encrypt_Ping); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLicenseImplLicenseCheckFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLicenseImplLicenseCheckFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "checkInternval", Value.Check_Internval); Deserialize (Object, "excludeIds", Value.Exclude_Ids); Deserialize (Object, "encryptPing", Value.Encrypt_Ping); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLicenseImplLicenseCheckFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteLicenseImplLicenseCheckFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteLicenseImplLicenseCheckFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "omnisearch.suggestion.requiretext.min", Value.Omnisearch_Suggestion_Requiretext_Min); Serialize (Into, "omnisearch.suggestion.spellcheck.require", Value.Omnisearch_Suggestion_Spellcheck_Require); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "omnisearch.suggestion.requiretext.min", Value.Omnisearch_Suggestion_Requiretext_Min); Deserialize (Object, "omnisearch.suggestion.spellcheck.require", Value.Omnisearch_Suggestion_Spellcheck_Require); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOmnisearchImplCoreOmniSearchServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplServletDefaultGETServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "default.limit", Value.Default_Limit); Serialize (Into, "use.absolute.uri", Value.Use_Absolute_Uri); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplServletDefaultGETServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplServletDefaultGETServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "default.limit", Value.Default_Limit); Deserialize (Object, "use.absolute.uri", Value.Use_Absolute_Uri); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplServletDefaultGETServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRestImplServletDefaultGETServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRestImplServletDefaultGETServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "purgeCompleted", Value.Purge_Completed); Serialize (Into, "completedAge", Value.Completed_Age); Serialize (Into, "purgeActive", Value.Purge_Active); Serialize (Into, "activeAge", Value.Active_Age); Serialize (Into, "saveThreshold", Value.Save_Threshold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "purgeCompleted", Value.Purge_Completed); Deserialize (Object, "completedAge", Value.Completed_Age); Deserialize (Object, "purgeActive", Value.Purge_Active); Deserialize (Object, "activeAge", Value.Active_Age); Deserialize (Object, "saveThreshold", Value.Save_Threshold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplPurgeTaskPurgeMaintenanceTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsHandlerStandardImageHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "large_file_threshold", Value.Large_File_Threshold); Serialize (Into, "large_comment_threshold", Value.Large_Comment_Threshold); Serialize (Into, "cq.dam.enable.ext.meta.extraction", Value.Cq_Dam_Enable_Ext_Meta_Extraction); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsHandlerStandardImageHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsHandlerStandardImageHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "large_file_threshold", Value.Large_File_Threshold); Deserialize (Object, "large_comment_threshold", Value.Large_Comment_Threshold); Deserialize (Object, "cq.dam.enable.ext.meta.extraction", Value.Cq_Dam_Enable_Ext_Meta_Extraction); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsHandlerStandardImageHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCommonsHandlerStandardImageHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCommonsHandlerStandardImageHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsUtilImplAssetCacheImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "large.file.min", Value.Large_File_Min); Serialize (Into, "cache.apply", Value.Cache_Apply); Serialize (Into, "mime.types", Value.Mime_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsUtilImplAssetCacheImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsUtilImplAssetCacheImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "large.file.min", Value.Large_File_Min); Deserialize (Object, "cache.apply", Value.Cache_Apply); Deserialize (Object, "mime.types", Value.Mime_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsUtilImplAssetCacheImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCommonsUtilImplAssetCacheImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCommonsUtilImplAssetCacheImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerJpegHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.enable.ext.meta.extraction", Value.Cq_Dam_Enable_Ext_Meta_Extraction); Serialize (Into, "large_file_threshold", Value.Large_File_Threshold); Serialize (Into, "large_comment_threshold", Value.Large_Comment_Threshold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerJpegHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerJpegHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.enable.ext.meta.extraction", Value.Cq_Dam_Enable_Ext_Meta_Extraction); Deserialize (Object, "large_file_threshold", Value.Large_File_Threshold); Deserialize (Object, "large_comment_threshold", Value.Large_Comment_Threshold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerJpegHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerJpegHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerJpegHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqJcrclustersupportClusterStartLevelControllerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cluster.level.enable", Value.Cluster_Level_Enable); Serialize (Into, "cluster.master.level", Value.Cluster_Master_Level); Serialize (Into, "cluster.slave.level", Value.Cluster_Slave_Level); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqJcrclustersupportClusterStartLevelControllerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqJcrclustersupportClusterStartLevelControllerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cluster.level.enable", Value.Cluster_Level_Enable); Deserialize (Object, "cluster.master.level", Value.Cluster_Master_Level); Deserialize (Object, "cluster.slave.level", Value.Cluster_Slave_Level); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqJcrclustersupportClusterStartLevelControllerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqJcrclustersupportClusterStartLevelControllerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqJcrclustersupportClusterStartLevelControllerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboDurboImportConfigurationProvProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "preserve.hierarchy.nodes", Value.Preserve_Hierarchy_Nodes); Serialize (Into, "ignore.versioning", Value.Ignore_Versioning); Serialize (Into, "import.acl", Value.Import_Acl); Serialize (Into, "save.threshold", Value.Save_Threshold); Serialize (Into, "preserve.user.paths", Value.Preserve_User_Paths); Serialize (Into, "preserve.uuid", Value.Preserve_Uuid); Serialize (Into, "preserve.uuid.nodetypes", Value.Preserve_Uuid_Nodetypes); Serialize (Into, "preserve.uuid.subtrees", Value.Preserve_Uuid_Subtrees); Serialize (Into, "auto.commit", Value.Auto_Commit); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboDurboImportConfigurationProvProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboDurboImportConfigurationProvProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "preserve.hierarchy.nodes", Value.Preserve_Hierarchy_Nodes); Deserialize (Object, "ignore.versioning", Value.Ignore_Versioning); Deserialize (Object, "import.acl", Value.Import_Acl); Deserialize (Object, "save.threshold", Value.Save_Threshold); Deserialize (Object, "preserve.user.paths", Value.Preserve_User_Paths); Deserialize (Object, "preserve.uuid", Value.Preserve_Uuid); Deserialize (Object, "preserve.uuid.nodetypes", Value.Preserve_Uuid_Nodetypes); Deserialize (Object, "preserve.uuid.subtrees", Value.Preserve_Uuid_Subtrees); Deserialize (Object, "auto.commit", Value.Auto_Commit); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboDurboImportConfigurationProvProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplContentDurboDurboImportConfigurationProvProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplContentDurboDurboImportConfigurationProvInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationContentFactoryProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "replication.content.useFileStorage", Value.Replication_Content_Use_File_Storage); Serialize (Into, "replication.content.maxCommitAttempts", Value.Replication_Content_Max_Commit_Attempts); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationContentFactoryProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationContentFactoryProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "replication.content.useFileStorage", Value.Replication_Content_Use_File_Storage); Deserialize (Object, "replication.content.maxCommitAttempts", Value.Replication_Content_Max_Commit_Attempts); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationContentFactoryProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReplicationContentFactoryProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReplicationContentFactoryProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationReceiverImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "receiver.tmpfile.threshold", Value.Receiver_Tmpfile_Threshold); Serialize (Into, "receiver.packages.use.install", Value.Receiver_Packages_Use_Install); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationReceiverImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationReceiverImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "receiver.tmpfile.threshold", Value.Receiver_Tmpfile_Threshold); Deserialize (Object, "receiver.packages.use.install", Value.Receiver_Packages_Use_Install); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationReceiverImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReplicationReceiverImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationReceiverImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReplicationReceiverImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationReceiverImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReplicationReceiverImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReplicationReceiverImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplCacheCacheImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "repcache.enable", Value.Repcache_Enable); Serialize (Into, "repcache.ttl", Value.Repcache_Ttl); Serialize (Into, "repcache.max", Value.Repcache_Max); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplCacheCacheImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplCacheCacheImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "repcache.enable", Value.Repcache_Enable); Deserialize (Object, "repcache.ttl", Value.Repcache_Ttl); Deserialize (Object, "repcache.max", Value.Repcache_Max); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplCacheCacheImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReportingImplCacheCacheImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplCacheCacheImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplCacheCacheImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplCacheCacheImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplCacheCacheImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReportingImplCacheCacheImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.period", Value.Scheduler_Period); Serialize (Into, "scheduler.concurrent", Value.Scheduler_Concurrent); Serialize (Into, "service.bad_link_tolerance_interval", Value.Service_Bad_Link_Tolerance_Interval); Serialize (Into, "service.check_override_patterns", Value.Service_Check_Override_Patterns); Serialize (Into, "service.cache_broken_internal_links", Value.Service_Cache_Broken_Internal_Links); Serialize (Into, "service.special_link_prefix", Value.Service_Special_Link_Prefix); Serialize (Into, "service.special_link_patterns", Value.Service_Special_Link_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.period", Value.Scheduler_Period); Deserialize (Object, "scheduler.concurrent", Value.Scheduler_Concurrent); Deserialize (Object, "service.bad_link_tolerance_interval", Value.Service_Bad_Link_Tolerance_Interval); Deserialize (Object, "service.check_override_patterns", Value.Service_Check_Override_Patterns); Deserialize (Object, "service.cache_broken_internal_links", Value.Service_Cache_Broken_Internal_Links); Deserialize (Object, "service.special_link_prefix", Value.Service_Special_Link_Prefix); Deserialize (Object, "service.special_link_patterns", Value.Service_Special_Link_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkCheckerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkCheckerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.period", Value.Scheduler_Period); Serialize (Into, "scheduler.concurrent", Value.Scheduler_Concurrent); Serialize (Into, "good_link_test_interval", Value.Good_Link_Test_Interval); Serialize (Into, "bad_link_test_interval", Value.Bad_Link_Test_Interval); Serialize (Into, "link_unused_interval", Value.Link_Unused_Interval); Serialize (Into, "connection.timeout", Value.Connection_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.period", Value.Scheduler_Period); Deserialize (Object, "scheduler.concurrent", Value.Scheduler_Concurrent); Deserialize (Object, "good_link_test_interval", Value.Good_Link_Test_Interval); Deserialize (Object, "bad_link_test_interval", Value.Bad_Link_Test_Interval); Deserialize (Object, "link_unused_interval", Value.Link_Unused_Interval); Deserialize (Object, "connection.timeout", Value.Connection_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkCheckerTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkCheckerTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "linkcheckertransformer.disableRewriting", Value.Linkcheckertransformer_Disable_Rewriting); Serialize (Into, "linkcheckertransformer.disableChecking", Value.Linkcheckertransformer_Disable_Checking); Serialize (Into, "linkcheckertransformer.mapCacheSize", Value.Linkcheckertransformer_Map_Cache_Size); Serialize (Into, "linkcheckertransformer.strictExtensionCheck", Value.Linkcheckertransformer_Strict_Extension_Check); Serialize (Into, "linkcheckertransformer.stripHtmltExtension", Value.Linkcheckertransformer_Strip_Htmlt_Extension); Serialize (Into, "linkcheckertransformer.rewriteElements", Value.Linkcheckertransformer_Rewrite_Elements); Serialize (Into, "linkcheckertransformer.stripExtensionPathBlacklist", Value.Linkcheckertransformer_Strip_Extension_Path_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "linkcheckertransformer.disableRewriting", Value.Linkcheckertransformer_Disable_Rewriting); Deserialize (Object, "linkcheckertransformer.disableChecking", Value.Linkcheckertransformer_Disable_Checking); Deserialize (Object, "linkcheckertransformer.mapCacheSize", Value.Linkcheckertransformer_Map_Cache_Size); Deserialize (Object, "linkcheckertransformer.strictExtensionCheck", Value.Linkcheckertransformer_Strict_Extension_Check); Deserialize (Object, "linkcheckertransformer.stripHtmltExtension", Value.Linkcheckertransformer_Strip_Htmlt_Extension); Deserialize (Object, "linkcheckertransformer.rewriteElements", Value.Linkcheckertransformer_Rewrite_Elements); Deserialize (Object, "linkcheckertransformer.stripExtensionPathBlacklist", Value.Linkcheckertransformer_Strip_Extension_Path_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkCheckerTransformerFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.max_links_per_host", Value.Service_Max_Links_Per_Host); Serialize (Into, "service.save_external_link_references", Value.Service_Save_External_Link_References); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.max_links_per_host", Value.Service_Max_Links_Per_Host); Deserialize (Object, "service.save_external_link_references", Value.Service_Save_External_Link_References); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqRewriterLinkcheckerImplLinkInfoStorageImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchImplBuilderQueryBuilderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "excerpt.properties", Value.Excerpt_Properties); Serialize (Into, "cache.max.entries", Value.Cache_Max_Entries); Serialize (Into, "cache.entry.lifetime", Value.Cache_Entry_Lifetime); Serialize (Into, "xpath.union", Value.Xpath_Union); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchImplBuilderQueryBuilderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchImplBuilderQueryBuilderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "excerpt.properties", Value.Excerpt_Properties); Deserialize (Object, "cache.max.entries", Value.Cache_Max_Entries); Deserialize (Object, "cache.entry.lifetime", Value.Cache_Entry_Lifetime); Deserialize (Object, "xpath.union", Value.Xpath_Union); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchImplBuilderQueryBuilderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchImplBuilderQueryBuilderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchImplBuilderQueryBuilderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "versionmanager.createVersionOnActivation", Value.Versionmanager_Create_Version_On_Activation); Serialize (Into, "versionmanager.purgingEnabled", Value.Versionmanager_Purging_Enabled); Serialize (Into, "versionmanager.purgePaths", Value.Versionmanager_Purge_Paths); Serialize (Into, "versionmanager.ivPaths", Value.Versionmanager_Iv_Paths); Serialize (Into, "versionmanager.maxAgeDays", Value.Versionmanager_Max_Age_Days); Serialize (Into, "versionmanager.maxNumberVersions", Value.Versionmanager_Max_Number_Versions); Serialize (Into, "versionmanager.minNumberVersions", Value.Versionmanager_Min_Number_Versions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "versionmanager.createVersionOnActivation", Value.Versionmanager_Create_Version_On_Activation); Deserialize (Object, "versionmanager.purgingEnabled", Value.Versionmanager_Purging_Enabled); Deserialize (Object, "versionmanager.purgePaths", Value.Versionmanager_Purge_Paths); Deserialize (Object, "versionmanager.ivPaths", Value.Versionmanager_Iv_Paths); Deserialize (Object, "versionmanager.maxAgeDays", Value.Versionmanager_Max_Age_Days); Deserialize (Object, "versionmanager.maxNumberVersions", Value.Versionmanager_Max_Number_Versions); Deserialize (Object, "versionmanager.minNumberVersions", Value.Versionmanager_Min_Number_Versions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplVersionManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplVersionManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionPurgeTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "versionpurge.paths", Value.Versionpurge_Paths); Serialize (Into, "versionpurge.recursive", Value.Versionpurge_Recursive); Serialize (Into, "versionpurge.maxVersions", Value.Versionpurge_Max_Versions); Serialize (Into, "versionpurge.minVersions", Value.Versionpurge_Min_Versions); Serialize (Into, "versionpurge.maxAgeDays", Value.Versionpurge_Max_Age_Days); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionPurgeTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionPurgeTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "versionpurge.paths", Value.Versionpurge_Paths); Deserialize (Object, "versionpurge.recursive", Value.Versionpurge_Recursive); Deserialize (Object, "versionpurge.maxVersions", Value.Versionpurge_Max_Versions); Deserialize (Object, "versionpurge.minVersions", Value.Versionpurge_Min_Versions); Deserialize (Object, "versionpurge.maxAgeDays", Value.Versionpurge_Max_Age_Days); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionPurgeTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplVersionPurgeTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplVersionPurgeTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "includedPaths", Value.Included_Paths); Serialize (Into, "enableAsyncObserver", Value.Enable_Async_Observer); Serialize (Into, "observerQueueSize", Value.Observer_Queue_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "includedPaths", Value.Included_Paths); Deserialize (Object, "enableAsyncObserver", Value.Enable_Async_Observer); Deserialize (Object, "observerQueueSize", Value.Observer_Queue_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsDocumentSecondarySecondaryStoreCacInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "maxItems", Value.Max_Items); Serialize (Into, "maxPathDepth", Value.Max_Path_Depth); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "maxItems", Value.Max_Items); Deserialize (Object, "maxPathDepth", Value.Max_Path_Depth); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsObservationChangeCollectorProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "queryLimitInMemory", Value.Query_Limit_In_Memory); Serialize (Into, "queryLimitReads", Value.Query_Limit_Reads); Serialize (Into, "queryFailTraversal", Value.Query_Fail_Traversal); Serialize (Into, "fastQuerySize", Value.Fast_Query_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "queryLimitInMemory", Value.Query_Limit_In_Memory); Deserialize (Object, "queryLimitReads", Value.Query_Limit_Reads); Deserialize (Object, "queryFailTraversal", Value.Query_Fail_Traversal); Deserialize (Object, "fastQuerySize", Value.Fast_Query_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakQueryQueryEngineSettingsServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cugSupportedPaths", Value.Cug_Supported_Paths); Serialize (Into, "cugEnabled", Value.Cug_Enabled); Serialize (Into, "configurationRanking", Value.Configuration_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cugSupportedPaths", Value.Cug_Supported_Paths); Deserialize (Object, "cugEnabled", Value.Cug_Enabled); Deserialize (Object, "configurationRanking", Value.Configuration_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthorizationCugImplCugConfiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplOverrideSystemPropertyConfigurationOveInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "configRefResourceNames", Value.Config_Ref_Resource_Names); Serialize (Into, "configRefPropertyNames", Value.Config_Ref_Property_Names); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "configRefResourceNames", Value.Config_Ref_Resource_Names); Deserialize (Object, "configRefPropertyNames", Value.Config_Ref_Property_Names); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigResourceImplDefDefaultContextPathStrategyInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "extensions", Value.Extensions); Serialize (Into, "minDurationMs", Value.Min_Duration_Ms); Serialize (Into, "maxDurationMs", Value.Max_Duration_Ms); Serialize (Into, "compactLogFormat", Value.Compact_Log_Format); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "extensions", Value.Extensions); Deserialize (Object, "minDurationMs", Value.Min_Duration_Ms); Deserialize (Object, "maxDurationMs", Value.Max_Duration_Ms); Deserialize (Object, "compactLogFormat", Value.Compact_Log_Format); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplDebugRequestProgressTrackerLogFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJcrPersistenceHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "job.consumermanager.disableDistribution", Value.Job_Consumermanager_Disable_Distribution); Serialize (Into, "startup.delay", Value.Startup_Delay); Serialize (Into, "cleanup.period", Value.Cleanup_Period); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJcrPersistenceHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJcrPersistenceHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "job.consumermanager.disableDistribution", Value.Job_Consumermanager_Disable_Distribution); Deserialize (Object, "startup.delay", Value.Startup_Delay); Deserialize (Object, "cleanup.period", Value.Cleanup_Period); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJcrPersistenceHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplJobsJcrPersistenceHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplJobsJcrPersistenceHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetDefaultGetServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "aliases", Value.Aliases); Serialize (Into, "index", Value.Index); Serialize (Into, "index.files", Value.Index_Files); Serialize (Into, "enable.html", Value.Enable_Html); Serialize (Into, "enable.json", Value.Enable_Json); Serialize (Into, "enable.txt", Value.Enable_Txt); Serialize (Into, "enable.xml", Value.Enable_Xml); Serialize (Into, "json.maximumresults", Value.Json_Maximumresults); Serialize (Into, "ecmaSuport", Value.Ecma_Suport); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetDefaultGetServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetDefaultGetServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "aliases", Value.Aliases); Deserialize (Object, "index", Value.Index); Deserialize (Object, "index.files", Value.Index_Files); Deserialize (Object, "enable.html", Value.Enable_Html); Deserialize (Object, "enable.json", Value.Enable_Json); Deserialize (Object, "enable.txt", Value.Enable_Txt); Deserialize (Object, "enable.xml", Value.Enable_Xml); Deserialize (Object, "json.maximumresults", Value.Json_Maximumresults); Deserialize (Object, "ecmaSuport", Value.Ecma_Suport); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetDefaultGetServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsGetDefaultGetServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetDefaultGetServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsGetDefaultGetServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetDefaultGetServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsGetDefaultGetServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsGetDefaultGetServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTracerInternalLogTracerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "tracerSets", Value.Tracer_Sets); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "servletEnabled", Value.Servlet_Enabled); Serialize (Into, "recordingCacheSizeInMB", Value.Recording_Cache_Size_In_M_B); Serialize (Into, "recordingCacheDurationInSecs", Value.Recording_Cache_Duration_In_Secs); Serialize (Into, "recordingCompressionEnabled", Value.Recording_Compression_Enabled); Serialize (Into, "gzipResponse", Value.Gzip_Response); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTracerInternalLogTracerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTracerInternalLogTracerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "tracerSets", Value.Tracer_Sets); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "servletEnabled", Value.Servlet_Enabled); Deserialize (Object, "recordingCacheSizeInMB", Value.Recording_Cache_Size_In_M_B); Deserialize (Object, "recordingCacheDurationInSecs", Value.Recording_Cache_Duration_In_Secs); Deserialize (Object, "recordingCompressionEnabled", Value.Recording_Compression_Enabled); Deserialize (Object, "gzipResponse", Value.Gzip_Response); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTracerInternalLogTracerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingTracerInternalLogTracerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTracerInternalLogTracerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTracerInternalLogTracerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTracerInternalLogTracerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTracerInternalLogTracerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingTracerInternalLogTracerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCorsImplCORSPolicyImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "alloworigin", Value.Alloworigin); Serialize (Into, "alloworiginregexp", Value.Alloworiginregexp); Serialize (Into, "allowedpaths", Value.Allowedpaths); Serialize (Into, "exposedheaders", Value.Exposedheaders); Serialize (Into, "maxage", Value.Maxage); Serialize (Into, "supportedheaders", Value.Supportedheaders); Serialize (Into, "supportedmethods", Value.Supportedmethods); Serialize (Into, "supportscredentials", Value.Supportscredentials); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCorsImplCORSPolicyImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCorsImplCORSPolicyImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "alloworigin", Value.Alloworigin); Deserialize (Object, "alloworiginregexp", Value.Alloworiginregexp); Deserialize (Object, "allowedpaths", Value.Allowedpaths); Deserialize (Object, "exposedheaders", Value.Exposedheaders); Deserialize (Object, "maxage", Value.Maxage); Deserialize (Object, "supportedheaders", Value.Supportedheaders); Deserialize (Object, "supportedmethods", Value.Supportedmethods); Deserialize (Object, "supportscredentials", Value.Supportscredentials); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCorsImplCORSPolicyImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCorsImplCORSPolicyImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCorsImplCORSPolicyImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryServiceUserConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "serviceusers.simpleSubjectPopulation", Value.Serviceusers_Simple_Subject_Population); Serialize (Into, "serviceusers.list", Value.Serviceusers_List); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryServiceUserConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryServiceUserConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "serviceusers.simpleSubjectPopulation", Value.Serviceusers_Simple_Subject_Population); Deserialize (Object, "serviceusers.list", Value.Serviceusers_List); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryServiceUserConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryServiceUserConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryServiceUserConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "MaxRetry", Value.Max_Retry); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "MaxRetry", Value.Max_Retry); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCalendarClientEndpointsImplCalendarOperationsIInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplAndroidEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplCustomEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplGmailEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplIOSEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplMacmailEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplOutLookEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Serialize (Into, "priorityOrder", Value.Priority_Order); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); Deserialize (Object, "priorityOrder", Value.Priority_Order); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplUnknownEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priorityOrder", Value.Priority_Order); Serialize (Into, "replyEmailPatterns", Value.Reply_Email_Patterns); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priorityOrder", Value.Priority_Order); Deserialize (Object, "replyEmailPatterns", Value.Reply_Email_Patterns); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplYahooEmailClientProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplSocialOAuthAuthenticationHandleInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "resourceType.filters", Value.Resource_Type_Filters); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "resourceType.filters", Value.Resource_Type_Filters); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardApiFilterGroupSocialComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "resourceType.filters", Value.Resource_Type_Filters); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "resourceType.filters", Value.Resource_Type_Filters); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardInternalImplFilterGroupSociInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.social.console.analytics.sites.mapping", Value.Cq_Social_Console_Analytics_Sites_Mapping); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.social.console.analytics.sites.mapping", Value.Cq_Social_Console_Analytics_Sites_Mapping); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReportingAnalyticsServicesImplSiteTrendReportSInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAcpPlatformPlatformServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "query.limit", Value.Query_Limit); Serialize (Into, "file.type.extension.map", Value.File_Type_Extension_Map); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAcpPlatformPlatformServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAcpPlatformPlatformServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "query.limit", Value.Query_Limit); Deserialize (Object, "file.type.extension.map", Value.File_Type_Extension_Map); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAcpPlatformPlatformServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAcpPlatformPlatformServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAcpPlatformPlatformServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAcpPlatformPlatformServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAcpPlatformPlatformServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAcpPlatformPlatformServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAcpPlatformPlatformServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "minimum.code.cache.size", Value.Minimum_Code_Cache_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "minimum.code.cache.size", Value.Minimum_Code_Cache_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplCodeCacheHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplJobsHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "max.queued.jobs", Value.Max_Queued_Jobs); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplJobsHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplJobsHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "max.queued.jobs", Value.Max_Queued_Jobs); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplJobsHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplJobsHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteBundlesHcImplJobsHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogAnalyserImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "messages.queue.size", Value.Messages_Queue_Size); Serialize (Into, "logger.config", Value.Logger_Config); Serialize (Into, "messages.size", Value.Messages_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogAnalyserImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogAnalyserImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "messages.queue.size", Value.Messages_Queue_Size); Deserialize (Object, "logger.config", Value.Logger_Config); Deserialize (Object, "messages.size", Value.Messages_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogAnalyserImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteLoggingImplLogAnalyserImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteLoggingImplLogAnalyserImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "indexing.critical.threshold", Value.Indexing_Critical_Threshold); Serialize (Into, "indexing.warn.threshold", Value.Indexing_Warn_Threshold); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "indexing.critical.threshold", Value.Indexing_Critical_Threshold); Deserialize (Object, "indexing.warn.threshold", Value.Indexing_Warn_Threshold); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcAsyncIndexHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "large.index.critical.threshold", Value.Large_Index_Critical_Threshold); Serialize (Into, "large.index.warn.threshold", Value.Large_Index_Warn_Threshold); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "large.index.critical.threshold", Value.Large_Index_Critical_Threshold); Deserialize (Object, "large.index.warn.threshold", Value.Large_Index_Warn_Threshold); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcLargeIndexHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "number.of.retries.allowed", Value.Number_Of_Retries_Allowed); Serialize (Into, "hc.tags", Value.Hc_Tags); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "number.of.retries.allowed", Value.Number_Of_Retries_Allowed); Deserialize (Object, "hc.tags", Value.Hc_Tags); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteReplicationHcImplReplicationQueueHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "disk.space.warn.threshold", Value.Disk_Space_Warn_Threshold); Serialize (Into, "disk.space.error.threshold", Value.Disk_Space_Error_Threshold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "disk.space.warn.threshold", Value.Disk_Space_Warn_Threshold); Deserialize (Object, "disk.space.error.threshold", Value.Disk_Space_Error_Threshold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryHcImplDiskSpaceHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "allowed.paths", Value.Allowed_Paths); Serialize (Into, "cq.analytics.saint.exporter.pagesize", Value.Cq_Analytics_Saint_Exporter_Pagesize); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "allowed.paths", Value.Allowed_Paths); Deserialize (Object, "cq.analytics.saint.exporter.pagesize", Value.Cq_Analytics_Saint_Exporter_Pagesize); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplExporterClassificationsExporteInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.sitecatalyst.service.datacenter.url", Value.Cq_Analytics_Sitecatalyst_Service_Datacenter_Url); Serialize (Into, "devhostnamepatterns", Value.Devhostnamepatterns); Serialize (Into, "connection.timeout", Value.Connection_Timeout); Serialize (Into, "socket.timeout", Value.Socket_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.sitecatalyst.service.datacenter.url", Value.Cq_Analytics_Sitecatalyst_Service_Datacenter_Url); Deserialize (Object, "devhostnamepatterns", Value.Devhostnamepatterns); Deserialize (Object, "connection.timeout", Value.Connection_Timeout); Deserialize (Object, "socket.timeout", Value.Socket_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplSitecatalystHttpClientImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessTextExtractionProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mimeTypes", Value.Mime_Types); Serialize (Into, "maxExtract", Value.Max_Extract); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessTextExtractionProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessTextExtractionProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mimeTypes", Value.Mime_Types); Deserialize (Object, "maxExtract", Value.Max_Extract); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessTextExtractionProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplProcessTextExtractionProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplProcessTextExtractionProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBatchMetadataServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.batch.metadata.asset.default", Value.Cq_Dam_Batch_Metadata_Asset_Default); Serialize (Into, "cq.dam.batch.metadata.collection.default", Value.Cq_Dam_Batch_Metadata_Collection_Default); Serialize (Into, "cq.dam.batch.metadata.maxresources", Value.Cq_Dam_Batch_Metadata_Maxresources); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBatchMetadataServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBatchMetadataServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.batch.metadata.asset.default", Value.Cq_Dam_Batch_Metadata_Asset_Default); Deserialize (Object, "cq.dam.batch.metadata.collection.default", Value.Cq_Dam_Batch_Metadata_Collection_Default); Deserialize (Object, "cq.dam.batch.metadata.maxresources", Value.Cq_Dam_Batch_Metadata_Maxresources); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBatchMetadataServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletBatchMetadataServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletBatchMetadataServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.batch.collection.properties", Value.Cq_Dam_Batch_Collection_Properties); Serialize (Into, "cq.dam.batch.collection.maxcollections", Value.Cq_Dam_Batch_Collection_Maxcollections); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.batch.collection.properties", Value.Cq_Dam_Batch_Collection_Properties); Deserialize (Object, "cq.dam.batch.collection.maxcollections", Value.Cq_Dam_Batch_Collection_Maxcollections); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCollectionServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCollectionServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionsServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.batch.collections.properties", Value.Cq_Dam_Batch_Collections_Properties); Serialize (Into, "cq.dam.batch.collections.limit", Value.Cq_Dam_Batch_Collections_Limit); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionsServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionsServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.batch.collections.properties", Value.Cq_Dam_Batch_Collections_Properties); Deserialize (Object, "cq.dam.batch.collections.limit", Value.Cq_Dam_Batch_Collections_Limit); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionsServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCollectionsServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionsServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCollectionsServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionsServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCollectionsServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCollectionsServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqImageInternalFontFontHelperProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fontpath", Value.Fontpath); Serialize (Into, "oversamplingFactor", Value.Oversampling_Factor); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqImageInternalFontFontHelperProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqImageInternalFontFontHelperProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fontpath", Value.Fontpath); Deserialize (Object, "oversamplingFactor", Value.Oversampling_Factor); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqImageInternalFontFontHelperProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqImageInternalFontFontHelperProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqImageInternalFontFontHelperInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqImageInternalFontFontHelperInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqImageInternalFontFontHelperInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqImageInternalFontFontHelperInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqImageInternalFontFontHelperInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "asyncConfigs", Value.Async_Configs); Serialize (Into, "leaseTimeOutMinutes", Value.Lease_Time_Out_Minutes); Serialize (Into, "failingIndexTimeoutSeconds", Value.Failing_Index_Timeout_Seconds); Serialize (Into, "errorWarnIntervalSeconds", Value.Error_Warn_Interval_Seconds); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "asyncConfigs", Value.Async_Configs); Deserialize (Object, "leaseTimeOutMinutes", Value.Lease_Time_Out_Minutes); Deserialize (Object, "failingIndexTimeoutSeconds", Value.Failing_Index_Timeout_Seconds); Deserialize (Object, "errorWarnIntervalSeconds", Value.Error_Warn_Interval_Seconds); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexAsyncIndexerServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplI18NFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "sling.filter.scope", Value.Sling_Filter_Scope); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplI18NFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplI18NFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "sling.filter.scope", Value.Sling_Filter_Scope); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplI18NFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingI18nImplI18NFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplI18NFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplI18NFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplI18NFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplI18NFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingI18nImplI18NFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptCacheImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.scripting.cache.size", Value.Org_Apache_Sling_Scripting_Cache_Size); Serialize (Into, "org.apache.sling.scripting.cache.additional_extensions", Value.Org_Apache_Sling_Scripting_Cache_Additional_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptCacheImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptCacheImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.scripting.cache.size", Value.Org_Apache_Sling_Scripting_Cache_Size); Deserialize (Object, "org.apache.sling.scripting.cache.additional_extensions", Value.Org_Apache_Sling_Scripting_Cache_Additional_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptCacheImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingCoreImplScriptCacheImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingCoreImplScriptCacheImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "user.mapping", Value.User_Mapping); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "user.mapping", Value.User_Mapping); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServiceusermappingImplServiceUserMapperImplAmendedInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AnalyticsComponentQueryCacheServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.component.query.cache.size", Value.Cq_Analytics_Component_Query_Cache_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AnalyticsComponentQueryCacheServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AnalyticsComponentQueryCacheServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.component.query.cache.size", Value.Cq_Analytics_Component_Query_Cache_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AnalyticsComponentQueryCacheServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : AnalyticsComponentQueryCacheServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AnalyticsComponentQueryCacheServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AnalyticsComponentQueryCacheServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AnalyticsComponentQueryCacheServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AnalyticsComponentQueryCacheServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : AnalyticsComponentQueryCacheServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAddressImplLocationLocationListServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.address.location.default.maxResults", Value.Cq_Address_Location_Default_Max_Results); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAddressImplLocationLocationListServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAddressImplLocationLocationListServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.address.location.default.maxResults", Value.Cq_Address_Location_Default_Max_Results); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAddressImplLocationLocationListServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAddressImplLocationLocationListServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAddressImplLocationLocationListServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAddressImplLocationLocationListServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAddressImplLocationLocationListServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAddressImplLocationLocationListServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAddressImplLocationLocationListServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamDmProcessImagePTiffManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "maxMemory", Value.Max_Memory); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamDmProcessImagePTiffManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamDmProcessImagePTiffManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "maxMemory", Value.Max_Memory); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamDmProcessImagePTiffManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamDmProcessImagePTiffManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamDmProcessImagePTiffManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncHelperImplMACSyncClientImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.dam.mac.sync.client.so.timeout", Value.Com_Adobe_Dam_Mac_Sync_Client_So_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncHelperImplMACSyncClientImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncHelperImplMACSyncClientImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.dam.mac.sync.client.so.timeout", Value.Com_Adobe_Dam_Mac_Sync_Client_So_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncHelperImplMACSyncClientImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamMacSyncHelperImplMACSyncClientImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamMacSyncHelperImplMACSyncClientImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServiceDTMWebServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "connection.timeout", Value.Connection_Timeout); Serialize (Into, "socket.timeout", Value.Socket_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServiceDTMWebServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServiceDTMWebServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "connection.timeout", Value.Connection_Timeout); Deserialize (Object, "socket.timeout", Value.Socket_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServiceDTMWebServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDtmImplServiceDTMWebServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDtmImplServiceDTMWebServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "deviceRegistrationTimeout", Value.Device_Registration_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "deviceRegistrationTimeout", Value.Device_Registration_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensDeviceRegistrationImplRegistrationServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.aem.screens.impl.remote.request_timeout", Value.Com_Adobe_Aem_Screens_Impl_Remote_Request_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.aem.screens.impl.remote.request_timeout", Value.Com_Adobe_Aem_Screens_Impl_Remote_Request_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplRemoteImplDistributedHttpClientImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsClientImplSocialActivityComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsClientImplSocialActivityStreamCoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarServletsTimeZoneServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "timezones.expirytime", Value.Timezones_Expirytime); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarServletsTimeZoneServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarServletsTimeZoneServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "timezones.expirytime", Value.Timezones_Expirytime); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarServletsTimeZoneServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCalendarServletsTimeZoneServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCalendarServletsTimeZoneServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "ranking", Value.Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "ranking", Value.Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsEndpointsImplCommentDeleteEventInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "numUserLimit", Value.Num_User_Limit); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "numUserLimit", Value.Num_User_Limit); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsCommentsListingImplSearchCommentSocialCInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "numberOfDays", Value.Number_Of_Days); Serialize (Into, "ageOfFile", Value.Age_Of_File); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "numberOfDays", Value.Number_Of_Days); Deserialize (Object, "ageOfFile", Value.Age_Of_File); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsMaintainanceImplDeleteTempUGCImageUploadInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialEnablementServicesImplAuthorMarkerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupImplGroupServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "maxWaitTime", Value.Max_Wait_Time); Serialize (Into, "minWaitBetweenRetries", Value.Min_Wait_Between_Retries); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupImplGroupServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupImplGroupServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "maxWaitTime", Value.Max_Wait_Time); Deserialize (Object, "minWaitBetweenRetries", Value.Min_Wait_Between_Retries); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupImplGroupServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialGroupImplGroupServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialGroupImplGroupServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "everyoneLimit", Value.Everyone_Limit); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "everyoneLimit", Value.Everyone_Limit); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMembersImplCommunityMemberGroupProfileComponentFInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardApiModerationDashboardSocialInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialModerationDashboardApiUserDetailsSocialComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "max.unread.notification.count", Value.Max_Unread_Notification_Count); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "max.unread.notification.count", Value.Max_Unread_Notification_Count); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialNotificationsImplNotificationManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialNotificationsImplNotificationManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.social.reporting.analytics.polling.importer.interval", Value.Cq_Social_Reporting_Analytics_Polling_Importer_Interval); Serialize (Into, "cq.social.reporting.analytics.polling.importer.pageSize", Value.Cq_Social_Reporting_Analytics_Polling_Importer_Page_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.social.reporting.analytics.polling.importer.interval", Value.Cq_Social_Reporting_Analytics_Polling_Importer_Interval); Deserialize (Object, "cq.social.reporting.analytics.polling.importer.pageSize", Value.Cq_Social_Reporting_Analytics_Polling_Importer_Page_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportIInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "report.fetch.delay", Value.Report_Fetch_Delay); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "report.fetch.delay", Value.Report_Fetch_Delay); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialReportingAnalyticsServicesImplAnalyticsReportMInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "threadPoolSize", Value.Thread_Pool_Size); Serialize (Into, "delayTime", Value.Delay_Time); Serialize (Into, "workerSleepTime", Value.Worker_Sleep_Time); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "threadPoolSize", Value.Thread_Pool_Size); Deserialize (Object, "delayTime", Value.Delay_Time); Deserialize (Object, "workerSleepTime", Value.Worker_Sleep_Time); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseDispatcherImplFlushServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "poolSize", Value.Pool_Size); Serialize (Into, "maxPoolSize", Value.Max_Pool_Size); Serialize (Into, "queueSize", Value.Queue_Size); Serialize (Into, "keepAliveTime", Value.Keep_Alive_Time); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "poolSize", Value.Pool_Size); Deserialize (Object, "maxPoolSize", Value.Max_Pool_Size); Deserialize (Object, "queueSize", Value.Queue_Size); Deserialize (Object, "keepAliveTime", Value.Keep_Alive_Time); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseImplAysncReverseReplicatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "size", Value.Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "size", Value.Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmStyleInternalComponentStyleInfoCacheImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "getPeriod", Value.Get_Period); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "getPeriod", Value.Get_Period); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteQueriesImplHcQueryHealthCheckMetricsInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "bucketSize", Value.Bucket_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "bucketSize", Value.Bucket_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreJcrWorkflowBucketManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "default.timeout", Value.Default_Timeout); Serialize (Into, "max.timeout", Value.Max_Timeout); Serialize (Into, "default.period", Value.Default_Period); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "default.timeout", Value.Default_Timeout); Deserialize (Object, "max.timeout", Value.Max_Timeout); Deserialize (Object, "default.period", Value.Default_Period); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreJobExternalProcessJobHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeOctopusNcommBootstrapProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "maxConnections", Value.Max_Connections); Serialize (Into, "maxRequests", Value.Max_Requests); Serialize (Into, "requestTimeout", Value.Request_Timeout); Serialize (Into, "requestRetries", Value.Request_Retries); Serialize (Into, "launchTimeout", Value.Launch_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeOctopusNcommBootstrapProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeOctopusNcommBootstrapProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "maxConnections", Value.Max_Connections); Deserialize (Object, "maxRequests", Value.Max_Requests); Deserialize (Object, "requestTimeout", Value.Request_Timeout); Deserialize (Object, "requestRetries", Value.Request_Retries); Deserialize (Object, "launchTimeout", Value.Launch_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeOctopusNcommBootstrapProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeOctopusNcommBootstrapProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeOctopusNcommBootstrapInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeOctopusNcommBootstrapInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeOctopusNcommBootstrapInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeOctopusNcommBootstrapInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeOctopusNcommBootstrapInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplImporterReportImporterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "report.fetch.attempts", Value.Report_Fetch_Attempts); Serialize (Into, "report.fetch.delay", Value.Report_Fetch_Delay); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplImporterReportImporterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplImporterReportImporterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "report.fetch.attempts", Value.Report_Fetch_Attempts); Deserialize (Object, "report.fetch.delay", Value.Report_Fetch_Delay); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplImporterReportImporterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplImporterReportImporterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsSitecatalystImplImporterReportImporterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.adhoc.asset.share.prezip.maxcontentsize", Value.Cq_Dam_Adhoc_Asset_Share_Prezip_Maxcontentsize); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.adhoc.asset.share.prezip.maxcontentsize", Value.Cq_Dam_Adhoc_Asset_Share_Prezip_Maxcontentsize); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAssetlinkshareAdhocAssetShareProxyServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportExportServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "queryBatchSize", Value.Query_Batch_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportExportServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportExportServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "queryBatchSize", Value.Query_Batch_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportExportServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplReportsReportExportServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportExportServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportExportServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportExportServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportExportServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplReportsReportExportServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetStatusServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.batch.status.maxassets", Value.Cq_Dam_Batch_Status_Maxassets); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetStatusServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetStatusServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.batch.status.maxassets", Value.Cq_Dam_Batch_Status_Maxassets); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetStatusServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletAssetStatusServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetStatusServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetStatusServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetStatusServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetStatusServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletAssetStatusServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetXMPSearchServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.batch.indesign.maxassets", Value.Cq_Dam_Batch_Indesign_Maxassets); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetXMPSearchServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetXMPSearchServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.batch.indesign.maxassets", Value.Cq_Dam_Batch_Indesign_Maxassets); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetXMPSearchServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletAssetXMPSearchServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletAssetXMPSearchServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsdPsdHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "large_file_threshold", Value.Large_File_Threshold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsdPsdHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsdPsdHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "large_file_threshold", Value.Large_File_Threshold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsdPsdHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerStandardPsdPsdHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerStandardPsdPsdHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplServletSnippetCreationServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "snippetcreation.maxcollections", Value.Snippetcreation_Maxcollections); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplServletSnippetCreationServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplServletSnippetCreationServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "snippetcreation.maxcollections", Value.Snippetcreation_Maxcollections); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplServletSnippetCreationServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamInddImplServletSnippetCreationServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplServletSnippetCreationServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplServletSnippetCreationServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplServletSnippetCreationServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplServletSnippetCreationServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamInddImplServletSnippetCreationServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "batch.commit.size", Value.Batch_Commit_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "batch.commit.size", Value.Batch_Commit_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamPerformanceInternalAssetPerformanceDataHandlerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.multipartupload.minsize.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Multipartupload_Minsize_Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.multipartupload.partsize.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Multipartupload_Partsize_Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.multipartupload.numthread.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Multipartupload_Numthread_Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.http.readtimeout.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Http_Readtimeout_Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.http.connectiontimeout.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Http_Connectiontimeout_Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.http.maxretrycount.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Http_Maxretrycount_Name); Serialize (Into, "cq.dam.s7dam.videoproxyclientservice.uploadprogress.interval.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Uploadprogress_Interval_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.multipartupload.minsize.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Multipartupload_Minsize_Name); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.multipartupload.partsize.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Multipartupload_Partsize_Name); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.multipartupload.numthread.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Multipartupload_Numthread_Name); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.http.readtimeout.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Http_Readtimeout_Name); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.http.connectiontimeout.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Http_Connectiontimeout_Name); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.http.maxretrycount.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Http_Maxretrycount_Name); Deserialize (Object, "cq.dam.s7dam.videoproxyclientservice.uploadprogress.interval.name", Value.Cq_Dam_S7dam_Videoproxyclientservice_Uploadprogress_Interval_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonVideoImplVideoProxyClientServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7APIClientImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.scene7.apiclient.recordsperpage.nofilter.name", Value.Cq_Dam_Scene7_Apiclient_Recordsperpage_Nofilter_Name); Serialize (Into, "cq.dam.scene7.apiclient.recordsperpage.withfilter.name", Value.Cq_Dam_Scene7_Apiclient_Recordsperpage_Withfilter_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7APIClientImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7APIClientImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.scene7.apiclient.recordsperpage.nofilter.name", Value.Cq_Dam_Scene7_Apiclient_Recordsperpage_Nofilter_Name); Deserialize (Object, "cq.dam.scene7.apiclient.recordsperpage.withfilter.name", Value.Cq_Dam_Scene7_Apiclient_Recordsperpage_Withfilter_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7APIClientImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7APIClientImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7APIClientImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7APIClientImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7APIClientImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7APIClientImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7APIClientImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7UploadServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.scene7.uploadservice.activejobtimeout.label", Value.Cq_Dam_Scene7_Uploadservice_Activejobtimeout_Label); Serialize (Into, "cq.dam.scene7.uploadservice.connectionmaxperroute.label", Value.Cq_Dam_Scene7_Uploadservice_Connectionmaxperroute_Label); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7UploadServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7UploadServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.scene7.uploadservice.activejobtimeout.label", Value.Cq_Dam_Scene7_Uploadservice_Activejobtimeout_Label); Deserialize (Object, "cq.dam.scene7.uploadservice.connectionmaxperroute.label", Value.Cq_Dam_Scene7_Uploadservice_Connectionmaxperroute_Label); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7UploadServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7UploadServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7UploadServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqExtwidgetServletsImageSpriteServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "maxWidth", Value.Max_Width); Serialize (Into, "maxHeight", Value.Max_Height); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqExtwidgetServletsImageSpriteServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqExtwidgetServletsImageSpriteServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "maxWidth", Value.Max_Width); Deserialize (Object, "maxHeight", Value.Max_Height); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqExtwidgetServletsImageSpriteServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqExtwidgetServletsImageSpriteServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqExtwidgetServletsImageSpriteServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqExtwidgetServletsImageSpriteServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqExtwidgetServletsImageSpriteServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqExtwidgetServletsImageSpriteServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqExtwidgetServletsImageSpriteServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationAuditReplicationEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationAuditReplicationEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationAuditReplicationEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationAuditReplicationEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationAuditReplicationEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationAuditReplicationEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationAuditReplicationEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationAuditReplicationEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationAuditReplicationEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationAuditReplicationEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboBinaryLessContentBuilderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "binary.threshold", Value.Binary_Threshold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboBinaryLessContentBuilderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboBinaryLessContentBuilderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "binary.threshold", Value.Binary_Threshold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboBinaryLessContentBuilderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplContentDurboBinaryLessContentBuilderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplContentDurboBinaryLessContentBuilderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReverseReplicatorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.period", Value.Scheduler_Period); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReverseReplicatorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReverseReplicatorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.period", Value.Scheduler_Period); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReverseReplicatorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReverseReplicatorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReverseReplicatorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplReverseReplicatorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReverseReplicatorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplReverseReplicatorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplReverseReplicatorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsReferenceSearchServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "referencesearchservlet.maxReferencesPerPage", Value.Referencesearchservlet_Max_References_Per_Page); Serialize (Into, "referencesearchservlet.maxPages", Value.Referencesearchservlet_Max_Pages); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsReferenceSearchServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsReferenceSearchServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "referencesearchservlet.maxReferencesPerPage", Value.Referencesearchservlet_Max_References_Per_Page); Deserialize (Object, "referencesearchservlet.maxPages", Value.Referencesearchservlet_Max_Pages); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsReferenceSearchServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsReferenceSearchServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsReferenceSearchServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "minThreadPoolSize", Value.Min_Thread_Pool_Size); Serialize (Into, "maxThreadPoolSize", Value.Max_Thread_Pool_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "minThreadPoolSize", Value.Min_Thread_Pool_Size); Deserialize (Object, "maxThreadPoolSize", Value.Max_Thread_Pool_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplCanvasPageDeleteHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MessagingUserComponentFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MessagingUserComponentFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MessagingUserComponentFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MessagingUserComponentFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : MessagingUserComponentFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MessagingUserComponentFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in MessagingUserComponentFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MessagingUserComponentFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out MessagingUserComponentFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : MessagingUserComponentFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadySystemReadyMonitorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "poll.interval", Value.Poll_Interval); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadySystemReadyMonitorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadySystemReadyMonitorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "poll.interval", Value.Poll_Interval); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadySystemReadyMonitorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadySystemReadyMonitorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadySystemReadyMonitorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsEventInternalPluginServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "max.size", Value.Max_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsEventInternalPluginServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsEventInternalPluginServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "max.size", Value.Max_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsEventInternalPluginServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixWebconsolePluginsEventInternalPluginServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixWebconsolePluginsEventInternalPluginServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "length", Value.Length); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "length", Value.Length); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityUserRandomAuthorizableNodeNameInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "max.quartzJob.duration.acceptable", Value.Max_Quartz_Job_Duration_Acceptable); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "max.quartzJob.duration.acceptable", Value.Max_Quartz_Job_Duration_Acceptable); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsSchedulerImplSchedulerHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplEventingThreadPoolProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "minPoolSize", Value.Min_Pool_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplEventingThreadPoolProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplEventingThreadPoolProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "minPoolSize", Value.Min_Pool_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplEventingThreadPoolProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplEventingThreadPoolProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplEventingThreadPoolInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplEventingThreadPoolInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplEventingThreadPoolInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplEventingThreadPoolInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplEventingThreadPoolInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "timeoutInMs", Value.Timeout_In_Ms); Serialize (Into, "longRunningFutureThresholdForCriticalMs", Value.Long_Running_Future_Threshold_For_Critical_Ms); Serialize (Into, "resultCacheTtlInMs", Value.Result_Cache_Ttl_In_Ms); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "timeoutInMs", Value.Timeout_In_Ms); Deserialize (Object, "longRunningFutureThresholdForCriticalMs", Value.Long_Running_Future_Threshold_For_Critical_Ms); Deserialize (Object, "resultCacheTtlInMs", Value.Result_Cache_Ttl_In_Ms); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplExecutorHealthCheckExecutorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "totalWidth", Value.Total_Width); Serialize (Into, "colWidthName", Value.Col_Width_Name); Serialize (Into, "colWidthResult", Value.Col_Width_Result); Serialize (Into, "colWidthTiming", Value.Col_Width_Timing); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "totalWidth", Value.Total_Width); Deserialize (Object, "colWidthName", Value.Col_Width_Name); Deserialize (Object, "colWidthResult", Value.Col_Width_Result); Deserialize (Object, "colWidthTiming", Value.Col_Width_Timing); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplServletResultTxtVerboseSerializerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "port", Value.Port); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "port", Value.Port); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrJackrabbitServerRmiRegistrationSupportInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrWebdavImplHandlerDirListingExportHandlerServicInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "max.recursion.levels", Value.Max_Recursion_Levels); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "max.recursion.levels", Value.Max_Recursion_Levels); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingModelsJacksonexporterImplResourceModuleProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.scripting.javascript.rhino.optLevel", Value.Org_Apache_Sling_Scripting_Javascript_Rhino_Opt_Level); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.scripting.javascript.rhino.optLevel", Value.Org_Apache_Sling_Scripting_Javascript_Rhino_Opt_Level); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingJavascriptInternalRhinoJavaScriptEngineFaInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyString_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("optional", Value.Optional); Into.Write_Entity ("is_set", Value.Is_Set); Into.Write_Entity ("type", Value.P_Type); Into.Write_Entity ("value", Value.Value); Into.Write_Entity ("description", Value.Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyString_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyString_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "optional", Value.Optional); Swagger.Streams.Deserialize (Object, "is_set", Value.Is_Set); Swagger.Streams.Deserialize (Object, "type", Value.P_Type); Swagger.Streams.Deserialize (Object, "value", Value.Value); Swagger.Streams.Deserialize (Object, "description", Value.Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyString_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyString_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "root.path", Value.Root_Path); Serialize (Into, "fix.inconsistencies", Value.Fix_Inconsistencies); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "root.path", Value.Root_Path); Deserialize (Object, "fix.inconsistencies", Value.Fix_Inconsistencies); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksTasksImplConsistencyCheckTaskImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNConfigServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cdn.config.distribution.domain", Value.Cdn_Config_Distribution_Domain); Serialize (Into, "cdn.config.enable.rewriting", Value.Cdn_Config_Enable_Rewriting); Serialize (Into, "cdn.config.path.prefixes", Value.Cdn_Config_Path_Prefixes); Serialize (Into, "cdn.config.cdnttl", Value.Cdn_Config_Cdnttl); Serialize (Into, "cdn.config.application.protocol", Value.Cdn_Config_Application_Protocol); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNConfigServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNConfigServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cdn.config.distribution.domain", Value.Cdn_Config_Distribution_Domain); Deserialize (Object, "cdn.config.enable.rewriting", Value.Cdn_Config_Enable_Rewriting); Deserialize (Object, "cdn.config.path.prefixes", Value.Cdn_Config_Path_Prefixes); Deserialize (Object, "cdn.config.cdnttl", Value.Cdn_Config_Cdnttl); Deserialize (Object, "cdn.config.application.protocol", Value.Cdn_Config_Application_Protocol); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNConfigServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCdnRewriterImplCDNConfigServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCdnRewriterImplCDNConfigServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetDynamicImageHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.asset.handler.active", Value.Cq_Commerce_Asset_Handler_Active); Serialize (Into, "cq.commerce.asset.handler.name", Value.Cq_Commerce_Asset_Handler_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetDynamicImageHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetDynamicImageHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.asset.handler.active", Value.Cq_Commerce_Asset_Handler_Active); Deserialize (Object, "cq.commerce.asset.handler.name", Value.Cq_Commerce_Asset_Handler_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetDynamicImageHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetDynamicImageHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetDynamicImageHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetStaticImageHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.asset.handler.active", Value.Cq_Commerce_Asset_Handler_Active); Serialize (Into, "cq.commerce.asset.handler.name", Value.Cq_Commerce_Asset_Handler_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetStaticImageHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetStaticImageHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.asset.handler.active", Value.Cq_Commerce_Asset_Handler_Active); Deserialize (Object, "cq.commerce.asset.handler.name", Value.Cq_Commerce_Asset_Handler_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetStaticImageHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetStaticImageHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetStaticImageHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetVideoHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.asset.handler.active", Value.Cq_Commerce_Asset_Handler_Active); Serialize (Into, "cq.commerce.asset.handler.name", Value.Cq_Commerce_Asset_Handler_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetVideoHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetVideoHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.asset.handler.active", Value.Cq_Commerce_Asset_Handler_Active); Deserialize (Object, "cq.commerce.asset.handler.name", Value.Cq_Commerce_Asset_Handler_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetVideoHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetVideoHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetVideoHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamProcessorNuiImplNuiAssetProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "nuiEnabled", Value.Nui_Enabled); Serialize (Into, "nuiServiceUrl", Value.Nui_Service_Url); Serialize (Into, "nuiApiKey", Value.Nui_Api_Key); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamProcessorNuiImplNuiAssetProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamProcessorNuiImplNuiAssetProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "nuiEnabled", Value.Nui_Enabled); Deserialize (Object, "nuiServiceUrl", Value.Nui_Service_Url); Deserialize (Object, "nuiApiKey", Value.Nui_Api_Key); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamProcessorNuiImplNuiAssetProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamProcessorNuiImplNuiAssetProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamProcessorNuiImplNuiAssetProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplIsImageServerComponentProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "TcpPort", Value.Tcp_Port); Serialize (Into, "AllowRemoteAccess", Value.Allow_Remote_Access); Serialize (Into, "MaxRenderRgnPixels", Value.Max_Render_Rgn_Pixels); Serialize (Into, "MaxMessageSize", Value.Max_Message_Size); Serialize (Into, "RandomAccessUrlTimeout", Value.Random_Access_Url_Timeout); Serialize (Into, "WorkerThreads", Value.Worker_Threads); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplIsImageServerComponentProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplIsImageServerComponentProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "TcpPort", Value.Tcp_Port); Deserialize (Object, "AllowRemoteAccess", Value.Allow_Remote_Access); Deserialize (Object, "MaxRenderRgnPixels", Value.Max_Render_Rgn_Pixels); Deserialize (Object, "MaxMessageSize", Value.Max_Message_Size); Deserialize (Object, "RandomAccessUrlTimeout", Value.Random_Access_Url_Timeout); Deserialize (Object, "WorkerThreads", Value.Worker_Threads); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplIsImageServerComponentProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamS7imagingImplIsImageServerComponentProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamS7imagingImplIsImageServerComponentInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoAssetIOHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "pathPrefix", Value.Path_Prefix); Serialize (Into, "createVersion", Value.Create_Version); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoAssetIOHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoAssetIOHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "pathPrefix", Value.Path_Prefix); Deserialize (Object, "createVersion", Value.Create_Version); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoAssetIOHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamWebdavImplIoAssetIOHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamWebdavImplIoAssetIOHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.projectPath", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Project_Path); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.scheduleFrequency", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Schedule_Frequency); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.pingTimeout", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Ping_Timeout); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.recipients", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Recipients); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.smtpserver", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Smtpserver); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.smtpport", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Smtpport); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.usetls", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Usetls); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.username", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Username); Serialize (Into, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.password", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Password); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.projectPath", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Project_Path); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.scheduleFrequency", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Schedule_Frequency); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.pingTimeout", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Ping_Timeout); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.recipients", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Recipients); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.smtpserver", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Smtpserver); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.smtpport", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Smtpport); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.usetls", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Usetls); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.username", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Username); Deserialize (Object, "com.adobe.cq.screens.monitoring.impl.ScreensMonitoringServiceImpl.password", Value.Com_Adobe_Cq_Screens_Monitoring_Impl_Screens_Monitoring_Service_Impl_Password); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensMonitoringImplScreensMonitoringServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "parameter.guava.cache.enabled", Value.Parameter_Guava_Cache_Enabled); Serialize (Into, "parameter.guava.cache.params", Value.Parameter_Guava_Cache_Params); Serialize (Into, "parameter.guava.cache.reload", Value.Parameter_Guava_Cache_Reload); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "parameter.guava.cache.enabled", Value.Parameter_Guava_Cache_Enabled); Deserialize (Object, "parameter.guava.cache.params", Value.Parameter_Guava_Cache_Params); Deserialize (Object, "parameter.guava.cache.reload", Value.Parameter_Guava_Cache_Reload); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialHandlebarsGuavaTemplateCacheImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplGroupSyncListenerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "nodetypes", Value.Nodetypes); Serialize (Into, "ignorableprops", Value.Ignorableprops); Serialize (Into, "ignorablenodes", Value.Ignorablenodes); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "distfolders", Value.Distfolders); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplGroupSyncListenerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplGroupSyncListenerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "nodetypes", Value.Nodetypes); Deserialize (Object, "ignorableprops", Value.Ignorableprops); Deserialize (Object, "ignorablenodes", Value.Ignorablenodes); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "distfolders", Value.Distfolders); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplGroupSyncListenerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplGroupSyncListenerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplGroupSyncListenerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserImplTransportHttpToPublisherProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enable", Value.Enable); Serialize (Into, "agent.configuration", Value.Agent_Configuration); Serialize (Into, "context.path", Value.Context_Path); Serialize (Into, "disabled.cipher.suites", Value.Disabled_Cipher_Suites); Serialize (Into, "enabled.cipher.suites", Value.Enabled_Cipher_Suites); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserImplTransportHttpToPublisherProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserImplTransportHttpToPublisherProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enable", Value.Enable); Deserialize (Object, "agent.configuration", Value.Agent_Configuration); Deserialize (Object, "context.path", Value.Context_Path); Deserialize (Object, "disabled.cipher.suites", Value.Disabled_Cipher_Suites); Deserialize (Object, "enabled.cipher.suites", Value.Enabled_Cipher_Suites); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserImplTransportHttpToPublisherProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUserImplTransportHttpToPublisherProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUserImplTransportHttpToPublisherInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "threshold", Value.Threshold); Serialize (Into, "jobTopicName", Value.Job_Topic_Name); Serialize (Into, "emailEnabled", Value.Email_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "threshold", Value.Threshold); Deserialize (Object, "jobTopicName", Value.Job_Topic_Name); Deserialize (Object, "emailEnabled", Value.Email_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncDeleteConfigProviderServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "threshold", Value.Threshold); Serialize (Into, "jobTopicName", Value.Job_Topic_Name); Serialize (Into, "emailEnabled", Value.Email_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "threshold", Value.Threshold); Deserialize (Object, "jobTopicName", Value.Job_Topic_Name); Deserialize (Object, "emailEnabled", Value.Email_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncMoveConfigProviderServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "threshold", Value.Threshold); Serialize (Into, "jobTopicName", Value.Job_Topic_Name); Serialize (Into, "emailEnabled", Value.Email_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "threshold", Value.Threshold); Deserialize (Object, "jobTopicName", Value.Job_Topic_Name); Deserialize (Object, "emailEnabled", Value.Email_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncPageMoveConfigProviderServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Serialize (Into, "oauth.provider.ims.authorization.url", Value.Oauth_Provider_Ims_Authorization_Url); Serialize (Into, "oauth.provider.ims.token.url", Value.Oauth_Provider_Ims_Token_Url); Serialize (Into, "oauth.provider.ims.profile.url", Value.Oauth_Provider_Ims_Profile_Url); Serialize (Into, "oauth.provider.ims.extended.details.urls", Value.Oauth_Provider_Ims_Extended_Details_Urls); Serialize (Into, "oauth.provider.ims.validate.token.url", Value.Oauth_Provider_Ims_Validate_Token_Url); Serialize (Into, "oauth.provider.ims.session.property", Value.Oauth_Provider_Ims_Session_Property); Serialize (Into, "oauth.provider.ims.service.token.client.id", Value.Oauth_Provider_Ims_Service_Token_Client_Id); Serialize (Into, "oauth.provider.ims.service.token.client.secret", Value.Oauth_Provider_Ims_Service_Token_Client_Secret); Serialize (Into, "oauth.provider.ims.service.token", Value.Oauth_Provider_Ims_Service_Token); Serialize (Into, "ims.org.ref", Value.Ims_Org_Ref); Serialize (Into, "ims.group.mapping", Value.Ims_Group_Mapping); Serialize (Into, "oauth.provider.ims.only.license.group", Value.Oauth_Provider_Ims_Only_License_Group); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); Deserialize (Object, "oauth.provider.ims.authorization.url", Value.Oauth_Provider_Ims_Authorization_Url); Deserialize (Object, "oauth.provider.ims.token.url", Value.Oauth_Provider_Ims_Token_Url); Deserialize (Object, "oauth.provider.ims.profile.url", Value.Oauth_Provider_Ims_Profile_Url); Deserialize (Object, "oauth.provider.ims.extended.details.urls", Value.Oauth_Provider_Ims_Extended_Details_Urls); Deserialize (Object, "oauth.provider.ims.validate.token.url", Value.Oauth_Provider_Ims_Validate_Token_Url); Deserialize (Object, "oauth.provider.ims.session.property", Value.Oauth_Provider_Ims_Session_Property); Deserialize (Object, "oauth.provider.ims.service.token.client.id", Value.Oauth_Provider_Ims_Service_Token_Client_Id); Deserialize (Object, "oauth.provider.ims.service.token.client.secret", Value.Oauth_Provider_Ims_Service_Token_Client_Secret); Deserialize (Object, "oauth.provider.ims.service.token", Value.Oauth_Provider_Ims_Service_Token); Deserialize (Object, "ims.org.ref", Value.Ims_Org_Ref); Deserialize (Object, "ims.group.mapping", Value.Ims_Group_Mapping); Deserialize (Object, "oauth.provider.ims.only.license.group", Value.Oauth_Provider_Ims_Only_License_Group); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplIMSProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplIMSProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "oauth.clientIds.allowed", Value.Oauth_Client_Ids_Allowed); Serialize (Into, "auth.bearer.sync.ims", Value.Auth_Bearer_Sync_Ims); Serialize (Into, "auth.tokenRequestParameter", Value.Auth_Token_Request_Parameter); Serialize (Into, "oauth.bearer.configid", Value.Oauth_Bearer_Configid); Serialize (Into, "oauth.jwt.support", Value.Oauth_Jwt_Support); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "oauth.clientIds.allowed", Value.Oauth_Client_Ids_Allowed); Deserialize (Object, "auth.bearer.sync.ims", Value.Auth_Bearer_Sync_Ims); Deserialize (Object, "auth.tokenRequestParameter", Value.Auth_Token_Request_Parameter); Deserialize (Object, "oauth.bearer.configid", Value.Oauth_Bearer_Configid); Deserialize (Object, "oauth.jwt.support", Value.Oauth_Jwt_Support); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplBearerAuthenticationHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "providerName", Value.Provider_Name); Serialize (Into, "forward.requests", Value.Forward_Requests); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "providerName", Value.Provider_Name); Deserialize (Object, "forward.requests", Value.Forward_Requests); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplReplicationAdaptersReplicatInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "granite.maintenance.mandatory", Value.Granite_Maintenance_Mandatory); Serialize (Into, "job.topics", Value.Job_Topics); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "granite.maintenance.mandatory", Value.Granite_Maintenance_Mandatory); Deserialize (Object, "job.topics", Value.Job_Topics); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMaintenanceCrxImplDataStoreGarbageCollectionTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "jaas.controlFlag", Value.Jaas_Control_Flag); Serialize (Into, "jaas.realmName", Value.Jaas_Realm_Name); Serialize (Into, "jaas.ranking", Value.Jaas_Ranking); Serialize (Into, "oauth.offline.validation", Value.Oauth_Offline_Validation); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "jaas.controlFlag", Value.Jaas_Control_Flag); Deserialize (Object, "jaas.realmName", Value.Jaas_Realm_Name); Deserialize (Object, "jaas.ranking", Value.Jaas_Ranking); Deserialize (Object, "oauth.offline.validation", Value.Oauth_Offline_Validation); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerAuthImplOAuth2ServerAuthenticationHanInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.paths", Value.Sling_Servlet_Paths); Serialize (Into, "oauth.revocation.active", Value.Oauth_Revocation_Active); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.paths", Value.Sling_Servlet_Paths); Deserialize (Object, "oauth.revocation.active", Value.Oauth_Revocation_Active); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2RevocationEndpointServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingConfiguratorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "offloading.transporter", Value.Offloading_Transporter); Serialize (Into, "offloading.cleanup.payload", Value.Offloading_Cleanup_Payload); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingConfiguratorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingConfiguratorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "offloading.transporter", Value.Offloading_Transporter); Deserialize (Object, "offloading.cleanup.payload", Value.Offloading_Cleanup_Payload); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingConfiguratorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplOffloadingConfiguratorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplOffloadingConfiguratorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "default.transport.agent-to-worker.prefix", Value.Default_Transport_Agent_To_Worker_Prefix); Serialize (Into, "default.transport.agent-to-master.prefix", Value.Default_Transport_Agent_To_Master_Prefix); Serialize (Into, "default.transport.input.package", Value.Default_Transport_Input_Package); Serialize (Into, "default.transport.output.package", Value.Default_Transport_Output_Package); Serialize (Into, "default.transport.replication.synchronous", Value.Default_Transport_Replication_Synchronous); Serialize (Into, "default.transport.contentpackage", Value.Default_Transport_Contentpackage); Serialize (Into, "offloading.transporter.default.enabled", Value.Offloading_Transporter_Default_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "default.transport.agent-to-worker.prefix", Value.Default_Transport_Agent_To_Worker_Prefix); Deserialize (Object, "default.transport.agent-to-master.prefix", Value.Default_Transport_Agent_To_Master_Prefix); Deserialize (Object, "default.transport.input.package", Value.Default_Transport_Input_Package); Deserialize (Object, "default.transport.output.package", Value.Default_Transport_Output_Package); Deserialize (Object, "default.transport.replication.synchronous", Value.Default_Transport_Replication_Synchronous); Deserialize (Object, "default.transport.contentpackage", Value.Default_Transport_Contentpackage); Deserialize (Object, "offloading.transporter.default.enabled", Value.Offloading_Transporter_Default_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOffloadingImplTransporterOffloadingDefaultTranspoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryImplCommitStatsConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "intervalSeconds", Value.Interval_Seconds); Serialize (Into, "commitsPerIntervalThreshold", Value.Commits_Per_Interval_Threshold); Serialize (Into, "maxLocationLength", Value.Max_Location_Length); Serialize (Into, "maxDetailsShown", Value.Max_Details_Shown); Serialize (Into, "minDetailsPercentage", Value.Min_Details_Percentage); Serialize (Into, "threadMatchers", Value.Thread_Matchers); Serialize (Into, "maxGreedyDepth", Value.Max_Greedy_Depth); Serialize (Into, "greedyStackMatchers", Value.Greedy_Stack_Matchers); Serialize (Into, "stackFilters", Value.Stack_Filters); Serialize (Into, "stackMatchers", Value.Stack_Matchers); Serialize (Into, "stackCategorizers", Value.Stack_Categorizers); Serialize (Into, "stackShorteners", Value.Stack_Shorteners); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryImplCommitStatsConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryImplCommitStatsConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "intervalSeconds", Value.Interval_Seconds); Deserialize (Object, "commitsPerIntervalThreshold", Value.Commits_Per_Interval_Threshold); Deserialize (Object, "maxLocationLength", Value.Max_Location_Length); Deserialize (Object, "maxDetailsShown", Value.Max_Details_Shown); Deserialize (Object, "minDetailsPercentage", Value.Min_Details_Percentage); Deserialize (Object, "threadMatchers", Value.Thread_Matchers); Deserialize (Object, "maxGreedyDepth", Value.Max_Greedy_Depth); Deserialize (Object, "greedyStackMatchers", Value.Greedy_Stack_Matchers); Deserialize (Object, "stackFilters", Value.Stack_Filters); Deserialize (Object, "stackMatchers", Value.Stack_Matchers); Deserialize (Object, "stackCategorizers", Value.Stack_Categorizers); Deserialize (Object, "stackShorteners", Value.Stack_Shorteners); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryImplCommitStatsConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryImplCommitStatsConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRepositoryImplCommitStatsConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "archiving.enabled", Value.Archiving_Enabled); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "archive.since.days.completed", Value.Archive_Since_Days_Completed); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "archiving.enabled", Value.Archiving_Enabled); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "archive.since.days.completed", Value.Archive_Since_Days_Completed); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplJcrTaskArchiveServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "htmllibmanager.timing", Value.Htmllibmanager_Timing); Serialize (Into, "htmllibmanager.debug.init.js", Value.Htmllibmanager_Debug_Init_Js); Serialize (Into, "htmllibmanager.minify", Value.Htmllibmanager_Minify); Serialize (Into, "htmllibmanager.debug", Value.Htmllibmanager_Debug); Serialize (Into, "htmllibmanager.gzip", Value.Htmllibmanager_Gzip); Serialize (Into, "htmllibmanager.maxDataUriSize", Value.Htmllibmanager_Max_Data_Uri_Size); Serialize (Into, "htmllibmanager.maxage", Value.Htmllibmanager_Maxage); Serialize (Into, "htmllibmanager.forceCQUrlInfo", Value.Htmllibmanager_Force_C_Q_Url_Info); Serialize (Into, "htmllibmanager.defaultthemename", Value.Htmllibmanager_Defaultthemename); Serialize (Into, "htmllibmanager.defaultuserthemename", Value.Htmllibmanager_Defaultuserthemename); Serialize (Into, "htmllibmanager.clientmanager", Value.Htmllibmanager_Clientmanager); Serialize (Into, "htmllibmanager.path.list", Value.Htmllibmanager_Path_List); Serialize (Into, "htmllibmanager.excluded.path.list", Value.Htmllibmanager_Excluded_Path_List); Serialize (Into, "htmllibmanager.processor.js", Value.Htmllibmanager_Processor_Js); Serialize (Into, "htmllibmanager.processor.css", Value.Htmllibmanager_Processor_Css); Serialize (Into, "htmllibmanager.longcache.patterns", Value.Htmllibmanager_Longcache_Patterns); Serialize (Into, "htmllibmanager.longcache.format", Value.Htmllibmanager_Longcache_Format); Serialize (Into, "htmllibmanager.useFileSystemOutputCache", Value.Htmllibmanager_Use_File_System_Output_Cache); Serialize (Into, "htmllibmanager.fileSystemOutputCacheLocation", Value.Htmllibmanager_File_System_Output_Cache_Location); Serialize (Into, "htmllibmanager.disable.replacement", Value.Htmllibmanager_Disable_Replacement); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "htmllibmanager.timing", Value.Htmllibmanager_Timing); Deserialize (Object, "htmllibmanager.debug.init.js", Value.Htmllibmanager_Debug_Init_Js); Deserialize (Object, "htmllibmanager.minify", Value.Htmllibmanager_Minify); Deserialize (Object, "htmllibmanager.debug", Value.Htmllibmanager_Debug); Deserialize (Object, "htmllibmanager.gzip", Value.Htmllibmanager_Gzip); Deserialize (Object, "htmllibmanager.maxDataUriSize", Value.Htmllibmanager_Max_Data_Uri_Size); Deserialize (Object, "htmllibmanager.maxage", Value.Htmllibmanager_Maxage); Deserialize (Object, "htmllibmanager.forceCQUrlInfo", Value.Htmllibmanager_Force_C_Q_Url_Info); Deserialize (Object, "htmllibmanager.defaultthemename", Value.Htmllibmanager_Defaultthemename); Deserialize (Object, "htmllibmanager.defaultuserthemename", Value.Htmllibmanager_Defaultuserthemename); Deserialize (Object, "htmllibmanager.clientmanager", Value.Htmllibmanager_Clientmanager); Deserialize (Object, "htmllibmanager.path.list", Value.Htmllibmanager_Path_List); Deserialize (Object, "htmllibmanager.excluded.path.list", Value.Htmllibmanager_Excluded_Path_List); Deserialize (Object, "htmllibmanager.processor.js", Value.Htmllibmanager_Processor_Js); Deserialize (Object, "htmllibmanager.processor.css", Value.Htmllibmanager_Processor_Css); Deserialize (Object, "htmllibmanager.longcache.patterns", Value.Htmllibmanager_Longcache_Patterns); Deserialize (Object, "htmllibmanager.longcache.format", Value.Htmllibmanager_Longcache_Format); Deserialize (Object, "htmllibmanager.useFileSystemOutputCache", Value.Htmllibmanager_Use_File_System_Output_Cache); Deserialize (Object, "htmllibmanager.fileSystemOutputCacheLocation", Value.Htmllibmanager_File_System_Output_Cache_Location); Deserialize (Object, "htmllibmanager.disable.replacement", Value.Htmllibmanager_Disable_Replacement); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteUiClientlibsImplHtmlLibraryManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsHttpclientProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "proxy.enabled", Value.Proxy_Enabled); Serialize (Into, "proxy.host", Value.Proxy_Host); Serialize (Into, "proxy.user", Value.Proxy_User); Serialize (Into, "proxy.password", Value.Proxy_Password); Serialize (Into, "proxy.ntlm.host", Value.Proxy_Ntlm_Host); Serialize (Into, "proxy.ntlm.domain", Value.Proxy_Ntlm_Domain); Serialize (Into, "proxy.exceptions", Value.Proxy_Exceptions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsHttpclientProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsHttpclientProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "proxy.enabled", Value.Proxy_Enabled); Deserialize (Object, "proxy.host", Value.Proxy_Host); Deserialize (Object, "proxy.user", Value.Proxy_User); Deserialize (Object, "proxy.password", Value.Proxy_Password); Deserialize (Object, "proxy.ntlm.host", Value.Proxy_Ntlm_Host); Deserialize (Object, "proxy.ntlm.domain", Value.Proxy_Ntlm_Domain); Deserialize (Object, "proxy.exceptions", Value.Proxy_Exceptions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsHttpclientProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCommonsHttpclientProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsHttpclientInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsHttpclientInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsHttpclientInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsHttpclientInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCommonsHttpclientInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplCugCugSupportImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cug.exempted.principals", Value.Cug_Exempted_Principals); Serialize (Into, "cug.enabled", Value.Cug_Enabled); Serialize (Into, "cug.principals.regex", Value.Cug_Principals_Regex); Serialize (Into, "cug.principals.replacement", Value.Cug_Principals_Replacement); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplCugCugSupportImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplCugCugSupportImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cug.exempted.principals", Value.Cug_Exempted_Principals); Deserialize (Object, "cug.enabled", Value.Cug_Enabled); Deserialize (Object, "cug.principals.regex", Value.Cug_Principals_Regex); Deserialize (Object, "cug.principals.replacement", Value.Cug_Principals_Replacement); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplCugCugSupportImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAuthImplCugCugSupportImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplCugCugSupportImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplCugCugSupportImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplCugCugSupportImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplCugCugSupportImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAuthImplCugCugSupportImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplLoginSelectorHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "auth.loginselector.mappings", Value.Auth_Loginselector_Mappings); Serialize (Into, "auth.loginselector.changepw.mappings", Value.Auth_Loginselector_Changepw_Mappings); Serialize (Into, "auth.loginselector.defaultloginpage", Value.Auth_Loginselector_Defaultloginpage); Serialize (Into, "auth.loginselector.defaultchangepwpage", Value.Auth_Loginselector_Defaultchangepwpage); Serialize (Into, "auth.loginselector.handle", Value.Auth_Loginselector_Handle); Serialize (Into, "auth.loginselector.handle.all.extensions", Value.Auth_Loginselector_Handle_All_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplLoginSelectorHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplLoginSelectorHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "auth.loginselector.mappings", Value.Auth_Loginselector_Mappings); Deserialize (Object, "auth.loginselector.changepw.mappings", Value.Auth_Loginselector_Changepw_Mappings); Deserialize (Object, "auth.loginselector.defaultloginpage", Value.Auth_Loginselector_Defaultloginpage); Deserialize (Object, "auth.loginselector.defaultchangepwpage", Value.Auth_Loginselector_Defaultchangepwpage); Deserialize (Object, "auth.loginselector.handle", Value.Auth_Loginselector_Handle); Deserialize (Object, "auth.loginselector.handle.all.extensions", Value.Auth_Loginselector_Handle_All_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplLoginSelectorHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAuthImplLoginSelectorHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplLoginSelectorHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAuthImplLoginSelectorHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplLoginSelectorHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAuthImplLoginSelectorHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAuthImplLoginSelectorHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsImplExternalizerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "externalizer.domains", Value.Externalizer_Domains); Serialize (Into, "externalizer.host", Value.Externalizer_Host); Serialize (Into, "externalizer.contextpath", Value.Externalizer_Contextpath); Serialize (Into, "externalizer.encodedpath", Value.Externalizer_Encodedpath); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsImplExternalizerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsImplExternalizerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "externalizer.domains", Value.Externalizer_Domains); Deserialize (Object, "externalizer.host", Value.Externalizer_Host); Deserialize (Object, "externalizer.contextpath", Value.Externalizer_Contextpath); Deserialize (Object, "externalizer.encodedpath", Value.Externalizer_Encodedpath); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsImplExternalizerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCommonsImplExternalizerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsImplExternalizerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsImplExternalizerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsImplExternalizerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsImplExternalizerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCommonsImplExternalizerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplEventDamEventAuditListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplEventDamEventAuditListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplEventDamEventAuditListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplEventDamEventAuditListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplEventDamEventAuditListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplEventDamEventAuditListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplExpiryNotificationJobImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.expiry.notification.scheduler.istimebased", Value.Cq_Dam_Expiry_Notification_Scheduler_Istimebased); Serialize (Into, "cq.dam.expiry.notification.scheduler.timebased.rule", Value.Cq_Dam_Expiry_Notification_Scheduler_Timebased_Rule); Serialize (Into, "cq.dam.expiry.notification.scheduler.period.rule", Value.Cq_Dam_Expiry_Notification_Scheduler_Period_Rule); Serialize (Into, "send_email", Value.Send_Email); Serialize (Into, "asset_expired_limit", Value.Asset_Expired_Limit); Serialize (Into, "prior_notification_seconds", Value.Prior_Notification_Seconds); Serialize (Into, "cq.dam.expiry.notification.url.protocol", Value.Cq_Dam_Expiry_Notification_Url_Protocol); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplExpiryNotificationJobImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplExpiryNotificationJobImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.expiry.notification.scheduler.istimebased", Value.Cq_Dam_Expiry_Notification_Scheduler_Istimebased); Deserialize (Object, "cq.dam.expiry.notification.scheduler.timebased.rule", Value.Cq_Dam_Expiry_Notification_Scheduler_Timebased_Rule); Deserialize (Object, "cq.dam.expiry.notification.scheduler.period.rule", Value.Cq_Dam_Expiry_Notification_Scheduler_Period_Rule); Deserialize (Object, "send_email", Value.Send_Email); Deserialize (Object, "asset_expired_limit", Value.Asset_Expired_Limit); Deserialize (Object, "prior_notification_seconds", Value.Prior_Notification_Seconds); Deserialize (Object, "cq.dam.expiry.notification.url.protocol", Value.Cq_Dam_Expiry_Notification_Url_Protocol); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplExpiryNotificationJobImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplExpiryNotificationJobImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplExpiryNotificationJobImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetUpdateMonitorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jmx.objectname", Value.Jmx_Objectname); Serialize (Into, "active", Value.Active); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetUpdateMonitorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetUpdateMonitorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jmx.objectname", Value.Jmx_Objectname); Deserialize (Object, "active", Value.Active); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetUpdateMonitorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJmxAssetUpdateMonitorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJmxAssetUpdateMonitorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "operation", Value.Operation); Serialize (Into, "emailEnabled", Value.Email_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "operation", Value.Operation); Deserialize (Object, "emailEnabled", Value.Email_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJobsMetadataexportAsyncMetadataExportConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "operation", Value.Operation); Serialize (Into, "operationIcon", Value.Operation_Icon); Serialize (Into, "topicName", Value.Topic_Name); Serialize (Into, "emailEnabled", Value.Email_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "operation", Value.Operation); Deserialize (Object, "operationIcon", Value.Operation_Icon); Deserialize (Object, "topicName", Value.Topic_Name); Deserialize (Object, "emailEnabled", Value.Email_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJobsMetadataimportAsyncMetadataImportConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplLightboxLightboxServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.paths", Value.Sling_Servlet_Paths); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Serialize (Into, "cq.dam.enable.anonymous", Value.Cq_Dam_Enable_Anonymous); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplLightboxLightboxServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplLightboxLightboxServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.paths", Value.Sling_Servlet_Paths); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); Deserialize (Object, "cq.dam.enable.anonymous", Value.Cq_Dam_Enable_Anonymous); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplLightboxLightboxServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplLightboxLightboxServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplLightboxLightboxServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplLightboxLightboxServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplLightboxLightboxServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplLightboxLightboxServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplLightboxLightboxServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMissingMetadataNotificationJobProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.missingmetadata.notification.scheduler.istimebased", Value.Cq_Dam_Missingmetadata_Notification_Scheduler_Istimebased); Serialize (Into, "cq.dam.missingmetadata.notification.scheduler.timebased.rule", Value.Cq_Dam_Missingmetadata_Notification_Scheduler_Timebased_Rule); Serialize (Into, "cq.dam.missingmetadata.notification.scheduler.period.rule", Value.Cq_Dam_Missingmetadata_Notification_Scheduler_Period_Rule); Serialize (Into, "cq.dam.missingmetadata.notification.recipient", Value.Cq_Dam_Missingmetadata_Notification_Recipient); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMissingMetadataNotificationJobProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMissingMetadataNotificationJobProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.missingmetadata.notification.scheduler.istimebased", Value.Cq_Dam_Missingmetadata_Notification_Scheduler_Istimebased); Deserialize (Object, "cq.dam.missingmetadata.notification.scheduler.timebased.rule", Value.Cq_Dam_Missingmetadata_Notification_Scheduler_Timebased_Rule); Deserialize (Object, "cq.dam.missingmetadata.notification.scheduler.period.rule", Value.Cq_Dam_Missingmetadata_Notification_Scheduler_Period_Rule); Deserialize (Object, "cq.dam.missingmetadata.notification.recipient", Value.Cq_Dam_Missingmetadata_Notification_Recipient); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMissingMetadataNotificationJobProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMissingMetadataNotificationJobProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplMissingMetadataNotificationJobInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "Notify on Complete", Value.Notify_On_Complete); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "Notify on Complete", Value.Notify_On_Complete); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplProcessSendTransientWorkflowCompletedEmailPrInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportPurgeServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "maxSavedReports", Value.Max_Saved_Reports); Serialize (Into, "timeDuration", Value.Time_Duration); Serialize (Into, "enableReportPurge", Value.Enable_Report_Purge); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportPurgeServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportPurgeServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "maxSavedReports", Value.Max_Saved_Reports); Deserialize (Object, "timeDuration", Value.Time_Duration); Deserialize (Object, "enableReportPurge", Value.Enable_Report_Purge); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportPurgeServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplReportsReportPurgeServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplReportsReportPurgeServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletResourceCollectionServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "download.config", Value.Download_Config); Serialize (Into, "view.selector", Value.View_Selector); Serialize (Into, "send_email", Value.Send_Email); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletResourceCollectionServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletResourceCollectionServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "download.config", Value.Download_Config); Deserialize (Object, "view.selector", Value.View_Selector); Deserialize (Object, "send_email", Value.Send_Email); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletResourceCollectionServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletResourceCollectionServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletResourceCollectionServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "createPreviewEnabled", Value.Create_Preview_Enabled); Serialize (Into, "updatePreviewEnabled", Value.Update_Preview_Enabled); Serialize (Into, "queueSize", Value.Queue_Size); Serialize (Into, "folderPreviewRenditionRegex", Value.Folder_Preview_Rendition_Regex); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "createPreviewEnabled", Value.Create_Preview_Enabled); Deserialize (Object, "updatePreviewEnabled", Value.Update_Preview_Enabled); Deserialize (Object, "queueSize", Value.Queue_Size); Deserialize (Object, "folderPreviewRenditionRegex", Value.Folder_Preview_Rendition_Regex); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplUiPreviewFolderPreviewUpdaterImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExifToolExtractMetadataProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "cq.dam.enable.sha1", Value.Cq_Dam_Enable_Sha1); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExifToolExtractMetadataProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExifToolExtractMetadataProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "cq.dam.enable.sha1", Value.Cq_Dam_Enable_Sha1); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExifToolExtractMetadataProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreProcessExifToolExtractMetadataProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreProcessExifToolExtractMetadataProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExtractMetadataProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "cq.dam.enable.sha1", Value.Cq_Dam_Enable_Sha1); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExtractMetadataProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExtractMetadataProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "cq.dam.enable.sha1", Value.Cq_Dam_Enable_Sha1); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExtractMetadataProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreProcessExtractMetadataProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreProcessExtractMetadataProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessMetadataProcessorProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "cq.dam.enable.sha1", Value.Cq_Dam_Enable_Sha1); Serialize (Into, "cq.dam.metadata.xssprotected.properties", Value.Cq_Dam_Metadata_Xssprotected_Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessMetadataProcessorProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessMetadataProcessorProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "cq.dam.enable.sha1", Value.Cq_Dam_Enable_Sha1); Deserialize (Object, "cq.dam.metadata.xssprotected.properties", Value.Cq_Dam_Metadata_Xssprotected_Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessMetadataProcessorProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreProcessMetadataProcessorProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreProcessMetadataProcessorProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSJobProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enable.multisession", Value.Enable_Multisession); Serialize (Into, "ids.cc.enable", Value.Ids_Cc_Enable); Serialize (Into, "enable.retry", Value.Enable_Retry); Serialize (Into, "enable.retry.scripterror", Value.Enable_Retry_Scripterror); Serialize (Into, "externalizer.domain.cqhost", Value.Externalizer_Domain_Cqhost); Serialize (Into, "externalizer.domain.http", Value.Externalizer_Domain_Http); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSJobProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSJobProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enable.multisession", Value.Enable_Multisession); Deserialize (Object, "ids.cc.enable", Value.Ids_Cc_Enable); Deserialize (Object, "enable.retry", Value.Enable_Retry); Deserialize (Object, "enable.retry.scripterror", Value.Enable_Retry_Scripterror); Deserialize (Object, "externalizer.domain.cqhost", Value.Externalizer_Domain_Cqhost); Deserialize (Object, "externalizer.domain.http", Value.Externalizer_Domain_Http); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSJobProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamIdsImplIDSJobProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSJobProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSJobProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSJobProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSJobProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamIdsImplIDSJobProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplHandlerIndesignXMPHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "extract.pages", Value.Extract_Pages); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplHandlerIndesignXMPHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplHandlerIndesignXMPHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "extract.pages", Value.Extract_Pages); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplHandlerIndesignXMPHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamInddImplHandlerIndesignXMPHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamInddImplHandlerIndesignXMPHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddProcessINDDMediaExtractProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "cq.dam.indd.pages.regex", Value.Cq_Dam_Indd_Pages_Regex); Serialize (Into, "ids.job.decoupled", Value.Ids_Job_Decoupled); Serialize (Into, "ids.job.workflow.model", Value.Ids_Job_Workflow_Model); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddProcessINDDMediaExtractProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddProcessINDDMediaExtractProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "cq.dam.indd.pages.regex", Value.Cq_Dam_Indd_Pages_Regex); Deserialize (Object, "ids.job.decoupled", Value.Ids_Job_Decoupled); Deserialize (Object, "ids.job.workflow.model", Value.Ids_Job_Workflow_Model); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddProcessINDDMediaExtractProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamInddProcessINDDMediaExtractProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamInddProcessINDDMediaExtractProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "scheduler.concurrent", Value.Scheduler_Concurrent); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "scheduler.concurrent", Value.Scheduler_Concurrent); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonAnalyticsImplSiteCatalystReportRunnerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerDefaultMailServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "smtp.host", Value.Smtp_Host); Serialize (Into, "smtp.port", Value.Smtp_Port); Serialize (Into, "smtp.user", Value.Smtp_User); Serialize (Into, "smtp.password", Value.Smtp_Password); Serialize (Into, "from.address", Value.From_Address); Serialize (Into, "smtp.ssl", Value.Smtp_Ssl); Serialize (Into, "smtp.starttls", Value.Smtp_Starttls); Serialize (Into, "debug.email", Value.Debug_Email); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerDefaultMailServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerDefaultMailServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "smtp.host", Value.Smtp_Host); Deserialize (Object, "smtp.port", Value.Smtp_Port); Deserialize (Object, "smtp.user", Value.Smtp_User); Deserialize (Object, "smtp.password", Value.Smtp_Password); Deserialize (Object, "from.address", Value.From_Address); Deserialize (Object, "smtp.ssl", Value.Smtp_Ssl); Deserialize (Object, "smtp.starttls", Value.Smtp_Starttls); Deserialize (Object, "debug.email", Value.Debug_Email); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerDefaultMailServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerDefaultMailServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerDefaultMailServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerDefaultMailServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerDefaultMailServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerDefaultMailServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerDefaultMailServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqRetrieverTemplateFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mailer.email.embed", Value.Mailer_Email_Embed); Serialize (Into, "mailer.email.charset", Value.Mailer_Email_Charset); Serialize (Into, "mailer.email.retrieverUserID", Value.Mailer_Email_Retriever_User_I_D); Serialize (Into, "mailer.email.retrieverUserPWD", Value.Mailer_Email_Retriever_User_P_W_D); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqRetrieverTemplateFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqRetrieverTemplateFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mailer.email.embed", Value.Mailer_Email_Embed); Deserialize (Object, "mailer.email.charset", Value.Mailer_Email_Charset); Deserialize (Object, "mailer.email.retrieverUserID", Value.Mailer_Email_Retriever_User_I_D); Deserialize (Object, "mailer.email.retrieverUserPWD", Value.Mailer_Email_Retriever_User_P_W_D); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqRetrieverTemplateFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerImplEmailCqRetrieverTemplateFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerImplEmailCqRetrieverTemplateFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImplIntegrationConfigImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "aem.mcm.campaign.formConstraints", Value.Aem_Mcm_Campaign_Form_Constraints); Serialize (Into, "aem.mcm.campaign.publicUrl", Value.Aem_Mcm_Campaign_Public_Url); Serialize (Into, "aem.mcm.campaign.relaxedSSL", Value.Aem_Mcm_Campaign_Relaxed_S_S_L); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImplIntegrationConfigImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImplIntegrationConfigImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "aem.mcm.campaign.formConstraints", Value.Aem_Mcm_Campaign_Form_Constraints); Deserialize (Object, "aem.mcm.campaign.publicUrl", Value.Aem_Mcm_Campaign_Public_Url); Deserialize (Object, "aem.mcm.campaign.relaxedSSL", Value.Aem_Mcm_Campaign_Relaxed_S_S_L); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImplIntegrationConfigImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmCampaignImplIntegrationConfigImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmCampaignImplIntegrationConfigImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplConfigServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "repconf.timezone", Value.Repconf_Timezone); Serialize (Into, "repconf.locale", Value.Repconf_Locale); Serialize (Into, "repconf.snapshots", Value.Repconf_Snapshots); Serialize (Into, "repconf.repdir", Value.Repconf_Repdir); Serialize (Into, "repconf.hourofday", Value.Repconf_Hourofday); Serialize (Into, "repconf.minofhour", Value.Repconf_Minofhour); Serialize (Into, "repconf.maxrows", Value.Repconf_Maxrows); Serialize (Into, "repconf.fakedata", Value.Repconf_Fakedata); Serialize (Into, "repconf.snapshotuser", Value.Repconf_Snapshotuser); Serialize (Into, "repconf.enforcesnapshotuser", Value.Repconf_Enforcesnapshotuser); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplConfigServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplConfigServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "repconf.timezone", Value.Repconf_Timezone); Deserialize (Object, "repconf.locale", Value.Repconf_Locale); Deserialize (Object, "repconf.snapshots", Value.Repconf_Snapshots); Deserialize (Object, "repconf.repdir", Value.Repconf_Repdir); Deserialize (Object, "repconf.hourofday", Value.Repconf_Hourofday); Deserialize (Object, "repconf.minofhour", Value.Repconf_Minofhour); Deserialize (Object, "repconf.maxrows", Value.Repconf_Maxrows); Deserialize (Object, "repconf.fakedata", Value.Repconf_Fakedata); Deserialize (Object, "repconf.snapshotuser", Value.Repconf_Snapshotuser); Deserialize (Object, "repconf.enforcesnapshotuser", Value.Repconf_Enforcesnapshotuser); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplConfigServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReportingImplConfigServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplConfigServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplConfigServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplConfigServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplConfigServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReportingImplConfigServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqStatisticsImplStatisticsServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.period", Value.Scheduler_Period); Serialize (Into, "scheduler.concurrent", Value.Scheduler_Concurrent); Serialize (Into, "path", Value.Path); Serialize (Into, "workspace", Value.Workspace); Serialize (Into, "keywordsPath", Value.Keywords_Path); Serialize (Into, "asyncEntries", Value.Async_Entries); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqStatisticsImplStatisticsServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqStatisticsImplStatisticsServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.period", Value.Scheduler_Period); Deserialize (Object, "scheduler.concurrent", Value.Scheduler_Concurrent); Deserialize (Object, "path", Value.Path); Deserialize (Object, "workspace", Value.Workspace); Deserialize (Object, "keywordsPath", Value.Keywords_Path); Deserialize (Object, "asyncEntries", Value.Async_Entries); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqStatisticsImplStatisticsServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqStatisticsImplStatisticsServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqStatisticsImplStatisticsServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqStatisticsImplStatisticsServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqStatisticsImplStatisticsServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqStatisticsImplStatisticsServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqStatisticsImplStatisticsServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageManagerFactoryImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "illegalCharMapping", Value.Illegal_Char_Mapping); Serialize (Into, "pageSubTreeActivationCheck", Value.Page_Sub_Tree_Activation_Check); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageManagerFactoryImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageManagerFactoryImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "illegalCharMapping", Value.Illegal_Char_Mapping); Deserialize (Object, "pageSubTreeActivationCheck", Value.Page_Sub_Tree_Activation_Check); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageManagerFactoryImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplPagePageManagerFactoryImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplPagePageManagerFactoryImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dam.showexpired", Value.Dam_Showexpired); Serialize (Into, "dam.showhidden", Value.Dam_Showhidden); Serialize (Into, "tagTitleSearch", Value.Tag_Title_Search); Serialize (Into, "guessTotal", Value.Guess_Total); Serialize (Into, "dam.expiryProperty", Value.Dam_Expiry_Property); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dam.showexpired", Value.Dam_Showexpired); Deserialize (Object, "dam.showhidden", Value.Dam_Showhidden); Deserialize (Object, "tagTitleSearch", Value.Tag_Title_Search); Deserialize (Object, "guessTotal", Value.Guess_Total); Deserialize (Object, "dam.expiryProperty", Value.Dam_Expiry_Property); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsContentfinderAssetViewHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "guessTotal", Value.Guess_Total); Serialize (Into, "tagTitleSearch", Value.Tag_Title_Search); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "guessTotal", Value.Guess_Total); Deserialize (Object, "tagTitleSearch", Value.Tag_Title_Search); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsContentfinderPageViewHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasBuilderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "filepattern", Value.Filepattern); Serialize (Into, "build.page.nodes", Value.Build_Page_Nodes); Serialize (Into, "build.client.libs", Value.Build_Client_Libs); Serialize (Into, "build.canvas.component", Value.Build_Canvas_Component); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasBuilderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasBuilderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "filepattern", Value.Filepattern); Deserialize (Object, "build.page.nodes", Value.Build_Page_Nodes); Deserialize (Object, "build.client.libs", Value.Build_Client_Libs); Deserialize (Object, "build.canvas.component", Value.Build_Canvas_Component); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasBuilderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplCanvasBuilderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplCanvasBuilderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "filepattern", Value.Filepattern); Serialize (Into, "device.groups", Value.Device_Groups); Serialize (Into, "build.page.nodes", Value.Build_Page_Nodes); Serialize (Into, "build.client.libs", Value.Build_Client_Libs); Serialize (Into, "build.canvas.component", Value.Build_Canvas_Component); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "filepattern", Value.Filepattern); Deserialize (Object, "device.groups", Value.Device_Groups); Deserialize (Object, "build.page.nodes", Value.Build_Page_Nodes); Deserialize (Object, "build.client.libs", Value.Build_Client_Libs); Deserialize (Object, "build.canvas.component", Value.Build_Canvas_Component); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplMobileCanvasBuilderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormChooserServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.name", Value.Service_Name); Serialize (Into, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Serialize (Into, "forms.formchooserservlet.advansesearch.require", Value.Forms_Formchooserservlet_Advansesearch_Require); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormChooserServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormChooserServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.name", Value.Service_Name); Deserialize (Object, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); Deserialize (Object, "forms.formchooserservlet.advansesearch.require", Value.Forms_Formchooserservlet_Advansesearch_Require); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormChooserServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplFormChooserServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplFormChooserServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormsHandlingServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name.whitelist", Value.Name_Whitelist); Serialize (Into, "allow.expressions", Value.Allow_Expressions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormsHandlingServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormsHandlingServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name.whitelist", Value.Name_Whitelist); Deserialize (Object, "allow.expressions", Value.Allow_Expressions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormsHandlingServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplFormsHandlingServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplFormsHandlingServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplHTTPAuthHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "auth.http.nologin", Value.Auth_Http_Nologin); Serialize (Into, "auth.http.realm", Value.Auth_Http_Realm); Serialize (Into, "auth.default.loginpage", Value.Auth_Default_Loginpage); Serialize (Into, "auth.cred.form", Value.Auth_Cred_Form); Serialize (Into, "auth.cred.utf8", Value.Auth_Cred_Utf8); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplHTTPAuthHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplHTTPAuthHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "auth.http.nologin", Value.Auth_Http_Nologin); Deserialize (Object, "auth.http.realm", Value.Auth_Http_Realm); Deserialize (Object, "auth.default.loginpage", Value.Auth_Default_Loginpage); Deserialize (Object, "auth.cred.form", Value.Auth_Cred_Form); Deserialize (Object, "auth.cred.utf8", Value.Auth_Cred_Utf8); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplHTTPAuthHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplHTTPAuthHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplHTTPAuthHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "device.info.transformer.enabled", Value.Device_Info_Transformer_Enabled); Serialize (Into, "device.info.transformer.css.style", Value.Device_Info_Transformer_Css_Style); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "device.info.transformer.enabled", Value.Device_Info_Transformer_Enabled); Deserialize (Object, "device.info.transformer.css.style", Value.Device_Info_Transformer_Css_Style); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMobileCoreImplDeviceDeviceInfoTransformerFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmUndoUndoConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.undo.enabled", Value.Cq_Wcm_Undo_Enabled); Serialize (Into, "cq.wcm.undo.path", Value.Cq_Wcm_Undo_Path); Serialize (Into, "cq.wcm.undo.validity", Value.Cq_Wcm_Undo_Validity); Serialize (Into, "cq.wcm.undo.steps", Value.Cq_Wcm_Undo_Steps); Serialize (Into, "cq.wcm.undo.persistence", Value.Cq_Wcm_Undo_Persistence); Serialize (Into, "cq.wcm.undo.persistence.mode", Value.Cq_Wcm_Undo_Persistence_Mode); Serialize (Into, "cq.wcm.undo.markermode", Value.Cq_Wcm_Undo_Markermode); Serialize (Into, "cq.wcm.undo.whitelist", Value.Cq_Wcm_Undo_Whitelist); Serialize (Into, "cq.wcm.undo.blacklist", Value.Cq_Wcm_Undo_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmUndoUndoConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmUndoUndoConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.undo.enabled", Value.Cq_Wcm_Undo_Enabled); Deserialize (Object, "cq.wcm.undo.path", Value.Cq_Wcm_Undo_Path); Deserialize (Object, "cq.wcm.undo.validity", Value.Cq_Wcm_Undo_Validity); Deserialize (Object, "cq.wcm.undo.steps", Value.Cq_Wcm_Undo_Steps); Deserialize (Object, "cq.wcm.undo.persistence", Value.Cq_Wcm_Undo_Persistence); Deserialize (Object, "cq.wcm.undo.persistence.mode", Value.Cq_Wcm_Undo_Persistence_Mode); Deserialize (Object, "cq.wcm.undo.markermode", Value.Cq_Wcm_Undo_Markermode); Deserialize (Object, "cq.wcm.undo.whitelist", Value.Cq_Wcm_Undo_Whitelist); Deserialize (Object, "cq.wcm.undo.blacklist", Value.Cq_Wcm_Undo_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmUndoUndoConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmUndoUndoConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmUndoUndoConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmUndoUndoConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmUndoUndoConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmUndoUndoConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmUndoUndoConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWcmWorkflowServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "minThreadPoolSize", Value.Min_Thread_Pool_Size); Serialize (Into, "maxThreadPoolSize", Value.Max_Thread_Pool_Size); Serialize (Into, "cq.wcm.workflow.terminate.on.activate", Value.Cq_Wcm_Workflow_Terminate_On_Activate); Serialize (Into, "cq.wcm.worklfow.terminate.exclusion.list", Value.Cq_Wcm_Worklfow_Terminate_Exclusion_List); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWcmWorkflowServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWcmWorkflowServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "minThreadPoolSize", Value.Min_Thread_Pool_Size); Deserialize (Object, "maxThreadPoolSize", Value.Max_Thread_Pool_Size); Deserialize (Object, "cq.wcm.workflow.terminate.on.activate", Value.Cq_Wcm_Workflow_Terminate_On_Activate); Deserialize (Object, "cq.wcm.worklfow.terminate.exclusion.list", Value.Cq_Wcm_Worklfow_Terminate_Exclusion_List); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWcmWorkflowServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmWorkflowImplWcmWorkflowServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmWorkflowImplWcmWorkflowServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplHtmlLibraryManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "htmllibmanager.clientmanager", Value.Htmllibmanager_Clientmanager); Serialize (Into, "htmllibmanager.debug", Value.Htmllibmanager_Debug); Serialize (Into, "htmllibmanager.debug.console", Value.Htmllibmanager_Debug_Console); Serialize (Into, "htmllibmanager.debug.init.js", Value.Htmllibmanager_Debug_Init_Js); Serialize (Into, "htmllibmanager.defaultthemename", Value.Htmllibmanager_Defaultthemename); Serialize (Into, "htmllibmanager.defaultuserthemename", Value.Htmllibmanager_Defaultuserthemename); Serialize (Into, "htmllibmanager.firebuglite.path", Value.Htmllibmanager_Firebuglite_Path); Serialize (Into, "htmllibmanager.forceCQUrlInfo", Value.Htmllibmanager_Force_C_Q_Url_Info); Serialize (Into, "htmllibmanager.gzip", Value.Htmllibmanager_Gzip); Serialize (Into, "htmllibmanager.maxage", Value.Htmllibmanager_Maxage); Serialize (Into, "htmllibmanager.maxDataUriSize", Value.Htmllibmanager_Max_Data_Uri_Size); Serialize (Into, "htmllibmanager.minify", Value.Htmllibmanager_Minify); Serialize (Into, "htmllibmanager.path.list", Value.Htmllibmanager_Path_List); Serialize (Into, "htmllibmanager.timing", Value.Htmllibmanager_Timing); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplHtmlLibraryManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplHtmlLibraryManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "htmllibmanager.clientmanager", Value.Htmllibmanager_Clientmanager); Deserialize (Object, "htmllibmanager.debug", Value.Htmllibmanager_Debug); Deserialize (Object, "htmllibmanager.debug.console", Value.Htmllibmanager_Debug_Console); Deserialize (Object, "htmllibmanager.debug.init.js", Value.Htmllibmanager_Debug_Init_Js); Deserialize (Object, "htmllibmanager.defaultthemename", Value.Htmllibmanager_Defaultthemename); Deserialize (Object, "htmllibmanager.defaultuserthemename", Value.Htmllibmanager_Defaultuserthemename); Deserialize (Object, "htmllibmanager.firebuglite.path", Value.Htmllibmanager_Firebuglite_Path); Deserialize (Object, "htmllibmanager.forceCQUrlInfo", Value.Htmllibmanager_Force_C_Q_Url_Info); Deserialize (Object, "htmllibmanager.gzip", Value.Htmllibmanager_Gzip); Deserialize (Object, "htmllibmanager.maxage", Value.Htmllibmanager_Maxage); Deserialize (Object, "htmllibmanager.maxDataUriSize", Value.Htmllibmanager_Max_Data_Uri_Size); Deserialize (Object, "htmllibmanager.minify", Value.Htmllibmanager_Minify); Deserialize (Object, "htmllibmanager.path.list", Value.Htmllibmanager_Path_List); Deserialize (Object, "htmllibmanager.timing", Value.Htmllibmanager_Timing); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplHtmlLibraryManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWidgetImplHtmlLibraryManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWidgetImplHtmlLibraryManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailEMailNotificationServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "from.address", Value.From_Address); Serialize (Into, "host.prefix", Value.Host_Prefix); Serialize (Into, "notify.onabort", Value.Notify_Onabort); Serialize (Into, "notify.oncomplete", Value.Notify_Oncomplete); Serialize (Into, "notify.oncontainercomplete", Value.Notify_Oncontainercomplete); Serialize (Into, "notify.useronly", Value.Notify_Useronly); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailEMailNotificationServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailEMailNotificationServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "from.address", Value.From_Address); Deserialize (Object, "host.prefix", Value.Host_Prefix); Deserialize (Object, "notify.onabort", Value.Notify_Onabort); Deserialize (Object, "notify.oncomplete", Value.Notify_Oncomplete); Deserialize (Object, "notify.oncontainercomplete", Value.Notify_Oncontainercomplete); Deserialize (Object, "notify.useronly", Value.Notify_Useronly); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailEMailNotificationServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWorkflowImplEmailEMailNotificationServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWorkflowImplEmailEMailNotificationServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplTokenCleanupTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enable.token.cleanup.task", Value.Enable_Token_Cleanup_Task); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "batch.size", Value.Batch_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplTokenCleanupTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplTokenCleanupTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enable.token.cleanup.task", Value.Enable_Token_Cleanup_Task); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "batch.size", Value.Batch_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplTokenCleanupTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCrxSecurityTokenImplTokenCleanupTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCrxSecurityTokenImplTokenCleanupTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpSslfilterSslFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "ssl-forward.header", Value.Ssl_Forward_Header); Serialize (Into, "ssl-forward.value", Value.Ssl_Forward_Value); Serialize (Into, "ssl-forward-cert.header", Value.Ssl_Forward_Cert_Header); Serialize (Into, "rewrite.absolute.urls", Value.Rewrite_Absolute_Urls); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpSslfilterSslFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpSslfilterSslFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "ssl-forward.header", Value.Ssl_Forward_Header); Deserialize (Object, "ssl-forward.value", Value.Ssl_Forward_Value); Deserialize (Object, "ssl-forward-cert.header", Value.Ssl_Forward_Cert_Header); Deserialize (Object, "rewrite.absolute.urls", Value.Rewrite_Absolute_Urls); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpSslfilterSslFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixHttpSslfilterSslFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpSslfilterSslFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpSslfilterSslFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpSslfilterSslFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpSslfilterSslFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixHttpSslfilterSslFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "disabled", Value.Disabled); Serialize (Into, "debug", Value.Debug); Serialize (Into, "localIndexDir", Value.Local_Index_Dir); Serialize (Into, "enableOpenIndexAsync", Value.Enable_Open_Index_Async); Serialize (Into, "threadPoolSize", Value.Thread_Pool_Size); Serialize (Into, "prefetchIndexFiles", Value.Prefetch_Index_Files); Serialize (Into, "extractedTextCacheSizeInMB", Value.Extracted_Text_Cache_Size_In_M_B); Serialize (Into, "extractedTextCacheExpiryInSecs", Value.Extracted_Text_Cache_Expiry_In_Secs); Serialize (Into, "alwaysUsePreExtractedCache", Value.Always_Use_Pre_Extracted_Cache); Serialize (Into, "booleanClauseLimit", Value.Boolean_Clause_Limit); Serialize (Into, "enableHybridIndexing", Value.Enable_Hybrid_Indexing); Serialize (Into, "hybridQueueSize", Value.Hybrid_Queue_Size); Serialize (Into, "disableStoredIndexDefinition", Value.Disable_Stored_Index_Definition); Serialize (Into, "deletedBlobsCollectionEnabled", Value.Deleted_Blobs_Collection_Enabled); Serialize (Into, "propIndexCleanerIntervalInSecs", Value.Prop_Index_Cleaner_Interval_In_Secs); Serialize (Into, "enableSingleBlobIndexFiles", Value.Enable_Single_Blob_Index_Files); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "disabled", Value.Disabled); Deserialize (Object, "debug", Value.Debug); Deserialize (Object, "localIndexDir", Value.Local_Index_Dir); Deserialize (Object, "enableOpenIndexAsync", Value.Enable_Open_Index_Async); Deserialize (Object, "threadPoolSize", Value.Thread_Pool_Size); Deserialize (Object, "prefetchIndexFiles", Value.Prefetch_Index_Files); Deserialize (Object, "extractedTextCacheSizeInMB", Value.Extracted_Text_Cache_Size_In_M_B); Deserialize (Object, "extractedTextCacheExpiryInSecs", Value.Extracted_Text_Cache_Expiry_In_Secs); Deserialize (Object, "alwaysUsePreExtractedCache", Value.Always_Use_Pre_Extracted_Cache); Deserialize (Object, "booleanClauseLimit", Value.Boolean_Clause_Limit); Deserialize (Object, "enableHybridIndexing", Value.Enable_Hybrid_Indexing); Deserialize (Object, "hybridQueueSize", Value.Hybrid_Queue_Size); Deserialize (Object, "disableStoredIndexDefinition", Value.Disable_Stored_Index_Definition); Deserialize (Object, "deletedBlobsCollectionEnabled", Value.Deleted_Blobs_Collection_Enabled); Deserialize (Object, "propIndexCleanerIntervalInSecs", Value.Prop_Index_Cleaner_Interval_In_Secs); Deserialize (Object, "enableSingleBlobIndexFiles", Value.Enable_Single_Blob_Index_Files); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexLuceneLuceneIndexProviderServInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "tokenExpiration", Value.Token_Expiration); Serialize (Into, "tokenLength", Value.Token_Length); Serialize (Into, "tokenRefresh", Value.Token_Refresh); Serialize (Into, "tokenCleanupThreshold", Value.Token_Cleanup_Threshold); Serialize (Into, "passwordHashAlgorithm", Value.Password_Hash_Algorithm); Serialize (Into, "passwordHashIterations", Value.Password_Hash_Iterations); Serialize (Into, "passwordSaltSize", Value.Password_Salt_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "tokenExpiration", Value.Token_Expiration); Deserialize (Object, "tokenLength", Value.Token_Length); Deserialize (Object, "tokenRefresh", Value.Token_Refresh); Deserialize (Object, "tokenCleanupThreshold", Value.Token_Cleanup_Threshold); Deserialize (Object, "passwordHashAlgorithm", Value.Password_Hash_Algorithm); Deserialize (Object, "passwordHashIterations", Value.Password_Hash_Iterations); Deserialize (Object, "passwordSaltSize", Value.Password_Salt_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthenticationTokenTokenConfiguraInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "repository.home", Value.Repository_Home); Serialize (Into, "tarmk.mode", Value.Tarmk_Mode); Serialize (Into, "tarmk.size", Value.Tarmk_Size); Serialize (Into, "segmentCache.size", Value.Segment_Cache_Size); Serialize (Into, "stringCache.size", Value.String_Cache_Size); Serialize (Into, "templateCache.size", Value.Template_Cache_Size); Serialize (Into, "stringDeduplicationCache.size", Value.String_Deduplication_Cache_Size); Serialize (Into, "templateDeduplicationCache.size", Value.Template_Deduplication_Cache_Size); Serialize (Into, "nodeDeduplicationCache.size", Value.Node_Deduplication_Cache_Size); Serialize (Into, "pauseCompaction", Value.Pause_Compaction); Serialize (Into, "compaction.retryCount", Value.Compaction_Retry_Count); Serialize (Into, "compaction.force.timeout", Value.Compaction_Force_Timeout); Serialize (Into, "compaction.sizeDeltaEstimation", Value.Compaction_Size_Delta_Estimation); Serialize (Into, "compaction.disableEstimation", Value.Compaction_Disable_Estimation); Serialize (Into, "compaction.retainedGenerations", Value.Compaction_Retained_Generations); Serialize (Into, "compaction.memoryThreshold", Value.Compaction_Memory_Threshold); Serialize (Into, "compaction.progressLog", Value.Compaction_Progress_Log); Serialize (Into, "standby", Value.Standby); Serialize (Into, "customBlobStore", Value.Custom_Blob_Store); Serialize (Into, "customSegmentStore", Value.Custom_Segment_Store); Serialize (Into, "splitPersistence", Value.Split_Persistence); Serialize (Into, "repository.backup.dir", Value.Repository_Backup_Dir); Serialize (Into, "blobGcMaxAgeInSecs", Value.Blob_Gc_Max_Age_In_Secs); Serialize (Into, "blobTrackSnapshotIntervalInSecs", Value.Blob_Track_Snapshot_Interval_In_Secs); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "repository.home", Value.Repository_Home); Deserialize (Object, "tarmk.mode", Value.Tarmk_Mode); Deserialize (Object, "tarmk.size", Value.Tarmk_Size); Deserialize (Object, "segmentCache.size", Value.Segment_Cache_Size); Deserialize (Object, "stringCache.size", Value.String_Cache_Size); Deserialize (Object, "templateCache.size", Value.Template_Cache_Size); Deserialize (Object, "stringDeduplicationCache.size", Value.String_Deduplication_Cache_Size); Deserialize (Object, "templateDeduplicationCache.size", Value.Template_Deduplication_Cache_Size); Deserialize (Object, "nodeDeduplicationCache.size", Value.Node_Deduplication_Cache_Size); Deserialize (Object, "pauseCompaction", Value.Pause_Compaction); Deserialize (Object, "compaction.retryCount", Value.Compaction_Retry_Count); Deserialize (Object, "compaction.force.timeout", Value.Compaction_Force_Timeout); Deserialize (Object, "compaction.sizeDeltaEstimation", Value.Compaction_Size_Delta_Estimation); Deserialize (Object, "compaction.disableEstimation", Value.Compaction_Disable_Estimation); Deserialize (Object, "compaction.retainedGenerations", Value.Compaction_Retained_Generations); Deserialize (Object, "compaction.memoryThreshold", Value.Compaction_Memory_Threshold); Deserialize (Object, "compaction.progressLog", Value.Compaction_Progress_Log); Deserialize (Object, "standby", Value.Standby); Deserialize (Object, "customBlobStore", Value.Custom_Blob_Store); Deserialize (Object, "customSegmentStore", Value.Custom_Segment_Store); Deserialize (Object, "splitPersistence", Value.Split_Persistence); Deserialize (Object, "repository.backup.dir", Value.Repository_Backup_Dir); Deserialize (Object, "blobGcMaxAgeInSecs", Value.Blob_Gc_Max_Age_In_Secs); Deserialize (Object, "blobTrackSnapshotIntervalInSecs", Value.Blob_Track_Snapshot_Interval_In_Secs); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentSegmentNodeStoreServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "configPath", Value.Config_Path); Serialize (Into, "fallbackPaths", Value.Fallback_Paths); Serialize (Into, "configCollectionInheritancePropertyNames", Value.Config_Collection_Inheritance_Property_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "configPath", Value.Config_Path); Deserialize (Object, "fallbackPaths", Value.Fallback_Paths); Deserialize (Object, "configCollectionInheritancePropertyNames", Value.Config_Collection_Inheritance_Property_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigResourceImplDefDefaultConfigurationResourInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplQuartzSchedulerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "poolName", Value.Pool_Name); Serialize (Into, "allowedPoolNames", Value.Allowed_Pool_Names); Serialize (Into, "scheduler.useleaderforsingle", Value.Scheduler_Useleaderforsingle); Serialize (Into, "metrics.filters", Value.Metrics_Filters); Serialize (Into, "slowThresholdMillis", Value.Slow_Threshold_Millis); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplQuartzSchedulerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplQuartzSchedulerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "poolName", Value.Pool_Name); Deserialize (Object, "allowedPoolNames", Value.Allowed_Pool_Names); Deserialize (Object, "scheduler.useleaderforsingle", Value.Scheduler_Useleaderforsingle); Deserialize (Object, "metrics.filters", Value.Metrics_Filters); Deserialize (Object, "slowThresholdMillis", Value.Slow_Threshold_Millis); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplQuartzSchedulerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsSchedulerImplQuartzSchedulerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsSchedulerImplQuartzSchedulerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "connectorPingTimeout", Value.Connector_Ping_Timeout); Serialize (Into, "connectorPingInterval", Value.Connector_Ping_Interval); Serialize (Into, "discoveryLiteCheckInterval", Value.Discovery_Lite_Check_Interval); Serialize (Into, "clusterSyncServiceTimeout", Value.Cluster_Sync_Service_Timeout); Serialize (Into, "clusterSyncServiceInterval", Value.Cluster_Sync_Service_Interval); Serialize (Into, "enableSyncToken", Value.Enable_Sync_Token); Serialize (Into, "minEventDelay", Value.Min_Event_Delay); Serialize (Into, "socketConnectTimeout", Value.Socket_Connect_Timeout); Serialize (Into, "soTimeout", Value.So_Timeout); Serialize (Into, "topologyConnectorUrls", Value.Topology_Connector_Urls); Serialize (Into, "topologyConnectorWhitelist", Value.Topology_Connector_Whitelist); Serialize (Into, "autoStopLocalLoopEnabled", Value.Auto_Stop_Local_Loop_Enabled); Serialize (Into, "gzipConnectorRequestsEnabled", Value.Gzip_Connector_Requests_Enabled); Serialize (Into, "hmacEnabled", Value.Hmac_Enabled); Serialize (Into, "enableEncryption", Value.Enable_Encryption); Serialize (Into, "sharedKey", Value.Shared_Key); Serialize (Into, "hmacSharedKeyTTL", Value.Hmac_Shared_Key_T_T_L); Serialize (Into, "backoffStandbyFactor", Value.Backoff_Standby_Factor); Serialize (Into, "backoffStableFactor", Value.Backoff_Stable_Factor); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "connectorPingTimeout", Value.Connector_Ping_Timeout); Deserialize (Object, "connectorPingInterval", Value.Connector_Ping_Interval); Deserialize (Object, "discoveryLiteCheckInterval", Value.Discovery_Lite_Check_Interval); Deserialize (Object, "clusterSyncServiceTimeout", Value.Cluster_Sync_Service_Timeout); Deserialize (Object, "clusterSyncServiceInterval", Value.Cluster_Sync_Service_Interval); Deserialize (Object, "enableSyncToken", Value.Enable_Sync_Token); Deserialize (Object, "minEventDelay", Value.Min_Event_Delay); Deserialize (Object, "socketConnectTimeout", Value.Socket_Connect_Timeout); Deserialize (Object, "soTimeout", Value.So_Timeout); Deserialize (Object, "topologyConnectorUrls", Value.Topology_Connector_Urls); Deserialize (Object, "topologyConnectorWhitelist", Value.Topology_Connector_Whitelist); Deserialize (Object, "autoStopLocalLoopEnabled", Value.Auto_Stop_Local_Loop_Enabled); Deserialize (Object, "gzipConnectorRequestsEnabled", Value.Gzip_Connector_Requests_Enabled); Deserialize (Object, "hmacEnabled", Value.Hmac_Enabled); Deserialize (Object, "enableEncryption", Value.Enable_Encryption); Deserialize (Object, "sharedKey", Value.Shared_Key); Deserialize (Object, "hmacSharedKeyTTL", Value.Hmac_Shared_Key_T_T_L); Deserialize (Object, "backoffStandbyFactor", Value.Backoff_Standby_Factor); Deserialize (Object, "backoffStableFactor", Value.Backoff_Stable_Factor); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDiscoveryOakConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDiscoveryOakConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplSlingMainServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.max.calls", Value.Sling_Max_Calls); Serialize (Into, "sling.max.inclusions", Value.Sling_Max_Inclusions); Serialize (Into, "sling.trace.allow", Value.Sling_Trace_Allow); Serialize (Into, "sling.max.record.requests", Value.Sling_Max_Record_Requests); Serialize (Into, "sling.store.pattern.requests", Value.Sling_Store_Pattern_Requests); Serialize (Into, "sling.serverinfo", Value.Sling_Serverinfo); Serialize (Into, "sling.additional.response.headers", Value.Sling_Additional_Response_Headers); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplSlingMainServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplSlingMainServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.max.calls", Value.Sling_Max_Calls); Deserialize (Object, "sling.max.inclusions", Value.Sling_Max_Inclusions); Deserialize (Object, "sling.trace.allow", Value.Sling_Trace_Allow); Deserialize (Object, "sling.max.record.requests", Value.Sling_Max_Record_Requests); Deserialize (Object, "sling.store.pattern.requests", Value.Sling_Store_Pattern_Requests); Deserialize (Object, "sling.serverinfo", Value.Sling_Serverinfo); Deserialize (Object, "sling.additional.response.headers", Value.Sling_Additional_Response_Headers); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplSlingMainServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplSlingMainServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplSlingMainServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplSlingMainServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplSlingMainServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplSlingMainServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplSlingMainServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineParametersProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.default.parameter.encoding", Value.Sling_Default_Parameter_Encoding); Serialize (Into, "sling.default.max.parameters", Value.Sling_Default_Max_Parameters); Serialize (Into, "file.location", Value.File_Location); Serialize (Into, "file.threshold", Value.File_Threshold); Serialize (Into, "file.max", Value.File_Max); Serialize (Into, "request.max", Value.Request_Max); Serialize (Into, "sling.default.parameter.checkForAdditionalContainerParameters", Value.Sling_Default_Parameter_Check_For_Additional_Container_Parameters); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineParametersProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineParametersProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.default.parameter.encoding", Value.Sling_Default_Parameter_Encoding); Deserialize (Object, "sling.default.max.parameters", Value.Sling_Default_Max_Parameters); Deserialize (Object, "file.location", Value.File_Location); Deserialize (Object, "file.threshold", Value.File_Threshold); Deserialize (Object, "file.max", Value.File_Max); Deserialize (Object, "request.max", Value.Request_Max); Deserialize (Object, "sling.default.parameter.checkForAdditionalContainerParameters", Value.Sling_Default_Parameter_Check_For_Additional_Container_Parameters); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineParametersProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineParametersProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineParametersInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineParametersInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineParametersInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineParametersInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineParametersInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHapiImplHApiUtilImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.hapi.tools.resourcetype", Value.Org_Apache_Sling_Hapi_Tools_Resourcetype); Serialize (Into, "org.apache.sling.hapi.tools.collectionresourcetype", Value.Org_Apache_Sling_Hapi_Tools_Collectionresourcetype); Serialize (Into, "org.apache.sling.hapi.tools.searchpaths", Value.Org_Apache_Sling_Hapi_Tools_Searchpaths); Serialize (Into, "org.apache.sling.hapi.tools.externalurl", Value.Org_Apache_Sling_Hapi_Tools_Externalurl); Serialize (Into, "org.apache.sling.hapi.tools.enabled", Value.Org_Apache_Sling_Hapi_Tools_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHapiImplHApiUtilImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHapiImplHApiUtilImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.hapi.tools.resourcetype", Value.Org_Apache_Sling_Hapi_Tools_Resourcetype); Deserialize (Object, "org.apache.sling.hapi.tools.collectionresourcetype", Value.Org_Apache_Sling_Hapi_Tools_Collectionresourcetype); Deserialize (Object, "org.apache.sling.hapi.tools.searchpaths", Value.Org_Apache_Sling_Hapi_Tools_Searchpaths); Deserialize (Object, "org.apache.sling.hapi.tools.externalurl", Value.Org_Apache_Sling_Hapi_Tools_Externalurl); Deserialize (Object, "org.apache.sling.hapi.tools.enabled", Value.Org_Apache_Sling_Hapi_Tools_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHapiImplHApiUtilImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHapiImplHApiUtilImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHapiImplHApiUtilImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHapiImplHApiUtilImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHapiImplHApiUtilImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHapiImplHApiUtilImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHapiImplHApiUtilImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "servletPath", Value.Servlet_Path); Serialize (Into, "disabled", Value.Disabled); Serialize (Into, "cors.accessControlAllowOrigin", Value.Cors_Access_Control_Allow_Origin); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "servletPath", Value.Servlet_Path); Deserialize (Object, "disabled", Value.Disabled); Deserialize (Object, "cors.accessControlAllowOrigin", Value.Cors_Access_Control_Allow_Origin); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplServletHealthCheckExecutorServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplJcrResourceBundleProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "locale.default", Value.Locale_Default); Serialize (Into, "preload.bundles", Value.Preload_Bundles); Serialize (Into, "invalidation.delay", Value.Invalidation_Delay); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplJcrResourceBundleProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplJcrResourceBundleProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "locale.default", Value.Locale_Default); Deserialize (Object, "preload.bundles", Value.Preload_Bundles); Deserialize (Object, "invalidation.delay", Value.Invalidation_Delay); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplJcrResourceBundleProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingI18nImplJcrResourceBundleProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingI18nImplJcrResourceBundleProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingInstallerProviderJcrImplJcrInstallerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "handler.schemes", Value.Handler_Schemes); Serialize (Into, "sling.jcrinstall.folder.name.regexp", Value.Sling_Jcrinstall_Folder_Name_Regexp); Serialize (Into, "sling.jcrinstall.folder.max.depth", Value.Sling_Jcrinstall_Folder_Max_Depth); Serialize (Into, "sling.jcrinstall.search.path", Value.Sling_Jcrinstall_Search_Path); Serialize (Into, "sling.jcrinstall.new.config.path", Value.Sling_Jcrinstall_New_Config_Path); Serialize (Into, "sling.jcrinstall.signal.path", Value.Sling_Jcrinstall_Signal_Path); Serialize (Into, "sling.jcrinstall.enable.writeback", Value.Sling_Jcrinstall_Enable_Writeback); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingInstallerProviderJcrImplJcrInstallerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingInstallerProviderJcrImplJcrInstallerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "handler.schemes", Value.Handler_Schemes); Deserialize (Object, "sling.jcrinstall.folder.name.regexp", Value.Sling_Jcrinstall_Folder_Name_Regexp); Deserialize (Object, "sling.jcrinstall.folder.max.depth", Value.Sling_Jcrinstall_Folder_Max_Depth); Deserialize (Object, "sling.jcrinstall.search.path", Value.Sling_Jcrinstall_Search_Path); Deserialize (Object, "sling.jcrinstall.new.config.path", Value.Sling_Jcrinstall_New_Config_Path); Deserialize (Object, "sling.jcrinstall.signal.path", Value.Sling_Jcrinstall_Signal_Path); Deserialize (Object, "sling.jcrinstall.enable.writeback", Value.Sling_Jcrinstall_Enable_Writeback); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingInstallerProviderJcrImplJcrInstallerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingInstallerProviderJcrImplJcrInstallerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingInstallerProviderJcrImplJcrInstallerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "whitelist.bypass", Value.Whitelist_Bypass); Serialize (Into, "whitelist.bundles.regexp", Value.Whitelist_Bundles_Regexp); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "whitelist.bypass", Value.Whitelist_Bypass); Deserialize (Object, "whitelist.bundles.regexp", Value.Whitelist_Bundles_Regexp); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrBaseInternalLoginAdminWhitelistProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrBaseInternalLoginAdminWhitelistInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrDavexImplServletsSlingDavExServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "alias", Value.Alias); Serialize (Into, "dav.create-absolute-uri", Value.Dav_Create_Absolute_Uri); Serialize (Into, "dav.protectedhandlers", Value.Dav_Protectedhandlers); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrDavexImplServletsSlingDavExServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrDavexImplServletsSlingDavExServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "alias", Value.Alias); Deserialize (Object, "dav.create-absolute-uri", Value.Dav_Create_Absolute_Uri); Deserialize (Object, "dav.protectedhandlers", Value.Dav_Protectedhandlers); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrDavexImplServletsSlingDavExServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrDavexImplServletsSlingDavExServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrDavexImplServletsSlingDavExServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "resource.resolver.searchpath", Value.Resource_Resolver_Searchpath); Serialize (Into, "resource.resolver.manglenamespaces", Value.Resource_Resolver_Manglenamespaces); Serialize (Into, "resource.resolver.allowDirect", Value.Resource_Resolver_Allow_Direct); Serialize (Into, "resource.resolver.required.providers", Value.Resource_Resolver_Required_Providers); Serialize (Into, "resource.resolver.required.providernames", Value.Resource_Resolver_Required_Providernames); Serialize (Into, "resource.resolver.virtual", Value.Resource_Resolver_Virtual); Serialize (Into, "resource.resolver.mapping", Value.Resource_Resolver_Mapping); Serialize (Into, "resource.resolver.map.location", Value.Resource_Resolver_Map_Location); Serialize (Into, "resource.resolver.map.observation", Value.Resource_Resolver_Map_Observation); Serialize (Into, "resource.resolver.default.vanity.redirect.status", Value.Resource_Resolver_Default_Vanity_Redirect_Status); Serialize (Into, "resource.resolver.enable.vanitypath", Value.Resource_Resolver_Enable_Vanitypath); Serialize (Into, "resource.resolver.vanitypath.maxEntries", Value.Resource_Resolver_Vanitypath_Max_Entries); Serialize (Into, "resource.resolver.vanitypath.maxEntries.startup", Value.Resource_Resolver_Vanitypath_Max_Entries_Startup); Serialize (Into, "resource.resolver.vanitypath.bloomfilter.maxBytes", Value.Resource_Resolver_Vanitypath_Bloomfilter_Max_Bytes); Serialize (Into, "resource.resolver.optimize.alias.resolution", Value.Resource_Resolver_Optimize_Alias_Resolution); Serialize (Into, "resource.resolver.vanitypath.whitelist", Value.Resource_Resolver_Vanitypath_Whitelist); Serialize (Into, "resource.resolver.vanitypath.blacklist", Value.Resource_Resolver_Vanitypath_Blacklist); Serialize (Into, "resource.resolver.vanity.precedence", Value.Resource_Resolver_Vanity_Precedence); Serialize (Into, "resource.resolver.providerhandling.paranoid", Value.Resource_Resolver_Providerhandling_Paranoid); Serialize (Into, "resource.resolver.log.closing", Value.Resource_Resolver_Log_Closing); Serialize (Into, "resource.resolver.log.unclosed", Value.Resource_Resolver_Log_Unclosed); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "resource.resolver.searchpath", Value.Resource_Resolver_Searchpath); Deserialize (Object, "resource.resolver.manglenamespaces", Value.Resource_Resolver_Manglenamespaces); Deserialize (Object, "resource.resolver.allowDirect", Value.Resource_Resolver_Allow_Direct); Deserialize (Object, "resource.resolver.required.providers", Value.Resource_Resolver_Required_Providers); Deserialize (Object, "resource.resolver.required.providernames", Value.Resource_Resolver_Required_Providernames); Deserialize (Object, "resource.resolver.virtual", Value.Resource_Resolver_Virtual); Deserialize (Object, "resource.resolver.mapping", Value.Resource_Resolver_Mapping); Deserialize (Object, "resource.resolver.map.location", Value.Resource_Resolver_Map_Location); Deserialize (Object, "resource.resolver.map.observation", Value.Resource_Resolver_Map_Observation); Deserialize (Object, "resource.resolver.default.vanity.redirect.status", Value.Resource_Resolver_Default_Vanity_Redirect_Status); Deserialize (Object, "resource.resolver.enable.vanitypath", Value.Resource_Resolver_Enable_Vanitypath); Deserialize (Object, "resource.resolver.vanitypath.maxEntries", Value.Resource_Resolver_Vanitypath_Max_Entries); Deserialize (Object, "resource.resolver.vanitypath.maxEntries.startup", Value.Resource_Resolver_Vanitypath_Max_Entries_Startup); Deserialize (Object, "resource.resolver.vanitypath.bloomfilter.maxBytes", Value.Resource_Resolver_Vanitypath_Bloomfilter_Max_Bytes); Deserialize (Object, "resource.resolver.optimize.alias.resolution", Value.Resource_Resolver_Optimize_Alias_Resolution); Deserialize (Object, "resource.resolver.vanitypath.whitelist", Value.Resource_Resolver_Vanitypath_Whitelist); Deserialize (Object, "resource.resolver.vanitypath.blacklist", Value.Resource_Resolver_Vanitypath_Blacklist); Deserialize (Object, "resource.resolver.vanity.precedence", Value.Resource_Resolver_Vanity_Precedence); Deserialize (Object, "resource.resolver.providerhandling.paranoid", Value.Resource_Resolver_Providerhandling_Paranoid); Deserialize (Object, "resource.resolver.log.closing", Value.Resource_Resolver_Log_Closing); Deserialize (Object, "resource.resolver.log.unclosed", Value.Resource_Resolver_Log_Unclosed); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrResourceInternalJcrResourceResolverFactoryImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dav.root", Value.Dav_Root); Serialize (Into, "dav.create-absolute-uri", Value.Dav_Create_Absolute_Uri); Serialize (Into, "dav.realm", Value.Dav_Realm); Serialize (Into, "collection.types", Value.Collection_Types); Serialize (Into, "filter.prefixes", Value.Filter_Prefixes); Serialize (Into, "filter.types", Value.Filter_Types); Serialize (Into, "filter.uris", Value.Filter_Uris); Serialize (Into, "type.collections", Value.Type_Collections); Serialize (Into, "type.noncollections", Value.Type_Noncollections); Serialize (Into, "type.content", Value.Type_Content); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dav.root", Value.Dav_Root); Deserialize (Object, "dav.create-absolute-uri", Value.Dav_Create_Absolute_Uri); Deserialize (Object, "dav.realm", Value.Dav_Realm); Deserialize (Object, "collection.types", Value.Collection_Types); Deserialize (Object, "filter.prefixes", Value.Filter_Prefixes); Deserialize (Object, "filter.types", Value.Filter_Types); Deserialize (Object, "filter.uris", Value.Filter_Uris); Deserialize (Object, "type.collections", Value.Type_Collections); Deserialize (Object, "type.noncollections", Value.Type_Noncollections); Deserialize (Object, "type.content", Value.Type_Content); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrWebdavImplServletsSimpleWebDavServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "merge.root", Value.Merge_Root); Serialize (Into, "merge.readOnly", Value.Merge_Read_Only); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "merge.root", Value.Merge_Root); Deserialize (Object, "merge.readOnly", Value.Merge_Read_Only); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingResourcemergerImplMergedResourceProviderFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerPickerOverridingProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "merge.root", Value.Merge_Root); Serialize (Into, "merge.readOnly", Value.Merge_Read_Only); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerPickerOverridingProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerPickerOverridingProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "merge.root", Value.Merge_Root); Deserialize (Object, "merge.readOnly", Value.Merge_Read_Only); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerPickerOverridingProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingResourcemergerPickerOverridingProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerPickerOverridingInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourcemergerPickerOverridingInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerPickerOverridingInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourcemergerPickerOverridingInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingResourcemergerPickerOverridingInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "java.classdebuginfo", Value.Java_Classdebuginfo); Serialize (Into, "java.javaEncoding", Value.Java_Java_Encoding); Serialize (Into, "java.compilerSourceVM", Value.Java_Compiler_Source_V_M); Serialize (Into, "java.compilerTargetVM", Value.Java_Compiler_Target_V_M); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "java.classdebuginfo", Value.Java_Classdebuginfo); Deserialize (Object, "java.javaEncoding", Value.Java_Java_Encoding); Deserialize (Object, "java.compilerSourceVM", Value.Java_Compiler_Source_V_M); Deserialize (Object, "java.compilerTargetVM", Value.Java_Compiler_Target_V_M); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingJavaImplJavaScriptEngineFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJspJspScriptEngineFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jasper.compilerTargetVM", Value.Jasper_Compiler_Target_V_M); Serialize (Into, "jasper.compilerSourceVM", Value.Jasper_Compiler_Source_V_M); Serialize (Into, "jasper.classdebuginfo", Value.Jasper_Classdebuginfo); Serialize (Into, "jasper.enablePooling", Value.Jasper_Enable_Pooling); Serialize (Into, "jasper.ieClassId", Value.Jasper_Ie_Class_Id); Serialize (Into, "jasper.genStringAsCharArray", Value.Jasper_Gen_String_As_Char_Array); Serialize (Into, "jasper.keepgenerated", Value.Jasper_Keepgenerated); Serialize (Into, "jasper.mappedfile", Value.Jasper_Mappedfile); Serialize (Into, "jasper.trimSpaces", Value.Jasper_Trim_Spaces); Serialize (Into, "jasper.displaySourceFragments", Value.Jasper_Display_Source_Fragments); Serialize (Into, "default.is.session", Value.Default_Is_Session); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJspJspScriptEngineFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJspJspScriptEngineFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jasper.compilerTargetVM", Value.Jasper_Compiler_Target_V_M); Deserialize (Object, "jasper.compilerSourceVM", Value.Jasper_Compiler_Source_V_M); Deserialize (Object, "jasper.classdebuginfo", Value.Jasper_Classdebuginfo); Deserialize (Object, "jasper.enablePooling", Value.Jasper_Enable_Pooling); Deserialize (Object, "jasper.ieClassId", Value.Jasper_Ie_Class_Id); Deserialize (Object, "jasper.genStringAsCharArray", Value.Jasper_Gen_String_As_Char_Array); Deserialize (Object, "jasper.keepgenerated", Value.Jasper_Keepgenerated); Deserialize (Object, "jasper.mappedfile", Value.Jasper_Mappedfile); Deserialize (Object, "jasper.trimSpaces", Value.Jasper_Trim_Spaces); Deserialize (Object, "jasper.displaySourceFragments", Value.Jasper_Display_Source_Fragments); Deserialize (Object, "default.is.session", Value.Default_Is_Session); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJspJspScriptEngineFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingJspJspScriptEngineFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingScriptingJspJspScriptEngineFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "user.mapping", Value.User_Mapping); Serialize (Into, "user.default", Value.User_Default); Serialize (Into, "user.enable.default.mapping", Value.User_Enable_Default_Mapping); Serialize (Into, "require.validation", Value.Require_Validation); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "user.mapping", Value.User_Mapping); Deserialize (Object, "user.default", Value.User_Default); Deserialize (Object, "user.enable.default.mapping", Value.User_Enable_Default_Mapping); Deserialize (Object, "require.validation", Value.Require_Validation); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServiceusermappingImplServiceUserMapperImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServiceusermappingImplServiceUserMapperImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "scheduler.concurrent", Value.Scheduler_Concurrent); Serialize (Into, "chunk.cleanup.age", Value.Chunk_Cleanup_Age); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "scheduler.concurrent", Value.Scheduler_Concurrent); Deserialize (Object, "chunk.cleanup.age", Value.Chunk_Cleanup_Age); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsPostImplHelperChunkCleanUpTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplSlingPostServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "servlet.post.dateFormats", Value.Servlet_Post_Date_Formats); Serialize (Into, "servlet.post.nodeNameHints", Value.Servlet_Post_Node_Name_Hints); Serialize (Into, "servlet.post.nodeNameMaxLength", Value.Servlet_Post_Node_Name_Max_Length); Serialize (Into, "servlet.post.checkinNewVersionableNodes", Value.Servlet_Post_Checkin_New_Versionable_Nodes); Serialize (Into, "servlet.post.autoCheckout", Value.Servlet_Post_Auto_Checkout); Serialize (Into, "servlet.post.autoCheckin", Value.Servlet_Post_Auto_Checkin); Serialize (Into, "servlet.post.ignorePattern", Value.Servlet_Post_Ignore_Pattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplSlingPostServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplSlingPostServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "servlet.post.dateFormats", Value.Servlet_Post_Date_Formats); Deserialize (Object, "servlet.post.nodeNameHints", Value.Servlet_Post_Node_Name_Hints); Deserialize (Object, "servlet.post.nodeNameMaxLength", Value.Servlet_Post_Node_Name_Max_Length); Deserialize (Object, "servlet.post.checkinNewVersionableNodes", Value.Servlet_Post_Checkin_New_Versionable_Nodes); Deserialize (Object, "servlet.post.autoCheckout", Value.Servlet_Post_Auto_Checkout); Deserialize (Object, "servlet.post.autoCheckin", Value.Servlet_Post_Auto_Checkin); Deserialize (Object, "servlet.post.ignorePattern", Value.Servlet_Post_Ignore_Pattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplSlingPostServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsPostImplSlingPostServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplSlingPostServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsPostImplSlingPostServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplSlingPostServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsPostImplSlingPostServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsPostImplSlingPostServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingStartupfilterImplStartupFilterImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "active.by.default", Value.Active_By_Default); Serialize (Into, "default.message", Value.Default_Message); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingStartupfilterImplStartupFilterImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingStartupfilterImplStartupFilterImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "active.by.default", Value.Active_By_Default); Deserialize (Object, "default.message", Value.Default_Message); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingStartupfilterImplStartupFilterImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingStartupfilterImplStartupFilterImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingStartupfilterImplStartupFilterImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsPurgeSchedulerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduledpurge.name", Value.Scheduledpurge_Name); Serialize (Into, "scheduledpurge.purgeActive", Value.Scheduledpurge_Purge_Active); Serialize (Into, "scheduledpurge.templates", Value.Scheduledpurge_Templates); Serialize (Into, "scheduledpurge.purgeGroups", Value.Scheduledpurge_Purge_Groups); Serialize (Into, "scheduledpurge.purgeAssets", Value.Scheduledpurge_Purge_Assets); Serialize (Into, "scheduledpurge.terminateRunningWorkflows", Value.Scheduledpurge_Terminate_Running_Workflows); Serialize (Into, "scheduledpurge.daysold", Value.Scheduledpurge_Daysold); Serialize (Into, "scheduledpurge.saveThreshold", Value.Scheduledpurge_Save_Threshold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsPurgeSchedulerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsPurgeSchedulerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduledpurge.name", Value.Scheduledpurge_Name); Deserialize (Object, "scheduledpurge.purgeActive", Value.Scheduledpurge_Purge_Active); Deserialize (Object, "scheduledpurge.templates", Value.Scheduledpurge_Templates); Deserialize (Object, "scheduledpurge.purgeGroups", Value.Scheduledpurge_Purge_Groups); Deserialize (Object, "scheduledpurge.purgeAssets", Value.Scheduledpurge_Purge_Assets); Deserialize (Object, "scheduledpurge.terminateRunningWorkflows", Value.Scheduledpurge_Terminate_Running_Workflows); Deserialize (Object, "scheduledpurge.daysold", Value.Scheduledpurge_Daysold); Deserialize (Object, "scheduledpurge.saveThreshold", Value.Scheduledpurge_Save_Threshold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsPurgeSchedulerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqProjectsPurgeSchedulerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsPurgeSchedulerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsPurgeSchedulerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsPurgeSchedulerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsPurgeSchedulerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqProjectsPurgeSchedulerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "version.id", Value.Version_Id); Serialize (Into, "cache.on", Value.Cache_On); Serialize (Into, "concurrency.level", Value.Concurrency_Level); Serialize (Into, "cache.start.size", Value.Cache_Start_Size); Serialize (Into, "cache.ttl", Value.Cache_Ttl); Serialize (Into, "cache.size", Value.Cache_Size); Serialize (Into, "time.limit", Value.Time_Limit); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "version.id", Value.Version_Id); Deserialize (Object, "cache.on", Value.Cache_On); Deserialize (Object, "concurrency.level", Value.Concurrency_Level); Deserialize (Object, "cache.start.size", Value.Cache_Start_Size); Deserialize (Object, "cache.ttl", Value.Cache_Ttl); Deserialize (Object, "cache.size", Value.Cache_Size); Deserialize (Object, "time.limit", Value.Time_Limit); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialDatastoreAsImplASResourceProviderFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "solr.zk.timeout", Value.Solr_Zk_Timeout); Serialize (Into, "solr.commit", Value.Solr_Commit); Serialize (Into, "cache.on", Value.Cache_On); Serialize (Into, "concurrency.level", Value.Concurrency_Level); Serialize (Into, "cache.start.size", Value.Cache_Start_Size); Serialize (Into, "cache.ttl", Value.Cache_Ttl); Serialize (Into, "cache.size", Value.Cache_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "solr.zk.timeout", Value.Solr_Zk_Timeout); Deserialize (Object, "solr.commit", Value.Solr_Commit); Deserialize (Object, "cache.on", Value.Cache_On); Deserialize (Object, "concurrency.level", Value.Concurrency_Level); Deserialize (Object, "cache.start.size", Value.Cache_Start_Size); Deserialize (Object, "cache.ttl", Value.Cache_Ttl); Deserialize (Object, "cache.size", Value.Cache_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialDatastoreOpImplSocialMSResourceProviderFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "solr.zk.timeout", Value.Solr_Zk_Timeout); Serialize (Into, "solr.commit", Value.Solr_Commit); Serialize (Into, "cache.on", Value.Cache_On); Serialize (Into, "concurrency.level", Value.Concurrency_Level); Serialize (Into, "cache.start.size", Value.Cache_Start_Size); Serialize (Into, "cache.ttl", Value.Cache_Ttl); Serialize (Into, "cache.size", Value.Cache_Size); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "solr.zk.timeout", Value.Solr_Zk_Timeout); Deserialize (Object, "solr.commit", Value.Solr_Commit); Deserialize (Object, "cache.on", Value.Cache_On); Deserialize (Object, "concurrency.level", Value.Concurrency_Level); Deserialize (Object, "cache.start.size", Value.Cache_Start_Size); Deserialize (Object, "cache.ttl", Value.Cache_Ttl); Deserialize (Object, "cache.size", Value.Cache_Size); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialDatastoreRdbImplSocialRDBResourceProviderFactorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "message.properties", Value.Message_Properties); Serialize (Into, "messageBoxSizeLimit", Value.Message_Box_Size_Limit); Serialize (Into, "messageCountLimit", Value.Message_Count_Limit); Serialize (Into, "notifyFailure", Value.Notify_Failure); Serialize (Into, "failureMessageFrom", Value.Failure_Message_From); Serialize (Into, "failureTemplatePath", Value.Failure_Template_Path); Serialize (Into, "maxRetries", Value.Max_Retries); Serialize (Into, "minWaitBetweenRetries", Value.Min_Wait_Between_Retries); Serialize (Into, "countUpdatePoolSize", Value.Count_Update_Pool_Size); Serialize (Into, "inbox.path", Value.Inbox_Path); Serialize (Into, "sentitems.path", Value.Sentitems_Path); Serialize (Into, "supportAttachments", Value.Support_Attachments); Serialize (Into, "supportGroupMessaging", Value.Support_Group_Messaging); Serialize (Into, "maxTotalRecipients", Value.Max_Total_Recipients); Serialize (Into, "batchSize", Value.Batch_Size); Serialize (Into, "maxTotalAttachmentSize", Value.Max_Total_Attachment_Size); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Serialize (Into, "allowedAttachmentTypes", Value.Allowed_Attachment_Types); Serialize (Into, "serviceSelector", Value.Service_Selector); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "message.properties", Value.Message_Properties); Deserialize (Object, "messageBoxSizeLimit", Value.Message_Box_Size_Limit); Deserialize (Object, "messageCountLimit", Value.Message_Count_Limit); Deserialize (Object, "notifyFailure", Value.Notify_Failure); Deserialize (Object, "failureMessageFrom", Value.Failure_Message_From); Deserialize (Object, "failureTemplatePath", Value.Failure_Template_Path); Deserialize (Object, "maxRetries", Value.Max_Retries); Deserialize (Object, "minWaitBetweenRetries", Value.Min_Wait_Between_Retries); Deserialize (Object, "countUpdatePoolSize", Value.Count_Update_Pool_Size); Deserialize (Object, "inbox.path", Value.Inbox_Path); Deserialize (Object, "sentitems.path", Value.Sentitems_Path); Deserialize (Object, "supportAttachments", Value.Support_Attachments); Deserialize (Object, "supportGroupMessaging", Value.Support_Group_Messaging); Deserialize (Object, "maxTotalRecipients", Value.Max_Total_Recipients); Deserialize (Object, "batchSize", Value.Batch_Size); Deserialize (Object, "maxTotalAttachmentSize", Value.Max_Total_Attachment_Size); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Deserialize (Object, "allowedAttachmentTypes", Value.Allowed_Attachment_Types); Deserialize (Object, "serviceSelector", Value.Service_Selector); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialMessagingClientEndpointsImplMessagingOperationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplDiffChangesObserverProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "agentName", Value.Agent_Name); Serialize (Into, "diffPath", Value.Diff_Path); Serialize (Into, "propertyNames", Value.Property_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplDiffChangesObserverProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplDiffChangesObserverProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "agentName", Value.Agent_Name); Deserialize (Object, "diffPath", Value.Diff_Path); Deserialize (Object, "propertyNames", Value.Property_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplDiffChangesObserverProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplDiffChangesObserverProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSyncImplDiffChangesObserverInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthAccesstokenProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "auth.token.provider.title", Value.Auth_Token_Provider_Title); Serialize (Into, "auth.token.provider.default.claims", Value.Auth_Token_Provider_Default_Claims); Serialize (Into, "auth.token.provider.endpoint", Value.Auth_Token_Provider_Endpoint); Serialize (Into, "auth.access.token.request", Value.Auth_Access_Token_Request); Serialize (Into, "auth.token.provider.keypair.alias", Value.Auth_Token_Provider_Keypair_Alias); Serialize (Into, "auth.token.provider.conn.timeout", Value.Auth_Token_Provider_Conn_Timeout); Serialize (Into, "auth.token.provider.so.timeout", Value.Auth_Token_Provider_So_Timeout); Serialize (Into, "auth.token.provider.client.id", Value.Auth_Token_Provider_Client_Id); Serialize (Into, "auth.token.provider.scope", Value.Auth_Token_Provider_Scope); Serialize (Into, "auth.token.provider.reuse.access.token", Value.Auth_Token_Provider_Reuse_Access_Token); Serialize (Into, "auth.token.provider.relaxed.ssl", Value.Auth_Token_Provider_Relaxed_Ssl); Serialize (Into, "token.request.customizer.type", Value.Token_Request_Customizer_Type); Serialize (Into, "auth.token.validator.type", Value.Auth_Token_Validator_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthAccesstokenProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthAccesstokenProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "auth.token.provider.title", Value.Auth_Token_Provider_Title); Deserialize (Object, "auth.token.provider.default.claims", Value.Auth_Token_Provider_Default_Claims); Deserialize (Object, "auth.token.provider.endpoint", Value.Auth_Token_Provider_Endpoint); Deserialize (Object, "auth.access.token.request", Value.Auth_Access_Token_Request); Deserialize (Object, "auth.token.provider.keypair.alias", Value.Auth_Token_Provider_Keypair_Alias); Deserialize (Object, "auth.token.provider.conn.timeout", Value.Auth_Token_Provider_Conn_Timeout); Deserialize (Object, "auth.token.provider.so.timeout", Value.Auth_Token_Provider_So_Timeout); Deserialize (Object, "auth.token.provider.client.id", Value.Auth_Token_Provider_Client_Id); Deserialize (Object, "auth.token.provider.scope", Value.Auth_Token_Provider_Scope); Deserialize (Object, "auth.token.provider.reuse.access.token", Value.Auth_Token_Provider_Reuse_Access_Token); Deserialize (Object, "auth.token.provider.relaxed.ssl", Value.Auth_Token_Provider_Relaxed_Ssl); Deserialize (Object, "token.request.customizer.type", Value.Token_Request_Customizer_Type); Deserialize (Object, "auth.token.validator.type", Value.Auth_Token_Validator_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthAccesstokenProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthAccesstokenProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthAccesstokenProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.config.id", Value.Oauth_Config_Id); Serialize (Into, "oauth.client.id", Value.Oauth_Client_Id); Serialize (Into, "oauth.client.secret", Value.Oauth_Client_Secret); Serialize (Into, "oauth.scope", Value.Oauth_Scope); Serialize (Into, "oauth.config.provider.id", Value.Oauth_Config_Provider_Id); Serialize (Into, "oauth.create.users", Value.Oauth_Create_Users); Serialize (Into, "oauth.userid.property", Value.Oauth_Userid_Property); Serialize (Into, "force.strict.username.matching", Value.Force_Strict_Username_Matching); Serialize (Into, "oauth.encode.userids", Value.Oauth_Encode_Userids); Serialize (Into, "oauth.hash.userids", Value.Oauth_Hash_Userids); Serialize (Into, "oauth.callBackUrl", Value.Oauth_Call_Back_Url); Serialize (Into, "oauth.access.token.persist", Value.Oauth_Access_Token_Persist); Serialize (Into, "oauth.access.token.persist.cookie", Value.Oauth_Access_Token_Persist_Cookie); Serialize (Into, "oauth.csrf.state.protection", Value.Oauth_Csrf_State_Protection); Serialize (Into, "oauth.redirect.request.params", Value.Oauth_Redirect_Request_Params); Serialize (Into, "oauth.config.siblings.allow", Value.Oauth_Config_Siblings_Allow); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.config.id", Value.Oauth_Config_Id); Deserialize (Object, "oauth.client.id", Value.Oauth_Client_Id); Deserialize (Object, "oauth.client.secret", Value.Oauth_Client_Secret); Deserialize (Object, "oauth.scope", Value.Oauth_Scope); Deserialize (Object, "oauth.config.provider.id", Value.Oauth_Config_Provider_Id); Deserialize (Object, "oauth.create.users", Value.Oauth_Create_Users); Deserialize (Object, "oauth.userid.property", Value.Oauth_Userid_Property); Deserialize (Object, "force.strict.username.matching", Value.Force_Strict_Username_Matching); Deserialize (Object, "oauth.encode.userids", Value.Oauth_Encode_Userids); Deserialize (Object, "oauth.hash.userids", Value.Oauth_Hash_Userids); Deserialize (Object, "oauth.callBackUrl", Value.Oauth_Call_Back_Url); Deserialize (Object, "oauth.access.token.persist", Value.Oauth_Access_Token_Persist); Deserialize (Object, "oauth.access.token.persist.cookie", Value.Oauth_Access_Token_Persist_Cookie); Deserialize (Object, "oauth.csrf.state.protection", Value.Oauth_Csrf_State_Protection); Deserialize (Object, "oauth.redirect.request.params", Value.Oauth_Redirect_Request_Params); Deserialize (Object, "oauth.config.siblings.allow", Value.Oauth_Config_Siblings_Allow); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "agentName", Value.Agent_Name); Serialize (Into, "diffPath", Value.Diff_Path); Serialize (Into, "observedPath", Value.Observed_Path); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "propertyNames", Value.Property_Names); Serialize (Into, "distributionDelay", Value.Distribution_Delay); Serialize (Into, "serviceUser.target", Value.Service_User_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "agentName", Value.Agent_Name); Deserialize (Object, "diffPath", Value.Diff_Path); Deserialize (Object, "observedPath", Value.Observed_Path); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "propertyNames", Value.Property_Names); Deserialize (Object, "distributionDelay", Value.Distribution_Delay); Deserialize (Object, "serviceUser.target", Value.Service_User_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplDiffDiffChangesObserverInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jdbc.driver.class", Value.Jdbc_Driver_Class); Serialize (Into, "jdbc.connection.uri", Value.Jdbc_Connection_Uri); Serialize (Into, "jdbc.username", Value.Jdbc_Username); Serialize (Into, "jdbc.password", Value.Jdbc_Password); Serialize (Into, "jdbc.validation.query", Value.Jdbc_Validation_Query); Serialize (Into, "default.readonly", Value.Default_Readonly); Serialize (Into, "default.autocommit", Value.Default_Autocommit); Serialize (Into, "pool.size", Value.Pool_Size); Serialize (Into, "pool.max.wait.msec", Value.Pool_Max_Wait_Msec); Serialize (Into, "datasource.name", Value.Datasource_Name); Serialize (Into, "datasource.svc.properties", Value.Datasource_Svc_Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jdbc.driver.class", Value.Jdbc_Driver_Class); Deserialize (Object, "jdbc.connection.uri", Value.Jdbc_Connection_Uri); Deserialize (Object, "jdbc.username", Value.Jdbc_Username); Deserialize (Object, "jdbc.password", Value.Jdbc_Password); Deserialize (Object, "jdbc.validation.query", Value.Jdbc_Validation_Query); Deserialize (Object, "default.readonly", Value.Default_Readonly); Deserialize (Object, "default.autocommit", Value.Default_Autocommit); Deserialize (Object, "pool.size", Value.Pool_Size); Deserialize (Object, "pool.max.wait.msec", Value.Pool_Max_Wait_Msec); Deserialize (Object, "datasource.name", Value.Datasource_Name); Deserialize (Object, "datasource.svc.properties", Value.Datasource_Svc_Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCommonsDatasourceJdbcpoolJdbcPoolServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollConfigImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "id", Value.Id); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "reference", Value.Reference); Serialize (Into, "interval", Value.Interval); Serialize (Into, "expression", Value.Expression); Serialize (Into, "source", Value.Source); Serialize (Into, "target", Value.Target); Serialize (Into, "login", Value.Login); Serialize (Into, "password", Value.Password); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollConfigImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollConfigImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "id", Value.Id); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "reference", Value.Reference); Deserialize (Object, "interval", Value.Interval); Deserialize (Object, "expression", Value.Expression); Deserialize (Object, "source", Value.Source); Deserialize (Object, "target", Value.Target); Deserialize (Object, "login", Value.Login); Deserialize (Object, "password", Value.Password); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollConfigImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPollingImporterImplManagedPollConfigImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPollingImporterImplManagedPollConfigImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "link.expired.prefix", Value.Link_Expired_Prefix); Serialize (Into, "link.expired.remove", Value.Link_Expired_Remove); Serialize (Into, "link.expired.suffix", Value.Link_Expired_Suffix); Serialize (Into, "link.invalid.prefix", Value.Link_Invalid_Prefix); Serialize (Into, "link.invalid.remove", Value.Link_Invalid_Remove); Serialize (Into, "link.invalid.suffix", Value.Link_Invalid_Suffix); Serialize (Into, "link.predated.prefix", Value.Link_Predated_Prefix); Serialize (Into, "link.predated.remove", Value.Link_Predated_Remove); Serialize (Into, "link.predated.suffix", Value.Link_Predated_Suffix); Serialize (Into, "link.wcmmodes", Value.Link_Wcmmodes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "link.expired.prefix", Value.Link_Expired_Prefix); Deserialize (Object, "link.expired.remove", Value.Link_Expired_Remove); Deserialize (Object, "link.expired.suffix", Value.Link_Expired_Suffix); Deserialize (Object, "link.invalid.prefix", Value.Link_Invalid_Prefix); Deserialize (Object, "link.invalid.remove", Value.Link_Invalid_Remove); Deserialize (Object, "link.invalid.suffix", Value.Link_Invalid_Suffix); Deserialize (Object, "link.predated.prefix", Value.Link_Predated_Prefix); Deserialize (Object, "link.predated.remove", Value.Link_Predated_Remove); Deserialize (Object, "link.predated.suffix", Value.Link_Predated_Suffix); Deserialize (Object, "link.wcmmodes", Value.Link_Wcmmodes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplLinkCheckerConfigurationFactoryImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheHttpProxyconfiguratorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "proxy.enabled", Value.Proxy_Enabled); Serialize (Into, "proxy.host", Value.Proxy_Host); Serialize (Into, "proxy.port", Value.Proxy_Port); Serialize (Into, "proxy.user", Value.Proxy_User); Serialize (Into, "proxy.password", Value.Proxy_Password); Serialize (Into, "proxy.exceptions", Value.Proxy_Exceptions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheHttpProxyconfiguratorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheHttpProxyconfiguratorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "proxy.enabled", Value.Proxy_Enabled); Deserialize (Object, "proxy.host", Value.Proxy_Host); Deserialize (Object, "proxy.port", Value.Proxy_Port); Deserialize (Object, "proxy.user", Value.Proxy_User); Deserialize (Object, "proxy.password", Value.Proxy_Password); Deserialize (Object, "proxy.exceptions", Value.Proxy_Exceptions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheHttpProxyconfiguratorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheHttpProxyconfiguratorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheHttpProxyconfiguratorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheHttpProxyconfiguratorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheHttpProxyconfiguratorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheHttpProxyconfiguratorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheHttpProxyconfiguratorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "provider.name", Value.Provider_Name); Serialize (Into, "host.name", Value.Host_Name); Serialize (Into, "host.port", Value.Host_Port); Serialize (Into, "host.ssl", Value.Host_Ssl); Serialize (Into, "host.tls", Value.Host_Tls); Serialize (Into, "host.noCertCheck", Value.Host_No_Cert_Check); Serialize (Into, "bind.dn", Value.Bind_Dn); Serialize (Into, "bind.password", Value.Bind_Password); Serialize (Into, "searchTimeout", Value.Search_Timeout); Serialize (Into, "adminPool.maxActive", Value.Admin_Pool_Max_Active); Serialize (Into, "adminPool.lookupOnValidate", Value.Admin_Pool_Lookup_On_Validate); Serialize (Into, "userPool.maxActive", Value.User_Pool_Max_Active); Serialize (Into, "userPool.lookupOnValidate", Value.User_Pool_Lookup_On_Validate); Serialize (Into, "user.baseDN", Value.User_Base_D_N); Serialize (Into, "user.objectclass", Value.User_Objectclass); Serialize (Into, "user.idAttribute", Value.User_Id_Attribute); Serialize (Into, "user.extraFilter", Value.User_Extra_Filter); Serialize (Into, "user.makeDnPath", Value.User_Make_Dn_Path); Serialize (Into, "group.baseDN", Value.Group_Base_D_N); Serialize (Into, "group.objectclass", Value.Group_Objectclass); Serialize (Into, "group.nameAttribute", Value.Group_Name_Attribute); Serialize (Into, "group.extraFilter", Value.Group_Extra_Filter); Serialize (Into, "group.makeDnPath", Value.Group_Make_Dn_Path); Serialize (Into, "group.memberAttribute", Value.Group_Member_Attribute); Serialize (Into, "useUidForExtId", Value.Use_Uid_For_Ext_Id); Serialize (Into, "customattributes", Value.Customattributes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "provider.name", Value.Provider_Name); Deserialize (Object, "host.name", Value.Host_Name); Deserialize (Object, "host.port", Value.Host_Port); Deserialize (Object, "host.ssl", Value.Host_Ssl); Deserialize (Object, "host.tls", Value.Host_Tls); Deserialize (Object, "host.noCertCheck", Value.Host_No_Cert_Check); Deserialize (Object, "bind.dn", Value.Bind_Dn); Deserialize (Object, "bind.password", Value.Bind_Password); Deserialize (Object, "searchTimeout", Value.Search_Timeout); Deserialize (Object, "adminPool.maxActive", Value.Admin_Pool_Max_Active); Deserialize (Object, "adminPool.lookupOnValidate", Value.Admin_Pool_Lookup_On_Validate); Deserialize (Object, "userPool.maxActive", Value.User_Pool_Max_Active); Deserialize (Object, "userPool.lookupOnValidate", Value.User_Pool_Lookup_On_Validate); Deserialize (Object, "user.baseDN", Value.User_Base_D_N); Deserialize (Object, "user.objectclass", Value.User_Objectclass); Deserialize (Object, "user.idAttribute", Value.User_Id_Attribute); Deserialize (Object, "user.extraFilter", Value.User_Extra_Filter); Deserialize (Object, "user.makeDnPath", Value.User_Make_Dn_Path); Deserialize (Object, "group.baseDN", Value.Group_Base_D_N); Deserialize (Object, "group.objectclass", Value.Group_Objectclass); Deserialize (Object, "group.nameAttribute", Value.Group_Name_Attribute); Deserialize (Object, "group.extraFilter", Value.Group_Extra_Filter); Deserialize (Object, "group.makeDnPath", Value.Group_Make_Dn_Path); Deserialize (Object, "group.memberAttribute", Value.Group_Member_Attribute); Deserialize (Object, "useUidForExtId", Value.Use_Uid_For_Ext_Id); Deserialize (Object, "customattributes", Value.Customattributes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthenticationLdapImplLdapIdentiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "repository.home", Value.Repository_Home); Serialize (Into, "tarmk.mode", Value.Tarmk_Mode); Serialize (Into, "tarmk.size", Value.Tarmk_Size); Serialize (Into, "segmentCache.size", Value.Segment_Cache_Size); Serialize (Into, "stringCache.size", Value.String_Cache_Size); Serialize (Into, "templateCache.size", Value.Template_Cache_Size); Serialize (Into, "stringDeduplicationCache.size", Value.String_Deduplication_Cache_Size); Serialize (Into, "templateDeduplicationCache.size", Value.Template_Deduplication_Cache_Size); Serialize (Into, "nodeDeduplicationCache.size", Value.Node_Deduplication_Cache_Size); Serialize (Into, "pauseCompaction", Value.Pause_Compaction); Serialize (Into, "compaction.retryCount", Value.Compaction_Retry_Count); Serialize (Into, "compaction.force.timeout", Value.Compaction_Force_Timeout); Serialize (Into, "compaction.sizeDeltaEstimation", Value.Compaction_Size_Delta_Estimation); Serialize (Into, "compaction.disableEstimation", Value.Compaction_Disable_Estimation); Serialize (Into, "compaction.retainedGenerations", Value.Compaction_Retained_Generations); Serialize (Into, "compaction.memoryThreshold", Value.Compaction_Memory_Threshold); Serialize (Into, "compaction.progressLog", Value.Compaction_Progress_Log); Serialize (Into, "standby", Value.Standby); Serialize (Into, "customBlobStore", Value.Custom_Blob_Store); Serialize (Into, "customSegmentStore", Value.Custom_Segment_Store); Serialize (Into, "splitPersistence", Value.Split_Persistence); Serialize (Into, "repository.backup.dir", Value.Repository_Backup_Dir); Serialize (Into, "blobGcMaxAgeInSecs", Value.Blob_Gc_Max_Age_In_Secs); Serialize (Into, "blobTrackSnapshotIntervalInSecs", Value.Blob_Track_Snapshot_Interval_In_Secs); Serialize (Into, "role", Value.Role); Serialize (Into, "registerDescriptors", Value.Register_Descriptors); Serialize (Into, "dispatchChanges", Value.Dispatch_Changes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "repository.home", Value.Repository_Home); Deserialize (Object, "tarmk.mode", Value.Tarmk_Mode); Deserialize (Object, "tarmk.size", Value.Tarmk_Size); Deserialize (Object, "segmentCache.size", Value.Segment_Cache_Size); Deserialize (Object, "stringCache.size", Value.String_Cache_Size); Deserialize (Object, "templateCache.size", Value.Template_Cache_Size); Deserialize (Object, "stringDeduplicationCache.size", Value.String_Deduplication_Cache_Size); Deserialize (Object, "templateDeduplicationCache.size", Value.Template_Deduplication_Cache_Size); Deserialize (Object, "nodeDeduplicationCache.size", Value.Node_Deduplication_Cache_Size); Deserialize (Object, "pauseCompaction", Value.Pause_Compaction); Deserialize (Object, "compaction.retryCount", Value.Compaction_Retry_Count); Deserialize (Object, "compaction.force.timeout", Value.Compaction_Force_Timeout); Deserialize (Object, "compaction.sizeDeltaEstimation", Value.Compaction_Size_Delta_Estimation); Deserialize (Object, "compaction.disableEstimation", Value.Compaction_Disable_Estimation); Deserialize (Object, "compaction.retainedGenerations", Value.Compaction_Retained_Generations); Deserialize (Object, "compaction.memoryThreshold", Value.Compaction_Memory_Threshold); Deserialize (Object, "compaction.progressLog", Value.Compaction_Progress_Log); Deserialize (Object, "standby", Value.Standby); Deserialize (Object, "customBlobStore", Value.Custom_Blob_Store); Deserialize (Object, "customSegmentStore", Value.Custom_Segment_Store); Deserialize (Object, "splitPersistence", Value.Split_Persistence); Deserialize (Object, "repository.backup.dir", Value.Repository_Backup_Dir); Deserialize (Object, "blobGcMaxAgeInSecs", Value.Blob_Gc_Max_Age_In_Secs); Deserialize (Object, "blobTrackSnapshotIntervalInSecs", Value.Blob_Track_Snapshot_Interval_In_Secs); Deserialize (Object, "role", Value.Role); Deserialize (Object, "registerDescriptors", Value.Register_Descriptors); Deserialize (Object, "dispatchChanges", Value.Dispatch_Changes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentSegmentNodeStoreFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "handler.name", Value.Handler_Name); Serialize (Into, "user.expirationTime", Value.User_Expiration_Time); Serialize (Into, "user.autoMembership", Value.User_Auto_Membership); Serialize (Into, "user.propertyMapping", Value.User_Property_Mapping); Serialize (Into, "user.pathPrefix", Value.User_Path_Prefix); Serialize (Into, "user.membershipExpTime", Value.User_Membership_Exp_Time); Serialize (Into, "user.membershipNestingDepth", Value.User_Membership_Nesting_Depth); Serialize (Into, "user.dynamicMembership", Value.User_Dynamic_Membership); Serialize (Into, "user.disableMissing", Value.User_Disable_Missing); Serialize (Into, "group.expirationTime", Value.Group_Expiration_Time); Serialize (Into, "group.autoMembership", Value.Group_Auto_Membership); Serialize (Into, "group.propertyMapping", Value.Group_Property_Mapping); Serialize (Into, "group.pathPrefix", Value.Group_Path_Prefix); Serialize (Into, "enableRFC7613UsercaseMappedProfile", Value.Enable_R_F_C7613_Usercase_Mapped_Profile); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "handler.name", Value.Handler_Name); Deserialize (Object, "user.expirationTime", Value.User_Expiration_Time); Deserialize (Object, "user.autoMembership", Value.User_Auto_Membership); Deserialize (Object, "user.propertyMapping", Value.User_Property_Mapping); Deserialize (Object, "user.pathPrefix", Value.User_Path_Prefix); Deserialize (Object, "user.membershipExpTime", Value.User_Membership_Exp_Time); Deserialize (Object, "user.membershipNestingDepth", Value.User_Membership_Nesting_Depth); Deserialize (Object, "user.dynamicMembership", Value.User_Dynamic_Membership); Deserialize (Object, "user.disableMissing", Value.User_Disable_Missing); Deserialize (Object, "group.expirationTime", Value.Group_Expiration_Time); Deserialize (Object, "group.autoMembership", Value.Group_Auto_Membership); Deserialize (Object, "group.propertyMapping", Value.Group_Property_Mapping); Deserialize (Object, "group.pathPrefix", Value.Group_Path_Prefix); Deserialize (Object, "enableRFC7613UsercaseMappedProfile", Value.Enable_R_F_C7613_Usercase_Mapped_Profile); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplDeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "description", Value.Description); Serialize (Into, "overrides", Value.Overrides); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "description", Value.Description); Deserialize (Object, "overrides", Value.Overrides); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCaconfigImplOverrideOsgiConfigurationOverrideProviInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryWriterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.commons.log.file", Value.Org_Apache_Sling_Commons_Log_File); Serialize (Into, "org.apache.sling.commons.log.file.number", Value.Org_Apache_Sling_Commons_Log_File_Number); Serialize (Into, "org.apache.sling.commons.log.file.size", Value.Org_Apache_Sling_Commons_Log_File_Size); Serialize (Into, "org.apache.sling.commons.log.file.buffered", Value.Org_Apache_Sling_Commons_Log_File_Buffered); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryWriterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryWriterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.commons.log.file", Value.Org_Apache_Sling_Commons_Log_File); Deserialize (Object, "org.apache.sling.commons.log.file.number", Value.Org_Apache_Sling_Commons_Log_File_Number); Deserialize (Object, "org.apache.sling.commons.log.file.size", Value.Org_Apache_Sling_Commons_Log_File_Size); Deserialize (Object, "org.apache.sling.commons.log.file.buffered", Value.Org_Apache_Sling_Commons_Log_File_Buffered); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryWriterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsLogLogManagerFactoryWriterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsLogLogManagerFactoryWriterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterAgentDistributioProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "queue", Value.Queue); Serialize (Into, "drop.invalid.items", Value.Drop_Invalid_Items); Serialize (Into, "agent.target", Value.Agent_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterAgentDistributioProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterAgentDistributioProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "queue", Value.Queue); Deserialize (Object, "drop.invalid.items", Value.Drop_Invalid_Items); Deserialize (Object, "agent.target", Value.Agent_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterAgentDistributioProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplExporterAgentDistributioProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplExporterAgentDistributioInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "path", Value.Path); Serialize (Into, "ignoredPathsPatterns", Value.Ignored_Paths_Patterns); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "deep", Value.Deep); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "path", Value.Path); Deserialize (Object, "ignoredPathsPatterns", Value.Ignored_Paths_Patterns); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "deep", Value.Deep); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplJcrEventDistributionTriggerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsFeatureProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "description", Value.Description); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsFeatureProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsFeatureProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "description", Value.Description); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsFeatureProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingFeatureflagsFeatureProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsFeatureInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsFeatureInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsFeatureInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsFeatureInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingFeatureflagsFeatureInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsImplConfiguredFeatureProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "description", Value.Description); Serialize (Into, "enabled", Value.Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsImplConfiguredFeatureProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsImplConfiguredFeatureProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "description", Value.Description); Deserialize (Object, "enabled", Value.Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsImplConfiguredFeatureProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingFeatureflagsImplConfiguredFeatureProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingFeatureflagsImplConfiguredFeatureInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplCompositeHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Serialize (Into, "filter.tags", Value.Filter_Tags); Serialize (Into, "filter.combineTagsWithOr", Value.Filter_Combine_Tags_With_Or); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplCompositeHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplCompositeHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); Deserialize (Object, "filter.tags", Value.Filter_Tags); Deserialize (Object, "filter.combineTagsWithOr", Value.Filter_Combine_Tags_With_Or); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplCompositeHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplCompositeHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplCompositeHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksHcImplDeprecateIndexesHCInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeAemUpgradePrechecksHcImplReplicationAgentsDisabledHCInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "keypair.id", Value.Keypair_Id); Serialize (Into, "keypair.alias", Value.Keypair_Alias); Serialize (Into, "cdnrewriter.attributes", Value.Cdnrewriter_Attributes); Serialize (Into, "cdn.rewriter.distribution.domain", Value.Cdn_Rewriter_Distribution_Domain); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "keypair.id", Value.Keypair_Id); Deserialize (Object, "keypair.alias", Value.Keypair_Alias); Deserialize (Object, "cdnrewriter.attributes", Value.Cdnrewriter_Attributes); Deserialize (Object, "cdn.rewriter.distribution.domain", Value.Cdn_Rewriter_Distribution_Domain); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCdnRewriterImplAWSCloudFrontRewriterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNRewriterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "cdnrewriter.attributes", Value.Cdnrewriter_Attributes); Serialize (Into, "cdn.rewriter.distribution.domain", Value.Cdn_Rewriter_Distribution_Domain); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNRewriterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNRewriterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "cdnrewriter.attributes", Value.Cdnrewriter_Attributes); Deserialize (Object, "cdn.rewriter.distribution.domain", Value.Cdn_Rewriter_Distribution_Domain); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNRewriterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCdnRewriterImplCDNRewriterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCdnRewriterImplCDNRewriterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.cataloggenerator.bucketsize", Value.Cq_Commerce_Cataloggenerator_Bucketsize); Serialize (Into, "cq.commerce.cataloggenerator.bucketname", Value.Cq_Commerce_Cataloggenerator_Bucketname); Serialize (Into, "cq.commerce.cataloggenerator.excludedtemplateproperties", Value.Cq_Commerce_Cataloggenerator_Excludedtemplateproperties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.cataloggenerator.bucketsize", Value.Cq_Commerce_Cataloggenerator_Bucketsize); Deserialize (Object, "cq.commerce.cataloggenerator.bucketname", Value.Cq_Commerce_Cataloggenerator_Bucketname); Deserialize (Object, "cq.commerce.cataloggenerator.excludedtemplateproperties", Value.Cq_Commerce_Cataloggenerator_Excludedtemplateproperties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommercePimImplCataloggeneratorCatalogGeneratorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDeserfwImplDeserializationFirewallImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "firewall.deserialization.whitelist", Value.Firewall_Deserialization_Whitelist); Serialize (Into, "firewall.deserialization.blacklist", Value.Firewall_Deserialization_Blacklist); Serialize (Into, "firewall.deserialization.diagnostics", Value.Firewall_Deserialization_Diagnostics); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDeserfwImplDeserializationFirewallImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDeserfwImplDeserializationFirewallImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "firewall.deserialization.whitelist", Value.Firewall_Deserialization_Whitelist); Deserialize (Object, "firewall.deserialization.blacklist", Value.Firewall_Deserialization_Blacklist); Deserialize (Object, "firewall.deserialization.diagnostics", Value.Firewall_Deserialization_Diagnostics); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDeserfwImplDeserializationFirewallImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDeserfwImplDeserializationFirewallImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDeserfwImplDeserializationFirewallImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqInboxImplTypeproviderItemTypeProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "inbox.impl.typeprovider.registrypaths", Value.Inbox_Impl_Typeprovider_Registrypaths); Serialize (Into, "inbox.impl.typeprovider.legacypaths", Value.Inbox_Impl_Typeprovider_Legacypaths); Serialize (Into, "inbox.impl.typeprovider.defaulturl.failureitem", Value.Inbox_Impl_Typeprovider_Defaulturl_Failureitem); Serialize (Into, "inbox.impl.typeprovider.defaulturl.workitem", Value.Inbox_Impl_Typeprovider_Defaulturl_Workitem); Serialize (Into, "inbox.impl.typeprovider.defaulturl.task", Value.Inbox_Impl_Typeprovider_Defaulturl_Task); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqInboxImplTypeproviderItemTypeProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqInboxImplTypeproviderItemTypeProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "inbox.impl.typeprovider.registrypaths", Value.Inbox_Impl_Typeprovider_Registrypaths); Deserialize (Object, "inbox.impl.typeprovider.legacypaths", Value.Inbox_Impl_Typeprovider_Legacypaths); Deserialize (Object, "inbox.impl.typeprovider.defaulturl.failureitem", Value.Inbox_Impl_Typeprovider_Defaulturl_Failureitem); Deserialize (Object, "inbox.impl.typeprovider.defaulturl.workitem", Value.Inbox_Impl_Typeprovider_Defaulturl_Workitem); Deserialize (Object, "inbox.impl.typeprovider.defaulturl.task", Value.Inbox_Impl_Typeprovider_Defaulturl_Task); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqInboxImplTypeproviderItemTypeProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqInboxImplTypeproviderItemTypeProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqInboxImplTypeproviderItemTypeProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScheduledExporterImplScheduledExporterImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "include.paths", Value.Include_Paths); Serialize (Into, "exporter.user", Value.Exporter_User); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScheduledExporterImplScheduledExporterImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScheduledExporterImplScheduledExporterImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "include.paths", Value.Include_Paths); Deserialize (Object, "exporter.user", Value.Exporter_User); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScheduledExporterImplScheduledExporterImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScheduledExporterImplScheduledExporterImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScheduledExporterImplScheduledExporterImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.cq.screens.offlinecontent.impl.BulkOfflineUpdateServiceImpl.projectPath", Value.Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl_Project_Path); Serialize (Into, "com.adobe.cq.screens.offlinecontent.impl.BulkOfflineUpdateServiceImpl.scheduleFrequency", Value.Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl_Schedule_Frequency); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.cq.screens.offlinecontent.impl.BulkOfflineUpdateServiceImpl.projectPath", Value.Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl_Project_Path); Deserialize (Object, "com.adobe.cq.screens.offlinecontent.impl.BulkOfflineUpdateServiceImpl.scheduleFrequency", Value.Com_Adobe_Cq_Screens_Offlinecontent_Impl_Bulk_Offline_Update_Service_Impl_Schedule_Frequency); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensOfflinecontentImplBulkOfflineUpdateServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "dispatcher.address", Value.Dispatcher_Address); Serialize (Into, "dispatcher.filter.allowed", Value.Dispatcher_Filter_Allowed); Serialize (Into, "dispatcher.filter.blocked", Value.Dispatcher_Filter_Blocked); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "dispatcher.address", Value.Dispatcher_Address); Deserialize (Object, "dispatcher.filter.allowed", Value.Dispatcher_Filter_Allowed); Deserialize (Object, "dispatcher.filter.blocked", Value.Dispatcher_Filter_Blocked); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcDispatcherImplDispatcherAccessHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "webserver.address", Value.Webserver_Address); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "webserver.address", Value.Webserver_Address); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSecurityHcWebserverImplClickjackingHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "verbs", Value.Verbs); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "verbs", Value.Verbs); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsUgclimiterImplUGCLimiterServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "facebook", Value.Facebook); Serialize (Into, "twitter", Value.Twitter); Serialize (Into, "provider.config.user.folder", Value.Provider_Config_User_Folder); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "facebook", Value.Facebook); Deserialize (Object, "twitter", Value.Twitter); Deserialize (Object, "provider.config.user.folder", Value.Provider_Config_User_Folder); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplSocialOAuthUserProfileMapperInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialScfEndpointsImplDefaultSocialGetServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "fieldWhitelist", Value.Field_Whitelist); Serialize (Into, "sitePathFilters", Value.Site_Path_Filters); Serialize (Into, "sitePackageGroup", Value.Site_Package_Group); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "fieldWhitelist", Value.Field_Whitelist); Deserialize (Object, "sitePathFilters", Value.Site_Path_Filters); Deserialize (Object, "sitePackageGroup", Value.Site_Package_Group); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSiteEndpointsImplSiteOperationServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplUGCLanguageDetectorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "translate.listener.type", Value.Translate_Listener_Type); Serialize (Into, "translate.property.list", Value.Translate_Property_List); Serialize (Into, "poolSize", Value.Pool_Size); Serialize (Into, "maxPoolSize", Value.Max_Pool_Size); Serialize (Into, "queueSize", Value.Queue_Size); Serialize (Into, "keepAliveTime", Value.Keep_Alive_Time); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplUGCLanguageDetectorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplUGCLanguageDetectorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "translate.listener.type", Value.Translate_Listener_Type); Deserialize (Object, "translate.property.list", Value.Translate_Property_List); Deserialize (Object, "poolSize", Value.Pool_Size); Deserialize (Object, "maxPoolSize", Value.Max_Pool_Size); Deserialize (Object, "queueSize", Value.Queue_Size); Deserialize (Object, "keepAliveTime", Value.Keep_Alive_Time); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplUGCLanguageDetectorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialTranslationImplUGCLanguageDetectorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialTranslationImplUGCLanguageDetectorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplSentimentProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "watchwords.positive", Value.Watchwords_Positive); Serialize (Into, "watchwords.negative", Value.Watchwords_Negative); Serialize (Into, "watchwords.path", Value.Watchwords_Path); Serialize (Into, "sentiment.path", Value.Sentiment_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplSentimentProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplSentimentProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "watchwords.positive", Value.Watchwords_Positive); Deserialize (Object, "watchwords.negative", Value.Watchwords_Negative); Deserialize (Object, "watchwords.path", Value.Watchwords_Path); Deserialize (Object, "sentiment.path", Value.Sentiment_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplSentimentProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseModerationImplSentimentProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUgcbaseModerationImplSentimentProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "portal.outboxes", Value.Portal_Outboxes); Serialize (Into, "draft.data.service", Value.Draft_Data_Service); Serialize (Into, "draft.metadata.service", Value.Draft_Metadata_Service); Serialize (Into, "submit.data.service", Value.Submit_Data_Service); Serialize (Into, "submit.metadata.service", Value.Submit_Metadata_Service); Serialize (Into, "pendingSign.data.service", Value.Pending_Sign_Data_Service); Serialize (Into, "pendingSign.metadata.service", Value.Pending_Sign_Metadata_Service); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "portal.outboxes", Value.Portal_Outboxes); Deserialize (Object, "draft.data.service", Value.Draft_Data_Service); Deserialize (Object, "draft.metadata.service", Value.Draft_Metadata_Service); Deserialize (Object, "submit.data.service", Value.Submit_Data_Service); Deserialize (Object, "submit.metadata.service", Value.Submit_Metadata_Service); Deserialize (Object, "pendingSign.data.service", Value.Pending_Sign_Data_Service); Deserialize (Object, "pendingSign.metadata.service", Value.Pending_Sign_Metadata_Service); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFdFpConfigFormsPortalDraftsandSubmissionConfigServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "jaas.controlFlag", Value.Jaas_Control_Flag); Serialize (Into, "jaas.realmName", Value.Jaas_Realm_Name); Serialize (Into, "jaas.ranking", Value.Jaas_Ranking); Serialize (Into, "headers", Value.Headers); Serialize (Into, "cookies", Value.Cookies); Serialize (Into, "parameters", Value.Parameters); Serialize (Into, "usermap", Value.Usermap); Serialize (Into, "format", Value.Format); Serialize (Into, "trustedCredentialsAttribute", Value.Trusted_Credentials_Attribute); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "jaas.controlFlag", Value.Jaas_Control_Flag); Deserialize (Object, "jaas.realmName", Value.Jaas_Realm_Name); Deserialize (Object, "jaas.ranking", Value.Jaas_Ranking); Deserialize (Object, "headers", Value.Headers); Deserialize (Object, "cookies", Value.Cookies); Deserialize (Object, "parameters", Value.Parameters); Deserialize (Object, "usermap", Value.Usermap); Deserialize (Object, "format", Value.Format); Deserialize (Object, "trustedCredentialsAttribute", Value.Trusted_Credentials_Attribute); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthSsoImplSsoAuthenticationHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUserPropertiesServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "adapter.condition", Value.Adapter_Condition); Serialize (Into, "granite.userproperties.nodetypes", Value.Granite_Userproperties_Nodetypes); Serialize (Into, "granite.userproperties.resourcetypes", Value.Granite_Userproperties_Resourcetypes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUserPropertiesServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUserPropertiesServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "adapter.condition", Value.Adapter_Condition); Deserialize (Object, "granite.userproperties.nodetypes", Value.Granite_Userproperties_Nodetypes); Deserialize (Object, "granite.userproperties.resourcetypes", Value.Granite_Userproperties_Resourcetypes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUserPropertiesServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSecurityUserUserPropertiesServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSecurityUserUserPropertiesServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "group2member.relationship.outgoing", Value.Group2member_Relationship_Outgoing); Serialize (Into, "group2member.excluded.outgoing", Value.Group2member_Excluded_Outgoing); Serialize (Into, "group2member.relationship.incoming", Value.Group2member_Relationship_Incoming); Serialize (Into, "group2member.excluded.incoming", Value.Group2member_Excluded_Incoming); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "group2member.relationship.outgoing", Value.Group2member_Relationship_Outgoing); Deserialize (Object, "group2member.excluded.outgoing", Value.Group2member_Excluded_Outgoing); Deserialize (Object, "group2member.relationship.incoming", Value.Group2member_Relationship_Incoming); Deserialize (Object, "group2member.excluded.incoming", Value.Group2member_Excluded_Incoming); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSocialgraphImplSocialGraphFactoryImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "adapter.condition", Value.Adapter_Condition); Serialize (Into, "taskmanager.admingroups", Value.Taskmanager_Admingroups); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "adapter.condition", Value.Adapter_Condition); Deserialize (Object, "taskmanager.admingroups", Value.Taskmanager_Admingroups); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplServiceTaskManagerAdapterFactorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadMapCacheProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "getSystemWorkflowModels", Value.Get_System_Workflow_Models); Serialize (Into, "getPackageRootPath", Value.Get_Package_Root_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadMapCacheProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadMapCacheProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "getSystemWorkflowModels", Value.Get_System_Workflow_Models); Deserialize (Object, "getPackageRootPath", Value.Get_Package_Root_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadMapCacheProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCorePayloadMapCacheProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCorePayloadMapCacheInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletHealthCheckServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.sync.workflow.id", Value.Cq_Dam_Sync_Workflow_Id); Serialize (Into, "cq.dam.sync.folder.types", Value.Cq_Dam_Sync_Folder_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletHealthCheckServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletHealthCheckServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.sync.workflow.id", Value.Cq_Dam_Sync_Workflow_Id); Deserialize (Object, "cq.dam.sync.folder.types", Value.Cq_Dam_Sync_Folder_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletHealthCheckServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletHealthCheckServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletHealthCheckServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletHealthCheckServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletHealthCheckServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletHealthCheckServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletHealthCheckServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "fontmgr.system.font.dir", Value.Fontmgr_System_Font_Dir); Serialize (Into, "fontmgr.adobe.font.dir", Value.Fontmgr_Adobe_Font_Dir); Serialize (Into, "fontmgr.customer.font.dir", Value.Fontmgr_Customer_Font_Dir); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "fontmgr.system.font.dir", Value.Fontmgr_System_Font_Dir); Deserialize (Object, "fontmgr.adobe.font.dir", Value.Fontmgr_Adobe_Font_Dir); Deserialize (Object, "fontmgr.customer.font.dir", Value.Fontmgr_Customer_Font_Dir); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamHandlerGibsonFontmanagerImplFontManagerServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplPollingImporterImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "importer.min.interval", Value.Importer_Min_Interval); Serialize (Into, "importer.user", Value.Importer_User); Serialize (Into, "exclude.paths", Value.Exclude_Paths); Serialize (Into, "include.paths", Value.Include_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplPollingImporterImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplPollingImporterImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "importer.min.interval", Value.Importer_Min_Interval); Deserialize (Object, "importer.user", Value.Importer_User); Deserialize (Object, "exclude.paths", Value.Exclude_Paths); Deserialize (Object, "include.paths", Value.Include_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplPollingImporterImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPollingImporterImplPollingImporterImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplPollingImporterImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplPollingImporterImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplPollingImporterImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplPollingImporterImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPollingImporterImplPollingImporterImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.contentsync.pathrewritertransformer.mapping.links", Value.Cq_Contentsync_Pathrewritertransformer_Mapping_Links); Serialize (Into, "cq.contentsync.pathrewritertransformer.mapping.clientlibs", Value.Cq_Contentsync_Pathrewritertransformer_Mapping_Clientlibs); Serialize (Into, "cq.contentsync.pathrewritertransformer.mapping.images", Value.Cq_Contentsync_Pathrewritertransformer_Mapping_Images); Serialize (Into, "cq.contentsync.pathrewritertransformer.attribute.pattern", Value.Cq_Contentsync_Pathrewritertransformer_Attribute_Pattern); Serialize (Into, "cq.contentsync.pathrewritertransformer.clientlibrary.pattern", Value.Cq_Contentsync_Pathrewritertransformer_Clientlibrary_Pattern); Serialize (Into, "cq.contentsync.pathrewritertransformer.clientlibrary.replace", Value.Cq_Contentsync_Pathrewritertransformer_Clientlibrary_Replace); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.contentsync.pathrewritertransformer.mapping.links", Value.Cq_Contentsync_Pathrewritertransformer_Mapping_Links); Deserialize (Object, "cq.contentsync.pathrewritertransformer.mapping.clientlibs", Value.Cq_Contentsync_Pathrewritertransformer_Mapping_Clientlibs); Deserialize (Object, "cq.contentsync.pathrewritertransformer.mapping.images", Value.Cq_Contentsync_Pathrewritertransformer_Mapping_Images); Deserialize (Object, "cq.contentsync.pathrewritertransformer.attribute.pattern", Value.Cq_Contentsync_Pathrewritertransformer_Attribute_Pattern); Deserialize (Object, "cq.contentsync.pathrewritertransformer.clientlibrary.pattern", Value.Cq_Contentsync_Pathrewritertransformer_Clientlibrary_Pattern); Deserialize (Object, "cq.contentsync.pathrewritertransformer.clientlibrary.replace", Value.Cq_Contentsync_Pathrewritertransformer_Clientlibrary_Replace); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmContentsyncImplRewriterPathRewriterTransformerFactorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLanguageManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "langmgr.list.path", Value.Langmgr_List_Path); Serialize (Into, "langmgr.country.default", Value.Langmgr_Country_Default); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLanguageManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLanguageManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "langmgr.list.path", Value.Langmgr_List_Path); Deserialize (Object, "langmgr.country.default", Value.Langmgr_Country_Default); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLanguageManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplLanguageManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLanguageManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplLanguageManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLanguageManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplLanguageManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplLanguageManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsThumbnailServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "workspace", Value.Workspace); Serialize (Into, "dimensions", Value.Dimensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsThumbnailServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsThumbnailServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "workspace", Value.Workspace); Deserialize (Object, "dimensions", Value.Dimensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsThumbnailServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsThumbnailServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplServletsThumbnailServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "workflowpackageinfoprovider.filter", Value.Workflowpackageinfoprovider_Filter); Serialize (Into, "workflowpackageinfoprovider.filter.rootpath", Value.Workflowpackageinfoprovider_Filter_Rootpath); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "workflowpackageinfoprovider.filter", Value.Workflowpackageinfoprovider_Filter); Deserialize (Object, "workflowpackageinfoprovider.filter.rootpath", Value.Workflowpackageinfoprovider_Filter_Rootpath); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmWorkflowImplWorkflowPackageInfoProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingAuthCoreImplLogoutServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Serialize (Into, "sling.servlet.paths", Value.Sling_Servlet_Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingAuthCoreImplLogoutServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingAuthCoreImplLogoutServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); Deserialize (Object, "sling.servlet.paths", Value.Sling_Servlet_Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingAuthCoreImplLogoutServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingAuthCoreImplLogoutServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingAuthCoreImplLogoutServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingAuthCoreImplLogoutServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingAuthCoreImplLogoutServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingAuthCoreImplLogoutServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingAuthCoreImplLogoutServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "datasources", Value.Datasources); Serialize (Into, "step", Value.Step); Serialize (Into, "archives", Value.Archives); Serialize (Into, "path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "datasources", Value.Datasources); Deserialize (Object, "step", Value.Step); Deserialize (Object, "archives", Value.Archives); Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsMetricsRrd4jImplCodahaleMetricsReporterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDiscoveryOakSynchronizedClocksHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Serialize (Into, "numberOfRetriesAllowed", Value.Number_Of_Retries_Allowed); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); Deserialize (Object, "numberOfRetriesAllowed", Value.Number_Of_Retries_Allowed); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionMonitorDistributionQueueHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsResolverSlingServletResolverProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "servletresolver.servletRoot", Value.Servletresolver_Servlet_Root); Serialize (Into, "servletresolver.cacheSize", Value.Servletresolver_Cache_Size); Serialize (Into, "servletresolver.paths", Value.Servletresolver_Paths); Serialize (Into, "servletresolver.defaultExtensions", Value.Servletresolver_Default_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsResolverSlingServletResolverProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsResolverSlingServletResolverProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "servletresolver.servletRoot", Value.Servletresolver_Servlet_Root); Deserialize (Object, "servletresolver.cacheSize", Value.Servletresolver_Cache_Size); Deserialize (Object, "servletresolver.paths", Value.Servletresolver_Paths); Deserialize (Object, "servletresolver.defaultExtensions", Value.Servletresolver_Default_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsResolverSlingServletResolverProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsResolverSlingServletResolverProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsResolverSlingServletResolverInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingServletsResolverSlingServletResolverInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsResolverSlingServletResolverInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingServletsResolverSlingServletResolverInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingServletsResolverSlingServletResolverInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTenantInternalTenantProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "tenant.root", Value.Tenant_Root); Serialize (Into, "tenant.path.matcher", Value.Tenant_Path_Matcher); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTenantInternalTenantProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTenantInternalTenantProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "tenant.root", Value.Tenant_Root); Deserialize (Object, "tenant.path.matcher", Value.Tenant_Path_Matcher); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTenantInternalTenantProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingTenantInternalTenantProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTenantInternalTenantProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingTenantInternalTenantProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTenantInternalTenantProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingTenantInternalTenantProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingTenantInternalTenantProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHcContentPackagesHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Serialize (Into, "package.names", Value.Package_Names); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHcContentPackagesHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHcContentPackagesHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); Deserialize (Object, "package.names", Value.Package_Names); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHcContentPackagesHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqHcContentPackagesHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHcContentPackagesHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqHcContentPackagesHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHcContentPackagesHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqHcContentPackagesHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqHcContentPackagesHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "delete.path.regexps", Value.Delete_Path_Regexps); Serialize (Into, "delete.sql2.query", Value.Delete_Sql2_Query); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "delete.path.regexps", Value.Delete_Path_Regexps); Deserialize (Object, "delete.sql2.query", Value.Delete_Sql2_Query); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqUpgradesCleanupImplUpgradeContentCleanupInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplSwitchMappingConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "group", Value.Group); Serialize (Into, "ids", Value.Ids); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplSwitchMappingConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplSwitchMappingConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "group", Value.Group); Deserialize (Object, "ids", Value.Ids); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplSwitchMappingConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCompatrouterImplSwitchMappingConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCompatrouterImplSwitchMappingConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMonitoringImplScriptConfigImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "script.filename", Value.Script_Filename); Serialize (Into, "script.display", Value.Script_Display); Serialize (Into, "script.path", Value.Script_Path); Serialize (Into, "script.platform", Value.Script_Platform); Serialize (Into, "interval", Value.Interval); Serialize (Into, "jmxdomain", Value.Jmxdomain); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMonitoringImplScriptConfigImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMonitoringImplScriptConfigImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "script.filename", Value.Script_Filename); Deserialize (Object, "script.display", Value.Script_Display); Deserialize (Object, "script.path", Value.Script_Path); Deserialize (Object, "script.platform", Value.Script_Platform); Deserialize (Object, "interval", Value.Interval); Deserialize (Object, "jmxdomain", Value.Jmxdomain); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMonitoringImplScriptConfigImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMonitoringImplScriptConfigImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMonitoringImplScriptConfigImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplCompositeStatusTypeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "types", Value.Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplCompositeStatusTypeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplCompositeStatusTypeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "types", Value.Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplCompositeStatusTypeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteResourcestatusImplCompositeStatusTypeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteResourcestatusImplCompositeStatusTypeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplMailServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "resource.whitelist", Value.Resource_Whitelist); Serialize (Into, "resource.blacklist", Value.Resource_Blacklist); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplMailServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplMailServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "resource.whitelist", Value.Resource_Whitelist); Deserialize (Object, "resource.blacklist", Value.Resource_Blacklist); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplMailServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplMailServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplMailServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationFormsImplMailServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplMailServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationFormsImplMailServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationFormsImplMailServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceJNDIDataSourceFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "datasource.name", Value.Datasource_Name); Serialize (Into, "datasource.svc.prop.name", Value.Datasource_Svc_Prop_Name); Serialize (Into, "datasource.jndi.name", Value.Datasource_Jndi_Name); Serialize (Into, "jndi.properties", Value.Jndi_Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceJNDIDataSourceFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceJNDIDataSourceFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "datasource.name", Value.Datasource_Name); Deserialize (Object, "datasource.svc.prop.name", Value.Datasource_Svc_Prop_Name); Deserialize (Object, "datasource.jndi.name", Value.Datasource_Jndi_Name); Deserialize (Object, "jndi.properties", Value.Jndi_Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceJNDIDataSourceFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDatasourceJNDIDataSourceFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDatasourceJNDIDataSourceFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "endpoints", Value.Endpoints); Serialize (Into, "pull.items", Value.Pull_Items); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Serialize (Into, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "endpoints", Value.Endpoints); Deserialize (Object, "pull.items", Value.Pull_Items); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); Deserialize (Object, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplExporterRemoteDistributiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "endpoints", Value.Endpoints); Serialize (Into, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "endpoints", Value.Endpoints); Deserialize (Object, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplImporterRemoteDistributiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplJmxAttributeHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Serialize (Into, "mbean.name", Value.Mbean_Name); Serialize (Into, "attribute.name", Value.Attribute_Name); Serialize (Into, "attribute.value.constraint", Value.Attribute_Value_Constraint); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplJmxAttributeHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplJmxAttributeHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); Deserialize (Object, "mbean.name", Value.Mbean_Name); Deserialize (Object, "attribute.name", Value.Attribute_Name); Deserialize (Object, "attribute.value.constraint", Value.Attribute_Value_Constraint); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplJmxAttributeHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplJmxAttributeHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplJmxAttributeHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplScriptableHealthCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "hc.name", Value.Hc_Name); Serialize (Into, "hc.tags", Value.Hc_Tags); Serialize (Into, "hc.mbean.name", Value.Hc_Mbean_Name); Serialize (Into, "expression", Value.Expression); Serialize (Into, "language.extension", Value.Language_Extension); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplScriptableHealthCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplScriptableHealthCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "hc.name", Value.Hc_Name); Deserialize (Object, "hc.tags", Value.Hc_Tags); Deserialize (Object, "hc.mbean.name", Value.Hc_Mbean_Name); Deserialize (Object, "expression", Value.Expression); Deserialize (Object, "language.extension", Value.Language_Extension); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplScriptableHealthCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplScriptableHealthCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingHcCoreImplScriptableHealthCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "whitelist.name", Value.Whitelist_Name); Serialize (Into, "whitelist.bundles", Value.Whitelist_Bundles); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "whitelist.name", Value.Whitelist_Name); Deserialize (Object, "whitelist.bundles", Value.Whitelist_Bundles); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrBaseInternalLoginAdminWhitelistFragmentInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountApiAccountManagementServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.accountmanager.token.validity.period", Value.Cq_Accountmanager_Token_Validity_Period); Serialize (Into, "cq.accountmanager.config.requestnewaccount.mail", Value.Cq_Accountmanager_Config_Requestnewaccount_Mail); Serialize (Into, "cq.accountmanager.config.requestnewpwd.mail", Value.Cq_Accountmanager_Config_Requestnewpwd_Mail); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountApiAccountManagementServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountApiAccountManagementServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.accountmanager.token.validity.period", Value.Cq_Accountmanager_Token_Validity_Period); Deserialize (Object, "cq.accountmanager.config.requestnewaccount.mail", Value.Cq_Accountmanager_Config_Requestnewaccount_Mail); Deserialize (Object, "cq.accountmanager.config.requestnewpwd.mail", Value.Cq_Accountmanager_Config_Requestnewpwd_Mail); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountApiAccountManagementServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAccountApiAccountManagementServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountApiAccountManagementServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountApiAccountManagementServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountApiAccountManagementServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountApiAccountManagementServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAccountApiAccountManagementServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmReactorImplServiceWebServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "endpointUri", Value.Endpoint_Uri); Serialize (Into, "connectionTimeout", Value.Connection_Timeout); Serialize (Into, "socketTimeout", Value.Socket_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmReactorImplServiceWebServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmReactorImplServiceWebServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "endpointUri", Value.Endpoint_Uri); Deserialize (Object, "connectionTimeout", Value.Connection_Timeout); Deserialize (Object, "socketTimeout", Value.Socket_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmReactorImplServiceWebServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDtmReactorImplServiceWebServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDtmReactorImplServiceWebServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceImplDeviceServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.aem.screens.player.pingfrequency", Value.Com_Adobe_Aem_Screens_Player_Pingfrequency); Serialize (Into, "com.adobe.aem.screens.device.pasword.specialchars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Specialchars); Serialize (Into, "com.adobe.aem.screens.device.pasword.minlowercasechars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minlowercasechars); Serialize (Into, "com.adobe.aem.screens.device.pasword.minuppercasechars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minuppercasechars); Serialize (Into, "com.adobe.aem.screens.device.pasword.minnumberchars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minnumberchars); Serialize (Into, "com.adobe.aem.screens.device.pasword.minspecialchars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minspecialchars); Serialize (Into, "com.adobe.aem.screens.device.pasword.minlength", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minlength); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceImplDeviceServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceImplDeviceServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.aem.screens.player.pingfrequency", Value.Com_Adobe_Aem_Screens_Player_Pingfrequency); Deserialize (Object, "com.adobe.aem.screens.device.pasword.specialchars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Specialchars); Deserialize (Object, "com.adobe.aem.screens.device.pasword.minlowercasechars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minlowercasechars); Deserialize (Object, "com.adobe.aem.screens.device.pasword.minuppercasechars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minuppercasechars); Deserialize (Object, "com.adobe.aem.screens.device.pasword.minnumberchars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minnumberchars); Deserialize (Object, "com.adobe.aem.screens.device.pasword.minspecialchars", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minspecialchars); Deserialize (Object, "com.adobe.aem.screens.device.pasword.minlength", Value.Com_Adobe_Aem_Screens_Device_Pasword_Minlength); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceImplDeviceServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensDeviceImplDeviceServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensDeviceImplDeviceServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Serialize (Into, "extension.order", Value.Extension_Order); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "attachmentTypeBlacklist", Value.Attachment_Type_Blacklist); Deserialize (Object, "extension.order", Value.Extension_Order); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCalendarClientOperationextensionsEventAttachmenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "job.purge.threshold", Value.Job_Purge_Threshold); Serialize (Into, "job.purge.max.jobs", Value.Job_Purge_Max_Jobs); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "job.purge.threshold", Value.Job_Purge_Threshold); Deserialize (Object, "job.purge.max.jobs", Value.Job_Purge_Max_Jobs); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmJobsAsyncImplAsyncJobCleanUpTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthCertImplClientCertAuthHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthCertImplClientCertAuthHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthCertImplClientCertAuthHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthCertImplClientCertAuthHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthCertImplClientCertAuthHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthCertImplClientCertAuthHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "csrf.token.expires.in", Value.Csrf_Token_Expires_In); Serialize (Into, "sling.auth.requirements", Value.Sling_Auth_Requirements); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "csrf.token.expires.in", Value.Csrf_Token_Expires_In); Deserialize (Object, "sling.auth.requirements", Value.Sling_Auth_Requirements); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCsrfImplCSRFServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCsrfImplCSRFServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCsrfImplCSRFServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCsrfImplCSRFServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "translationFactory", Value.Translation_Factory); Serialize (Into, "defaultConnectorLabel", Value.Default_Connector_Label); Serialize (Into, "defaultConnectorAttribution", Value.Default_Connector_Attribution); Serialize (Into, "defaultConnectorWorkspaceId", Value.Default_Connector_Workspace_Id); Serialize (Into, "defaultConnectorSubscriptionKey", Value.Default_Connector_Subscription_Key); Serialize (Into, "languageMapLocation", Value.Language_Map_Location); Serialize (Into, "categoryMapLocation", Value.Category_Map_Location); Serialize (Into, "retryAttempts", Value.Retry_Attempts); Serialize (Into, "timeoutCount", Value.Timeout_Count); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "translationFactory", Value.Translation_Factory); Deserialize (Object, "defaultConnectorLabel", Value.Default_Connector_Label); Deserialize (Object, "defaultConnectorAttribution", Value.Default_Connector_Attribution); Deserialize (Object, "defaultConnectorWorkspaceId", Value.Default_Connector_Workspace_Id); Deserialize (Object, "defaultConnectorSubscriptionKey", Value.Default_Connector_Subscription_Key); Deserialize (Object, "languageMapLocation", Value.Language_Map_Location); Deserialize (Object, "categoryMapLocation", Value.Category_Map_Location); Deserialize (Object, "retryAttempts", Value.Retry_Attempts); Deserialize (Object, "timeoutCount", Value.Timeout_Count); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTranslationConnectorMsftCoreImplMicrosoftTranslInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "endpointUri", Value.Endpoint_Uri); Serialize (Into, "connectionTimeout", Value.Connection_Timeout); Serialize (Into, "socketTimeout", Value.Socket_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "endpointUri", Value.Endpoint_Uri); Deserialize (Object, "connectionTimeout", Value.Connection_Timeout); Deserialize (Object, "socketTimeout", Value.Socket_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplServiceWebServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.analytics.testandtarget.api.url", Value.Cq_Analytics_Testandtarget_Api_Url); Serialize (Into, "cq.analytics.testandtarget.timeout", Value.Cq_Analytics_Testandtarget_Timeout); Serialize (Into, "cq.analytics.testandtarget.sockettimeout", Value.Cq_Analytics_Testandtarget_Sockettimeout); Serialize (Into, "cq.analytics.testandtarget.recommendations.url.replace", Value.Cq_Analytics_Testandtarget_Recommendations_Url_Replace); Serialize (Into, "cq.analytics.testandtarget.recommendations.url.replacewith", Value.Cq_Analytics_Testandtarget_Recommendations_Url_Replacewith); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.analytics.testandtarget.api.url", Value.Cq_Analytics_Testandtarget_Api_Url); Deserialize (Object, "cq.analytics.testandtarget.timeout", Value.Cq_Analytics_Testandtarget_Timeout); Deserialize (Object, "cq.analytics.testandtarget.sockettimeout", Value.Cq_Analytics_Testandtarget_Sockettimeout); Deserialize (Object, "cq.analytics.testandtarget.recommendations.url.replace", Value.Cq_Analytics_Testandtarget_Recommendations_Url_Replace); Deserialize (Object, "cq.analytics.testandtarget.recommendations.url.replacewith", Value.Cq_Analytics_Testandtarget_Recommendations_Url_Replacewith); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplTestandtargetHttpClientImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.config.annotation.pdf.document.width", Value.Cq_Dam_Config_Annotation_Pdf_Document_Width); Serialize (Into, "cq.dam.config.annotation.pdf.document.height", Value.Cq_Dam_Config_Annotation_Pdf_Document_Height); Serialize (Into, "cq.dam.config.annotation.pdf.document.padding.horizontal", Value.Cq_Dam_Config_Annotation_Pdf_Document_Padding_Horizontal); Serialize (Into, "cq.dam.config.annotation.pdf.document.padding.vertical", Value.Cq_Dam_Config_Annotation_Pdf_Document_Padding_Vertical); Serialize (Into, "cq.dam.config.annotation.pdf.font.size", Value.Cq_Dam_Config_Annotation_Pdf_Font_Size); Serialize (Into, "cq.dam.config.annotation.pdf.font.color", Value.Cq_Dam_Config_Annotation_Pdf_Font_Color); Serialize (Into, "cq.dam.config.annotation.pdf.font.family", Value.Cq_Dam_Config_Annotation_Pdf_Font_Family); Serialize (Into, "cq.dam.config.annotation.pdf.font.light", Value.Cq_Dam_Config_Annotation_Pdf_Font_Light); Serialize (Into, "cq.dam.config.annotation.pdf.marginTextImage", Value.Cq_Dam_Config_Annotation_Pdf_Margin_Text_Image); Serialize (Into, "cq.dam.config.annotation.pdf.minImageHeight", Value.Cq_Dam_Config_Annotation_Pdf_Min_Image_Height); Serialize (Into, "cq.dam.config.annotation.pdf.reviewStatus.width", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Width); Serialize (Into, "cq.dam.config.annotation.pdf.reviewStatus.color.approved", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Color_Approved); Serialize (Into, "cq.dam.config.annotation.pdf.reviewStatus.color.rejected", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Color_Rejected); Serialize (Into, "cq.dam.config.annotation.pdf.reviewStatus.color.changesRequested", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Color_Changes_Requested); Serialize (Into, "cq.dam.config.annotation.pdf.annotationMarker.width", Value.Cq_Dam_Config_Annotation_Pdf_Annotation_Marker_Width); Serialize (Into, "cq.dam.config.annotation.pdf.asset.minheight", Value.Cq_Dam_Config_Annotation_Pdf_Asset_Minheight); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.config.annotation.pdf.document.width", Value.Cq_Dam_Config_Annotation_Pdf_Document_Width); Deserialize (Object, "cq.dam.config.annotation.pdf.document.height", Value.Cq_Dam_Config_Annotation_Pdf_Document_Height); Deserialize (Object, "cq.dam.config.annotation.pdf.document.padding.horizontal", Value.Cq_Dam_Config_Annotation_Pdf_Document_Padding_Horizontal); Deserialize (Object, "cq.dam.config.annotation.pdf.document.padding.vertical", Value.Cq_Dam_Config_Annotation_Pdf_Document_Padding_Vertical); Deserialize (Object, "cq.dam.config.annotation.pdf.font.size", Value.Cq_Dam_Config_Annotation_Pdf_Font_Size); Deserialize (Object, "cq.dam.config.annotation.pdf.font.color", Value.Cq_Dam_Config_Annotation_Pdf_Font_Color); Deserialize (Object, "cq.dam.config.annotation.pdf.font.family", Value.Cq_Dam_Config_Annotation_Pdf_Font_Family); Deserialize (Object, "cq.dam.config.annotation.pdf.font.light", Value.Cq_Dam_Config_Annotation_Pdf_Font_Light); Deserialize (Object, "cq.dam.config.annotation.pdf.marginTextImage", Value.Cq_Dam_Config_Annotation_Pdf_Margin_Text_Image); Deserialize (Object, "cq.dam.config.annotation.pdf.minImageHeight", Value.Cq_Dam_Config_Annotation_Pdf_Min_Image_Height); Deserialize (Object, "cq.dam.config.annotation.pdf.reviewStatus.width", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Width); Deserialize (Object, "cq.dam.config.annotation.pdf.reviewStatus.color.approved", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Color_Approved); Deserialize (Object, "cq.dam.config.annotation.pdf.reviewStatus.color.rejected", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Color_Rejected); Deserialize (Object, "cq.dam.config.annotation.pdf.reviewStatus.color.changesRequested", Value.Cq_Dam_Config_Annotation_Pdf_Review_Status_Color_Changes_Requested); Deserialize (Object, "cq.dam.config.annotation.pdf.annotationMarker.width", Value.Cq_Dam_Config_Annotation_Pdf_Annotation_Marker_Width); Deserialize (Object, "cq.dam.config.annotation.pdf.asset.minheight", Value.Cq_Dam_Config_Annotation_Pdf_Asset_Minheight); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplAnnotationPdfAnnotationPdfConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplCacheCQBufferedImageCacheProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.image.cache.max.memory", Value.Cq_Dam_Image_Cache_Max_Memory); Serialize (Into, "cq.dam.image.cache.max.age", Value.Cq_Dam_Image_Cache_Max_Age); Serialize (Into, "cq.dam.image.cache.max.dimension", Value.Cq_Dam_Image_Cache_Max_Dimension); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplCacheCQBufferedImageCacheProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplCacheCQBufferedImageCacheProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.image.cache.max.memory", Value.Cq_Dam_Image_Cache_Max_Memory); Deserialize (Object, "cq.dam.image.cache.max.age", Value.Cq_Dam_Image_Cache_Max_Age); Deserialize (Object, "cq.dam.image.cache.max.dimension", Value.Cq_Dam_Image_Cache_Max_Dimension); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplCacheCQBufferedImageCacheProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplCacheCQBufferedImageCacheProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplCacheCQBufferedImageCacheInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUnzipUnzipConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.dam.config.unzip.maxuncompressedsize", Value.Cq_Dam_Config_Unzip_Maxuncompressedsize); Serialize (Into, "cq.dam.config.unzip.encoding", Value.Cq_Dam_Config_Unzip_Encoding); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUnzipUnzipConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUnzipUnzipConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.dam.config.unzip.maxuncompressedsize", Value.Cq_Dam_Config_Unzip_Maxuncompressedsize); Deserialize (Object, "cq.dam.config.unzip.encoding", Value.Cq_Dam_Config_Unzip_Encoding); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUnzipUnzipConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplUnzipUnzipConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplUnzipUnzipConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSPoolManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "max.errors.to.blacklist", Value.Max_Errors_To_Blacklist); Serialize (Into, "retry.interval.to.whitelist", Value.Retry_Interval_To_Whitelist); Serialize (Into, "connect.timeout", Value.Connect_Timeout); Serialize (Into, "socket.timeout", Value.Socket_Timeout); Serialize (Into, "process.label", Value.Process_Label); Serialize (Into, "connection.use.max", Value.Connection_Use_Max); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSPoolManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSPoolManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "max.errors.to.blacklist", Value.Max_Errors_To_Blacklist); Deserialize (Object, "retry.interval.to.whitelist", Value.Retry_Interval_To_Whitelist); Deserialize (Object, "connect.timeout", Value.Connect_Timeout); Deserialize (Object, "socket.timeout", Value.Socket_Timeout); Deserialize (Object, "process.label", Value.Process_Label); Deserialize (Object, "connection.use.max", Value.Connection_Use_Max); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSPoolManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamIdsImplIDSPoolManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamIdsImplIDSPoolManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmCampaignImporterPersonalizedTextHandlerFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersCtaClickThroughComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersCtaGraphicalClickThrougInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersCtaLeadFormCTAComponentInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersMboxMBoxExperienceTagHaInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmLandingpageParserTaghandlersMboxTargetComponentTagHInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationContentStaticContentBuilderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "host", Value.Host); Serialize (Into, "port", Value.Port); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationContentStaticContentBuilderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationContentStaticContentBuilderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "host", Value.Host); Deserialize (Object, "port", Value.Port); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationContentStaticContentBuilderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationContentStaticContentBuilderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationContentStaticContentBuilderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationContentStaticContentBuilderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationContentStaticContentBuilderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationContentStaticContentBuilderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationContentStaticContentBuilderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplSearchPromoteServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.searchpromote.configuration.server.uri", Value.Cq_Searchpromote_Configuration_Server_Uri); Serialize (Into, "cq.searchpromote.configuration.environment", Value.Cq_Searchpromote_Configuration_Environment); Serialize (Into, "connection.timeout", Value.Connection_Timeout); Serialize (Into, "socket.timeout", Value.Socket_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplSearchPromoteServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplSearchPromoteServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.searchpromote.configuration.server.uri", Value.Cq_Searchpromote_Configuration_Server_Uri); Deserialize (Object, "cq.searchpromote.configuration.environment", Value.Cq_Searchpromote_Configuration_Environment); Deserialize (Object, "connection.timeout", Value.Connection_Timeout); Deserialize (Object, "socket.timeout", Value.Socket_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplSearchPromoteServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchpromoteImplSearchPromoteServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchpromoteImplSearchPromoteServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryCanvasComponeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultComponInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryDefaultTagHanInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryHeadTagHandleInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryIFrameTagHandInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryImageComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryImgTagHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryInlineScriptTInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryLinkTagHandleInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryMetaTagHandleInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryNonScriptTagHInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryParsysComponeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryScriptTagHandInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryStyleTagHandlInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryTextComponentInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Serialize (Into, "component.resourceType", Value.Component_Resource_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); Deserialize (Object, "component.resourceType", Value.Component_Resource_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleComponenInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "tagpattern", Value.Tagpattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "tagpattern", Value.Tagpattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterParserTaghandlersFactoryTitleTagHandlInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplServletsAuditLogServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "auditlogservlet.default.events.count", Value.Auditlogservlet_Default_Events_Count); Serialize (Into, "auditlogservlet.default.path", Value.Auditlogservlet_Default_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplServletsAuditLogServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplServletsAuditLogServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "auditlogservlet.default.events.count", Value.Auditlogservlet_Default_Events_Count); Deserialize (Object, "auditlogservlet.default.path", Value.Auditlogservlet_Default_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplServletsAuditLogServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplServletsAuditLogServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplServletsAuditLogServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "felix.memoryusage.dump.threshold", Value.Felix_Memoryusage_Dump_Threshold); Serialize (Into, "felix.memoryusage.dump.interval", Value.Felix_Memoryusage_Dump_Interval); Serialize (Into, "felix.memoryusage.dump.location", Value.Felix_Memoryusage_Dump_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "felix.memoryusage.dump.threshold", Value.Felix_Memoryusage_Dump_Threshold); Deserialize (Object, "felix.memoryusage.dump.interval", Value.Felix_Memoryusage_Dump_Interval); Deserialize (Object, "felix.memoryusage.dump.location", Value.Felix_Memoryusage_Dump_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixWebconsolePluginsMemoryusageInternalMemoryUsageCoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "solr.http.url", Value.Solr_Http_Url); Serialize (Into, "solr.zk.host", Value.Solr_Zk_Host); Serialize (Into, "solr.collection", Value.Solr_Collection); Serialize (Into, "solr.socket.timeout", Value.Solr_Socket_Timeout); Serialize (Into, "solr.connection.timeout", Value.Solr_Connection_Timeout); Serialize (Into, "solr.shards.no", Value.Solr_Shards_No); Serialize (Into, "solr.replication.factor", Value.Solr_Replication_Factor); Serialize (Into, "solr.conf.dir", Value.Solr_Conf_Dir); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "solr.http.url", Value.Solr_Http_Url); Deserialize (Object, "solr.zk.host", Value.Solr_Zk_Host); Deserialize (Object, "solr.collection", Value.Solr_Collection); Deserialize (Object, "solr.socket.timeout", Value.Solr_Socket_Timeout); Deserialize (Object, "solr.connection.timeout", Value.Solr_Connection_Timeout); Deserialize (Object, "solr.shards.no", Value.Solr_Shards_No); Deserialize (Object, "solr.replication.factor", Value.Solr_Replication_Factor); Deserialize (Object, "solr.conf.dir", Value.Solr_Conf_Dir); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiRemoteSolrServerConfInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "type.collections", Value.Type_Collections); Serialize (Into, "type.noncollections", Value.Type_Noncollections); Serialize (Into, "type.content", Value.Type_Content); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "type.collections", Value.Type_Collections); Deserialize (Object, "type.noncollections", Value.Type_Noncollections); Deserialize (Object, "type.content", Value.Type_Content); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrWebdavImplHandlerDefaultHandlerServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsImplModelAdapterFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "osgi.http.whiteboard.listener", Value.Osgi_Http_Whiteboard_Listener); Serialize (Into, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Serialize (Into, "max.recursion.depth", Value.Max_Recursion_Depth); Serialize (Into, "cleanup.job.period", Value.Cleanup_Job_Period); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsImplModelAdapterFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsImplModelAdapterFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "osgi.http.whiteboard.listener", Value.Osgi_Http_Whiteboard_Listener); Deserialize (Object, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Deserialize (Object, "max.recursion.depth", Value.Max_Recursion_Depth); Deserialize (Object, "cleanup.job.period", Value.Cleanup_Job_Period); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsImplModelAdapterFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingModelsImplModelAdapterFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingModelsImplModelAdapterFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplRandomFeatureProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "feature.name", Value.Feature_Name); Serialize (Into, "feature.description", Value.Feature_Description); Serialize (Into, "active.percentage", Value.Active_Percentage); Serialize (Into, "cookie.name", Value.Cookie_Name); Serialize (Into, "cookie.maxAge", Value.Cookie_Max_Age); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplRandomFeatureProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplRandomFeatureProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "feature.name", Value.Feature_Name); Deserialize (Object, "feature.description", Value.Feature_Description); Deserialize (Object, "active.percentage", Value.Active_Percentage); Deserialize (Object, "cookie.name", Value.Cookie_Name); Deserialize (Object, "cookie.maxAge", Value.Cookie_Max_Age); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplRandomFeatureProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteFragsImplRandomFeatureProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplRandomFeatureInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplRandomFeatureInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplRandomFeatureInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplRandomFeatureInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteFragsImplRandomFeatureInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jaas.ranking", Value.Jaas_Ranking); Serialize (Into, "jaas.controlFlag", Value.Jaas_Control_Flag); Serialize (Into, "jaas.realmName", Value.Jaas_Realm_Name); Serialize (Into, "idp.name", Value.Idp_Name); Serialize (Into, "sync.handlerName", Value.Sync_Handler_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jaas.ranking", Value.Jaas_Ranking); Deserialize (Object, "jaas.controlFlag", Value.Jaas_Control_Flag); Deserialize (Object, "jaas.realmName", Value.Jaas_Realm_Name); Deserialize (Object, "idp.name", Value.Idp_Name); Deserialize (Object, "sync.handlerName", Value.Sync_Handler_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityAuthenticationExternalImplExInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ApacheSlingHealthCheckResultHTMLSerializerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "styleString", Value.Style_String); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ApacheSlingHealthCheckResultHTMLSerializerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ApacheSlingHealthCheckResultHTMLSerializerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "styleString", Value.Style_String); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ApacheSlingHealthCheckResultHTMLSerializerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ApacheSlingHealthCheckResultHTMLSerializerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ApacheSlingHealthCheckResultHTMLSerializerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ApacheSlingHealthCheckResultHTMLSerializerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ApacheSlingHealthCheckResultHTMLSerializerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ApacheSlingHealthCheckResultHTMLSerializerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ApacheSlingHealthCheckResultHTMLSerializerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountImplAccountManagementServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.accountmanager.config.informnewaccount.mail", Value.Cq_Accountmanager_Config_Informnewaccount_Mail); Serialize (Into, "cq.accountmanager.config.informnewpwd.mail", Value.Cq_Accountmanager_Config_Informnewpwd_Mail); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountImplAccountManagementServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountImplAccountManagementServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.accountmanager.config.informnewaccount.mail", Value.Cq_Accountmanager_Config_Informnewaccount_Mail); Deserialize (Object, "cq.accountmanager.config.informnewpwd.mail", Value.Cq_Accountmanager_Config_Informnewpwd_Mail); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountImplAccountManagementServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAccountImplAccountManagementServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountImplAccountManagementServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAccountImplAccountManagementServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountImplAccountManagementServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAccountImplAccountManagementServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAccountImplAccountManagementServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.asset.handler.fallback", Value.Cq_Commerce_Asset_Handler_Fallback); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.asset.handler.fallback", Value.Cq_Commerce_Asset_Handler_Fallback); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplAssetProductAssetHandlerProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplPromotionPromotionManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.commerce.promotion.root", Value.Cq_Commerce_Promotion_Root); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplPromotionPromotionManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplPromotionPromotionManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.commerce.promotion.root", Value.Cq_Commerce_Promotion_Root); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplPromotionPromotionManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplPromotionPromotionManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommerceImplPromotionPromotionManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplReportingServicesSettingsProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "reportingservices.url", Value.Reportingservices_Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplReportingServicesSettingsProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplReportingServicesSettingsProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "reportingservices.url", Value.Reportingservices_Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplReportingServicesSettingsProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqContentinsightImplReportingServicesSettingsProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqContentinsightImplReportingServicesSettingsProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "brightedge.url", Value.Brightedge_Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "brightedge.url", Value.Brightedge_Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqContentinsightImplServletsBrightEdgeProxyServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterAssetProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pipeline.type", Value.Pipeline_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterAssetProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterAssetProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pipeline.type", Value.Pipeline_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterAssetProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplContentRewriterAssetProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplContentRewriterAssetProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterParRangeFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pipeline.type", Value.Pipeline_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterParRangeFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterParRangeFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pipeline.type", Value.Pipeline_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterParRangeFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplContentRewriterParRangeFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplContentRewriterParRangeFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterPayloadFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pipeline.type", Value.Pipeline_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterPayloadFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterPayloadFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pipeline.type", Value.Pipeline_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterPayloadFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplContentRewriterPayloadFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplContentRewriterPayloadFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsImplServletProjectImageServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "image.quality", Value.Image_Quality); Serialize (Into, "image.supported.resolutions", Value.Image_Supported_Resolutions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsImplServletProjectImageServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsImplServletProjectImageServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "image.quality", Value.Image_Quality); Deserialize (Object, "image.supported.resolutions", Value.Image_Supported_Resolutions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsImplServletProjectImageServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqProjectsImplServletProjectImageServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsImplServletProjectImageServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqProjectsImplServletProjectImageServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsImplServletProjectImageServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqProjectsImplServletProjectImageServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqProjectsImplServletProjectImageServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensImplJobsDistributedDevicesStatiUpdateJobInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Serialize (Into, "event.filter", Value.Event_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); Deserialize (Object, "event.filter", Value.Event_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplEventListenerHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "streamPath", Value.Stream_Path); Serialize (Into, "streamName", Value.Stream_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "streamPath", Value.Stream_Path); Deserialize (Object, "streamName", Value.Stream_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialActivitystreamsListenerImplResourceActivityStreInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "context.path", Value.Context_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "context.path", Value.Context_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplCommentEmailBuilderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplCommentEmailEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pattern.time", Value.Pattern_Time); Serialize (Into, "pattern.newline", Value.Pattern_Newline); Serialize (Into, "pattern.dayOfMonth", Value.Pattern_Day_Of_Month); Serialize (Into, "pattern.month", Value.Pattern_Month); Serialize (Into, "pattern.year", Value.Pattern_Year); Serialize (Into, "pattern.date", Value.Pattern_Date); Serialize (Into, "pattern.dateTime", Value.Pattern_Date_Time); Serialize (Into, "pattern.email", Value.Pattern_Email); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pattern.time", Value.Pattern_Time); Deserialize (Object, "pattern.newline", Value.Pattern_Newline); Deserialize (Object, "pattern.dayOfMonth", Value.Pattern_Day_Of_Month); Deserialize (Object, "pattern.month", Value.Pattern_Month); Deserialize (Object, "pattern.year", Value.Pattern_Year); Deserialize (Object, "pattern.date", Value.Pattern_Date); Deserialize (Object, "pattern.dateTime", Value.Pattern_Date_Time); Deserialize (Object, "pattern.email", Value.Pattern_Email); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplEmailQuotedTextPatternsImpInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialFilelibraryClientEndpointsFilelibraryDownloadGeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplMentionsRouterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Serialize (Into, "event.filter", Value.Event_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplMentionsRouterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplMentionsRouterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); Deserialize (Object, "event.filter", Value.Event_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplMentionsRouterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialNotificationsImplMentionsRouterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialNotificationsImplMentionsRouterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationsRouterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Serialize (Into, "event.filter", Value.Event_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationsRouterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationsRouterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); Deserialize (Object, "event.filter", Value.Event_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationsRouterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialNotificationsImplNotificationsRouterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialNotificationsImplNotificationsRouterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Serialize (Into, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Deserialize (Object, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialScfCoreOperationsImplSocialOperationsServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScoringImplScoringEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.topics", Value.Event_Topics); Serialize (Into, "event.filter", Value.Event_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScoringImplScoringEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScoringImplScoringEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.topics", Value.Event_Topics); Deserialize (Object, "event.filter", Value.Event_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScoringImplScoringEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialScoringImplScoringEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialScoringImplScoringEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Serialize (Into, "sling.servlet.paths", Value.Sling_Servlet_Paths); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Deserialize (Object, "sling.servlet.paths", Value.Sling_Servlet_Paths); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialUserEndpointsImplUsersGroupFromPublishServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalSchedulerServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "formportal.interval", Value.Formportal_Interval); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalSchedulerServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalSchedulerServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "formportal.interval", Value.Formportal_Interval); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalSchedulerServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFdFpConfigFormsPortalSchedulerServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFdFpConfigFormsPortalSchedulerServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServletTempCleanUpTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "Duration for Temporary Storage", Value.Duration_For_Temporary_Storage); Serialize (Into, "Duration for Anonymous Storage", Value.Duration_For_Anonymous_Storage); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServletTempCleanUpTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServletTempCleanUpTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "Duration for Temporary Storage", Value.Duration_For_Temporary_Storage); Deserialize (Object, "Duration for Anonymous Storage", Value.Duration_For_Anonymous_Storage); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServletTempCleanUpTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFormsCommonServletTempCleanUpTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFormsCommonServletTempCleanUpTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteApicontrollerFilterResolverHookFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.cq.cdn.cdn-rewriter", Value.Com_Adobe_Cq_Cdn_Cdn_Rewriter); Serialize (Into, "com.adobe.cq.cloud-config.components", Value.Com_Adobe_Cq_Cloud_Config_Components); Serialize (Into, "com.adobe.cq.cloud-config.core", Value.Com_Adobe_Cq_Cloud_Config_Core); Serialize (Into, "com.adobe.cq.cloud-config.ui", Value.Com_Adobe_Cq_Cloud_Config_Ui); Serialize (Into, "com.adobe.cq.com.adobe.cq.editor", Value.Com_Adobe_Cq_Com_Adobe_Cq_Editor); Serialize (Into, "com.adobe.cq.com.adobe.cq.projects.core", Value.Com_Adobe_Cq_Com_Adobe_Cq_Projects_Core); Serialize (Into, "com.adobe.cq.com.adobe.cq.projects.wcm.core", Value.Com_Adobe_Cq_Com_Adobe_Cq_Projects_Wcm_Core); Serialize (Into, "com.adobe.cq.com.adobe.cq.ui.commons", Value.Com_Adobe_Cq_Com_Adobe_Cq_Ui_Commons); Serialize (Into, "com.adobe.cq.com.adobe.cq.wcm.style", Value.Com_Adobe_Cq_Com_Adobe_Cq_Wcm_Style); Serialize (Into, "com.adobe.cq.cq-activitymap-integration", Value.Com_Adobe_Cq_Cq_Activitymap_Integration); Serialize (Into, "com.adobe.cq.cq-contexthub-commons", Value.Com_Adobe_Cq_Cq_Contexthub_Commons); Serialize (Into, "com.adobe.cq.cq-dtm", Value.Com_Adobe_Cq_Cq_Dtm); Serialize (Into, "com.adobe.cq.cq-healthcheck", Value.Com_Adobe_Cq_Cq_Healthcheck); Serialize (Into, "com.adobe.cq.cq-multisite-targeting", Value.Com_Adobe_Cq_Cq_Multisite_Targeting); Serialize (Into, "com.adobe.cq.cq-pre-upgrade-cleanup", Value.Com_Adobe_Cq_Cq_Pre_Upgrade_Cleanup); Serialize (Into, "com.adobe.cq.cq-product-info-provider", Value.Com_Adobe_Cq_Cq_Product_Info_Provider); Serialize (Into, "com.adobe.cq.cq-rest-sites", Value.Com_Adobe_Cq_Cq_Rest_Sites); Serialize (Into, "com.adobe.cq.cq-security-hc", Value.Com_Adobe_Cq_Cq_Security_Hc); Serialize (Into, "com.adobe.cq.dam.cq-dam-svg-handler", Value.Com_Adobe_Cq_Dam_Cq_Dam_Svg_Handler); Serialize (Into, "com.adobe.cq.dam.cq-scene7-imaging", Value.Com_Adobe_Cq_Dam_Cq_Scene7_Imaging); Serialize (Into, "com.adobe.cq.dtm-reactor.core", Value.Com_Adobe_Cq_Dtm_Reactor_Core); Serialize (Into, "com.adobe.cq.dtm-reactor.ui", Value.Com_Adobe_Cq_Dtm_Reactor_Ui); Serialize (Into, "com.adobe.cq.exp-jspel-resolver", Value.Com_Adobe_Cq_Exp_Jspel_Resolver); Serialize (Into, "com.adobe.cq.inbox.cq-inbox", Value.Com_Adobe_Cq_Inbox_Cq_Inbox); Serialize (Into, "com.adobe.cq.json-schema-parser", Value.Com_Adobe_Cq_Json_Schema_Parser); Serialize (Into, "com.adobe.cq.media.cq-media-publishing-dps-fp-core", Value.Com_Adobe_Cq_Media_Cq_Media_Publishing_Dps_Fp_Core); Serialize (Into, "com.adobe.cq.mobile.cq-mobile-caas", Value.Com_Adobe_Cq_Mobile_Cq_Mobile_Caas); Serialize (Into, "com.adobe.cq.mobile.cq-mobile-index-builder", Value.Com_Adobe_Cq_Mobile_Cq_Mobile_Index_Builder); Serialize (Into, "com.adobe.cq.mobile.cq-mobile-phonegap-build", Value.Com_Adobe_Cq_Mobile_Cq_Mobile_Phonegap_Build); Serialize (Into, "com.adobe.cq.myspell", Value.Com_Adobe_Cq_Myspell); Serialize (Into, "com.adobe.cq.sample.we.retail.core", Value.Com_Adobe_Cq_Sample_We_Retail_Core); Serialize (Into, "com.adobe.cq.screens.com.adobe.cq.screens.dcc", Value.Com_Adobe_Cq_Screens_Com_Adobe_Cq_Screens_Dcc); Serialize (Into, "com.adobe.cq.screens.com.adobe.cq.screens.mq.core", Value.Com_Adobe_Cq_Screens_Com_Adobe_Cq_Screens_Mq_Core); Serialize (Into, "com.adobe.cq.social.cq-social-as-provider", Value.Com_Adobe_Cq_Social_Cq_Social_As_Provider); Serialize (Into, "com.adobe.cq.social.cq-social-badging-basic-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Badging_Basic_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-badging-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Badging_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-calendar-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Calendar_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-content-fragments-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Content_Fragments_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-enablement-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Enablement_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-graph-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Graph_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-ideation-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Ideation_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-jcr-provider", Value.Com_Adobe_Cq_Social_Cq_Social_Jcr_Provider); Serialize (Into, "com.adobe.cq.social.cq-social-members-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Members_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-ms-provider", Value.Com_Adobe_Cq_Social_Cq_Social_Ms_Provider); Serialize (Into, "com.adobe.cq.social.cq-social-notifications-channels-web", Value.Com_Adobe_Cq_Social_Cq_Social_Notifications_Channels_Web); Serialize (Into, "com.adobe.cq.social.cq-social-notifications-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Notifications_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-rdb-provider", Value.Com_Adobe_Cq_Social_Cq_Social_Rdb_Provider); Serialize (Into, "com.adobe.cq.social.cq-social-scf-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Scf_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-scoring-basic-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Scoring_Basic_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-scoring-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Scoring_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-serviceusers-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Serviceusers_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-srp-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Srp_Impl); Serialize (Into, "com.adobe.cq.social.cq-social-ugcbase-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Ugcbase_Impl); Serialize (Into, "com.adobe.dam.cq-dam-cfm-impl", Value.Com_Adobe_Dam_Cq_Dam_Cfm_Impl); Serialize (Into, "com.adobe.forms.foundation-forms-foundation-base", Value.Com_Adobe_Forms_Foundation_Forms_Foundation_Base); Serialize (Into, "com.adobe.granite.apicontroller", Value.Com_Adobe_Granite_Apicontroller); Serialize (Into, "com.adobe.granite.asset.core", Value.Com_Adobe_Granite_Asset_Core); Serialize (Into, "com.adobe.granite.auth.sso", Value.Com_Adobe_Granite_Auth_Sso); Serialize (Into, "com.adobe.granite.bundles.hc.impl", Value.Com_Adobe_Granite_Bundles_Hc_Impl); Serialize (Into, "com.adobe.granite.compat-router", Value.Com_Adobe_Granite_Compat_Router); Serialize (Into, "com.adobe.granite.conf", Value.Com_Adobe_Granite_Conf); Serialize (Into, "com.adobe.granite.conf.ui.core", Value.Com_Adobe_Granite_Conf_Ui_Core); Serialize (Into, "com.adobe.granite.cors", Value.Com_Adobe_Granite_Cors); Serialize (Into, "com.adobe.granite.crx-explorer", Value.Com_Adobe_Granite_Crx_Explorer); Serialize (Into, "com.adobe.granite.crxde-lite", Value.Com_Adobe_Granite_Crxde_Lite); Serialize (Into, "com.adobe.granite.crypto.config", Value.Com_Adobe_Granite_Crypto_Config); Serialize (Into, "com.adobe.granite.crypto.extension", Value.Com_Adobe_Granite_Crypto_Extension); Serialize (Into, "com.adobe.granite.crypto.file", Value.Com_Adobe_Granite_Crypto_File); Serialize (Into, "com.adobe.granite.crypto.jcr", Value.Com_Adobe_Granite_Crypto_Jcr); Serialize (Into, "com.adobe.granite.csrf", Value.Com_Adobe_Granite_Csrf); Serialize (Into, "com.adobe.granite.distribution.core", Value.Com_Adobe_Granite_Distribution_Core); Serialize (Into, "com.adobe.granite.dropwizard.metrics", Value.Com_Adobe_Granite_Dropwizard_Metrics); Serialize (Into, "com.adobe.granite.frags.impl", Value.Com_Adobe_Granite_Frags_Impl); Serialize (Into, "com.adobe.granite.gibson", Value.Com_Adobe_Granite_Gibson); Serialize (Into, "com.adobe.granite.infocollector", Value.Com_Adobe_Granite_Infocollector); Serialize (Into, "com.adobe.granite.installer.factory.packages", Value.Com_Adobe_Granite_Installer_Factory_Packages); Serialize (Into, "com.adobe.granite.jetty.ssl", Value.Com_Adobe_Granite_Jetty_Ssl); Serialize (Into, "com.adobe.granite.jobs.async", Value.Com_Adobe_Granite_Jobs_Async); Serialize (Into, "com.adobe.granite.maintenance.oak", Value.Com_Adobe_Granite_Maintenance_Oak); Serialize (Into, "com.adobe.granite.monitoring.core", Value.Com_Adobe_Granite_Monitoring_Core); Serialize (Into, "com.adobe.granite.queries", Value.Com_Adobe_Granite_Queries); Serialize (Into, "com.adobe.granite.replication.hc.impl", Value.Com_Adobe_Granite_Replication_Hc_Impl); Serialize (Into, "com.adobe.granite.repository.checker", Value.Com_Adobe_Granite_Repository_Checker); Serialize (Into, "com.adobe.granite.repository.hc.impl", Value.Com_Adobe_Granite_Repository_Hc_Impl); Serialize (Into, "com.adobe.granite.rest.assets", Value.Com_Adobe_Granite_Rest_Assets); Serialize (Into, "com.adobe.granite.security.ui", Value.Com_Adobe_Granite_Security_Ui); Serialize (Into, "com.adobe.granite.startup", Value.Com_Adobe_Granite_Startup); Serialize (Into, "com.adobe.granite.tagsoup", Value.Com_Adobe_Granite_Tagsoup); Serialize (Into, "com.adobe.granite.taskmanagement.core", Value.Com_Adobe_Granite_Taskmanagement_Core); Serialize (Into, "com.adobe.granite.taskmanagement.workflow", Value.Com_Adobe_Granite_Taskmanagement_Workflow); Serialize (Into, "com.adobe.granite.ui.clientlibs.compiler.less", Value.Com_Adobe_Granite_Ui_Clientlibs_Compiler_Less); Serialize (Into, "com.adobe.granite.ui.clientlibs.processor.gcc", Value.Com_Adobe_Granite_Ui_Clientlibs_Processor_Gcc); Serialize (Into, "com.adobe.granite.webconsole.plugins", Value.Com_Adobe_Granite_Webconsole_Plugins); Serialize (Into, "com.adobe.granite.workflow.console", Value.Com_Adobe_Granite_Workflow_Console); Serialize (Into, "com.adobe.xmp.worker.files.native.fragment.linux", Value.Com_Adobe_Xmp_Worker_Files_Native_Fragment_Linux); Serialize (Into, "com.adobe.xmp.worker.files.native.fragment.macosx", Value.Com_Adobe_Xmp_Worker_Files_Native_Fragment_Macosx); Serialize (Into, "com.adobe.xmp.worker.files.native.fragment.win", Value.Com_Adobe_Xmp_Worker_Files_Native_Fragment_Win); Serialize (Into, "com.day.commons.osgi.wrapper.simple-jndi", Value.Com_Day_Commons_Osgi_Wrapper_Simple_Jndi); Serialize (Into, "com.day.cq.cq-authhandler", Value.Com_Day_Cq_Cq_Authhandler); Serialize (Into, "com.day.cq.cq-compat-configupdate", Value.Com_Day_Cq_Cq_Compat_Configupdate); Serialize (Into, "com.day.cq.cq-licensebranding", Value.Com_Day_Cq_Cq_Licensebranding); Serialize (Into, "com.day.cq.cq-notifcation-impl", Value.Com_Day_Cq_Cq_Notifcation_Impl); Serialize (Into, "com.day.cq.cq-replication-audit", Value.Com_Day_Cq_Cq_Replication_Audit); Serialize (Into, "com.day.cq.cq-search-ext", Value.Com_Day_Cq_Cq_Search_Ext); Serialize (Into, "com.day.cq.dam.cq-dam-annotation-print", Value.Com_Day_Cq_Dam_Cq_Dam_Annotation_Print); Serialize (Into, "com.day.cq.dam.cq-dam-asset-usage", Value.Com_Day_Cq_Dam_Cq_Dam_Asset_Usage); Serialize (Into, "com.day.cq.dam.cq-dam-s7dam", Value.Com_Day_Cq_Dam_Cq_Dam_S7dam); Serialize (Into, "com.day.cq.dam.cq-dam-similaritysearch", Value.Com_Day_Cq_Dam_Cq_Dam_Similaritysearch); Serialize (Into, "com.day.cq.dam.dam-webdav-support", Value.Com_Day_Cq_Dam_Dam_Webdav_Support); Serialize (Into, "com.day.cq.pre-upgrade-tasks", Value.Com_Day_Cq_Pre_Upgrade_Tasks); Serialize (Into, "com.day.cq.replication.extensions", Value.Com_Day_Cq_Replication_Extensions); Serialize (Into, "com.day.cq.wcm.cq-msm-core", Value.Com_Day_Cq_Wcm_Cq_Msm_Core); Serialize (Into, "com.day.cq.wcm.cq-wcm-translation", Value.Com_Day_Cq_Wcm_Cq_Wcm_Translation); Serialize (Into, "day-commons-jrawio", Value.Day_Commons_Jrawio); Serialize (Into, "org.apache.aries.jmx.whiteboard", Value.Org_Apache_Aries_Jmx_Whiteboard); Serialize (Into, "org.apache.felix.http.sslfilter", Value.Org_Apache_Felix_Http_Sslfilter); Serialize (Into, "org.apache.felix.org.apache.felix.threaddump", Value.Org_Apache_Felix_Org_Apache_Felix_Threaddump); Serialize (Into, "org.apache.felix.webconsole.plugins.ds", Value.Org_Apache_Felix_Webconsole_Plugins_Ds); Serialize (Into, "org.apache.felix.webconsole.plugins.event", Value.Org_Apache_Felix_Webconsole_Plugins_Event); Serialize (Into, "org.apache.felix.webconsole.plugins.memoryusage", Value.Org_Apache_Felix_Webconsole_Plugins_Memoryusage); Serialize (Into, "org.apache.felix.webconsole.plugins.packageadmin", Value.Org_Apache_Felix_Webconsole_Plugins_Packageadmin); Serialize (Into, "org.apache.jackrabbit.oak-auth-ldap", Value.Org_Apache_Jackrabbit_Oak_Auth_Ldap); Serialize (Into, "org.apache.jackrabbit.oak-segment-tar", Value.Org_Apache_Jackrabbit_Oak_Segment_Tar); Serialize (Into, "org.apache.jackrabbit.oak-solr-osgi", Value.Org_Apache_Jackrabbit_Oak_Solr_Osgi); Serialize (Into, "org.apache.sling.bundleresource.impl", Value.Org_Apache_Sling_Bundleresource_Impl); Serialize (Into, "org.apache.sling.commons.fsclassloader", Value.Org_Apache_Sling_Commons_Fsclassloader); Serialize (Into, "org.apache.sling.commons.log.webconsole", Value.Org_Apache_Sling_Commons_Log_Webconsole); Serialize (Into, "org.apache.sling.datasource", Value.Org_Apache_Sling_Datasource); Serialize (Into, "org.apache.sling.discovery.base", Value.Org_Apache_Sling_Discovery_Base); Serialize (Into, "org.apache.sling.discovery.oak", Value.Org_Apache_Sling_Discovery_Oak); Serialize (Into, "org.apache.sling.discovery.support", Value.Org_Apache_Sling_Discovery_Support); Serialize (Into, "org.apache.sling.distribution.api", Value.Org_Apache_Sling_Distribution_Api); Serialize (Into, "org.apache.sling.distribution.core", Value.Org_Apache_Sling_Distribution_Core); Serialize (Into, "org.apache.sling.extensions.webconsolesecurityprovider", Value.Org_Apache_Sling_Extensions_Webconsolesecurityprovider); Serialize (Into, "org.apache.sling.hc.webconsole", Value.Org_Apache_Sling_Hc_Webconsole); Serialize (Into, "org.apache.sling.installer.console", Value.Org_Apache_Sling_Installer_Console); Serialize (Into, "org.apache.sling.installer.provider.file", Value.Org_Apache_Sling_Installer_Provider_File); Serialize (Into, "org.apache.sling.installer.provider.jcr", Value.Org_Apache_Sling_Installer_Provider_Jcr); Serialize (Into, "org.apache.sling.jcr.davex", Value.Org_Apache_Sling_Jcr_Davex); Serialize (Into, "org.apache.sling.jcr.resourcesecurity", Value.Org_Apache_Sling_Jcr_Resourcesecurity); Serialize (Into, "org.apache.sling.jmx.provider", Value.Org_Apache_Sling_Jmx_Provider); Serialize (Into, "org.apache.sling.launchpad.installer", Value.Org_Apache_Sling_Launchpad_Installer); Serialize (Into, "org.apache.sling.models.impl", Value.Org_Apache_Sling_Models_Impl); Serialize (Into, "org.apache.sling.repoinit.parser", Value.Org_Apache_Sling_Repoinit_Parser); Serialize (Into, "org.apache.sling.resource.inventory", Value.Org_Apache_Sling_Resource_Inventory); Serialize (Into, "org.apache.sling.resourceresolver", Value.Org_Apache_Sling_Resourceresolver); Serialize (Into, "org.apache.sling.scripting.javascript", Value.Org_Apache_Sling_Scripting_Javascript); Serialize (Into, "org.apache.sling.scripting.jst", Value.Org_Apache_Sling_Scripting_Jst); Serialize (Into, "org.apache.sling.scripting.sightly.js.provider", Value.Org_Apache_Sling_Scripting_Sightly_Js_Provider); Serialize (Into, "org.apache.sling.scripting.sightly.models.provider", Value.Org_Apache_Sling_Scripting_Sightly_Models_Provider); Serialize (Into, "org.apache.sling.security", Value.Org_Apache_Sling_Security); Serialize (Into, "org.apache.sling.servlets.compat", Value.Org_Apache_Sling_Servlets_Compat); Serialize (Into, "org.apache.sling.servlets.get", Value.Org_Apache_Sling_Servlets_Get); Serialize (Into, "org.apache.sling.startupfilter.disabler", Value.Org_Apache_Sling_Startupfilter_Disabler); Serialize (Into, "org.apache.sling.tracer", Value.Org_Apache_Sling_Tracer); Serialize (Into, "we.retail.client.app.core", Value.We_Retail_Client_App_Core); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteApicontrollerFilterResolverHookFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteApicontrollerFilterResolverHookFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.cq.cdn.cdn-rewriter", Value.Com_Adobe_Cq_Cdn_Cdn_Rewriter); Deserialize (Object, "com.adobe.cq.cloud-config.components", Value.Com_Adobe_Cq_Cloud_Config_Components); Deserialize (Object, "com.adobe.cq.cloud-config.core", Value.Com_Adobe_Cq_Cloud_Config_Core); Deserialize (Object, "com.adobe.cq.cloud-config.ui", Value.Com_Adobe_Cq_Cloud_Config_Ui); Deserialize (Object, "com.adobe.cq.com.adobe.cq.editor", Value.Com_Adobe_Cq_Com_Adobe_Cq_Editor); Deserialize (Object, "com.adobe.cq.com.adobe.cq.projects.core", Value.Com_Adobe_Cq_Com_Adobe_Cq_Projects_Core); Deserialize (Object, "com.adobe.cq.com.adobe.cq.projects.wcm.core", Value.Com_Adobe_Cq_Com_Adobe_Cq_Projects_Wcm_Core); Deserialize (Object, "com.adobe.cq.com.adobe.cq.ui.commons", Value.Com_Adobe_Cq_Com_Adobe_Cq_Ui_Commons); Deserialize (Object, "com.adobe.cq.com.adobe.cq.wcm.style", Value.Com_Adobe_Cq_Com_Adobe_Cq_Wcm_Style); Deserialize (Object, "com.adobe.cq.cq-activitymap-integration", Value.Com_Adobe_Cq_Cq_Activitymap_Integration); Deserialize (Object, "com.adobe.cq.cq-contexthub-commons", Value.Com_Adobe_Cq_Cq_Contexthub_Commons); Deserialize (Object, "com.adobe.cq.cq-dtm", Value.Com_Adobe_Cq_Cq_Dtm); Deserialize (Object, "com.adobe.cq.cq-healthcheck", Value.Com_Adobe_Cq_Cq_Healthcheck); Deserialize (Object, "com.adobe.cq.cq-multisite-targeting", Value.Com_Adobe_Cq_Cq_Multisite_Targeting); Deserialize (Object, "com.adobe.cq.cq-pre-upgrade-cleanup", Value.Com_Adobe_Cq_Cq_Pre_Upgrade_Cleanup); Deserialize (Object, "com.adobe.cq.cq-product-info-provider", Value.Com_Adobe_Cq_Cq_Product_Info_Provider); Deserialize (Object, "com.adobe.cq.cq-rest-sites", Value.Com_Adobe_Cq_Cq_Rest_Sites); Deserialize (Object, "com.adobe.cq.cq-security-hc", Value.Com_Adobe_Cq_Cq_Security_Hc); Deserialize (Object, "com.adobe.cq.dam.cq-dam-svg-handler", Value.Com_Adobe_Cq_Dam_Cq_Dam_Svg_Handler); Deserialize (Object, "com.adobe.cq.dam.cq-scene7-imaging", Value.Com_Adobe_Cq_Dam_Cq_Scene7_Imaging); Deserialize (Object, "com.adobe.cq.dtm-reactor.core", Value.Com_Adobe_Cq_Dtm_Reactor_Core); Deserialize (Object, "com.adobe.cq.dtm-reactor.ui", Value.Com_Adobe_Cq_Dtm_Reactor_Ui); Deserialize (Object, "com.adobe.cq.exp-jspel-resolver", Value.Com_Adobe_Cq_Exp_Jspel_Resolver); Deserialize (Object, "com.adobe.cq.inbox.cq-inbox", Value.Com_Adobe_Cq_Inbox_Cq_Inbox); Deserialize (Object, "com.adobe.cq.json-schema-parser", Value.Com_Adobe_Cq_Json_Schema_Parser); Deserialize (Object, "com.adobe.cq.media.cq-media-publishing-dps-fp-core", Value.Com_Adobe_Cq_Media_Cq_Media_Publishing_Dps_Fp_Core); Deserialize (Object, "com.adobe.cq.mobile.cq-mobile-caas", Value.Com_Adobe_Cq_Mobile_Cq_Mobile_Caas); Deserialize (Object, "com.adobe.cq.mobile.cq-mobile-index-builder", Value.Com_Adobe_Cq_Mobile_Cq_Mobile_Index_Builder); Deserialize (Object, "com.adobe.cq.mobile.cq-mobile-phonegap-build", Value.Com_Adobe_Cq_Mobile_Cq_Mobile_Phonegap_Build); Deserialize (Object, "com.adobe.cq.myspell", Value.Com_Adobe_Cq_Myspell); Deserialize (Object, "com.adobe.cq.sample.we.retail.core", Value.Com_Adobe_Cq_Sample_We_Retail_Core); Deserialize (Object, "com.adobe.cq.screens.com.adobe.cq.screens.dcc", Value.Com_Adobe_Cq_Screens_Com_Adobe_Cq_Screens_Dcc); Deserialize (Object, "com.adobe.cq.screens.com.adobe.cq.screens.mq.core", Value.Com_Adobe_Cq_Screens_Com_Adobe_Cq_Screens_Mq_Core); Deserialize (Object, "com.adobe.cq.social.cq-social-as-provider", Value.Com_Adobe_Cq_Social_Cq_Social_As_Provider); Deserialize (Object, "com.adobe.cq.social.cq-social-badging-basic-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Badging_Basic_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-badging-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Badging_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-calendar-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Calendar_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-content-fragments-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Content_Fragments_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-enablement-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Enablement_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-graph-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Graph_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-ideation-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Ideation_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-jcr-provider", Value.Com_Adobe_Cq_Social_Cq_Social_Jcr_Provider); Deserialize (Object, "com.adobe.cq.social.cq-social-members-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Members_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-ms-provider", Value.Com_Adobe_Cq_Social_Cq_Social_Ms_Provider); Deserialize (Object, "com.adobe.cq.social.cq-social-notifications-channels-web", Value.Com_Adobe_Cq_Social_Cq_Social_Notifications_Channels_Web); Deserialize (Object, "com.adobe.cq.social.cq-social-notifications-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Notifications_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-rdb-provider", Value.Com_Adobe_Cq_Social_Cq_Social_Rdb_Provider); Deserialize (Object, "com.adobe.cq.social.cq-social-scf-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Scf_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-scoring-basic-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Scoring_Basic_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-scoring-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Scoring_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-serviceusers-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Serviceusers_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-srp-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Srp_Impl); Deserialize (Object, "com.adobe.cq.social.cq-social-ugcbase-impl", Value.Com_Adobe_Cq_Social_Cq_Social_Ugcbase_Impl); Deserialize (Object, "com.adobe.dam.cq-dam-cfm-impl", Value.Com_Adobe_Dam_Cq_Dam_Cfm_Impl); Deserialize (Object, "com.adobe.forms.foundation-forms-foundation-base", Value.Com_Adobe_Forms_Foundation_Forms_Foundation_Base); Deserialize (Object, "com.adobe.granite.apicontroller", Value.Com_Adobe_Granite_Apicontroller); Deserialize (Object, "com.adobe.granite.asset.core", Value.Com_Adobe_Granite_Asset_Core); Deserialize (Object, "com.adobe.granite.auth.sso", Value.Com_Adobe_Granite_Auth_Sso); Deserialize (Object, "com.adobe.granite.bundles.hc.impl", Value.Com_Adobe_Granite_Bundles_Hc_Impl); Deserialize (Object, "com.adobe.granite.compat-router", Value.Com_Adobe_Granite_Compat_Router); Deserialize (Object, "com.adobe.granite.conf", Value.Com_Adobe_Granite_Conf); Deserialize (Object, "com.adobe.granite.conf.ui.core", Value.Com_Adobe_Granite_Conf_Ui_Core); Deserialize (Object, "com.adobe.granite.cors", Value.Com_Adobe_Granite_Cors); Deserialize (Object, "com.adobe.granite.crx-explorer", Value.Com_Adobe_Granite_Crx_Explorer); Deserialize (Object, "com.adobe.granite.crxde-lite", Value.Com_Adobe_Granite_Crxde_Lite); Deserialize (Object, "com.adobe.granite.crypto.config", Value.Com_Adobe_Granite_Crypto_Config); Deserialize (Object, "com.adobe.granite.crypto.extension", Value.Com_Adobe_Granite_Crypto_Extension); Deserialize (Object, "com.adobe.granite.crypto.file", Value.Com_Adobe_Granite_Crypto_File); Deserialize (Object, "com.adobe.granite.crypto.jcr", Value.Com_Adobe_Granite_Crypto_Jcr); Deserialize (Object, "com.adobe.granite.csrf", Value.Com_Adobe_Granite_Csrf); Deserialize (Object, "com.adobe.granite.distribution.core", Value.Com_Adobe_Granite_Distribution_Core); Deserialize (Object, "com.adobe.granite.dropwizard.metrics", Value.Com_Adobe_Granite_Dropwizard_Metrics); Deserialize (Object, "com.adobe.granite.frags.impl", Value.Com_Adobe_Granite_Frags_Impl); Deserialize (Object, "com.adobe.granite.gibson", Value.Com_Adobe_Granite_Gibson); Deserialize (Object, "com.adobe.granite.infocollector", Value.Com_Adobe_Granite_Infocollector); Deserialize (Object, "com.adobe.granite.installer.factory.packages", Value.Com_Adobe_Granite_Installer_Factory_Packages); Deserialize (Object, "com.adobe.granite.jetty.ssl", Value.Com_Adobe_Granite_Jetty_Ssl); Deserialize (Object, "com.adobe.granite.jobs.async", Value.Com_Adobe_Granite_Jobs_Async); Deserialize (Object, "com.adobe.granite.maintenance.oak", Value.Com_Adobe_Granite_Maintenance_Oak); Deserialize (Object, "com.adobe.granite.monitoring.core", Value.Com_Adobe_Granite_Monitoring_Core); Deserialize (Object, "com.adobe.granite.queries", Value.Com_Adobe_Granite_Queries); Deserialize (Object, "com.adobe.granite.replication.hc.impl", Value.Com_Adobe_Granite_Replication_Hc_Impl); Deserialize (Object, "com.adobe.granite.repository.checker", Value.Com_Adobe_Granite_Repository_Checker); Deserialize (Object, "com.adobe.granite.repository.hc.impl", Value.Com_Adobe_Granite_Repository_Hc_Impl); Deserialize (Object, "com.adobe.granite.rest.assets", Value.Com_Adobe_Granite_Rest_Assets); Deserialize (Object, "com.adobe.granite.security.ui", Value.Com_Adobe_Granite_Security_Ui); Deserialize (Object, "com.adobe.granite.startup", Value.Com_Adobe_Granite_Startup); Deserialize (Object, "com.adobe.granite.tagsoup", Value.Com_Adobe_Granite_Tagsoup); Deserialize (Object, "com.adobe.granite.taskmanagement.core", Value.Com_Adobe_Granite_Taskmanagement_Core); Deserialize (Object, "com.adobe.granite.taskmanagement.workflow", Value.Com_Adobe_Granite_Taskmanagement_Workflow); Deserialize (Object, "com.adobe.granite.ui.clientlibs.compiler.less", Value.Com_Adobe_Granite_Ui_Clientlibs_Compiler_Less); Deserialize (Object, "com.adobe.granite.ui.clientlibs.processor.gcc", Value.Com_Adobe_Granite_Ui_Clientlibs_Processor_Gcc); Deserialize (Object, "com.adobe.granite.webconsole.plugins", Value.Com_Adobe_Granite_Webconsole_Plugins); Deserialize (Object, "com.adobe.granite.workflow.console", Value.Com_Adobe_Granite_Workflow_Console); Deserialize (Object, "com.adobe.xmp.worker.files.native.fragment.linux", Value.Com_Adobe_Xmp_Worker_Files_Native_Fragment_Linux); Deserialize (Object, "com.adobe.xmp.worker.files.native.fragment.macosx", Value.Com_Adobe_Xmp_Worker_Files_Native_Fragment_Macosx); Deserialize (Object, "com.adobe.xmp.worker.files.native.fragment.win", Value.Com_Adobe_Xmp_Worker_Files_Native_Fragment_Win); Deserialize (Object, "com.day.commons.osgi.wrapper.simple-jndi", Value.Com_Day_Commons_Osgi_Wrapper_Simple_Jndi); Deserialize (Object, "com.day.cq.cq-authhandler", Value.Com_Day_Cq_Cq_Authhandler); Deserialize (Object, "com.day.cq.cq-compat-configupdate", Value.Com_Day_Cq_Cq_Compat_Configupdate); Deserialize (Object, "com.day.cq.cq-licensebranding", Value.Com_Day_Cq_Cq_Licensebranding); Deserialize (Object, "com.day.cq.cq-notifcation-impl", Value.Com_Day_Cq_Cq_Notifcation_Impl); Deserialize (Object, "com.day.cq.cq-replication-audit", Value.Com_Day_Cq_Cq_Replication_Audit); Deserialize (Object, "com.day.cq.cq-search-ext", Value.Com_Day_Cq_Cq_Search_Ext); Deserialize (Object, "com.day.cq.dam.cq-dam-annotation-print", Value.Com_Day_Cq_Dam_Cq_Dam_Annotation_Print); Deserialize (Object, "com.day.cq.dam.cq-dam-asset-usage", Value.Com_Day_Cq_Dam_Cq_Dam_Asset_Usage); Deserialize (Object, "com.day.cq.dam.cq-dam-s7dam", Value.Com_Day_Cq_Dam_Cq_Dam_S7dam); Deserialize (Object, "com.day.cq.dam.cq-dam-similaritysearch", Value.Com_Day_Cq_Dam_Cq_Dam_Similaritysearch); Deserialize (Object, "com.day.cq.dam.dam-webdav-support", Value.Com_Day_Cq_Dam_Dam_Webdav_Support); Deserialize (Object, "com.day.cq.pre-upgrade-tasks", Value.Com_Day_Cq_Pre_Upgrade_Tasks); Deserialize (Object, "com.day.cq.replication.extensions", Value.Com_Day_Cq_Replication_Extensions); Deserialize (Object, "com.day.cq.wcm.cq-msm-core", Value.Com_Day_Cq_Wcm_Cq_Msm_Core); Deserialize (Object, "com.day.cq.wcm.cq-wcm-translation", Value.Com_Day_Cq_Wcm_Cq_Wcm_Translation); Deserialize (Object, "day-commons-jrawio", Value.Day_Commons_Jrawio); Deserialize (Object, "org.apache.aries.jmx.whiteboard", Value.Org_Apache_Aries_Jmx_Whiteboard); Deserialize (Object, "org.apache.felix.http.sslfilter", Value.Org_Apache_Felix_Http_Sslfilter); Deserialize (Object, "org.apache.felix.org.apache.felix.threaddump", Value.Org_Apache_Felix_Org_Apache_Felix_Threaddump); Deserialize (Object, "org.apache.felix.webconsole.plugins.ds", Value.Org_Apache_Felix_Webconsole_Plugins_Ds); Deserialize (Object, "org.apache.felix.webconsole.plugins.event", Value.Org_Apache_Felix_Webconsole_Plugins_Event); Deserialize (Object, "org.apache.felix.webconsole.plugins.memoryusage", Value.Org_Apache_Felix_Webconsole_Plugins_Memoryusage); Deserialize (Object, "org.apache.felix.webconsole.plugins.packageadmin", Value.Org_Apache_Felix_Webconsole_Plugins_Packageadmin); Deserialize (Object, "org.apache.jackrabbit.oak-auth-ldap", Value.Org_Apache_Jackrabbit_Oak_Auth_Ldap); Deserialize (Object, "org.apache.jackrabbit.oak-segment-tar", Value.Org_Apache_Jackrabbit_Oak_Segment_Tar); Deserialize (Object, "org.apache.jackrabbit.oak-solr-osgi", Value.Org_Apache_Jackrabbit_Oak_Solr_Osgi); Deserialize (Object, "org.apache.sling.bundleresource.impl", Value.Org_Apache_Sling_Bundleresource_Impl); Deserialize (Object, "org.apache.sling.commons.fsclassloader", Value.Org_Apache_Sling_Commons_Fsclassloader); Deserialize (Object, "org.apache.sling.commons.log.webconsole", Value.Org_Apache_Sling_Commons_Log_Webconsole); Deserialize (Object, "org.apache.sling.datasource", Value.Org_Apache_Sling_Datasource); Deserialize (Object, "org.apache.sling.discovery.base", Value.Org_Apache_Sling_Discovery_Base); Deserialize (Object, "org.apache.sling.discovery.oak", Value.Org_Apache_Sling_Discovery_Oak); Deserialize (Object, "org.apache.sling.discovery.support", Value.Org_Apache_Sling_Discovery_Support); Deserialize (Object, "org.apache.sling.distribution.api", Value.Org_Apache_Sling_Distribution_Api); Deserialize (Object, "org.apache.sling.distribution.core", Value.Org_Apache_Sling_Distribution_Core); Deserialize (Object, "org.apache.sling.extensions.webconsolesecurityprovider", Value.Org_Apache_Sling_Extensions_Webconsolesecurityprovider); Deserialize (Object, "org.apache.sling.hc.webconsole", Value.Org_Apache_Sling_Hc_Webconsole); Deserialize (Object, "org.apache.sling.installer.console", Value.Org_Apache_Sling_Installer_Console); Deserialize (Object, "org.apache.sling.installer.provider.file", Value.Org_Apache_Sling_Installer_Provider_File); Deserialize (Object, "org.apache.sling.installer.provider.jcr", Value.Org_Apache_Sling_Installer_Provider_Jcr); Deserialize (Object, "org.apache.sling.jcr.davex", Value.Org_Apache_Sling_Jcr_Davex); Deserialize (Object, "org.apache.sling.jcr.resourcesecurity", Value.Org_Apache_Sling_Jcr_Resourcesecurity); Deserialize (Object, "org.apache.sling.jmx.provider", Value.Org_Apache_Sling_Jmx_Provider); Deserialize (Object, "org.apache.sling.launchpad.installer", Value.Org_Apache_Sling_Launchpad_Installer); Deserialize (Object, "org.apache.sling.models.impl", Value.Org_Apache_Sling_Models_Impl); Deserialize (Object, "org.apache.sling.repoinit.parser", Value.Org_Apache_Sling_Repoinit_Parser); Deserialize (Object, "org.apache.sling.resource.inventory", Value.Org_Apache_Sling_Resource_Inventory); Deserialize (Object, "org.apache.sling.resourceresolver", Value.Org_Apache_Sling_Resourceresolver); Deserialize (Object, "org.apache.sling.scripting.javascript", Value.Org_Apache_Sling_Scripting_Javascript); Deserialize (Object, "org.apache.sling.scripting.jst", Value.Org_Apache_Sling_Scripting_Jst); Deserialize (Object, "org.apache.sling.scripting.sightly.js.provider", Value.Org_Apache_Sling_Scripting_Sightly_Js_Provider); Deserialize (Object, "org.apache.sling.scripting.sightly.models.provider", Value.Org_Apache_Sling_Scripting_Sightly_Models_Provider); Deserialize (Object, "org.apache.sling.security", Value.Org_Apache_Sling_Security); Deserialize (Object, "org.apache.sling.servlets.compat", Value.Org_Apache_Sling_Servlets_Compat); Deserialize (Object, "org.apache.sling.servlets.get", Value.Org_Apache_Sling_Servlets_Get); Deserialize (Object, "org.apache.sling.startupfilter.disabler", Value.Org_Apache_Sling_Startupfilter_Disabler); Deserialize (Object, "org.apache.sling.tracer", Value.Org_Apache_Sling_Tracer); Deserialize (Object, "we.retail.client.app.core", Value.We_Retail_Client_App_Core); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteApicontrollerFilterResolverHookFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteApicontrollerFilterResolverHookFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteApicontrollerFilterResolverHookFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "configid", Value.Configid); Serialize (Into, "scope", Value.Scope); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "configid", Value.Configid); Deserialize (Object, "scope", Value.Scope); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplExternalUserIdMappingProviderExtensionInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplImsConfigProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.configmanager.ims.configid", Value.Oauth_Configmanager_Ims_Configid); Serialize (Into, "ims.owningEntity", Value.Ims_Owning_Entity); Serialize (Into, "aem.instanceId", Value.Aem_Instance_Id); Serialize (Into, "ims.serviceCode", Value.Ims_Service_Code); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplImsConfigProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplImsConfigProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.configmanager.ims.configid", Value.Oauth_Configmanager_Ims_Configid); Deserialize (Object, "ims.owningEntity", Value.Ims_Owning_Entity); Deserialize (Object, "aem.instanceId", Value.Aem_Instance_Id); Deserialize (Object, "ims.serviceCode", Value.Ims_Service_Code); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplImsConfigProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplImsConfigProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplImsConfigProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplIMSInstanceCredentialsValidatorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "auth.token.validator.type", Value.Auth_Token_Validator_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "auth.token.validator.type", Value.Auth_Token_Validator_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplDefaultTokenValidatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplFacebookProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplFacebookProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplFacebookProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplFacebookProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplFacebookProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplFacebookProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGithubProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Serialize (Into, "oauth.provider.github.authorization.url", Value.Oauth_Provider_Github_Authorization_Url); Serialize (Into, "oauth.provider.github.token.url", Value.Oauth_Provider_Github_Token_Url); Serialize (Into, "oauth.provider.github.profile.url", Value.Oauth_Provider_Github_Profile_Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGithubProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGithubProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); Deserialize (Object, "oauth.provider.github.authorization.url", Value.Oauth_Provider_Github_Authorization_Url); Deserialize (Object, "oauth.provider.github.token.url", Value.Oauth_Provider_Github_Token_Url); Deserialize (Object, "oauth.provider.github.profile.url", Value.Oauth_Provider_Github_Profile_Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGithubProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplGithubProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplGithubProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGraniteProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Serialize (Into, "oauth.provider.granite.authorization.url", Value.Oauth_Provider_Granite_Authorization_Url); Serialize (Into, "oauth.provider.granite.token.url", Value.Oauth_Provider_Granite_Token_Url); Serialize (Into, "oauth.provider.granite.profile.url", Value.Oauth_Provider_Granite_Profile_Url); Serialize (Into, "oauth.provider.granite.extended.details.urls", Value.Oauth_Provider_Granite_Extended_Details_Urls); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGraniteProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGraniteProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); Deserialize (Object, "oauth.provider.granite.authorization.url", Value.Oauth_Provider_Granite_Authorization_Url); Deserialize (Object, "oauth.provider.granite.token.url", Value.Oauth_Provider_Granite_Token_Url); Deserialize (Object, "oauth.provider.granite.profile.url", Value.Oauth_Provider_Granite_Profile_Url); Deserialize (Object, "oauth.provider.granite.extended.details.urls", Value.Oauth_Provider_Granite_Extended_Details_Urls); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGraniteProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplGraniteProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplGraniteProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.cookie.login.timeout", Value.Oauth_Cookie_Login_Timeout); Serialize (Into, "oauth.cookie.max.age", Value.Oauth_Cookie_Max_Age); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.cookie.login.timeout", Value.Oauth_Cookie_Login_Timeout); Deserialize (Object, "oauth.cookie.max.age", Value.Oauth_Cookie_Max_Age); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.cookie.login.timeout", Value.Oauth_Cookie_Login_Timeout); Serialize (Into, "oauth.cookie.max.age", Value.Oauth_Cookie_Max_Age); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.cookie.login.timeout", Value.Oauth_Cookie_Login_Timeout); Deserialize (Object, "oauth.cookie.max.age", Value.Oauth_Cookie_Max_Age); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplHelperProviderConfigManagerInternalInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplOAuthAuthenticationHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplTwitterProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplTwitterProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplTwitterProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplTwitterProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplTwitterProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthOauthImplTwitterProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheFileFileCacheStoreProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.granite.httpcache.file.documentRoot", Value.Com_Adobe_Granite_Httpcache_File_Document_Root); Serialize (Into, "com.adobe.granite.httpcache.file.includeHost", Value.Com_Adobe_Granite_Httpcache_File_Include_Host); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheFileFileCacheStoreProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheFileFileCacheStoreProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.granite.httpcache.file.documentRoot", Value.Com_Adobe_Granite_Httpcache_File_Document_Root); Deserialize (Object, "com.adobe.granite.httpcache.file.includeHost", Value.Com_Adobe_Granite_Httpcache_File_Include_Host); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheFileFileCacheStoreProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteHttpcacheFileFileCacheStoreProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteHttpcacheFileFileCacheStoreInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "security.preferences.name", Value.Security_Preferences_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "security.preferences.name", Value.Security_Preferences_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteI18nImplPreferencesLocaleResolverServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "job.topics", Value.Job_Topics); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "job.topics", Value.Job_Topics); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteMaintenanceCrxImplLuceneBinariesCleanupTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplAccessTokenCleanupTaskInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.issuer", Value.Oauth_Issuer); Serialize (Into, "oauth.access.token.expires.in", Value.Oauth_Access_Token_Expires_In); Serialize (Into, "osgi.http.whiteboard.servlet.pattern", Value.Osgi_Http_Whiteboard_Servlet_Pattern); Serialize (Into, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.issuer", Value.Oauth_Issuer); Deserialize (Object, "oauth.access.token.expires.in", Value.Oauth_Access_Token_Expires_In); Deserialize (Object, "osgi.http.whiteboard.servlet.pattern", Value.Osgi_Http_Whiteboard_Servlet_Pattern); Deserialize (Object, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteOauthServerImplOAuth2TokenEndpointServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplStatusResourceProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "provider.root", Value.Provider_Root); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplStatusResourceProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplStatusResourceProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "provider.root", Value.Provider_Root); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplStatusResourceProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteResourcestatusImplStatusResourceProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteResourcestatusImplStatusResourceProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "provider.roots", Value.Provider_Roots); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "provider.roots", Value.Provider_Roots); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteRestImplApiEndpointResourceProviderFactoryImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "jmx.objectname", Value.Jmx_Objectname); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "jmx.objectname", Value.Jmx_Objectname); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteSystemMonitoringImplSystemStatsMBeanImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "adapter.condition", Value.Adapter_Condition); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "adapter.condition", Value.Adapter_Condition); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTaskmanagementImplJcrTaskAdapterFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationCoreImplTranslationManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "defaultConnectorName", Value.Default_Connector_Name); Serialize (Into, "defaultCategory", Value.Default_Category); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationCoreImplTranslationManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationCoreImplTranslationManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "defaultConnectorName", Value.Default_Connector_Name); Deserialize (Object, "defaultCategory", Value.Default_Category); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationCoreImplTranslationManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTranslationCoreImplTranslationManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteTranslationCoreImplTranslationManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "communities.integration.livefyre.sling.event.filter", Value.Communities_Integration_Livefyre_Sling_Event_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "communities.integration.livefyre.sling.event.filter", Value.Communities_Integration_Livefyre_Sling_Event_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeSocialIntegrationsLivefyreUserPingforpullImplPingPullSInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeXmpWorkerFilesNcommXMPFilesNCommProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "maxConnections", Value.Max_Connections); Serialize (Into, "maxRequests", Value.Max_Requests); Serialize (Into, "requestTimeout", Value.Request_Timeout); Serialize (Into, "logDir", Value.Log_Dir); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeXmpWorkerFilesNcommXMPFilesNCommProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeXmpWorkerFilesNcommXMPFilesNCommProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "maxConnections", Value.Max_Connections); Deserialize (Object, "maxRequests", Value.Max_Requests); Deserialize (Object, "requestTimeout", Value.Request_Timeout); Deserialize (Object, "logDir", Value.Log_Dir); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeXmpWorkerFilesNcommXMPFilesNCommProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeXmpWorkerFilesNcommXMPFilesNCommProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeXmpWorkerFilesNcommXMPFilesNCommInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "testandtarget.endpoint.url", Value.Testandtarget_Endpoint_Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "testandtarget.endpoint.url", Value.Testandtarget_Endpoint_Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqAnalyticsTestandtargetImplServletsAdminServerServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsServletsRootMappingServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "rootmapping.target", Value.Rootmapping_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsServletsRootMappingServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsServletsRootMappingServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "rootmapping.target", Value.Rootmapping_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsServletsRootMappingServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCommonsServletsRootMappingServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsServletsRootMappingServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCommonsServletsRootMappingServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsServletsRootMappingServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCommonsServletsRootMappingServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCommonsServletsRootMappingServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "effectiveBundleListPath", Value.Effective_Bundle_List_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "effectiveBundleListPath", Value.Effective_Bundle_List_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqCompatCodeupgradeImplVersionRangeTaskIgnorelistInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqContentsyncImplContentSyncManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "contentsync.fallback.authorizable", Value.Contentsync_Fallback_Authorizable); Serialize (Into, "contentsync.fallback.updateuser", Value.Contentsync_Fallback_Updateuser); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqContentsyncImplContentSyncManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqContentsyncImplContentSyncManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "contentsync.fallback.authorizable", Value.Contentsync_Fallback_Authorizable); Deserialize (Object, "contentsync.fallback.updateuser", Value.Contentsync_Fallback_Updateuser); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqContentsyncImplContentSyncManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqContentsyncImplContentSyncManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqContentsyncImplContentSyncManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqContentsyncImplContentSyncManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqContentsyncImplContentSyncManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqContentsyncImplContentSyncManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqContentsyncImplContentSyncManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerEPSFormatHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mimetype", Value.Mimetype); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerEPSFormatHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerEPSFormatHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mimetype", Value.Mimetype); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerEPSFormatHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerEPSFormatHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplHandlerEPSFormatHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetMigrationMBeanImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jmx.objectname", Value.Jmx_Objectname); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetMigrationMBeanImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetMigrationMBeanImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jmx.objectname", Value.Jmx_Objectname); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetMigrationMBeanImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJmxAssetMigrationMBeanImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJmxAssetMigrationMBeanImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCompanionServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "More Info", Value.More_Info); Serialize (Into, "/mnt/overlay/dam/gui/content/assets/moreinfo.html/${path}", Value.Mntoverlaydamguicontentassetsmoreinfo_Htmlpath); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCompanionServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCompanionServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "More Info", Value.More_Info); Deserialize (Object, "/mnt/overlay/dam/gui/content/assets/moreinfo.html/${path}", Value.Mntoverlaydamguicontentassetsmoreinfo_Htmlpath); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCompanionServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCompanionServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCompanionServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletCompanionServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCompanionServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletCompanionServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletCompanionServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMetadataGetServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Serialize (Into, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Serialize (Into, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMetadataGetServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMetadataGetServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.resourceTypes", Value.Sling_Servlet_Resource_Types); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); Deserialize (Object, "sling.servlet.extensions", Value.Sling_Servlet_Extensions); Deserialize (Object, "sling.servlet.selectors", Value.Sling_Servlet_Selectors); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMetadataGetServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletMetadataGetServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMetadataGetServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplServletMetadataGetServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMetadataGetServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplServletMetadataGetServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplServletMetadataGetServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamPerformanceInternalAssetPerformanceReportSyncJobInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetCreateHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.post.operation", Value.Sling_Post_Operation); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetCreateHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetCreateHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.post.operation", Value.Sling_Post_Operation); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetCreateHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonPostServletsSetCreateHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonPostServletsSetCreateHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetModifyHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.post.operation", Value.Sling_Post_Operation); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetModifyHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetModifyHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.post.operation", Value.Sling_Post_Operation); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetModifyHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonPostServletsSetModifyHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonPostServletsSetModifyHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "process.label", Value.Process_Label); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "process.label", Value.Process_Label); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonProcessVideoThumbnailDownloadProcessInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonServletsS7damProductInfoServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.servlet.paths", Value.Sling_Servlet_Paths); Serialize (Into, "sling.servlet.methods", Value.Sling_Servlet_Methods); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonServletsS7damProductInfoServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonServletsS7damProductInfoServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.servlet.paths", Value.Sling_Servlet_Paths); Deserialize (Object, "sling.servlet.methods", Value.Sling_Servlet_Methods); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonServletsS7damProductInfoServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonServletsS7damProductInfoServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamS7damCommonServletsS7damProductInfoServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scene7FlashTemplates.rti", Value.Scene7_Flash_Templates_Rti); Serialize (Into, "scene7FlashTemplates.rsi", Value.Scene7_Flash_Templates_Rsi); Serialize (Into, "scene7FlashTemplates.rb", Value.Scene7_Flash_Templates_Rb); Serialize (Into, "scene7FlashTemplates.rurl", Value.Scene7_Flash_Templates_Rurl); Serialize (Into, "scene7FlashTemplate.urlFormatParameter", Value.Scene7_Flash_Template_Url_Format_Parameter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scene7FlashTemplates.rti", Value.Scene7_Flash_Templates_Rti); Deserialize (Object, "scene7FlashTemplates.rsi", Value.Scene7_Flash_Templates_Rsi); Deserialize (Object, "scene7FlashTemplates.rb", Value.Scene7_Flash_Templates_Rb); Deserialize (Object, "scene7FlashTemplates.rurl", Value.Scene7_Flash_Templates_Rurl); Deserialize (Object, "scene7FlashTemplate.urlFormatParameter", Value.Scene7_Flash_Template_Url_Format_Parameter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamScene7ImplScene7FlashTemplatesServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplCqMailingServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "max.recipient.count", Value.Max_Recipient_Count); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplCqMailingServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplCqMailingServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "max.recipient.count", Value.Max_Recipient_Count); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplCqMailingServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerImplCqMailingServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplCqMailingServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplCqMailingServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplCqMailingServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplCqMailingServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerImplCqMailingServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqEmailTemplateFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mailer.email.charset", Value.Mailer_Email_Charset); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqEmailTemplateFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqEmailTemplateFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mailer.email.charset", Value.Mailer_Email_Charset); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqEmailTemplateFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerImplEmailCqEmailTemplateFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMailerImplEmailCqEmailTemplateFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "from.address", Value.From_Address); Serialize (Into, "sender.host", Value.Sender_Host); Serialize (Into, "max.bounce.count", Value.Max_Bounce_Count); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "from.address", Value.From_Address); Deserialize (Object, "sender.host", Value.Sender_Host); Deserialize (Object, "max.bounce.count", Value.Max_Bounce_Count); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqMcmCoreNewsletterNewsletterEmailServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqNotificationImplNotificationServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqNotificationImplNotificationServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqNotificationImplNotificationServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqNotificationImplNotificationServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqNotificationImplNotificationServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqNotificationImplNotificationServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqNotificationImplNotificationServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqNotificationImplNotificationServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqNotificationImplNotificationServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqNotificationImplNotificationServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollingImporterImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "importer.user", Value.Importer_User); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollingImporterImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollingImporterImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "importer.user", Value.Importer_User); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollingImporterImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPollingImporterImplManagedPollingImporterImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqPollingImporterImplManagedPollingImporterImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplAgentManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "job.topics", Value.Job_Topics); Serialize (Into, "serviceUser.target", Value.Service_User_Target); Serialize (Into, "agentProvider.target", Value.Agent_Provider_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplAgentManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplAgentManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "job.topics", Value.Job_Topics); Deserialize (Object, "serviceUser.target", Value.Service_User_Target); Deserialize (Object, "agentProvider.target", Value.Agent_Provider_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplAgentManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplAgentManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplAgentManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReplicationImplAgentManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplAgentManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReplicationImplAgentManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReplicationImplAgentManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplRLogAnalyzerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "request.log.output", Value.Request_Log_Output); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplRLogAnalyzerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplRLogAnalyzerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "request.log.output", Value.Request_Log_Output); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplRLogAnalyzerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReportingImplRLogAnalyzerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplRLogAnalyzerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqReportingImplRLogAnalyzerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplRLogAnalyzerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqReportingImplRLogAnalyzerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqReportingImplRLogAnalyzerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchSuggestImplSuggestionIndexManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pathBuilder.target", Value.Path_Builder_Target); Serialize (Into, "suggest.basepath", Value.Suggest_Basepath); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchSuggestImplSuggestionIndexManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchSuggestImplSuggestionIndexManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pathBuilder.target", Value.Path_Builder_Target); Deserialize (Object, "suggest.basepath", Value.Suggest_Basepath); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchSuggestImplSuggestionIndexManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchSuggestImplSuggestionIndexManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqSearchSuggestImplSuggestionIndexManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplTagGarbageCollectorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplTagGarbageCollectorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplTagGarbageCollectorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplTagGarbageCollectorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqTaggingImplTagGarbageCollectorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplTagGarbageCollectorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqTaggingImplTagGarbageCollectorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplTagGarbageCollectorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqTaggingImplTagGarbageCollectorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqTaggingImplTagGarbageCollectorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplAuthoringUIModeServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "authoringUIModeService.default", Value.Authoring_U_I_Mode_Service_Default); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplAuthoringUIModeServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplAuthoringUIModeServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "authoringUIModeService.default", Value.Authoring_U_I_Mode_Service_Default); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplAuthoringUIModeServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplAuthoringUIModeServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplAuthoringUIModeServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPageEventAuditListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "configured", Value.Configured); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPageEventAuditListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPageEventAuditListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "configured", Value.Configured); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPageEventAuditListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventPageEventAuditListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventPageEventAuditListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventTemplatePostProcessorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "paths", Value.Paths); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventTemplatePostProcessorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventTemplatePostProcessorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "paths", Value.Paths); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventTemplatePostProcessorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventTemplatePostProcessorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplEventTemplatePostProcessorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageInfoAggregatorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "page.info.provider.property.regex.default", Value.Page_Info_Provider_Property_Regex_Default); Serialize (Into, "page.info.provider.property.name", Value.Page_Info_Provider_Property_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageInfoAggregatorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageInfoAggregatorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "page.info.provider.property.regex.default", Value.Page_Info_Provider_Property_Regex_Default); Deserialize (Object, "page.info.provider.property.name", Value.Page_Info_Provider_Property_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageInfoAggregatorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplPagePageInfoAggregatorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplPagePageInfoAggregatorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "nonValidChars", Value.Non_Valid_Chars); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "nonValidChars", Value.Non_Valid_Chars); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplUtilsDefaultPageNameValidatorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVariantsPageVariantsProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "default.externalizer.domain", Value.Default_Externalizer_Domain); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVariantsPageVariantsProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVariantsPageVariantsProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "default.externalizer.domain", Value.Default_Externalizer_Domain); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVariantsPageVariantsProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplVariantsPageVariantsProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplVariantsPageVariantsProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWarpTimeWarpFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "filter.order", Value.Filter_Order); Serialize (Into, "filter.scope", Value.Filter_Scope); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWarpTimeWarpFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWarpTimeWarpFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "filter.order", Value.Filter_Order); Deserialize (Object, "filter.scope", Value.Filter_Scope); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWarpTimeWarpFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplWarpTimeWarpFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplWarpTimeWarpFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreMvtMVTStatisticsImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mvtstatistics.trackingurl", Value.Mvtstatistics_Trackingurl); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreMvtMVTStatisticsImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreMvtMVTStatisticsImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mvtstatistics.trackingurl", Value.Mvtstatistics_Trackingurl); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreMvtMVTStatisticsImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreMvtMVTStatisticsImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreMvtMVTStatisticsImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreStatsPageViewStatisticsImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "pageviewstatistics.trackingurl", Value.Pageviewstatistics_Trackingurl); Serialize (Into, "pageviewstatistics.trackingscript.enabled", Value.Pageviewstatistics_Trackingscript_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreStatsPageViewStatisticsImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreStatsPageViewStatisticsImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "pageviewstatistics.trackingurl", Value.Pageviewstatistics_Trackingurl); Deserialize (Object, "pageviewstatistics.trackingscript.enabled", Value.Pageviewstatistics_Trackingscript_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreStatsPageViewStatisticsImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreStatsPageViewStatisticsImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreStatsPageViewStatisticsImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplEntryPreprocessorImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "search.pattern", Value.Search_Pattern); Serialize (Into, "replace.pattern", Value.Replace_Pattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplEntryPreprocessorImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplEntryPreprocessorImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "search.pattern", Value.Search_Pattern); Deserialize (Object, "replace.pattern", Value.Replace_Pattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplEntryPreprocessorImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplEntryPreprocessorImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmDesignimporterImplEntryPreprocessorImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageImpressionsTrackerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.auth.requirements", Value.Sling_Auth_Requirements); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageImpressionsTrackerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageImpressionsTrackerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.auth.requirements", Value.Sling_Auth_Requirements); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageImpressionsTrackerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplPageImpressionsTrackerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmFoundationImplPageImpressionsTrackerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplLiveRelationshipManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "liverelationshipmgr.relationsconfig.default", Value.Liverelationshipmgr_Relationsconfig_Default); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplLiveRelationshipManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplLiveRelationshipManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "liverelationshipmgr.relationsconfig.default", Value.Liverelationshipmgr_Relationsconfig_Default); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplLiveRelationshipManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplLiveRelationshipManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplLiveRelationshipManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationEmailImplEmailChannelProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "email.from", Value.Email_From); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationEmailImplEmailChannelProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationEmailImplEmailChannelProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "email.from", Value.Email_From); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationEmailImplEmailChannelProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmNotificationEmailImplEmailChannelProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmNotificationEmailImplEmailChannelInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemAliveServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "osgi.http.whiteboard.servlet.pattern", Value.Osgi_Http_Whiteboard_Servlet_Pattern); Serialize (Into, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemAliveServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemAliveServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "osgi.http.whiteboard.servlet.pattern", Value.Osgi_Http_Whiteboard_Servlet_Pattern); Deserialize (Object, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemAliveServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplServletSystemAliveServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplServletSystemAliveServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemReadyServletProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "osgi.http.whiteboard.servlet.pattern", Value.Osgi_Http_Whiteboard_Servlet_Pattern); Serialize (Into, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemReadyServletProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemReadyServletProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "osgi.http.whiteboard.servlet.pattern", Value.Osgi_Http_Whiteboard_Servlet_Pattern); Deserialize (Object, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemReadyServletProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplServletSystemReadyServletProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplServletSystemReadyServletInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dir", Value.Dir); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dir", Value.Dir); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsBlobDatastoreDataStoreTextProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsBlobDatastoreFileDataStoreInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "solr.home.path", Value.Solr_Home_Path); Serialize (Into, "solr.core.name", Value.Solr_Core_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "solr.home.path", Value.Solr_Home_Path); Deserialize (Object, "solr.core.name", Value.Solr_Core_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiEmbeddedSolrServerCoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.jackrabbit.oak.authentication.appName", Value.Org_Apache_Jackrabbit_Oak_Authentication_App_Name); Serialize (Into, "org.apache.jackrabbit.oak.authentication.configSpiName", Value.Org_Apache_Jackrabbit_Oak_Authentication_Config_Spi_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.jackrabbit.oak.authentication.appName", Value.Org_Apache_Jackrabbit_Oak_Authentication_App_Name); Deserialize (Object, "org.apache.jackrabbit.oak.authentication.configSpiName", Value.Org_Apache_Jackrabbit_Oak_Authentication_Config_Spi_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthenticationAuthenticationConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "accountName", Value.Account_Name); Serialize (Into, "containerName", Value.Container_Name); Serialize (Into, "accessKey", Value.Access_Key); Serialize (Into, "rootPath", Value.Root_Path); Serialize (Into, "connectionURL", Value.Connection_U_R_L); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "accountName", Value.Account_Name); Deserialize (Object, "containerName", Value.Container_Name); Deserialize (Object, "accessKey", Value.Access_Key); Deserialize (Object, "rootPath", Value.Root_Path); Deserialize (Object, "connectionURL", Value.Connection_U_R_L); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentAzureAzureSegmentStoreServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "homePath", Value.Home_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "homePath", Value.Home_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitVaultPackagingRegistryImplFSPackageRegistryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "java.naming.factory.initial", Value.Java_Naming_Factory_Initial); Serialize (Into, "java.naming.provider.url", Value.Java_Naming_Provider_Url); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "java.naming.factory.initial", Value.Java_Naming_Factory_Initial); Deserialize (Object, "java.naming.provider.url", Value.Java_Naming_Provider_Url); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrJackrabbitServerJndiRegistrationSupportInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJmxProviderImplJMXResourceProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "provider.roots", Value.Provider_Roots); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJmxProviderImplJMXResourceProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJmxProviderImplJMXResourceProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "provider.roots", Value.Provider_Roots); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJmxProviderImplJMXResourceProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJmxProviderImplJMXResourceProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJmxProviderImplJMXResourceProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSettingsImplSlingSettingsServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "sling.name", Value.Sling_Name); Serialize (Into, "sling.description", Value.Sling_Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSettingsImplSlingSettingsServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSettingsImplSlingSettingsServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "sling.name", Value.Sling_Name); Deserialize (Object, "sling.description", Value.Sling_Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSettingsImplSlingSettingsServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingSettingsImplSlingSettingsServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingSettingsImplSlingSettingsServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingXssImplXSSFilterImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "policyPath", Value.Policy_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingXssImplXSSFilterImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingXssImplXSSFilterImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "policyPath", Value.Policy_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingXssImplXSSFilterImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingXssImplXSSFilterImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingXssImplXSSFilterImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingXssImplXSSFilterImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingXssImplXSSFilterImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingXssImplXSSFilterImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingXssImplXSSFilterImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplComponentComponentConfigImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dam.cfm.component.resourceType", Value.Dam_Cfm_Component_Resource_Type); Serialize (Into, "dam.cfm.component.fileReferenceProp", Value.Dam_Cfm_Component_File_Reference_Prop); Serialize (Into, "dam.cfm.component.elementsProp", Value.Dam_Cfm_Component_Elements_Prop); Serialize (Into, "dam.cfm.component.variationProp", Value.Dam_Cfm_Component_Variation_Prop); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplComponentComponentConfigImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplComponentComponentConfigImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dam.cfm.component.resourceType", Value.Dam_Cfm_Component_Resource_Type); Deserialize (Object, "dam.cfm.component.fileReferenceProp", Value.Dam_Cfm_Component_File_Reference_Prop); Deserialize (Object, "dam.cfm.component.elementsProp", Value.Dam_Cfm_Component_Elements_Prop); Deserialize (Object, "dam.cfm.component.variationProp", Value.Dam_Cfm_Component_Variation_Prop); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplComponentComponentConfigImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplComponentComponentConfigImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamCfmImplComponentComponentConfigImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSrpImplSocialSolrConnectorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "srp.type", Value.Srp_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSrpImplSocialSolrConnectorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSrpImplSocialSolrConnectorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "srp.type", Value.Srp_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSrpImplSocialSolrConnectorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSrpImplSocialSolrConnectorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialSrpImplSocialSolrConnectorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "auth.ims.client.secret", Value.Auth_Ims_Client_Secret); Serialize (Into, "customizer.type", Value.Customizer_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "auth.ims.client.secret", Value.Auth_Ims_Client_Secret); Deserialize (Object, "customizer.type", Value.Customizer_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthImsImplIMSAccessTokenRequestCustomizerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplRoutingConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "id", Value.Id); Serialize (Into, "compatPath", Value.Compat_Path); Serialize (Into, "newPath", Value.New_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplRoutingConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplRoutingConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "id", Value.Id); Deserialize (Object, "compatPath", Value.Compat_Path); Deserialize (Object, "newPath", Value.New_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplRoutingConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCompatrouterImplRoutingConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteCompatrouterImplRoutingConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "username", Value.Username); Serialize (Into, "encryptedPassword", Value.Encrypted_Password); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "username", Value.Username); Deserialize (Object, "encryptedPassword", Value.Encrypted_Password); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplCryptoDistributionTransportSeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "diffPath", Value.Diff_Path); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "serviceUser.target", Value.Service_User_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "diffPath", Value.Diff_Path); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "serviceUser.target", Value.Service_User_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplDiffDiffEventListenerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "userId", Value.User_Id); Serialize (Into, "accessTokenProvider.target", Value.Access_Token_Provider_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "userId", Value.User_Id); Deserialize (Object, "accessTokenProvider.target", Value.Access_Token_Provider_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteDistributionCoreImplTransportAccessTokenDistribuInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplCheckHttpHeaderFlagProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "feature.name", Value.Feature_Name); Serialize (Into, "feature.description", Value.Feature_Description); Serialize (Into, "http.header.name", Value.Http_Header_Name); Serialize (Into, "http.header.valuepattern", Value.Http_Header_Valuepattern); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplCheckHttpHeaderFlagProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplCheckHttpHeaderFlagProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "feature.name", Value.Feature_Name); Deserialize (Object, "feature.description", Value.Feature_Description); Deserialize (Object, "http.header.name", Value.Http_Header_Name); Deserialize (Object, "http.header.valuepattern", Value.Http_Header_Valuepattern); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplCheckHttpHeaderFlagProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteFragsImplCheckHttpHeaderFlagProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteFragsImplCheckHttpHeaderFlagInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "job.topics", Value.Job_Topics); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "job.topics", Value.Job_Topics); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreOffloadingWorkflowOffloadingJobConsumInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplConfigurationStockConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "locale", Value.Locale); Serialize (Into, "imsConfig", Value.Ims_Config); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplConfigurationStockConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplConfigurationStockConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "locale", Value.Locale); Deserialize (Object, "imsConfig", Value.Ims_Config); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplConfigurationStockConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamStockIntegrationImplConfigurationStockConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamStockIntegrationImplConfigurationStockConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "jcrPrivilege", Value.Jcr_Privilege); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "jcrPrivilege", Value.Jcr_Privilege); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplPrivilegeDistributionRequestAInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterLocalDistributioProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterLocalDistributioProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterLocalDistributioProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterLocalDistributioProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplExporterLocalDistributioProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplExporterLocalDistributioInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterLocalDistributioProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterLocalDistributioProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterLocalDistributioProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterLocalDistributioProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplImporterLocalDistributioProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplImporterLocalDistributioInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "service.name", Value.Service_Name); Serialize (Into, "path", Value.Path); Serialize (Into, "privilege.name", Value.Privilege_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "service.name", Value.Service_Name); Deserialize (Object, "path", Value.Path); Deserialize (Object, "privilege.name", Value.Privilege_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionPackagingImplImporterRepositoryDistriInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "provider.roots", Value.Provider_Roots); Serialize (Into, "kind", Value.Kind); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "provider.roots", Value.Provider_Roots); Deserialize (Object, "kind", Value.Kind); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionResourcesImplDistributionConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionResourcesImplDistributionConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionServiceResourProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "provider.roots", Value.Provider_Roots); Serialize (Into, "kind", Value.Kind); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionServiceResourProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionServiceResourProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "provider.roots", Value.Provider_Roots); Deserialize (Object, "kind", Value.Kind); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionServiceResourProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionResourcesImplDistributionServiceResourProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionResourcesImplDistributionServiceResourInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTransportImplUserCredentialsDistributiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "username", Value.Username); Serialize (Into, "password", Value.Password); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTransportImplUserCredentialsDistributiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTransportImplUserCredentialsDistributiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "username", Value.Username); Deserialize (Object, "password", Value.Password); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTransportImplUserCredentialsDistributiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTransportImplUserCredentialsDistributiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTransportImplUserCredentialsDistributiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplDistributionEventDistributeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplDistributionEventDistributeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplDistributionEventDistributeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplDistributionEventDistributeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplDistributionEventDistributeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplDistributionEventDistributeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "path", Value.Path); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "nuggetsPath", Value.Nuggets_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "path", Value.Path); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "nuggetsPath", Value.Nuggets_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplPersistedJcrEventDistributiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "endpoint", Value.Endpoint); Serialize (Into, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "endpoint", Value.Endpoint); Deserialize (Object, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplRemoteEventDistributionTrigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplResourceEventDistributionTrInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "path", Value.Path); Serialize (Into, "seconds", Value.Seconds); Serialize (Into, "serviceName", Value.Service_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "path", Value.Path); Deserialize (Object, "seconds", Value.Seconds); Deserialize (Object, "serviceName", Value.Service_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionTriggerImplScheduledDistributionTriggeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "checkpath.prefix", Value.Checkpath_Prefix); Serialize (Into, "jcrPath", Value.Jcr_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "checkpath.prefix", Value.Checkpath_Prefix); Deserialize (Object, "jcrPath", Value.Jcr_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingJcrResourcesecurityImplResourceAccessGateFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "felix.inventory.printer.name", Value.Felix_Inventory_Printer_Name); Serialize (Into, "felix.inventory.printer.title", Value.Felix_Inventory_Printer_Title); Serialize (Into, "path", Value.Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "felix.inventory.printer.name", Value.Felix_Inventory_Printer_Name); Deserialize (Object, "felix.inventory.printer.title", Value.Felix_Inventory_Printer_Title); Deserialize (Object, "path", Value.Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingResourceInventoryImplResourceInventoryPrinterFactoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyFloat_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("optional", Value.Optional); Into.Write_Entity ("is_set", Value.Is_Set); Into.Write_Entity ("type", Value.P_Type); Serialize (Into, "value", Value.Value); Into.Write_Entity ("description", Value.Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyFloat_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyFloat_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "optional", Value.Optional); Swagger.Streams.Deserialize (Object, "is_set", Value.Is_Set); Swagger.Streams.Deserialize (Object, "type", Value.P_Type); Deserialize (Object, "value", Value.Value); Swagger.Streams.Deserialize (Object, "description", Value.Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyFloat_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyFloat_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyDropDown_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("name", Value.Name); Into.Write_Entity ("optional", Value.Optional); Into.Write_Entity ("is_set", Value.Is_Set); Serialize (Into, "type", Value.P_Type); Serialize (Into, "value", Value.Value); Into.Write_Entity ("description", Value.Description); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyDropDown_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyDropDown_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "name", Value.Name); Swagger.Streams.Deserialize (Object, "optional", Value.Optional); Swagger.Streams.Deserialize (Object, "is_set", Value.Is_Set); Deserialize (Object, "type", Value.P_Type); Deserialize (Object, "value", Value.Value); Swagger.Streams.Deserialize (Object, "description", Value.Description); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyDropDown_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyDropDown_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "showPlaceholder", Value.Show_Placeholder); Serialize (Into, "maximumCacheEntries", Value.Maximum_Cache_Entries); Serialize (Into, "af.scripting.compatversion", Value.Af_Scripting_Compatversion); Serialize (Into, "makeFileNameUnique", Value.Make_File_Name_Unique); Serialize (Into, "generatingCompliantData", Value.Generating_Compliant_Data); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "showPlaceholder", Value.Show_Placeholder); Deserialize (Object, "maximumCacheEntries", Value.Maximum_Cache_Entries); Deserialize (Object, "af.scripting.compatversion", Value.Af_Scripting_Compatversion); Deserialize (Object, "makeFileNameUnique", Value.Make_File_Name_Unique); Deserialize (Object, "generatingCompliantData", Value.Generating_Compliant_Data); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : AdaptiveFormAndInteractiveCommunicationWebChannelConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "Feed generator algorithm", Value.Feed_Generator_Algorithm); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "Feed generator algorithm", Value.Feed_Generator_Algorithm); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqCommercePimImplProductfeedProductFeedServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamMacSyncImplDAMSyncServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncImplDAMSyncServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.cq.dam.mac.sync.damsyncservice.registered_paths", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Registered_Paths); Serialize (Into, "com.adobe.cq.dam.mac.sync.damsyncservice.sync.renditions", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Sync_Renditions); Serialize (Into, "com.adobe.cq.dam.mac.sync.damsyncservice.replicate.thread.wait.ms", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Replicate_Thread_Wait_Ms); Serialize (Into, "com.adobe.cq.dam.mac.sync.damsyncservice.platform", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Platform); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqDamMacSyncImplDAMSyncServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncImplDAMSyncServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.cq.dam.mac.sync.damsyncservice.registered_paths", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Registered_Paths); Deserialize (Object, "com.adobe.cq.dam.mac.sync.damsyncservice.sync.renditions", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Sync_Renditions); Deserialize (Object, "com.adobe.cq.dam.mac.sync.damsyncservice.replicate.thread.wait.ms", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Replicate_Thread_Wait_Ms); Deserialize (Object, "com.adobe.cq.dam.mac.sync.damsyncservice.platform", Value.Com_Adobe_Cq_Dam_Mac_Sync_Damsyncservice_Platform); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqDamMacSyncImplDAMSyncServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqDamMacSyncImplDAMSyncServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.cq.screens.analytics.impl.url", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Url); Serialize (Into, "com.adobe.cq.screens.analytics.impl.apikey", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Apikey); Serialize (Into, "com.adobe.cq.screens.analytics.impl.project", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Project); Serialize (Into, "com.adobe.cq.screens.analytics.impl.environment", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Environment); Serialize (Into, "com.adobe.cq.screens.analytics.impl.sendFrequency", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Send_Frequency); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.cq.screens.analytics.impl.url", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Url); Deserialize (Object, "com.adobe.cq.screens.analytics.impl.apikey", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Apikey); Deserialize (Object, "com.adobe.cq.screens.analytics.impl.project", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Project); Deserialize (Object, "com.adobe.cq.screens.analytics.impl.environment", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Environment); Deserialize (Object, "com.adobe.cq.screens.analytics.impl.sendFrequency", Value.Com_Adobe_Cq_Screens_Analytics_Impl_Send_Frequency); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensAnalyticsImplScreensAnalyticsServiceImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensMqActivemqImplArtemisJMSProviderInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMqActivemqImplArtemisJMSProviderProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "global.size", Value.Global_Size); Serialize (Into, "max.disk.usage", Value.Max_Disk_Usage); Serialize (Into, "persistence.enabled", Value.Persistence_Enabled); Serialize (Into, "thread.pool.max.size", Value.Thread_Pool_Max_Size); Serialize (Into, "scheduled.thread.pool.max.size", Value.Scheduled_Thread_Pool_Max_Size); Serialize (Into, "graceful.shutdown.timeout", Value.Graceful_Shutdown_Timeout); Serialize (Into, "queues", Value.Queues); Serialize (Into, "topics", Value.Topics); Serialize (Into, "addresses.max.delivery.attempts", Value.Addresses_Max_Delivery_Attempts); Serialize (Into, "addresses.expiry.delay", Value.Addresses_Expiry_Delay); Serialize (Into, "addresses.address.full.message.policy", Value.Addresses_Address_Full_Message_Policy); Serialize (Into, "addresses.max.size.bytes", Value.Addresses_Max_Size_Bytes); Serialize (Into, "addresses.page.size.bytes", Value.Addresses_Page_Size_Bytes); Serialize (Into, "addresses.page.cache.max.size", Value.Addresses_Page_Cache_Max_Size); Serialize (Into, "cluster.user", Value.Cluster_User); Serialize (Into, "cluster.password", Value.Cluster_Password); Serialize (Into, "cluster.call.timeout", Value.Cluster_Call_Timeout); Serialize (Into, "cluster.call.failover.timeout", Value.Cluster_Call_Failover_Timeout); Serialize (Into, "cluster.client.failure.check.period", Value.Cluster_Client_Failure_Check_Period); Serialize (Into, "cluster.notification.attempts", Value.Cluster_Notification_Attempts); Serialize (Into, "cluster.notification.interval", Value.Cluster_Notification_Interval); Serialize (Into, "id.cache.size", Value.Id_Cache_Size); Serialize (Into, "cluster.confirmation.window.size", Value.Cluster_Confirmation_Window_Size); Serialize (Into, "cluster.connection.ttl", Value.Cluster_Connection_Ttl); Serialize (Into, "cluster.duplicate.detection", Value.Cluster_Duplicate_Detection); Serialize (Into, "cluster.initial.connect.attempts", Value.Cluster_Initial_Connect_Attempts); Serialize (Into, "cluster.max.retry.interval", Value.Cluster_Max_Retry_Interval); Serialize (Into, "cluster.min.large.message.size", Value.Cluster_Min_Large_Message_Size); Serialize (Into, "cluster.producer.window.size", Value.Cluster_Producer_Window_Size); Serialize (Into, "cluster.reconnect.attempts", Value.Cluster_Reconnect_Attempts); Serialize (Into, "cluster.retry.interval", Value.Cluster_Retry_Interval); Serialize (Into, "cluster.retry.interval.multiplier", Value.Cluster_Retry_Interval_Multiplier); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqScreensMqActivemqImplArtemisJMSProviderProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMqActivemqImplArtemisJMSProviderProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "global.size", Value.Global_Size); Deserialize (Object, "max.disk.usage", Value.Max_Disk_Usage); Deserialize (Object, "persistence.enabled", Value.Persistence_Enabled); Deserialize (Object, "thread.pool.max.size", Value.Thread_Pool_Max_Size); Deserialize (Object, "scheduled.thread.pool.max.size", Value.Scheduled_Thread_Pool_Max_Size); Deserialize (Object, "graceful.shutdown.timeout", Value.Graceful_Shutdown_Timeout); Deserialize (Object, "queues", Value.Queues); Deserialize (Object, "topics", Value.Topics); Deserialize (Object, "addresses.max.delivery.attempts", Value.Addresses_Max_Delivery_Attempts); Deserialize (Object, "addresses.expiry.delay", Value.Addresses_Expiry_Delay); Deserialize (Object, "addresses.address.full.message.policy", Value.Addresses_Address_Full_Message_Policy); Deserialize (Object, "addresses.max.size.bytes", Value.Addresses_Max_Size_Bytes); Deserialize (Object, "addresses.page.size.bytes", Value.Addresses_Page_Size_Bytes); Deserialize (Object, "addresses.page.cache.max.size", Value.Addresses_Page_Cache_Max_Size); Deserialize (Object, "cluster.user", Value.Cluster_User); Deserialize (Object, "cluster.password", Value.Cluster_Password); Deserialize (Object, "cluster.call.timeout", Value.Cluster_Call_Timeout); Deserialize (Object, "cluster.call.failover.timeout", Value.Cluster_Call_Failover_Timeout); Deserialize (Object, "cluster.client.failure.check.period", Value.Cluster_Client_Failure_Check_Period); Deserialize (Object, "cluster.notification.attempts", Value.Cluster_Notification_Attempts); Deserialize (Object, "cluster.notification.interval", Value.Cluster_Notification_Interval); Deserialize (Object, "id.cache.size", Value.Id_Cache_Size); Deserialize (Object, "cluster.confirmation.window.size", Value.Cluster_Confirmation_Window_Size); Deserialize (Object, "cluster.connection.ttl", Value.Cluster_Connection_Ttl); Deserialize (Object, "cluster.duplicate.detection", Value.Cluster_Duplicate_Detection); Deserialize (Object, "cluster.initial.connect.attempts", Value.Cluster_Initial_Connect_Attempts); Deserialize (Object, "cluster.max.retry.interval", Value.Cluster_Max_Retry_Interval); Deserialize (Object, "cluster.min.large.message.size", Value.Cluster_Min_Large_Message_Size); Deserialize (Object, "cluster.producer.window.size", Value.Cluster_Producer_Window_Size); Deserialize (Object, "cluster.reconnect.attempts", Value.Cluster_Reconnect_Attempts); Deserialize (Object, "cluster.retry.interval", Value.Cluster_Retry_Interval); Deserialize (Object, "cluster.retry.interval.multiplier", Value.Cluster_Retry_Interval_Multiplier); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqScreensMqActivemqImplArtemisJMSProviderProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqScreensMqActivemqImplArtemisJMSProviderProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "connectProtocol", Value.Connect_Protocol); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "connectProtocol", Value.Connect_Protocol); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplEmailReplyImporterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplFacebookProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplFacebookProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Serialize (Into, "oauth.cloud.config.root", Value.Oauth_Cloud_Config_Root); Serialize (Into, "provider.config.root", Value.Provider_Config_Root); Serialize (Into, "provider.config.create.tags.enabled", Value.Provider_Config_Create_Tags_Enabled); Serialize (Into, "provider.config.user.folder", Value.Provider_Config_User_Folder); Serialize (Into, "provider.config.facebook.fetch.fields", Value.Provider_Config_Facebook_Fetch_Fields); Serialize (Into, "provider.config.facebook.fields", Value.Provider_Config_Facebook_Fields); Serialize (Into, "provider.config.refresh.userdata.enabled", Value.Provider_Config_Refresh_Userdata_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplFacebookProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplFacebookProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); Deserialize (Object, "oauth.cloud.config.root", Value.Oauth_Cloud_Config_Root); Deserialize (Object, "provider.config.root", Value.Provider_Config_Root); Deserialize (Object, "provider.config.create.tags.enabled", Value.Provider_Config_Create_Tags_Enabled); Deserialize (Object, "provider.config.user.folder", Value.Provider_Config_User_Folder); Deserialize (Object, "provider.config.facebook.fetch.fields", Value.Provider_Config_Facebook_Fetch_Fields); Deserialize (Object, "provider.config.facebook.fields", Value.Provider_Config_Facebook_Fields); Deserialize (Object, "provider.config.refresh.userdata.enabled", Value.Provider_Config_Refresh_Userdata_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplFacebookProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplFacebookProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplTwitterProviderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplTwitterProviderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "oauth.provider.id", Value.Oauth_Provider_Id); Serialize (Into, "oauth.cloud.config.root", Value.Oauth_Cloud_Config_Root); Serialize (Into, "provider.config.root", Value.Provider_Config_Root); Serialize (Into, "provider.config.user.folder", Value.Provider_Config_User_Folder); Serialize (Into, "provider.config.twitter.enable.params", Value.Provider_Config_Twitter_Enable_Params); Serialize (Into, "provider.config.twitter.params", Value.Provider_Config_Twitter_Params); Serialize (Into, "provider.config.refresh.userdata.enabled", Value.Provider_Config_Refresh_Userdata_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialConnectOauthImplTwitterProviderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplTwitterProviderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "oauth.provider.id", Value.Oauth_Provider_Id); Deserialize (Object, "oauth.cloud.config.root", Value.Oauth_Cloud_Config_Root); Deserialize (Object, "provider.config.root", Value.Provider_Config_Root); Deserialize (Object, "provider.config.user.folder", Value.Provider_Config_User_Folder); Deserialize (Object, "provider.config.twitter.enable.params", Value.Provider_Config_Twitter_Enable_Params); Deserialize (Object, "provider.config.twitter.params", Value.Provider_Config_Twitter_Params); Deserialize (Object, "provider.config.refresh.userdata.enabled", Value.Provider_Config_Refresh_Userdata_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialConnectOauthImplTwitterProviderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialConnectOauthImplTwitterProviderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "translate.language", Value.Translate_Language); Serialize (Into, "translate.display", Value.Translate_Display); Serialize (Into, "translate.attribution", Value.Translate_Attribution); Serialize (Into, "translate.caching", Value.Translate_Caching); Serialize (Into, "translate.smart.rendering", Value.Translate_Smart_Rendering); Serialize (Into, "translate.caching.duration", Value.Translate_Caching_Duration); Serialize (Into, "translate.session.save.interval", Value.Translate_Session_Save_Interval); Serialize (Into, "translate.session.save.batchLimit", Value.Translate_Session_Save_Batch_Limit); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "translate.language", Value.Translate_Language); Deserialize (Object, "translate.display", Value.Translate_Display); Deserialize (Object, "translate.attribution", Value.Translate_Attribution); Deserialize (Object, "translate.caching", Value.Translate_Caching); Deserialize (Object, "translate.smart.rendering", Value.Translate_Smart_Rendering); Deserialize (Object, "translate.caching.duration", Value.Translate_Caching_Duration); Deserialize (Object, "translate.session.save.interval", Value.Translate_Session_Save_Interval); Deserialize (Object, "translate.session.save.batchLimit", Value.Translate_Session_Save_Batch_Limit); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialTranslationImplTranslationServiceConfigManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmLaunchesImplLaunchesEventHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmLaunchesImplLaunchesEventHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "launches.eventhandler.threadpool.maxsize", Value.Launches_Eventhandler_Threadpool_Maxsize); Serialize (Into, "launches.eventhandler.threadpool.priority", Value.Launches_Eventhandler_Threadpool_Priority); Serialize (Into, "launches.eventhandler.updatelastmodification", Value.Launches_Eventhandler_Updatelastmodification); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmLaunchesImplLaunchesEventHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmLaunchesImplLaunchesEventHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "launches.eventhandler.threadpool.maxsize", Value.Launches_Eventhandler_Threadpool_Maxsize); Deserialize (Object, "launches.eventhandler.threadpool.priority", Value.Launches_Eventhandler_Threadpool_Priority); Deserialize (Object, "launches.eventhandler.updatelastmodification", Value.Launches_Eventhandler_Updatelastmodification); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmLaunchesImplLaunchesEventHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmLaunchesImplLaunchesEventHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "syncTranslationState.schedulingFormat", Value.Sync_Translation_State_Scheduling_Format); Serialize (Into, "schedulingRepeatTranslation.schedulingFormat", Value.Scheduling_Repeat_Translation_Scheduling_Format); Serialize (Into, "syncTranslationState.lockTimeoutInMinutes", Value.Sync_Translation_State_Lock_Timeout_In_Minutes); Serialize (Into, "export.format", Value.Export_Format); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "syncTranslationState.schedulingFormat", Value.Sync_Translation_State_Scheduling_Format); Deserialize (Object, "schedulingRepeatTranslation.schedulingFormat", Value.Scheduling_Repeat_Translation_Scheduling_Format); Deserialize (Object, "syncTranslationState.lockTimeoutInMinutes", Value.Sync_Translation_State_Lock_Timeout_In_Minutes); Deserialize (Object, "export.format", Value.Export_Format); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqWcmTranslationImplTranslationPlatformConfigurationImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "tempStorageConfig", Value.Temp_Storage_Config); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "tempStorageConfig", Value.Temp_Storage_Config); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeFormsCommonServiceImplFormsCommonConfigurationServiceImpProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthSamlSamlAuthenticationHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSamlSamlAuthenticationHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "service.ranking", Value.Service_Ranking); Serialize (Into, "idpUrl", Value.Idp_Url); Serialize (Into, "idpCertAlias", Value.Idp_Cert_Alias); Serialize (Into, "idpHttpRedirect", Value.Idp_Http_Redirect); Serialize (Into, "serviceProviderEntityId", Value.Service_Provider_Entity_Id); Serialize (Into, "assertionConsumerServiceURL", Value.Assertion_Consumer_Service_U_R_L); Serialize (Into, "spPrivateKeyAlias", Value.Sp_Private_Key_Alias); Serialize (Into, "keyStorePassword", Value.Key_Store_Password); Serialize (Into, "defaultRedirectUrl", Value.Default_Redirect_Url); Serialize (Into, "userIDAttribute", Value.User_I_D_Attribute); Serialize (Into, "useEncryption", Value.Use_Encryption); Serialize (Into, "createUser", Value.Create_User); Serialize (Into, "userIntermediatePath", Value.User_Intermediate_Path); Serialize (Into, "addGroupMemberships", Value.Add_Group_Memberships); Serialize (Into, "groupMembershipAttribute", Value.Group_Membership_Attribute); Serialize (Into, "defaultGroups", Value.Default_Groups); Serialize (Into, "nameIdFormat", Value.Name_Id_Format); Serialize (Into, "synchronizeAttributes", Value.Synchronize_Attributes); Serialize (Into, "handleLogout", Value.Handle_Logout); Serialize (Into, "logoutUrl", Value.Logout_Url); Serialize (Into, "clockTolerance", Value.Clock_Tolerance); Serialize (Into, "digestMethod", Value.Digest_Method); Serialize (Into, "signatureMethod", Value.Signature_Method); Serialize (Into, "identitySyncType", Value.Identity_Sync_Type); Serialize (Into, "idpIdentifier", Value.Idp_Identifier); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteAuthSamlSamlAuthenticationHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSamlSamlAuthenticationHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "service.ranking", Value.Service_Ranking); Deserialize (Object, "idpUrl", Value.Idp_Url); Deserialize (Object, "idpCertAlias", Value.Idp_Cert_Alias); Deserialize (Object, "idpHttpRedirect", Value.Idp_Http_Redirect); Deserialize (Object, "serviceProviderEntityId", Value.Service_Provider_Entity_Id); Deserialize (Object, "assertionConsumerServiceURL", Value.Assertion_Consumer_Service_U_R_L); Deserialize (Object, "spPrivateKeyAlias", Value.Sp_Private_Key_Alias); Deserialize (Object, "keyStorePassword", Value.Key_Store_Password); Deserialize (Object, "defaultRedirectUrl", Value.Default_Redirect_Url); Deserialize (Object, "userIDAttribute", Value.User_I_D_Attribute); Deserialize (Object, "useEncryption", Value.Use_Encryption); Deserialize (Object, "createUser", Value.Create_User); Deserialize (Object, "userIntermediatePath", Value.User_Intermediate_Path); Deserialize (Object, "addGroupMemberships", Value.Add_Group_Memberships); Deserialize (Object, "groupMembershipAttribute", Value.Group_Membership_Attribute); Deserialize (Object, "defaultGroups", Value.Default_Groups); Deserialize (Object, "nameIdFormat", Value.Name_Id_Format); Deserialize (Object, "synchronizeAttributes", Value.Synchronize_Attributes); Deserialize (Object, "handleLogout", Value.Handle_Logout); Deserialize (Object, "logoutUrl", Value.Logout_Url); Deserialize (Object, "clockTolerance", Value.Clock_Tolerance); Deserialize (Object, "digestMethod", Value.Digest_Method); Deserialize (Object, "signatureMethod", Value.Signature_Method); Deserialize (Object, "identitySyncType", Value.Identity_Sync_Type); Deserialize (Object, "idpIdentifier", Value.Idp_Identifier); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteAuthSamlSamlAuthenticationHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteAuthSamlSamlAuthenticationHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "com.adobe.granite.jetty.ssl.port", Value.Com_Adobe_Granite_Jetty_Ssl_Port); Serialize (Into, "com.adobe.granite.jetty.ssl.keystore.user", Value.Com_Adobe_Granite_Jetty_Ssl_Keystore_User); Serialize (Into, "com.adobe.granite.jetty.ssl.keystore.password", Value.Com_Adobe_Granite_Jetty_Ssl_Keystore_Password); Serialize (Into, "com.adobe.granite.jetty.ssl.ciphersuites.excluded", Value.Com_Adobe_Granite_Jetty_Ssl_Ciphersuites_Excluded); Serialize (Into, "com.adobe.granite.jetty.ssl.ciphersuites.included", Value.Com_Adobe_Granite_Jetty_Ssl_Ciphersuites_Included); Serialize (Into, "com.adobe.granite.jetty.ssl.client.certificate", Value.Com_Adobe_Granite_Jetty_Ssl_Client_Certificate); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "com.adobe.granite.jetty.ssl.port", Value.Com_Adobe_Granite_Jetty_Ssl_Port); Deserialize (Object, "com.adobe.granite.jetty.ssl.keystore.user", Value.Com_Adobe_Granite_Jetty_Ssl_Keystore_User); Deserialize (Object, "com.adobe.granite.jetty.ssl.keystore.password", Value.Com_Adobe_Granite_Jetty_Ssl_Keystore_Password); Deserialize (Object, "com.adobe.granite.jetty.ssl.ciphersuites.excluded", Value.Com_Adobe_Granite_Jetty_Ssl_Ciphersuites_Excluded); Deserialize (Object, "com.adobe.granite.jetty.ssl.ciphersuites.included", Value.Com_Adobe_Granite_Jetty_Ssl_Ciphersuites_Included); Deserialize (Object, "com.adobe.granite.jetty.ssl.client.certificate", Value.Com_Adobe_Granite_Jetty_Ssl_Client_Certificate); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteJettySslInternalGraniteSslConnectorFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteThreaddumpThreadDumpCollectorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteThreaddumpThreadDumpCollectorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.period", Value.Scheduler_Period); Serialize (Into, "scheduler.runOn", Value.Scheduler_Run_On); Serialize (Into, "granite.threaddump.enabled", Value.Granite_Threaddump_Enabled); Serialize (Into, "granite.threaddump.dumpsPerFile", Value.Granite_Threaddump_Dumps_Per_File); Serialize (Into, "granite.threaddump.enableGzipCompression", Value.Granite_Threaddump_Enable_Gzip_Compression); Serialize (Into, "granite.threaddump.enableDirectoriesCompression", Value.Granite_Threaddump_Enable_Directories_Compression); Serialize (Into, "granite.threaddump.enableJStack", Value.Granite_Threaddump_Enable_J_Stack); Serialize (Into, "granite.threaddump.maxBackupDays", Value.Granite_Threaddump_Max_Backup_Days); Serialize (Into, "granite.threaddump.backupCleanTrigger", Value.Granite_Threaddump_Backup_Clean_Trigger); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteThreaddumpThreadDumpCollectorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteThreaddumpThreadDumpCollectorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.period", Value.Scheduler_Period); Deserialize (Object, "scheduler.runOn", Value.Scheduler_Run_On); Deserialize (Object, "granite.threaddump.enabled", Value.Granite_Threaddump_Enabled); Deserialize (Object, "granite.threaddump.dumpsPerFile", Value.Granite_Threaddump_Dumps_Per_File); Deserialize (Object, "granite.threaddump.enableGzipCompression", Value.Granite_Threaddump_Enable_Gzip_Compression); Deserialize (Object, "granite.threaddump.enableDirectoriesCompression", Value.Granite_Threaddump_Enable_Directories_Compression); Deserialize (Object, "granite.threaddump.enableJStack", Value.Granite_Threaddump_Enable_J_Stack); Deserialize (Object, "granite.threaddump.maxBackupDays", Value.Granite_Threaddump_Max_Backup_Days); Deserialize (Object, "granite.threaddump.backupCleanTrigger", Value.Granite_Threaddump_Backup_Clean_Trigger); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteThreaddumpThreadDumpCollectorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteThreaddumpThreadDumpCollectorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "granite.workflowinbox.sort.propertyName", Value.Granite_Workflowinbox_Sort_Property_Name); Serialize (Into, "granite.workflowinbox.sort.order", Value.Granite_Workflowinbox_Sort_Order); Serialize (Into, "cq.workflow.job.retry", Value.Cq_Workflow_Job_Retry); Serialize (Into, "cq.workflow.superuser", Value.Cq_Workflow_Superuser); Serialize (Into, "granite.workflow.inboxQuerySize", Value.Granite_Workflow_Inbox_Query_Size); Serialize (Into, "granite.workflow.adminUserGroupFilter", Value.Granite_Workflow_Admin_User_Group_Filter); Serialize (Into, "granite.workflow.enforceWorkitemAssigneePermissions", Value.Granite_Workflow_Enforce_Workitem_Assignee_Permissions); Serialize (Into, "granite.workflow.enforceWorkflowInitiatorPermissions", Value.Granite_Workflow_Enforce_Workflow_Initiator_Permissions); Serialize (Into, "granite.workflow.injectTenantIdInJobTopics", Value.Granite_Workflow_Inject_Tenant_Id_In_Job_Topics); Serialize (Into, "granite.workflow.maxPurgeSaveThreshold", Value.Granite_Workflow_Max_Purge_Save_Threshold); Serialize (Into, "granite.workflow.maxPurgeQueryCount", Value.Granite_Workflow_Max_Purge_Query_Count); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "granite.workflowinbox.sort.propertyName", Value.Granite_Workflowinbox_Sort_Property_Name); Deserialize (Object, "granite.workflowinbox.sort.order", Value.Granite_Workflowinbox_Sort_Order); Deserialize (Object, "cq.workflow.job.retry", Value.Cq_Workflow_Job_Retry); Deserialize (Object, "cq.workflow.superuser", Value.Cq_Workflow_Superuser); Deserialize (Object, "granite.workflow.inboxQuerySize", Value.Granite_Workflow_Inbox_Query_Size); Deserialize (Object, "granite.workflow.adminUserGroupFilter", Value.Granite_Workflow_Admin_User_Group_Filter); Deserialize (Object, "granite.workflow.enforceWorkitemAssigneePermissions", Value.Granite_Workflow_Enforce_Workitem_Assignee_Permissions); Deserialize (Object, "granite.workflow.enforceWorkflowInitiatorPermissions", Value.Granite_Workflow_Enforce_Workflow_Initiator_Permissions); Deserialize (Object, "granite.workflow.injectTenantIdInJobTopics", Value.Granite_Workflow_Inject_Tenant_Id_In_Job_Topics); Deserialize (Object, "granite.workflow.maxPurgeSaveThreshold", Value.Granite_Workflow_Max_Purge_Save_Threshold); Deserialize (Object, "granite.workflow.maxPurgeQueryCount", Value.Granite_Workflow_Max_Purge_Query_Count); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowCoreWorkflowSessionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplDamEventPurgeServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventPurgeServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduler.expression", Value.Scheduler_Expression); Serialize (Into, "maxSavedActivities", Value.Max_Saved_Activities); Serialize (Into, "saveInterval", Value.Save_Interval); Serialize (Into, "enableActivityPurge", Value.Enable_Activity_Purge); Serialize (Into, "eventTypes", Value.Event_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventPurgeServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventPurgeServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduler.expression", Value.Scheduler_Expression); Deserialize (Object, "maxSavedActivities", Value.Max_Saved_Activities); Deserialize (Object, "saveInterval", Value.Save_Interval); Deserialize (Object, "enableActivityPurge", Value.Enable_Activity_Purge); Deserialize (Object, "eventTypes", Value.Event_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventPurgeServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplDamEventPurgeServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventRecorderImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventRecorderImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventRecorderImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventRecorderImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplDamEventRecorderImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventRecorderImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "event.queue.length", Value.Event_Queue_Length); Serialize (Into, "eventrecorder.enabled", Value.Eventrecorder_Enabled); Serialize (Into, "eventrecorder.blacklist", Value.Eventrecorder_Blacklist); Serialize (Into, "eventrecorder.eventtypes", Value.Eventrecorder_Eventtypes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplDamEventRecorderImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventRecorderImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "event.queue.length", Value.Event_Queue_Length); Deserialize (Object, "eventrecorder.enabled", Value.Eventrecorder_Enabled); Deserialize (Object, "eventrecorder.blacklist", Value.Eventrecorder_Blacklist); Deserialize (Object, "eventrecorder.eventtypes", Value.Eventrecorder_Eventtypes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplDamEventRecorderImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplDamEventRecorderImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jmx.objectname", Value.Jmx_Objectname); Serialize (Into, "property.measure.enabled", Value.Property_Measure_Enabled); Serialize (Into, "property.name", Value.Property_Name); Serialize (Into, "property.max.wait.ms", Value.Property_Max_Wait_Ms); Serialize (Into, "property.max.rate", Value.Property_Max_Rate); Serialize (Into, "fulltext.measure.enabled", Value.Fulltext_Measure_Enabled); Serialize (Into, "fulltext.name", Value.Fulltext_Name); Serialize (Into, "fulltext.max.wait.ms", Value.Fulltext_Max_Wait_Ms); Serialize (Into, "fulltext.max.rate", Value.Fulltext_Max_Rate); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jmx.objectname", Value.Jmx_Objectname); Deserialize (Object, "property.measure.enabled", Value.Property_Measure_Enabled); Deserialize (Object, "property.name", Value.Property_Name); Deserialize (Object, "property.max.wait.ms", Value.Property_Max_Wait_Ms); Deserialize (Object, "property.max.rate", Value.Property_Max_Rate); Deserialize (Object, "fulltext.measure.enabled", Value.Fulltext_Measure_Enabled); Deserialize (Object, "fulltext.name", Value.Fulltext_Name); Deserialize (Object, "fulltext.max.wait.ms", Value.Fulltext_Max_Wait_Ms); Deserialize (Object, "fulltext.max.rate", Value.Fulltext_Max_Rate); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamCoreImplJmxAssetIndexUpdateMonitorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "getCacheExpirationUnit", Value.Get_Cache_Expiration_Unit); Serialize (Into, "getCacheExpirationValue", Value.Get_Cache_Expiration_Value); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "getCacheExpirationUnit", Value.Get_Cache_Expiration_Unit); Deserialize (Object, "getCacheExpirationValue", Value.Get_Cache_Expiration_Value); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqDamStockIntegrationImplCacheStockCacheConfigurationSerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "dim.default.mode", Value.Dim_Default_Mode); Serialize (Into, "dim.appcache.enabled", Value.Dim_Appcache_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "dim.default.mode", Value.Dim_Default_Mode); Deserialize (Object, "dim.appcache.enabled", Value.Dim_Appcache_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreImplDevicedetectionDeviceIdentificationModeImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreWCMRequestFilterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreWCMRequestFilterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreWCMRequestFilterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreWCMRequestFilterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreWCMRequestFilterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreWCMRequestFilterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "wcmfilter.mode", Value.Wcmfilter_Mode); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmCoreWCMRequestFilterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreWCMRequestFilterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "wcmfilter.mode", Value.Wcmfilter_Mode); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmCoreWCMRequestFilterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmCoreWCMRequestFilterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsContentCopyActionFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentCopyActionFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Serialize (Into, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Serialize (Into, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Serialize (Into, "contentcopyaction.order.style", Value.Contentcopyaction_Order_Style); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplActionsContentCopyActionFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentCopyActionFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "cq.wcm.msm.action.excludednodetypes", Value.Cq_Wcm_Msm_Action_Excludednodetypes); Deserialize (Object, "cq.wcm.msm.action.excludedparagraphitems", Value.Cq_Wcm_Msm_Action_Excludedparagraphitems); Deserialize (Object, "cq.wcm.msm.action.excludedprops", Value.Cq_Wcm_Msm_Action_Excludedprops); Deserialize (Object, "contentcopyaction.order.style", Value.Contentcopyaction_Order_Style); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplActionsContentCopyActionFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplActionsContentCopyActionFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplRolloutManagerImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("additionalProperties", Value.Additional_Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplRolloutManagerImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplRolloutManagerImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "additionalProperties", Value.Additional_Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplRolloutManagerImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplRolloutManagerImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplRolloutManagerImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "event.filter", Value.Event_Filter); Serialize (Into, "rolloutmgr.excludedprops.default", Value.Rolloutmgr_Excludedprops_Default); Serialize (Into, "rolloutmgr.excludedparagraphprops.default", Value.Rolloutmgr_Excludedparagraphprops_Default); Serialize (Into, "rolloutmgr.excludednodetypes.default", Value.Rolloutmgr_Excludednodetypes_Default); Serialize (Into, "rolloutmgr.threadpool.maxsize", Value.Rolloutmgr_Threadpool_Maxsize); Serialize (Into, "rolloutmgr.threadpool.maxshutdowntime", Value.Rolloutmgr_Threadpool_Maxshutdowntime); Serialize (Into, "rolloutmgr.threadpool.priority", Value.Rolloutmgr_Threadpool_Priority); Serialize (Into, "rolloutmgr.commit.size", Value.Rolloutmgr_Commit_Size); Serialize (Into, "rolloutmgr.conflicthandling.enabled", Value.Rolloutmgr_Conflicthandling_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCqWcmMsmImplRolloutManagerImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplRolloutManagerImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "event.filter", Value.Event_Filter); Deserialize (Object, "rolloutmgr.excludedprops.default", Value.Rolloutmgr_Excludedprops_Default); Deserialize (Object, "rolloutmgr.excludedparagraphprops.default", Value.Rolloutmgr_Excludedparagraphprops_Default); Deserialize (Object, "rolloutmgr.excludednodetypes.default", Value.Rolloutmgr_Excludednodetypes_Default); Deserialize (Object, "rolloutmgr.threadpool.maxsize", Value.Rolloutmgr_Threadpool_Maxsize); Deserialize (Object, "rolloutmgr.threadpool.maxshutdowntime", Value.Rolloutmgr_Threadpool_Maxshutdowntime); Deserialize (Object, "rolloutmgr.threadpool.priority", Value.Rolloutmgr_Threadpool_Priority); Deserialize (Object, "rolloutmgr.commit.size", Value.Rolloutmgr_Commit_Size); Deserialize (Object, "rolloutmgr.conflicthandling.enabled", Value.Rolloutmgr_Conflicthandling_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCqWcmMsmImplRolloutManagerImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCqWcmMsmImplRolloutManagerImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path", Value.Path); Serialize (Into, "token.required.attr", Value.Token_Required_Attr); Serialize (Into, "token.alternate.url", Value.Token_Alternate_Url); Serialize (Into, "token.encapsulated", Value.Token_Encapsulated); Serialize (Into, "skip.token.refresh", Value.Skip_Token_Refresh); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path", Value.Path); Deserialize (Object, "token.required.attr", Value.Token_Required_Attr); Deserialize (Object, "token.alternate.url", Value.Token_Alternate_Url); Deserialize (Object, "token.encapsulated", Value.Token_Encapsulated); Deserialize (Object, "skip.token.refresh", Value.Skip_Token_Refresh); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComDayCrxSecurityTokenImplImplTokenAuthenticationHandlerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixEventadminImplEventAdminInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixEventadminImplEventAdminInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixEventadminImplEventAdminInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixEventadminImplEventAdminInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixEventadminImplEventAdminInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixEventadminImplEventAdminProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.felix.eventadmin.ThreadPoolSize", Value.Org_Apache_Felix_Eventadmin_Thread_Pool_Size); Serialize (Into, "org.apache.felix.eventadmin.AsyncToSyncThreadRatio", Value.Org_Apache_Felix_Eventadmin_Async_To_Sync_Thread_Ratio); Serialize (Into, "org.apache.felix.eventadmin.Timeout", Value.Org_Apache_Felix_Eventadmin_Timeout); Serialize (Into, "org.apache.felix.eventadmin.RequireTopic", Value.Org_Apache_Felix_Eventadmin_Require_Topic); Serialize (Into, "org.apache.felix.eventadmin.IgnoreTimeout", Value.Org_Apache_Felix_Eventadmin_Ignore_Timeout); Serialize (Into, "org.apache.felix.eventadmin.IgnoreTopic", Value.Org_Apache_Felix_Eventadmin_Ignore_Topic); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixEventadminImplEventAdminProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixEventadminImplEventAdminProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.felix.eventadmin.ThreadPoolSize", Value.Org_Apache_Felix_Eventadmin_Thread_Pool_Size); Deserialize (Object, "org.apache.felix.eventadmin.AsyncToSyncThreadRatio", Value.Org_Apache_Felix_Eventadmin_Async_To_Sync_Thread_Ratio); Deserialize (Object, "org.apache.felix.eventadmin.Timeout", Value.Org_Apache_Felix_Eventadmin_Timeout); Deserialize (Object, "org.apache.felix.eventadmin.RequireTopic", Value.Org_Apache_Felix_Eventadmin_Require_Topic); Deserialize (Object, "org.apache.felix.eventadmin.IgnoreTimeout", Value.Org_Apache_Felix_Eventadmin_Ignore_Timeout); Deserialize (Object, "org.apache.felix.eventadmin.IgnoreTopic", Value.Org_Apache_Felix_Eventadmin_Ignore_Topic); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixEventadminImplEventAdminProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixEventadminImplEventAdminProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixHttpInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.felix.http.host", Value.Org_Apache_Felix_Http_Host); Serialize (Into, "org.apache.felix.http.enable", Value.Org_Apache_Felix_Http_Enable); Serialize (Into, "org.osgi.service.http.port", Value.Org_Osgi_Service_Http_Port); Serialize (Into, "org.apache.felix.http.timeout", Value.Org_Apache_Felix_Http_Timeout); Serialize (Into, "org.apache.felix.https.enable", Value.Org_Apache_Felix_Https_Enable); Serialize (Into, "org.osgi.service.http.port.secure", Value.Org_Osgi_Service_Http_Port_Secure); Serialize (Into, "org.apache.felix.https.keystore", Value.Org_Apache_Felix_Https_Keystore); Serialize (Into, "org.apache.felix.https.keystore.password", Value.Org_Apache_Felix_Https_Keystore_Password); Serialize (Into, "org.apache.felix.https.keystore.key.password", Value.Org_Apache_Felix_Https_Keystore_Key_Password); Serialize (Into, "org.apache.felix.https.truststore", Value.Org_Apache_Felix_Https_Truststore); Serialize (Into, "org.apache.felix.https.truststore.password", Value.Org_Apache_Felix_Https_Truststore_Password); Serialize (Into, "org.apache.felix.https.clientcertificate", Value.Org_Apache_Felix_Https_Clientcertificate); Serialize (Into, "org.apache.felix.http.context_path", Value.Org_Apache_Felix_Http_Context_Path); Serialize (Into, "org.apache.felix.http.mbeans", Value.Org_Apache_Felix_Http_Mbeans); Serialize (Into, "org.apache.felix.http.session.timeout", Value.Org_Apache_Felix_Http_Session_Timeout); Serialize (Into, "org.apache.felix.http.jetty.threadpool.max", Value.Org_Apache_Felix_Http_Jetty_Threadpool_Max); Serialize (Into, "org.apache.felix.http.jetty.acceptors", Value.Org_Apache_Felix_Http_Jetty_Acceptors); Serialize (Into, "org.apache.felix.http.jetty.selectors", Value.Org_Apache_Felix_Http_Jetty_Selectors); Serialize (Into, "org.apache.felix.http.jetty.headerBufferSize", Value.Org_Apache_Felix_Http_Jetty_Header_Buffer_Size); Serialize (Into, "org.apache.felix.http.jetty.requestBufferSize", Value.Org_Apache_Felix_Http_Jetty_Request_Buffer_Size); Serialize (Into, "org.apache.felix.http.jetty.responseBufferSize", Value.Org_Apache_Felix_Http_Jetty_Response_Buffer_Size); Serialize (Into, "org.apache.felix.http.jetty.maxFormSize", Value.Org_Apache_Felix_Http_Jetty_Max_Form_Size); Serialize (Into, "org.apache.felix.http.path_exclusions", Value.Org_Apache_Felix_Http_Path_Exclusions); Serialize (Into, "org.apache.felix.https.jetty.ciphersuites.excluded", Value.Org_Apache_Felix_Https_Jetty_Ciphersuites_Excluded); Serialize (Into, "org.apache.felix.https.jetty.ciphersuites.included", Value.Org_Apache_Felix_Https_Jetty_Ciphersuites_Included); Serialize (Into, "org.apache.felix.http.jetty.sendServerHeader", Value.Org_Apache_Felix_Http_Jetty_Send_Server_Header); Serialize (Into, "org.apache.felix.https.jetty.protocols.included", Value.Org_Apache_Felix_Https_Jetty_Protocols_Included); Serialize (Into, "org.apache.felix.https.jetty.protocols.excluded", Value.Org_Apache_Felix_Https_Jetty_Protocols_Excluded); Serialize (Into, "org.apache.felix.proxy.load.balancer.connection.enable", Value.Org_Apache_Felix_Proxy_Load_Balancer_Connection_Enable); Serialize (Into, "org.apache.felix.https.jetty.renegotiateAllowed", Value.Org_Apache_Felix_Https_Jetty_Renegotiate_Allowed); Serialize (Into, "org.apache.felix.https.jetty.session.cookie.httpOnly", Value.Org_Apache_Felix_Https_Jetty_Session_Cookie_Http_Only); Serialize (Into, "org.apache.felix.https.jetty.session.cookie.secure", Value.Org_Apache_Felix_Https_Jetty_Session_Cookie_Secure); Serialize (Into, "org.eclipse.jetty.servlet.SessionIdPathParameterName", Value.Org_Eclipse_Jetty_Servlet_Session_Id_Path_Parameter_Name); Serialize (Into, "org.eclipse.jetty.servlet.CheckingRemoteSessionIdEncoding", Value.Org_Eclipse_Jetty_Servlet_Checking_Remote_Session_Id_Encoding); Serialize (Into, "org.eclipse.jetty.servlet.SessionCookie", Value.Org_Eclipse_Jetty_Servlet_Session_Cookie); Serialize (Into, "org.eclipse.jetty.servlet.SessionDomain", Value.Org_Eclipse_Jetty_Servlet_Session_Domain); Serialize (Into, "org.eclipse.jetty.servlet.SessionPath", Value.Org_Eclipse_Jetty_Servlet_Session_Path); Serialize (Into, "org.eclipse.jetty.servlet.MaxAge", Value.Org_Eclipse_Jetty_Servlet_Max_Age); Serialize (Into, "org.apache.felix.http.name", Value.Org_Apache_Felix_Http_Name); Serialize (Into, "org.apache.felix.jetty.gziphandler.enable", Value.Org_Apache_Felix_Jetty_Gziphandler_Enable); Serialize (Into, "org.apache.felix.jetty.gzip.minGzipSize", Value.Org_Apache_Felix_Jetty_Gzip_Min_Gzip_Size); Serialize (Into, "org.apache.felix.jetty.gzip.compressionLevel", Value.Org_Apache_Felix_Jetty_Gzip_Compression_Level); Serialize (Into, "org.apache.felix.jetty.gzip.inflateBufferSize", Value.Org_Apache_Felix_Jetty_Gzip_Inflate_Buffer_Size); Serialize (Into, "org.apache.felix.jetty.gzip.syncFlush", Value.Org_Apache_Felix_Jetty_Gzip_Sync_Flush); Serialize (Into, "org.apache.felix.jetty.gzip.excludedUserAgents", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_User_Agents); Serialize (Into, "org.apache.felix.jetty.gzip.includedMethods", Value.Org_Apache_Felix_Jetty_Gzip_Included_Methods); Serialize (Into, "org.apache.felix.jetty.gzip.excludedMethods", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_Methods); Serialize (Into, "org.apache.felix.jetty.gzip.includedPaths", Value.Org_Apache_Felix_Jetty_Gzip_Included_Paths); Serialize (Into, "org.apache.felix.jetty.gzip.excludedPaths", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_Paths); Serialize (Into, "org.apache.felix.jetty.gzip.includedMimeTypes", Value.Org_Apache_Felix_Jetty_Gzip_Included_Mime_Types); Serialize (Into, "org.apache.felix.jetty.gzip.excludedMimeTypes", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_Mime_Types); Serialize (Into, "org.apache.felix.http.session.invalidate", Value.Org_Apache_Felix_Http_Session_Invalidate); Serialize (Into, "org.apache.felix.http.session.uniqueid", Value.Org_Apache_Felix_Http_Session_Uniqueid); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixHttpProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.felix.http.host", Value.Org_Apache_Felix_Http_Host); Deserialize (Object, "org.apache.felix.http.enable", Value.Org_Apache_Felix_Http_Enable); Deserialize (Object, "org.osgi.service.http.port", Value.Org_Osgi_Service_Http_Port); Deserialize (Object, "org.apache.felix.http.timeout", Value.Org_Apache_Felix_Http_Timeout); Deserialize (Object, "org.apache.felix.https.enable", Value.Org_Apache_Felix_Https_Enable); Deserialize (Object, "org.osgi.service.http.port.secure", Value.Org_Osgi_Service_Http_Port_Secure); Deserialize (Object, "org.apache.felix.https.keystore", Value.Org_Apache_Felix_Https_Keystore); Deserialize (Object, "org.apache.felix.https.keystore.password", Value.Org_Apache_Felix_Https_Keystore_Password); Deserialize (Object, "org.apache.felix.https.keystore.key.password", Value.Org_Apache_Felix_Https_Keystore_Key_Password); Deserialize (Object, "org.apache.felix.https.truststore", Value.Org_Apache_Felix_Https_Truststore); Deserialize (Object, "org.apache.felix.https.truststore.password", Value.Org_Apache_Felix_Https_Truststore_Password); Deserialize (Object, "org.apache.felix.https.clientcertificate", Value.Org_Apache_Felix_Https_Clientcertificate); Deserialize (Object, "org.apache.felix.http.context_path", Value.Org_Apache_Felix_Http_Context_Path); Deserialize (Object, "org.apache.felix.http.mbeans", Value.Org_Apache_Felix_Http_Mbeans); Deserialize (Object, "org.apache.felix.http.session.timeout", Value.Org_Apache_Felix_Http_Session_Timeout); Deserialize (Object, "org.apache.felix.http.jetty.threadpool.max", Value.Org_Apache_Felix_Http_Jetty_Threadpool_Max); Deserialize (Object, "org.apache.felix.http.jetty.acceptors", Value.Org_Apache_Felix_Http_Jetty_Acceptors); Deserialize (Object, "org.apache.felix.http.jetty.selectors", Value.Org_Apache_Felix_Http_Jetty_Selectors); Deserialize (Object, "org.apache.felix.http.jetty.headerBufferSize", Value.Org_Apache_Felix_Http_Jetty_Header_Buffer_Size); Deserialize (Object, "org.apache.felix.http.jetty.requestBufferSize", Value.Org_Apache_Felix_Http_Jetty_Request_Buffer_Size); Deserialize (Object, "org.apache.felix.http.jetty.responseBufferSize", Value.Org_Apache_Felix_Http_Jetty_Response_Buffer_Size); Deserialize (Object, "org.apache.felix.http.jetty.maxFormSize", Value.Org_Apache_Felix_Http_Jetty_Max_Form_Size); Deserialize (Object, "org.apache.felix.http.path_exclusions", Value.Org_Apache_Felix_Http_Path_Exclusions); Deserialize (Object, "org.apache.felix.https.jetty.ciphersuites.excluded", Value.Org_Apache_Felix_Https_Jetty_Ciphersuites_Excluded); Deserialize (Object, "org.apache.felix.https.jetty.ciphersuites.included", Value.Org_Apache_Felix_Https_Jetty_Ciphersuites_Included); Deserialize (Object, "org.apache.felix.http.jetty.sendServerHeader", Value.Org_Apache_Felix_Http_Jetty_Send_Server_Header); Deserialize (Object, "org.apache.felix.https.jetty.protocols.included", Value.Org_Apache_Felix_Https_Jetty_Protocols_Included); Deserialize (Object, "org.apache.felix.https.jetty.protocols.excluded", Value.Org_Apache_Felix_Https_Jetty_Protocols_Excluded); Deserialize (Object, "org.apache.felix.proxy.load.balancer.connection.enable", Value.Org_Apache_Felix_Proxy_Load_Balancer_Connection_Enable); Deserialize (Object, "org.apache.felix.https.jetty.renegotiateAllowed", Value.Org_Apache_Felix_Https_Jetty_Renegotiate_Allowed); Deserialize (Object, "org.apache.felix.https.jetty.session.cookie.httpOnly", Value.Org_Apache_Felix_Https_Jetty_Session_Cookie_Http_Only); Deserialize (Object, "org.apache.felix.https.jetty.session.cookie.secure", Value.Org_Apache_Felix_Https_Jetty_Session_Cookie_Secure); Deserialize (Object, "org.eclipse.jetty.servlet.SessionIdPathParameterName", Value.Org_Eclipse_Jetty_Servlet_Session_Id_Path_Parameter_Name); Deserialize (Object, "org.eclipse.jetty.servlet.CheckingRemoteSessionIdEncoding", Value.Org_Eclipse_Jetty_Servlet_Checking_Remote_Session_Id_Encoding); Deserialize (Object, "org.eclipse.jetty.servlet.SessionCookie", Value.Org_Eclipse_Jetty_Servlet_Session_Cookie); Deserialize (Object, "org.eclipse.jetty.servlet.SessionDomain", Value.Org_Eclipse_Jetty_Servlet_Session_Domain); Deserialize (Object, "org.eclipse.jetty.servlet.SessionPath", Value.Org_Eclipse_Jetty_Servlet_Session_Path); Deserialize (Object, "org.eclipse.jetty.servlet.MaxAge", Value.Org_Eclipse_Jetty_Servlet_Max_Age); Deserialize (Object, "org.apache.felix.http.name", Value.Org_Apache_Felix_Http_Name); Deserialize (Object, "org.apache.felix.jetty.gziphandler.enable", Value.Org_Apache_Felix_Jetty_Gziphandler_Enable); Deserialize (Object, "org.apache.felix.jetty.gzip.minGzipSize", Value.Org_Apache_Felix_Jetty_Gzip_Min_Gzip_Size); Deserialize (Object, "org.apache.felix.jetty.gzip.compressionLevel", Value.Org_Apache_Felix_Jetty_Gzip_Compression_Level); Deserialize (Object, "org.apache.felix.jetty.gzip.inflateBufferSize", Value.Org_Apache_Felix_Jetty_Gzip_Inflate_Buffer_Size); Deserialize (Object, "org.apache.felix.jetty.gzip.syncFlush", Value.Org_Apache_Felix_Jetty_Gzip_Sync_Flush); Deserialize (Object, "org.apache.felix.jetty.gzip.excludedUserAgents", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_User_Agents); Deserialize (Object, "org.apache.felix.jetty.gzip.includedMethods", Value.Org_Apache_Felix_Jetty_Gzip_Included_Methods); Deserialize (Object, "org.apache.felix.jetty.gzip.excludedMethods", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_Methods); Deserialize (Object, "org.apache.felix.jetty.gzip.includedPaths", Value.Org_Apache_Felix_Jetty_Gzip_Included_Paths); Deserialize (Object, "org.apache.felix.jetty.gzip.excludedPaths", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_Paths); Deserialize (Object, "org.apache.felix.jetty.gzip.includedMimeTypes", Value.Org_Apache_Felix_Jetty_Gzip_Included_Mime_Types); Deserialize (Object, "org.apache.felix.jetty.gzip.excludedMimeTypes", Value.Org_Apache_Felix_Jetty_Gzip_Excluded_Mime_Types); Deserialize (Object, "org.apache.felix.http.session.invalidate", Value.Org_Apache_Felix_Http_Session_Invalidate); Deserialize (Object, "org.apache.felix.http.session.uniqueid", Value.Org_Apache_Felix_Http_Session_Uniqueid); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixHttpProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixHttpProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationSpiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationSpiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationSpiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationSpiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixJaasConfigurationSpiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationSpiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jaas.defaultRealmName", Value.Jaas_Default_Realm_Name); Serialize (Into, "jaas.configProviderName", Value.Jaas_Config_Provider_Name); Serialize (Into, "jaas.globalConfigPolicy", Value.Jaas_Global_Config_Policy); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationSpiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationSpiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jaas.defaultRealmName", Value.Jaas_Default_Realm_Name); Deserialize (Object, "jaas.configProviderName", Value.Jaas_Config_Provider_Name); Deserialize (Object, "jaas.globalConfigPolicy", Value.Jaas_Global_Config_Policy); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationSpiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixJaasConfigurationSpiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixScrScrServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixScrScrServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixScrScrServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixScrScrServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixScrScrServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixScrScrServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "ds.loglevel", Value.Ds_Loglevel); Serialize (Into, "ds.factory.enabled", Value.Ds_Factory_Enabled); Serialize (Into, "ds.delayed.keepInstances", Value.Ds_Delayed_Keep_Instances); Serialize (Into, "ds.lock.timeout.milliseconds", Value.Ds_Lock_Timeout_Milliseconds); Serialize (Into, "ds.stop.timeout.milliseconds", Value.Ds_Stop_Timeout_Milliseconds); Serialize (Into, "ds.global.extender", Value.Ds_Global_Extender); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixScrScrServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixScrScrServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "ds.loglevel", Value.Ds_Loglevel); Deserialize (Object, "ds.factory.enabled", Value.Ds_Factory_Enabled); Deserialize (Object, "ds.delayed.keepInstances", Value.Ds_Delayed_Keep_Instances); Deserialize (Object, "ds.lock.timeout.milliseconds", Value.Ds_Lock_Timeout_Milliseconds); Deserialize (Object, "ds.stop.timeout.milliseconds", Value.Ds_Stop_Timeout_Milliseconds); Deserialize (Object, "ds.global.extender", Value.Ds_Global_Extender); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixScrScrServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixScrScrServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplComponentsCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplComponentsCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "components.list", Value.Components_List); Serialize (Into, "type", Value.P_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplComponentsCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplComponentsCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "components.list", Value.Components_List); Deserialize (Object, "type", Value.P_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplComponentsCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplComponentsCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplFrameworkStartCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplFrameworkStartCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "timeout", Value.Timeout); Serialize (Into, "target.start.level", Value.Target_Start_Level); Serialize (Into, "target.start.level.prop.name", Value.Target_Start_Level_Prop_Name); Serialize (Into, "type", Value.P_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplFrameworkStartCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplFrameworkStartCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "timeout", Value.Timeout); Deserialize (Object, "target.start.level", Value.Target_Start_Level); Deserialize (Object, "target.start.level.prop.name", Value.Target_Start_Level_Prop_Name); Deserialize (Object, "type", Value.P_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplFrameworkStartCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplFrameworkStartCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServicesCheckInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServicesCheckInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServicesCheckInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServicesCheckInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplServicesCheckInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServicesCheckProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "services.list", Value.Services_List); Serialize (Into, "type", Value.P_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixSystemreadyImplServicesCheckProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServicesCheckProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "services.list", Value.Services_List); Deserialize (Object, "type", Value.P_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixSystemreadyImplServicesCheckProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixSystemreadyImplServicesCheckProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixWebconsoleInternalServletOsgiManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsoleInternalServletOsgiManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "manager.root", Value.Manager_Root); Serialize (Into, "http.service.filter", Value.Http_Service_Filter); Serialize (Into, "default.render", Value.Default_Render); Serialize (Into, "realm", Value.Realm); Serialize (Into, "username", Value.Username); Serialize (Into, "password", Value.Password); Serialize (Into, "category", Value.Category); Serialize (Into, "locale", Value.Locale); Serialize (Into, "loglevel", Value.Loglevel); Serialize (Into, "plugins", Value.Plugins); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixWebconsoleInternalServletOsgiManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsoleInternalServletOsgiManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "manager.root", Value.Manager_Root); Deserialize (Object, "http.service.filter", Value.Http_Service_Filter); Deserialize (Object, "default.render", Value.Default_Render); Deserialize (Object, "realm", Value.Realm); Deserialize (Object, "username", Value.Username); Deserialize (Object, "password", Value.Password); Deserialize (Object, "category", Value.Category); Deserialize (Object, "locale", Value.Locale); Deserialize (Object, "loglevel", Value.Loglevel); Deserialize (Object, "plugins", Value.Plugins); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixWebconsoleInternalServletOsgiManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixWebconsoleInternalServletOsgiManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "mongouri", Value.Mongouri); Serialize (Into, "db", Value.Db); Serialize (Into, "socketKeepAlive", Value.Socket_Keep_Alive); Serialize (Into, "cache", Value.Cache); Serialize (Into, "nodeCachePercentage", Value.Node_Cache_Percentage); Serialize (Into, "prevDocCachePercentage", Value.Prev_Doc_Cache_Percentage); Serialize (Into, "childrenCachePercentage", Value.Children_Cache_Percentage); Serialize (Into, "diffCachePercentage", Value.Diff_Cache_Percentage); Serialize (Into, "cacheSegmentCount", Value.Cache_Segment_Count); Serialize (Into, "cacheStackMoveDistance", Value.Cache_Stack_Move_Distance); Serialize (Into, "blobCacheSize", Value.Blob_Cache_Size); Serialize (Into, "persistentCache", Value.Persistent_Cache); Serialize (Into, "journalCache", Value.Journal_Cache); Serialize (Into, "customBlobStore", Value.Custom_Blob_Store); Serialize (Into, "journalGCInterval", Value.Journal_G_C_Interval); Serialize (Into, "journalGCMaxAge", Value.Journal_G_C_Max_Age); Serialize (Into, "prefetchExternalChanges", Value.Prefetch_External_Changes); Serialize (Into, "role", Value.Role); Serialize (Into, "versionGcMaxAgeInSecs", Value.Version_Gc_Max_Age_In_Secs); Serialize (Into, "versionGCExpression", Value.Version_G_C_Expression); Serialize (Into, "versionGCTimeLimitInSecs", Value.Version_G_C_Time_Limit_In_Secs); Serialize (Into, "blobGcMaxAgeInSecs", Value.Blob_Gc_Max_Age_In_Secs); Serialize (Into, "blobTrackSnapshotIntervalInSecs", Value.Blob_Track_Snapshot_Interval_In_Secs); Serialize (Into, "repository.home", Value.Repository_Home); Serialize (Into, "maxReplicationLagInSecs", Value.Max_Replication_Lag_In_Secs); Serialize (Into, "documentStoreType", Value.Document_Store_Type); Serialize (Into, "bundlingDisabled", Value.Bundling_Disabled); Serialize (Into, "updateLimit", Value.Update_Limit); Serialize (Into, "persistentCacheIncludes", Value.Persistent_Cache_Includes); Serialize (Into, "leaseCheckMode", Value.Lease_Check_Mode); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "mongouri", Value.Mongouri); Deserialize (Object, "db", Value.Db); Deserialize (Object, "socketKeepAlive", Value.Socket_Keep_Alive); Deserialize (Object, "cache", Value.Cache); Deserialize (Object, "nodeCachePercentage", Value.Node_Cache_Percentage); Deserialize (Object, "prevDocCachePercentage", Value.Prev_Doc_Cache_Percentage); Deserialize (Object, "childrenCachePercentage", Value.Children_Cache_Percentage); Deserialize (Object, "diffCachePercentage", Value.Diff_Cache_Percentage); Deserialize (Object, "cacheSegmentCount", Value.Cache_Segment_Count); Deserialize (Object, "cacheStackMoveDistance", Value.Cache_Stack_Move_Distance); Deserialize (Object, "blobCacheSize", Value.Blob_Cache_Size); Deserialize (Object, "persistentCache", Value.Persistent_Cache); Deserialize (Object, "journalCache", Value.Journal_Cache); Deserialize (Object, "customBlobStore", Value.Custom_Blob_Store); Deserialize (Object, "journalGCInterval", Value.Journal_G_C_Interval); Deserialize (Object, "journalGCMaxAge", Value.Journal_G_C_Max_Age); Deserialize (Object, "prefetchExternalChanges", Value.Prefetch_External_Changes); Deserialize (Object, "role", Value.Role); Deserialize (Object, "versionGcMaxAgeInSecs", Value.Version_Gc_Max_Age_In_Secs); Deserialize (Object, "versionGCExpression", Value.Version_G_C_Expression); Deserialize (Object, "versionGCTimeLimitInSecs", Value.Version_G_C_Time_Limit_In_Secs); Deserialize (Object, "blobGcMaxAgeInSecs", Value.Blob_Gc_Max_Age_In_Secs); Deserialize (Object, "blobTrackSnapshotIntervalInSecs", Value.Blob_Track_Snapshot_Interval_In_Secs); Deserialize (Object, "repository.home", Value.Repository_Home); Deserialize (Object, "maxReplicationLagInSecs", Value.Max_Replication_Lag_In_Secs); Deserialize (Object, "documentStoreType", Value.Document_Store_Type); Deserialize (Object, "bundlingDisabled", Value.Bundling_Disabled); Deserialize (Object, "updateLimit", Value.Update_Limit); Deserialize (Object, "persistentCacheIncludes", Value.Persistent_Cache_Includes); Deserialize (Object, "leaseCheckMode", Value.Lease_Check_Mode); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsDocumentDocumentNodeStoreServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "path.desc.field", Value.Path_Desc_Field); Serialize (Into, "path.child.field", Value.Path_Child_Field); Serialize (Into, "path.parent.field", Value.Path_Parent_Field); Serialize (Into, "path.exact.field", Value.Path_Exact_Field); Serialize (Into, "catch.all.field", Value.Catch_All_Field); Serialize (Into, "collapsed.path.field", Value.Collapsed_Path_Field); Serialize (Into, "path.depth.field", Value.Path_Depth_Field); Serialize (Into, "commit.policy", Value.Commit_Policy); Serialize (Into, "rows", Value.Rows); Serialize (Into, "path.restrictions", Value.Path_Restrictions); Serialize (Into, "property.restrictions", Value.Property_Restrictions); Serialize (Into, "primarytypes.restrictions", Value.Primarytypes_Restrictions); Serialize (Into, "ignored.properties", Value.Ignored_Properties); Serialize (Into, "used.properties", Value.Used_Properties); Serialize (Into, "type.mappings", Value.Type_Mappings); Serialize (Into, "property.mappings", Value.Property_Mappings); Serialize (Into, "collapse.jcrcontent.nodes", Value.Collapse_Jcrcontent_Nodes); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "path.desc.field", Value.Path_Desc_Field); Deserialize (Object, "path.child.field", Value.Path_Child_Field); Deserialize (Object, "path.parent.field", Value.Path_Parent_Field); Deserialize (Object, "path.exact.field", Value.Path_Exact_Field); Deserialize (Object, "catch.all.field", Value.Catch_All_Field); Deserialize (Object, "collapsed.path.field", Value.Collapsed_Path_Field); Deserialize (Object, "path.depth.field", Value.Path_Depth_Field); Deserialize (Object, "commit.policy", Value.Commit_Policy); Deserialize (Object, "rows", Value.Rows); Deserialize (Object, "path.restrictions", Value.Path_Restrictions); Deserialize (Object, "property.restrictions", Value.Property_Restrictions); Deserialize (Object, "primarytypes.restrictions", Value.Primarytypes_Restrictions); Deserialize (Object, "ignored.properties", Value.Ignored_Properties); Deserialize (Object, "used.properties", Value.Used_Properties); Deserialize (Object, "type.mappings", Value.Type_Mappings); Deserialize (Object, "property.mappings", Value.Property_Mappings); Deserialize (Object, "collapse.jcrcontent.nodes", Value.Collapse_Jcrcontent_Nodes); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiOakSolrConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "server.type", Value.Server_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "server.type", Value.Server_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsIndexSolrOsgiSolrServerProviderSeProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "providerType", Value.Provider_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "providerType", Value.Provider_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakPluginsMetricStatisticsProviderFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "permissionsJr2", Value.Permissions_Jr2); Serialize (Into, "importBehavior", Value.Import_Behavior); Serialize (Into, "readPaths", Value.Read_Paths); Serialize (Into, "administrativePrincipals", Value.Administrative_Principals); Serialize (Into, "configurationRanking", Value.Configuration_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "permissionsJr2", Value.Permissions_Jr2); Deserialize (Object, "importBehavior", Value.Import_Behavior); Deserialize (Object, "readPaths", Value.Read_Paths); Deserialize (Object, "administrativePrincipals", Value.Administrative_Principals); Deserialize (Object, "configurationRanking", Value.Configuration_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityAuthorizationAuthorizationConfigurProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "requiredServicePids", Value.Required_Service_Pids); Serialize (Into, "authorizationCompositionType", Value.Authorization_Composition_Type); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "requiredServicePids", Value.Required_Service_Pids); Deserialize (Object, "authorizationCompositionType", Value.Authorization_Composition_Type); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityInternalSecurityProviderRegistratiProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityUserUserConfigurationImplInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserUserConfigurationImplProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "usersPath", Value.Users_Path); Serialize (Into, "groupsPath", Value.Groups_Path); Serialize (Into, "systemRelativePath", Value.System_Relative_Path); Serialize (Into, "defaultDepth", Value.Default_Depth); Serialize (Into, "importBehavior", Value.Import_Behavior); Serialize (Into, "passwordHashAlgorithm", Value.Password_Hash_Algorithm); Serialize (Into, "passwordHashIterations", Value.Password_Hash_Iterations); Serialize (Into, "passwordSaltSize", Value.Password_Salt_Size); Serialize (Into, "omitAdminPw", Value.Omit_Admin_Pw); Serialize (Into, "supportAutoSave", Value.Support_Auto_Save); Serialize (Into, "passwordMaxAge", Value.Password_Max_Age); Serialize (Into, "initialPasswordChange", Value.Initial_Password_Change); Serialize (Into, "passwordHistorySize", Value.Password_History_Size); Serialize (Into, "passwordExpiryForAdmin", Value.Password_Expiry_For_Admin); Serialize (Into, "cacheExpiration", Value.Cache_Expiration); Serialize (Into, "enableRFC7613UsercaseMappedProfile", Value.Enable_R_F_C7613_Usercase_Mapped_Profile); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSecurityUserUserConfigurationImplProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserUserConfigurationImplProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "usersPath", Value.Users_Path); Deserialize (Object, "groupsPath", Value.Groups_Path); Deserialize (Object, "systemRelativePath", Value.System_Relative_Path); Deserialize (Object, "defaultDepth", Value.Default_Depth); Deserialize (Object, "importBehavior", Value.Import_Behavior); Deserialize (Object, "passwordHashAlgorithm", Value.Password_Hash_Algorithm); Deserialize (Object, "passwordHashIterations", Value.Password_Hash_Iterations); Deserialize (Object, "passwordSaltSize", Value.Password_Salt_Size); Deserialize (Object, "omitAdminPw", Value.Omit_Admin_Pw); Deserialize (Object, "supportAutoSave", Value.Support_Auto_Save); Deserialize (Object, "passwordMaxAge", Value.Password_Max_Age); Deserialize (Object, "initialPasswordChange", Value.Initial_Password_Change); Deserialize (Object, "passwordHistorySize", Value.Password_History_Size); Deserialize (Object, "passwordExpiryForAdmin", Value.Password_Expiry_For_Admin); Deserialize (Object, "cacheExpiration", Value.Cache_Expiration); Deserialize (Object, "enableRFC7613UsercaseMappedProfile", Value.Enable_R_F_C7613_Usercase_Mapped_Profile); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSecurityUserUserConfigurationImplProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSecurityUserUserConfigurationImplProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.installer.configuration.persist", Value.Org_Apache_Sling_Installer_Configuration_Persist); Serialize (Into, "mode", Value.Mode); Serialize (Into, "port", Value.Port); Serialize (Into, "primary.host", Value.Primary_Host); Serialize (Into, "interval", Value.Interval); Serialize (Into, "primary.allowed-client-ip-ranges", Value.Primary_Allowed_Client_Ip_Ranges); Serialize (Into, "secure", Value.Secure); Serialize (Into, "standby.readtimeout", Value.Standby_Readtimeout); Serialize (Into, "standby.autoclean", Value.Standby_Autoclean); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.installer.configuration.persist", Value.Org_Apache_Sling_Installer_Configuration_Persist); Deserialize (Object, "mode", Value.Mode); Deserialize (Object, "port", Value.Port); Deserialize (Object, "primary.host", Value.Primary_Host); Deserialize (Object, "interval", Value.Interval); Deserialize (Object, "primary.allowed-client-ip-ranges", Value.Primary_Allowed_Client_Ip_Ranges); Deserialize (Object, "secure", Value.Secure); Deserialize (Object, "standby.readtimeout", Value.Standby_Readtimeout); Deserialize (Object, "standby.autoclean", Value.Standby_Autoclean); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSegmentStandbyStoreStandbyStoreServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "enabledActions", Value.Enabled_Actions); Serialize (Into, "userPrivilegeNames", Value.User_Privilege_Names); Serialize (Into, "groupPrivilegeNames", Value.Group_Privilege_Names); Serialize (Into, "constraint", Value.Constraint); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "enabledActions", Value.Enabled_Actions); Deserialize (Object, "userPrivilegeNames", Value.User_Privilege_Names); Deserialize (Object, "groupPrivilegeNames", Value.Group_Privilege_Names); Deserialize (Object, "constraint", Value.Constraint); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheJackrabbitOakSpiSecurityUserActionDefaultAuthorizableProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsLogLogManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.commons.log.level", Value.Org_Apache_Sling_Commons_Log_Level); Serialize (Into, "org.apache.sling.commons.log.file", Value.Org_Apache_Sling_Commons_Log_File); Serialize (Into, "org.apache.sling.commons.log.file.number", Value.Org_Apache_Sling_Commons_Log_File_Number); Serialize (Into, "org.apache.sling.commons.log.file.size", Value.Org_Apache_Sling_Commons_Log_File_Size); Serialize (Into, "org.apache.sling.commons.log.pattern", Value.Org_Apache_Sling_Commons_Log_Pattern); Serialize (Into, "org.apache.sling.commons.log.configurationFile", Value.Org_Apache_Sling_Commons_Log_Configuration_File); Serialize (Into, "org.apache.sling.commons.log.packagingDataEnabled", Value.Org_Apache_Sling_Commons_Log_Packaging_Data_Enabled); Serialize (Into, "org.apache.sling.commons.log.maxCallerDataDepth", Value.Org_Apache_Sling_Commons_Log_Max_Caller_Data_Depth); Serialize (Into, "org.apache.sling.commons.log.maxOldFileCountInDump", Value.Org_Apache_Sling_Commons_Log_Max_Old_File_Count_In_Dump); Serialize (Into, "org.apache.sling.commons.log.numOfLines", Value.Org_Apache_Sling_Commons_Log_Num_Of_Lines); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.commons.log.level", Value.Org_Apache_Sling_Commons_Log_Level); Deserialize (Object, "org.apache.sling.commons.log.file", Value.Org_Apache_Sling_Commons_Log_File); Deserialize (Object, "org.apache.sling.commons.log.file.number", Value.Org_Apache_Sling_Commons_Log_File_Number); Deserialize (Object, "org.apache.sling.commons.log.file.size", Value.Org_Apache_Sling_Commons_Log_File_Size); Deserialize (Object, "org.apache.sling.commons.log.pattern", Value.Org_Apache_Sling_Commons_Log_Pattern); Deserialize (Object, "org.apache.sling.commons.log.configurationFile", Value.Org_Apache_Sling_Commons_Log_Configuration_File); Deserialize (Object, "org.apache.sling.commons.log.packagingDataEnabled", Value.Org_Apache_Sling_Commons_Log_Packaging_Data_Enabled); Deserialize (Object, "org.apache.sling.commons.log.maxCallerDataDepth", Value.Org_Apache_Sling_Commons_Log_Max_Caller_Data_Depth); Deserialize (Object, "org.apache.sling.commons.log.maxOldFileCountInDump", Value.Org_Apache_Sling_Commons_Log_Max_Old_File_Count_In_Dump); Deserialize (Object, "org.apache.sling.commons.log.numOfLines", Value.Org_Apache_Sling_Commons_Log_Num_Of_Lines); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsLogLogManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplAuthSlingAuthenticatorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplAuthSlingAuthenticatorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Serialize (Into, "osgi.http.whiteboard.listener", Value.Osgi_Http_Whiteboard_Listener); Serialize (Into, "auth.sudo.cookie", Value.Auth_Sudo_Cookie); Serialize (Into, "auth.sudo.parameter", Value.Auth_Sudo_Parameter); Serialize (Into, "auth.annonymous", Value.Auth_Annonymous); Serialize (Into, "sling.auth.requirements", Value.Sling_Auth_Requirements); Serialize (Into, "sling.auth.anonymous.user", Value.Sling_Auth_Anonymous_User); Serialize (Into, "sling.auth.anonymous.password", Value.Sling_Auth_Anonymous_Password); Serialize (Into, "auth.http", Value.Auth_Http); Serialize (Into, "auth.http.realm", Value.Auth_Http_Realm); Serialize (Into, "auth.uri.suffix", Value.Auth_Uri_Suffix); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplAuthSlingAuthenticatorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplAuthSlingAuthenticatorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "osgi.http.whiteboard.context.select", Value.Osgi_Http_Whiteboard_Context_Select); Deserialize (Object, "osgi.http.whiteboard.listener", Value.Osgi_Http_Whiteboard_Listener); Deserialize (Object, "auth.sudo.cookie", Value.Auth_Sudo_Cookie); Deserialize (Object, "auth.sudo.parameter", Value.Auth_Sudo_Parameter); Deserialize (Object, "auth.annonymous", Value.Auth_Annonymous); Deserialize (Object, "sling.auth.requirements", Value.Sling_Auth_Requirements); Deserialize (Object, "sling.auth.anonymous.user", Value.Sling_Auth_Anonymous_User); Deserialize (Object, "sling.auth.anonymous.password", Value.Sling_Auth_Anonymous_Password); Deserialize (Object, "auth.http", Value.Auth_Http); Deserialize (Object, "auth.http.realm", Value.Auth_Http_Realm); Deserialize (Object, "auth.uri.suffix", Value.Auth_Uri_Suffix); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplAuthSlingAuthenticatorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplAuthSlingAuthenticatorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.Write_Entity ("bundle_location", Value.Bundle_Location); Into.Write_Entity ("service_location", Value.Service_Location); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); Swagger.Streams.Deserialize (Object, "bundle_location", Value.Bundle_Location); Swagger.Streams.Deserialize (Object, "service_location", Value.Service_Location); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplLogRequestLoggerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "request.log.output", Value.Request_Log_Output); Serialize (Into, "request.log.outputtype", Value.Request_Log_Outputtype); Serialize (Into, "request.log.enabled", Value.Request_Log_Enabled); Serialize (Into, "access.log.output", Value.Access_Log_Output); Serialize (Into, "access.log.outputtype", Value.Access_Log_Outputtype); Serialize (Into, "access.log.enabled", Value.Access_Log_Enabled); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "request.log.output", Value.Request_Log_Output); Deserialize (Object, "request.log.outputtype", Value.Request_Log_Outputtype); Deserialize (Object, "request.log.enabled", Value.Request_Log_Enabled); Deserialize (Object, "access.log.output", Value.Access_Log_Output); Deserialize (Object, "access.log.outputtype", Value.Access_Log_Outputtype); Deserialize (Object, "access.log.enabled", Value.Access_Log_Enabled); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplLogRequestLoggerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplJobsDefaultJobManagerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsDefaultJobManagerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "queue.priority", Value.Queue_Priority); Serialize (Into, "queue.retries", Value.Queue_Retries); Serialize (Into, "queue.retrydelay", Value.Queue_Retrydelay); Serialize (Into, "queue.maxparallel", Value.Queue_Maxparallel); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventImplJobsDefaultJobManagerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsDefaultJobManagerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "queue.priority", Value.Queue_Priority); Deserialize (Object, "queue.retries", Value.Queue_Retries); Deserialize (Object, "queue.retrydelay", Value.Queue_Retrydelay); Deserialize (Object, "queue.maxparallel", Value.Queue_Maxparallel); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventImplJobsDefaultJobManagerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventImplJobsDefaultJobManagerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeDamInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeDamInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeDamInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeDamInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAuditPurgeDamInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeDamProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "auditlog.rule.name", Value.Auditlog_Rule_Name); Serialize (Into, "auditlog.rule.contentpath", Value.Auditlog_Rule_Contentpath); Serialize (Into, "auditlog.rule.minimumage", Value.Auditlog_Rule_Minimumage); Serialize (Into, "auditlog.rule.types", Value.Auditlog_Rule_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeDamProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeDamProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "auditlog.rule.name", Value.Auditlog_Rule_Name); Deserialize (Object, "auditlog.rule.contentpath", Value.Auditlog_Rule_Contentpath); Deserialize (Object, "auditlog.rule.minimumage", Value.Auditlog_Rule_Minimumage); Deserialize (Object, "auditlog.rule.types", Value.Auditlog_Rule_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeDamProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAuditPurgeDamProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgePagesInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgePagesInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgePagesInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgePagesInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAuditPurgePagesInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgePagesProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "auditlog.rule.name", Value.Auditlog_Rule_Name); Serialize (Into, "auditlog.rule.contentpath", Value.Auditlog_Rule_Contentpath); Serialize (Into, "auditlog.rule.minimumage", Value.Auditlog_Rule_Minimumage); Serialize (Into, "auditlog.rule.types", Value.Auditlog_Rule_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgePagesProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgePagesProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "auditlog.rule.name", Value.Auditlog_Rule_Name); Deserialize (Object, "auditlog.rule.contentpath", Value.Auditlog_Rule_Contentpath); Deserialize (Object, "auditlog.rule.minimumage", Value.Auditlog_Rule_Minimumage); Deserialize (Object, "auditlog.rule.types", Value.Auditlog_Rule_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgePagesProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAuditPurgePagesProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeReplicationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeReplicationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeReplicationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeReplicationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAuditPurgeReplicationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeReplicationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "auditlog.rule.name", Value.Auditlog_Rule_Name); Serialize (Into, "auditlog.rule.contentpath", Value.Auditlog_Rule_Contentpath); Serialize (Into, "auditlog.rule.minimumage", Value.Auditlog_Rule_Minimumage); Serialize (Into, "auditlog.rule.types", Value.Auditlog_Rule_Types); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqAuditPurgeReplicationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeReplicationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "auditlog.rule.name", Value.Auditlog_Rule_Name); Deserialize (Object, "auditlog.rule.contentpath", Value.Auditlog_Rule_Contentpath); Deserialize (Object, "auditlog.rule.minimumage", Value.Auditlog_Rule_Minimumage); Deserialize (Object, "auditlog.rule.types", Value.Auditlog_Rule_Types); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqAuditPurgeReplicationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqAuditPurgeReplicationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "email.name", Value.Email_Name); Serialize (Into, "email.createPostFromReply", Value.Email_Create_Post_From_Reply); Serialize (Into, "email.addCommentIdTo", Value.Email_Add_Comment_Id_To); Serialize (Into, "email.subjectMaximumLength", Value.Email_Subject_Maximum_Length); Serialize (Into, "email.replyToAddress", Value.Email_Reply_To_Address); Serialize (Into, "email.replyToDelimiter", Value.Email_Reply_To_Delimiter); Serialize (Into, "email.trackerIdPrefixInSubject", Value.Email_Tracker_Id_Prefix_In_Subject); Serialize (Into, "email.trackerIdPrefixInBody", Value.Email_Tracker_Id_Prefix_In_Body); Serialize (Into, "email.asHTML", Value.Email_As_H_T_M_L); Serialize (Into, "email.defaultUserName", Value.Email_Default_User_Name); Serialize (Into, "email.templates.rootPath", Value.Email_Templates_Root_Path); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "email.name", Value.Email_Name); Deserialize (Object, "email.createPostFromReply", Value.Email_Create_Post_From_Reply); Deserialize (Object, "email.addCommentIdTo", Value.Email_Add_Comment_Id_To); Deserialize (Object, "email.subjectMaximumLength", Value.Email_Subject_Maximum_Length); Deserialize (Object, "email.replyToAddress", Value.Email_Reply_To_Address); Deserialize (Object, "email.replyToDelimiter", Value.Email_Reply_To_Delimiter); Deserialize (Object, "email.trackerIdPrefixInSubject", Value.Email_Tracker_Id_Prefix_In_Subject); Deserialize (Object, "email.trackerIdPrefixInBody", Value.Email_Tracker_Id_Prefix_In_Body); Deserialize (Object, "email.asHTML", Value.Email_As_H_T_M_L); Deserialize (Object, "email.defaultUserName", Value.Email_Default_User_Name); Deserialize (Object, "email.templates.rootPath", Value.Email_Templates_Root_Path); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeCqSocialCommonsEmailreplyImplEmailReplyConfigurationImpProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowPurgeSchedulerInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowPurgeSchedulerProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "scheduledpurge.name", Value.Scheduledpurge_Name); Serialize (Into, "scheduledpurge.workflowStatus", Value.Scheduledpurge_Workflow_Status); Serialize (Into, "scheduledpurge.modelIds", Value.Scheduledpurge_Model_Ids); Serialize (Into, "scheduledpurge.daysold", Value.Scheduledpurge_Daysold); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ComAdobeGraniteWorkflowPurgeSchedulerProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowPurgeSchedulerProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "scheduledpurge.name", Value.Scheduledpurge_Name); Deserialize (Object, "scheduledpurge.workflowStatus", Value.Scheduledpurge_Workflow_Status); Deserialize (Object, "scheduledpurge.modelIds", Value.Scheduledpurge_Model_Ids); Deserialize (Object, "scheduledpurge.daysold", Value.Scheduledpurge_Daysold); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ComAdobeGraniteWorkflowPurgeSchedulerProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ComAdobeGraniteWorkflowPurgeSchedulerProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixJaasConfigurationFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "jaas.controlFlag", Value.Jaas_Control_Flag); Serialize (Into, "jaas.ranking", Value.Jaas_Ranking); Serialize (Into, "jaas.realmName", Value.Jaas_Realm_Name); Serialize (Into, "jaas.classname", Value.Jaas_Classname); Serialize (Into, "jaas.options", Value.Jaas_Options); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheFelixJaasConfigurationFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "jaas.controlFlag", Value.Jaas_Control_Flag); Deserialize (Object, "jaas.ranking", Value.Jaas_Ranking); Deserialize (Object, "jaas.realmName", Value.Jaas_Realm_Name); Deserialize (Object, "jaas.classname", Value.Jaas_Classname); Deserialize (Object, "jaas.options", Value.Jaas_Options); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheFelixJaasConfigurationFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheFelixJaasConfigurationFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsLogLogManagerFactoryConfigInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryConfigProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "org.apache.sling.commons.log.level", Value.Org_Apache_Sling_Commons_Log_Level); Serialize (Into, "org.apache.sling.commons.log.file", Value.Org_Apache_Sling_Commons_Log_File); Serialize (Into, "org.apache.sling.commons.log.pattern", Value.Org_Apache_Sling_Commons_Log_Pattern); Serialize (Into, "org.apache.sling.commons.log.names", Value.Org_Apache_Sling_Commons_Log_Names); Serialize (Into, "org.apache.sling.commons.log.additiv", Value.Org_Apache_Sling_Commons_Log_Additiv); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsLogLogManagerFactoryConfigProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryConfigProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "org.apache.sling.commons.log.level", Value.Org_Apache_Sling_Commons_Log_Level); Deserialize (Object, "org.apache.sling.commons.log.file", Value.Org_Apache_Sling_Commons_Log_File); Deserialize (Object, "org.apache.sling.commons.log.pattern", Value.Org_Apache_Sling_Commons_Log_Pattern); Deserialize (Object, "org.apache.sling.commons.log.names", Value.Org_Apache_Sling_Commons_Log_Names); Deserialize (Object, "org.apache.sling.commons.log.additiv", Value.Org_Apache_Sling_Commons_Log_Additiv); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsLogLogManagerFactoryConfigProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsLogLogManagerFactoryConfigProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsMetricsInternalLogReporterInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsInternalLogReporterProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "period", Value.Period); Serialize (Into, "timeUnit", Value.Time_Unit); Serialize (Into, "level", Value.Level); Serialize (Into, "loggerName", Value.Logger_Name); Serialize (Into, "prefix", Value.Prefix); Serialize (Into, "pattern", Value.Pattern); Serialize (Into, "registryName", Value.Registry_Name); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsMetricsInternalLogReporterProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsInternalLogReporterProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "period", Value.Period); Deserialize (Object, "timeUnit", Value.Time_Unit); Deserialize (Object, "level", Value.Level); Deserialize (Object, "loggerName", Value.Logger_Name); Deserialize (Object, "prefix", Value.Prefix); Deserialize (Object, "pattern", Value.Pattern); Deserialize (Object, "registryName", Value.Registry_Name); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsMetricsInternalLogReporterProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsMetricsInternalLogReporterProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "minPoolSize", Value.Min_Pool_Size); Serialize (Into, "maxPoolSize", Value.Max_Pool_Size); Serialize (Into, "queueSize", Value.Queue_Size); Serialize (Into, "maxThreadAge", Value.Max_Thread_Age); Serialize (Into, "keepAliveTime", Value.Keep_Alive_Time); Serialize (Into, "blockPolicy", Value.Block_Policy); Serialize (Into, "shutdownGraceful", Value.Shutdown_Graceful); Serialize (Into, "daemon", Value.Daemon); Serialize (Into, "shutdownWaitTime", Value.Shutdown_Wait_Time); Serialize (Into, "priority", Value.Priority); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "minPoolSize", Value.Min_Pool_Size); Deserialize (Object, "maxPoolSize", Value.Max_Pool_Size); Deserialize (Object, "queueSize", Value.Queue_Size); Deserialize (Object, "maxThreadAge", Value.Max_Thread_Age); Deserialize (Object, "keepAliveTime", Value.Keep_Alive_Time); Deserialize (Object, "blockPolicy", Value.Block_Policy); Deserialize (Object, "shutdownGraceful", Value.Shutdown_Graceful); Deserialize (Object, "daemon", Value.Daemon); Deserialize (Object, "shutdownWaitTime", Value.Shutdown_Wait_Time); Deserialize (Object, "priority", Value.Priority); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingCommonsThreadsImplDefaultThreadPoolFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceDataSourceFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceDataSourceFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceDataSourceFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceDataSourceFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDatasourceDataSourceFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceDataSourceFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "datasource.name", Value.Datasource_Name); Serialize (Into, "datasource.svc.prop.name", Value.Datasource_Svc_Prop_Name); Serialize (Into, "driverClassName", Value.Driver_Class_Name); Serialize (Into, "url", Value.Url); Serialize (Into, "username", Value.Username); Serialize (Into, "password", Value.Password); Serialize (Into, "defaultAutoCommit", Value.Default_Auto_Commit); Serialize (Into, "defaultReadOnly", Value.Default_Read_Only); Serialize (Into, "defaultTransactionIsolation", Value.Default_Transaction_Isolation); Serialize (Into, "defaultCatalog", Value.Default_Catalog); Serialize (Into, "maxActive", Value.Max_Active); Serialize (Into, "maxIdle", Value.Max_Idle); Serialize (Into, "minIdle", Value.Min_Idle); Serialize (Into, "initialSize", Value.Initial_Size); Serialize (Into, "maxWait", Value.Max_Wait); Serialize (Into, "maxAge", Value.Max_Age); Serialize (Into, "testOnBorrow", Value.Test_On_Borrow); Serialize (Into, "testOnReturn", Value.Test_On_Return); Serialize (Into, "testWhileIdle", Value.Test_While_Idle); Serialize (Into, "validationQuery", Value.Validation_Query); Serialize (Into, "validationQueryTimeout", Value.Validation_Query_Timeout); Serialize (Into, "timeBetweenEvictionRunsMillis", Value.Time_Between_Eviction_Runs_Millis); Serialize (Into, "minEvictableIdleTimeMillis", Value.Min_Evictable_Idle_Time_Millis); Serialize (Into, "connectionProperties", Value.Connection_Properties); Serialize (Into, "initSQL", Value.Init_S_Q_L); Serialize (Into, "jdbcInterceptors", Value.Jdbc_Interceptors); Serialize (Into, "validationInterval", Value.Validation_Interval); Serialize (Into, "logValidationErrors", Value.Log_Validation_Errors); Serialize (Into, "datasource.svc.properties", Value.Datasource_Svc_Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDatasourceDataSourceFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceDataSourceFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "datasource.name", Value.Datasource_Name); Deserialize (Object, "datasource.svc.prop.name", Value.Datasource_Svc_Prop_Name); Deserialize (Object, "driverClassName", Value.Driver_Class_Name); Deserialize (Object, "url", Value.Url); Deserialize (Object, "username", Value.Username); Deserialize (Object, "password", Value.Password); Deserialize (Object, "defaultAutoCommit", Value.Default_Auto_Commit); Deserialize (Object, "defaultReadOnly", Value.Default_Read_Only); Deserialize (Object, "defaultTransactionIsolation", Value.Default_Transaction_Isolation); Deserialize (Object, "defaultCatalog", Value.Default_Catalog); Deserialize (Object, "maxActive", Value.Max_Active); Deserialize (Object, "maxIdle", Value.Max_Idle); Deserialize (Object, "minIdle", Value.Min_Idle); Deserialize (Object, "initialSize", Value.Initial_Size); Deserialize (Object, "maxWait", Value.Max_Wait); Deserialize (Object, "maxAge", Value.Max_Age); Deserialize (Object, "testOnBorrow", Value.Test_On_Borrow); Deserialize (Object, "testOnReturn", Value.Test_On_Return); Deserialize (Object, "testWhileIdle", Value.Test_While_Idle); Deserialize (Object, "validationQuery", Value.Validation_Query); Deserialize (Object, "validationQueryTimeout", Value.Validation_Query_Timeout); Deserialize (Object, "timeBetweenEvictionRunsMillis", Value.Time_Between_Eviction_Runs_Millis); Deserialize (Object, "minEvictableIdleTimeMillis", Value.Min_Evictable_Idle_Time_Millis); Deserialize (Object, "connectionProperties", Value.Connection_Properties); Deserialize (Object, "initSQL", Value.Init_S_Q_L); Deserialize (Object, "jdbcInterceptors", Value.Jdbc_Interceptors); Deserialize (Object, "validationInterval", Value.Validation_Interval); Deserialize (Object, "logValidationErrors", Value.Log_Validation_Errors); Deserialize (Object, "datasource.svc.properties", Value.Datasource_Svc_Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDatasourceDataSourceFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDatasourceDataSourceFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "title", Value.Title); Serialize (Into, "details", Value.Details); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "log.level", Value.Log_Level); Serialize (Into, "allowed.roots", Value.Allowed_Roots); Serialize (Into, "queue.processing.enabled", Value.Queue_Processing_Enabled); Serialize (Into, "packageImporter.endpoints", Value.Package_Importer_Endpoints); Serialize (Into, "passiveQueues", Value.Passive_Queues); Serialize (Into, "priorityQueues", Value.Priority_Queues); Serialize (Into, "retry.strategy", Value.Retry_Strategy); Serialize (Into, "retry.attempts", Value.Retry_Attempts); Serialize (Into, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Serialize (Into, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Serialize (Into, "triggers.target", Value.Triggers_Target); Serialize (Into, "queue.provider", Value.Queue_Provider); Serialize (Into, "async.delivery", Value.Async_Delivery); Serialize (Into, "http.conn.timeout", Value.Http_Conn_Timeout); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "title", Value.Title); Deserialize (Object, "details", Value.Details); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "log.level", Value.Log_Level); Deserialize (Object, "allowed.roots", Value.Allowed_Roots); Deserialize (Object, "queue.processing.enabled", Value.Queue_Processing_Enabled); Deserialize (Object, "packageImporter.endpoints", Value.Package_Importer_Endpoints); Deserialize (Object, "passiveQueues", Value.Passive_Queues); Deserialize (Object, "priorityQueues", Value.Priority_Queues); Deserialize (Object, "retry.strategy", Value.Retry_Strategy); Deserialize (Object, "retry.attempts", Value.Retry_Attempts); Deserialize (Object, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Deserialize (Object, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); Deserialize (Object, "triggers.target", Value.Triggers_Target); Deserialize (Object, "queue.provider", Value.Queue_Provider); Deserialize (Object, "async.delivery", Value.Async_Delivery); Deserialize (Object, "http.conn.timeout", Value.Http_Conn_Timeout); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplForwardDistributionAgentFactoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "title", Value.Title); Serialize (Into, "details", Value.Details); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "log.level", Value.Log_Level); Serialize (Into, "allowed.roots", Value.Allowed_Roots); Serialize (Into, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Serialize (Into, "queueProviderFactory.target", Value.Queue_Provider_Factory_Target); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Serialize (Into, "triggers.target", Value.Triggers_Target); Serialize (Into, "priorityQueues", Value.Priority_Queues); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "title", Value.Title); Deserialize (Object, "details", Value.Details); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "log.level", Value.Log_Level); Deserialize (Object, "allowed.roots", Value.Allowed_Roots); Deserialize (Object, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Deserialize (Object, "queueProviderFactory.target", Value.Queue_Provider_Factory_Target); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); Deserialize (Object, "triggers.target", Value.Triggers_Target); Deserialize (Object, "priorityQueues", Value.Priority_Queues); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplQueueDistributionAgentFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "title", Value.Title); Serialize (Into, "details", Value.Details); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "log.level", Value.Log_Level); Serialize (Into, "queue.processing.enabled", Value.Queue_Processing_Enabled); Serialize (Into, "packageExporter.endpoints", Value.Package_Exporter_Endpoints); Serialize (Into, "pull.items", Value.Pull_Items); Serialize (Into, "http.conn.timeout", Value.Http_Conn_Timeout); Serialize (Into, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Serialize (Into, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Serialize (Into, "triggers.target", Value.Triggers_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "title", Value.Title); Deserialize (Object, "details", Value.Details); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "log.level", Value.Log_Level); Deserialize (Object, "queue.processing.enabled", Value.Queue_Processing_Enabled); Deserialize (Object, "packageExporter.endpoints", Value.Package_Exporter_Endpoints); Deserialize (Object, "pull.items", Value.Pull_Items); Deserialize (Object, "http.conn.timeout", Value.Http_Conn_Timeout); Deserialize (Object, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Deserialize (Object, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); Deserialize (Object, "triggers.target", Value.Triggers_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplReverseDistributionAgentFactoProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "title", Value.Title); Serialize (Into, "details", Value.Details); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "log.level", Value.Log_Level); Serialize (Into, "queue.processing.enabled", Value.Queue_Processing_Enabled); Serialize (Into, "packageExporter.target", Value.Package_Exporter_Target); Serialize (Into, "packageImporter.target", Value.Package_Importer_Target); Serialize (Into, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Serialize (Into, "triggers.target", Value.Triggers_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "title", Value.Title); Deserialize (Object, "details", Value.Details); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "log.level", Value.Log_Level); Deserialize (Object, "queue.processing.enabled", Value.Queue_Processing_Enabled); Deserialize (Object, "packageExporter.target", Value.Package_Exporter_Target); Deserialize (Object, "packageImporter.target", Value.Package_Importer_Target); Deserialize (Object, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Deserialize (Object, "triggers.target", Value.Triggers_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplSimpleDistributionAgentFactorProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "title", Value.Title); Serialize (Into, "details", Value.Details); Serialize (Into, "enabled", Value.Enabled); Serialize (Into, "serviceName", Value.Service_Name); Serialize (Into, "log.level", Value.Log_Level); Serialize (Into, "queue.processing.enabled", Value.Queue_Processing_Enabled); Serialize (Into, "passiveQueues", Value.Passive_Queues); Serialize (Into, "packageExporter.endpoints", Value.Package_Exporter_Endpoints); Serialize (Into, "packageImporter.endpoints", Value.Package_Importer_Endpoints); Serialize (Into, "retry.strategy", Value.Retry_Strategy); Serialize (Into, "retry.attempts", Value.Retry_Attempts); Serialize (Into, "pull.items", Value.Pull_Items); Serialize (Into, "http.conn.timeout", Value.Http_Conn_Timeout); Serialize (Into, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Serialize (Into, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Serialize (Into, "packageBuilder.target", Value.Package_Builder_Target); Serialize (Into, "triggers.target", Value.Triggers_Target); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "title", Value.Title); Deserialize (Object, "details", Value.Details); Deserialize (Object, "enabled", Value.Enabled); Deserialize (Object, "serviceName", Value.Service_Name); Deserialize (Object, "log.level", Value.Log_Level); Deserialize (Object, "queue.processing.enabled", Value.Queue_Processing_Enabled); Deserialize (Object, "passiveQueues", Value.Passive_Queues); Deserialize (Object, "packageExporter.endpoints", Value.Package_Exporter_Endpoints); Deserialize (Object, "packageImporter.endpoints", Value.Package_Importer_Endpoints); Deserialize (Object, "retry.strategy", Value.Retry_Strategy); Deserialize (Object, "retry.attempts", Value.Retry_Attempts); Deserialize (Object, "pull.items", Value.Pull_Items); Deserialize (Object, "http.conn.timeout", Value.Http_Conn_Timeout); Deserialize (Object, "requestAuthorizationStrategy.target", Value.Request_Authorization_Strategy_Target); Deserialize (Object, "transportSecretProvider.target", Value.Transport_Secret_Provider_Target); Deserialize (Object, "packageBuilder.target", Value.Package_Builder_Target); Deserialize (Object, "triggers.target", Value.Triggers_Target); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionAgentImplSyncDistributionAgentFactoryProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionSerializationImplDistributionPackageBuInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplDistributionPackageBuProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "type", Value.P_Type); Serialize (Into, "format.target", Value.Format_Target); Serialize (Into, "tempFsFolder", Value.Temp_Fs_Folder); Serialize (Into, "fileThreshold", Value.File_Threshold); Serialize (Into, "memoryUnit", Value.Memory_Unit); Serialize (Into, "useOffHeapMemory", Value.Use_Off_Heap_Memory); Serialize (Into, "digestAlgorithm", Value.Digest_Algorithm); Serialize (Into, "monitoringQueueSize", Value.Monitoring_Queue_Size); Serialize (Into, "cleanupDelay", Value.Cleanup_Delay); Serialize (Into, "package.filters", Value.Package_Filters); Serialize (Into, "property.filters", Value.Property_Filters); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplDistributionPackageBuProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplDistributionPackageBuProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "type", Value.P_Type); Deserialize (Object, "format.target", Value.Format_Target); Deserialize (Object, "tempFsFolder", Value.Temp_Fs_Folder); Deserialize (Object, "fileThreshold", Value.File_Threshold); Deserialize (Object, "memoryUnit", Value.Memory_Unit); Deserialize (Object, "useOffHeapMemory", Value.Use_Off_Heap_Memory); Deserialize (Object, "digestAlgorithm", Value.Digest_Algorithm); Deserialize (Object, "monitoringQueueSize", Value.Monitoring_Queue_Size); Deserialize (Object, "cleanupDelay", Value.Cleanup_Delay); Deserialize (Object, "package.filters", Value.Package_Filters); Deserialize (Object, "property.filters", Value.Property_Filters); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplDistributionPackageBuProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionSerializationImplDistributionPackageBuProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionSerializationImplVltVaultDistributionInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplVltVaultDistributionProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "name", Value.Name); Serialize (Into, "type", Value.P_Type); Serialize (Into, "importMode", Value.Import_Mode); Serialize (Into, "aclHandling", Value.Acl_Handling); Serialize (Into, "package.roots", Value.Package_Roots); Serialize (Into, "package.filters", Value.Package_Filters); Serialize (Into, "property.filters", Value.Property_Filters); Serialize (Into, "tempFsFolder", Value.Temp_Fs_Folder); Serialize (Into, "useBinaryReferences", Value.Use_Binary_References); Serialize (Into, "autoSaveThreshold", Value.Auto_Save_Threshold); Serialize (Into, "cleanupDelay", Value.Cleanup_Delay); Serialize (Into, "fileThreshold", Value.File_Threshold); Serialize (Into, "MEGA_BYTES", Value.M_E_G_A_B_Y_T_E_S); Serialize (Into, "useOffHeapMemory", Value.Use_Off_Heap_Memory); Serialize (Into, "digestAlgorithm", Value.Digest_Algorithm); Serialize (Into, "monitoringQueueSize", Value.Monitoring_Queue_Size); Serialize (Into, "pathsMapping", Value.Paths_Mapping); Serialize (Into, "strictImport", Value.Strict_Import); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingDistributionSerializationImplVltVaultDistributionProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplVltVaultDistributionProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "name", Value.Name); Deserialize (Object, "type", Value.P_Type); Deserialize (Object, "importMode", Value.Import_Mode); Deserialize (Object, "aclHandling", Value.Acl_Handling); Deserialize (Object, "package.roots", Value.Package_Roots); Deserialize (Object, "package.filters", Value.Package_Filters); Deserialize (Object, "property.filters", Value.Property_Filters); Deserialize (Object, "tempFsFolder", Value.Temp_Fs_Folder); Deserialize (Object, "useBinaryReferences", Value.Use_Binary_References); Deserialize (Object, "autoSaveThreshold", Value.Auto_Save_Threshold); Deserialize (Object, "cleanupDelay", Value.Cleanup_Delay); Deserialize (Object, "fileThreshold", Value.File_Threshold); Deserialize (Object, "MEGA_BYTES", Value.M_E_G_A_B_Y_T_E_S); Deserialize (Object, "useOffHeapMemory", Value.Use_Off_Heap_Memory); Deserialize (Object, "digestAlgorithm", Value.Digest_Algorithm); Deserialize (Object, "monitoringQueueSize", Value.Monitoring_Queue_Size); Deserialize (Object, "pathsMapping", Value.Paths_Mapping); Deserialize (Object, "strictImport", Value.Strict_Import); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingDistributionSerializationImplVltVaultDistributionProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingDistributionSerializationImplVltVaultDistributionProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplLogRequestLoggerServiceInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerServiceProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "request.log.service.format", Value.Request_Log_Service_Format); Serialize (Into, "request.log.service.output", Value.Request_Log_Service_Output); Serialize (Into, "request.log.service.outputtype", Value.Request_Log_Service_Outputtype); Serialize (Into, "request.log.service.onentry", Value.Request_Log_Service_Onentry); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEngineImplLogRequestLoggerServiceProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerServiceProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "request.log.service.format", Value.Request_Log_Service_Format); Deserialize (Object, "request.log.service.output", Value.Request_Log_Service_Output); Deserialize (Object, "request.log.service.outputtype", Value.Request_Log_Service_Outputtype); Deserialize (Object, "request.log.service.onentry", Value.Request_Log_Service_Onentry); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEngineImplLogRequestLoggerServiceProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEngineImplLogRequestLoggerServiceProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventJobsQueueConfigurationInfo_Type) is begin Into.Start_Entity (Name); Into.Write_Entity ("pid", Value.Pid); Into.Write_Entity ("title", Value.Title); Into.Write_Entity ("description", Value.Description); Serialize (Into, "properties", Value.Properties); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventJobsQueueConfigurationInfo_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventJobsQueueConfigurationInfo_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Swagger.Streams.Deserialize (Object, "pid", Value.Pid); Swagger.Streams.Deserialize (Object, "title", Value.Title); Swagger.Streams.Deserialize (Object, "description", Value.Description); Deserialize (Object, "properties", Value.Properties); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventJobsQueueConfigurationInfo_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventJobsQueueConfigurationInfo_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventJobsQueueConfigurationProperties_Type) is begin Into.Start_Entity (Name); Serialize (Into, "queue.name", Value.Queue_Name); Serialize (Into, "queue.topics", Value.Queue_Topics); Serialize (Into, "queue.type", Value.Queue_Type); Serialize (Into, "queue.priority", Value.Queue_Priority); Serialize (Into, "queue.retries", Value.Queue_Retries); Serialize (Into, "queue.retrydelay", Value.Queue_Retrydelay); Serialize (Into, "queue.maxparallel", Value.Queue_Maxparallel); Serialize (Into, "queue.keepJobs", Value.Queue_Keep_Jobs); Serialize (Into, "queue.preferRunOnCreationInstance", Value.Queue_Prefer_Run_On_Creation_Instance); Serialize (Into, "queue.threadPoolSize", Value.Queue_Thread_Pool_Size); Serialize (Into, "service.ranking", Value.Service_Ranking); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrgApacheSlingEventJobsQueueConfigurationProperties_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventJobsQueueConfigurationProperties_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "queue.name", Value.Queue_Name); Deserialize (Object, "queue.topics", Value.Queue_Topics); Deserialize (Object, "queue.type", Value.Queue_Type); Deserialize (Object, "queue.priority", Value.Queue_Priority); Deserialize (Object, "queue.retries", Value.Queue_Retries); Deserialize (Object, "queue.retrydelay", Value.Queue_Retrydelay); Deserialize (Object, "queue.maxparallel", Value.Queue_Maxparallel); Deserialize (Object, "queue.keepJobs", Value.Queue_Keep_Jobs); Deserialize (Object, "queue.preferRunOnCreationInstance", Value.Queue_Prefer_Run_On_Creation_Instance); Deserialize (Object, "queue.threadPoolSize", Value.Queue_Thread_Pool_Size); Deserialize (Object, "service.ranking", Value.Service_Ranking); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrgApacheSlingEventJobsQueueConfigurationProperties_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : OrgApacheSlingEventJobsQueueConfigurationProperties_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyDropDown_type_Type) is begin Into.Start_Entity (Name); Serialize (Into, "labels", Value.Labels); Serialize (Into, "values", Value.Values); Into.End_Entity (Name); end Serialize; procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ConfigNodePropertyDropDown_type_Type_Vectors.Vector) is begin Into.Start_Array (Name); for Item of Value loop Serialize (Into, "", Item); end loop; Into.End_Array (Name); end Serialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyDropDown_type_Type) is Object : Swagger.Value_Type; begin Swagger.Streams.Deserialize (From, Name, Object); Deserialize (Object, "labels", Value.Labels); Deserialize (Object, "values", Value.Values); end Deserialize; procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ConfigNodePropertyDropDown_type_Type_Vectors.Vector) is List : Swagger.Value_Array_Type; Item : ConfigNodePropertyDropDown_type_Type; begin Value.Clear; Swagger.Streams.Deserialize (From, Name, List); for Data of List loop Deserialize (Data, "", Item); Value.Append (Item); end loop; end Deserialize; end .Models;
persan/A-gst
Ada
7,649
ads
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; with glib.Values; with System; with glib; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstelement_h; with System; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gsttaglist_h; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_tag_gsttagdemux_h is -- unsupported macro: GST_TYPE_TAG_DEMUX (gst_tag_demux_get_type()) -- arg-macro: function GST_TAG_DEMUX (obj) -- return G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TAG_DEMUX,GstTagDemux); -- arg-macro: function GST_TAG_DEMUX_CLASS (klass) -- return G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TAG_DEMUX,GstTagDemuxClass); -- arg-macro: function GST_IS_TAG_DEMUX (obj) -- return G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TAG_DEMUX); -- arg-macro: function GST_IS_TAG_DEMUX_CLASS (klass) -- return G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TAG_DEMUX); -- unsupported macro: GST_TYPE_TAG_DEMUX_RESULT (gst_tag_demux_result_get_type()) -- GStreamer Base Class for Tag Demuxing -- * Copyright (C) 2005 Jan Schmidt <[email protected]> -- * Copyright (C) 2006 Tim-Philipp Müller <tim centricular net> -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library General Public -- * License as published by the Free Software Foundation; either -- * version 2 of the License, or (at your option) any later version. -- * -- * This library is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library General Public -- * License along with this library; if not, write to the -- * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- * Boston, MA 02111-1307, USA. -- type GstTagDemux; type u_GstTagDemux_reserved_array is array (0 .. 3) of System.Address; --subtype GstTagDemux is u_GstTagDemux; -- gst/tag/gsttagdemux.h:34 type GstTagDemuxClass; type u_GstTagDemuxClass_reserved_array is array (0 .. 3) of System.Address; --subtype GstTagDemuxClass is u_GstTagDemuxClass; -- gst/tag/gsttagdemux.h:35 -- skipped empty struct u_GstTagDemuxPrivate -- skipped empty struct GstTagDemuxPrivate --* -- * GstTagDemuxResult: -- * @GST_TAG_DEMUX_RESULT_BROKEN_TAG: cannot parse tag, just skip it -- * @GST_TAG_DEMUX_RESULT_AGAIN : call again with less or more data -- * @GST_TAG_DEMUX_RESULT_OK : parsed tag successfully -- * -- * Result values from the parse_tag virtual function. -- * -- * Since: 0.10.15 -- type GstTagDemuxResult is (GST_TAG_DEMUX_RESULT_BROKEN_TAG, GST_TAG_DEMUX_RESULT_AGAIN, GST_TAG_DEMUX_RESULT_OK); pragma Convention (C, GstTagDemuxResult); -- gst/tag/gsttagdemux.h:52 function gst_tag_demux_result_get_type return GLIB.GType; -- gst/tag/gsttagdemux.h:54 pragma Import (C, gst_tag_demux_result_get_type, "gst_tag_demux_result_get_type"); --* -- * GstTagDemux: -- * @element: parent element -- * -- * Opaque #GstTagDemux structure. -- * -- * Since: 0.10.15 -- type GstTagDemux is record element : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstelement_h.GstElement; -- gst/tag/gsttagdemux.h:67 priv : System.Address; -- gst/tag/gsttagdemux.h:70 reserved : u_GstTagDemux_reserved_array; -- gst/tag/gsttagdemux.h:72 end record; pragma Convention (C_Pass_By_Copy, GstTagDemux); -- gst/tag/gsttagdemux.h:65 --< private > --* -- * GstTagDemuxClass: -- * @parent_class: the parent class. -- * @min_start_size: minimum size required to identify a tag at the start and -- * determine its total size. Set to 0 if not interested in start tags. -- * Subclasses should set this in their class_init function. -- * @min_end_size: minimum size required to identify a tag at the end and -- * determine its total size. Set to 0 if not interested in end tags. -- * Subclasses should set this in their class_init function. -- * @identify_tag: identify tag and determine the size required to parse the -- * tag. Buffer may be larger than the specified minimum size. -- * Subclassed MUST override this vfunc in their class_init function. -- * @parse_tag: parse the tag. Buffer will be exactly of the size determined by -- * the identify_tag vfunc before. The parse_tag vfunc may change the size -- * stored in *tag_size and return GST_TAG_DEMUX_RESULT_AGAIN to request a -- * larger or smaller buffer. It is also permitted to adjust the tag_size to a -- * smaller value and then return GST_TAG_DEMUX_RESULT_OK in one go. -- * Subclassed MUST override the parse_tag vfunc in their class_init function. -- * @merge_tags: merge start and end tags. Subclasses may want to override this -- * vfunc to allow prioritising of start or end tag according to user -- * preference. Note that both start_tags and end_tags may be NULL. By default -- * start tags are prefered over end tags. -- * -- * The #GstTagDemuxClass structure. See documentation at beginning of section -- * for details about what subclasses need to override and do. -- * -- * Since: 0.10.15 -- type GstTagDemuxClass is record parent_class : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstelement_h.GstElementClass; -- gst/tag/gsttagdemux.h:105 min_start_size : aliased GLIB.guint; -- gst/tag/gsttagdemux.h:109 min_end_size : aliased GLIB.guint; -- gst/tag/gsttagdemux.h:113 identify_tag : access function (arg1 : access GstTagDemux; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer; arg3 : GLIB.gboolean; arg4 : access GLIB.guint) return GLIB.gboolean; -- gst/tag/gsttagdemux.h:121 parse_tag : access function (arg1 : access GstTagDemux; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer; arg3 : GLIB.gboolean; arg4 : access GLIB.guint; arg5 : System.Address) return GstTagDemuxResult; -- gst/tag/gsttagdemux.h:128 merge_tags : access function (arg1 : access GstTagDemux; arg2 : access constant GStreamer.GST_Low_Level.gstreamer_0_10_gst_gsttaglist_h.GstTagList; arg3 : access constant GStreamer.GST_Low_Level.gstreamer_0_10_gst_gsttaglist_h.GstTagList) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gsttaglist_h.GstTagList; -- gst/tag/gsttagdemux.h:133 reserved : u_GstTagDemuxClass_reserved_array; -- gst/tag/gsttagdemux.h:136 end record; pragma Convention (C_Pass_By_Copy, GstTagDemuxClass); -- gst/tag/gsttagdemux.h:103 -- minimum size required to identify a tag at the start and determine -- * its total size -- minimum size required to identify a tag at the end and determine -- * its total size -- vtable -- identify tag and determine the size required to parse the tag -- parse the tag once it is identified and its size is known -- merge start and end tags (optional) --< private > function gst_tag_demux_get_type return GLIB.GType; -- gst/tag/gsttagdemux.h:139 pragma Import (C, gst_tag_demux_get_type, "gst_tag_demux_get_type"); end GStreamer.GST_Low_Level.gstreamer_0_10_gst_tag_gsttagdemux_h;
Fabien-Chouteau/cortex-m
Ada
3,945
ads
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with System; with HAL; package Semihosting is pragma Preelaborate; type SH_Word is new HAL.UInt32; subtype Flag is SH_Word; OPEN_FLAG_R : constant Flag := 0; OPEN_FLAG_RB : constant Flag := 1; OPEN_FLAG_R_PLUS : constant Flag := 2; OPEN_FLAG_R_PLUS_B : constant Flag := 3; OPEN_FLAG_W : constant Flag := 4; OPEN_FLAG_WB : constant Flag := 5; OPEN_FLAG_W_PLUS : constant Flag := 6; OPEN_FLAG_W_PLUS_B : constant Flag := 7; OPEN_FLAG_A : constant Flag := 8; OPEN_FLAG_AB : constant Flag := 9; OPEN_FLAG_A_PLUS : constant Flag := 10; OPEN_FLAG_A_PLUS_B : constant Flag := 11; procedure Write_C (C : Character); procedure Write_0 (Str : String); function Close (File_Handle : SH_Word) return SH_Word; function Open (Filename : String; Mode : Flag) return SH_Word; function Read (File_Handle : SH_Word; Buffer_Address : System.Address; Buffer_Size : SH_Word) return SH_Word; function Write (File_Handle : SH_Word; Buffer_Address : System.Address; Buffer_Size : SH_Word) return SH_Word; function Remove (Filename : String) return SH_Word; function Seek (File_Handle : SH_Word; Absolute_Position : SH_Word) return SH_Word; function Errno return SH_Word; procedure Log (C : Character) renames Write_C; procedure Log (Str : String) renames Write_0; procedure Log_Line (Str : String); procedure Log_New_Line; end Semihosting;
zhmu/ananas
Ada
17,820
adb
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S H A R E D _ M E M O R Y -- -- -- -- B o d y -- -- -- -- Copyright (C) 1998-2022, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.IO_Exceptions; with Ada.Streams; with Ada.Streams.Stream_IO; with System.Global_Locks; with System.Soft_Links; with System.CRTL; with System.File_Control_Block; with System.File_IO; with System.HTable; with Ada.Unchecked_Deallocation; with Ada.Unchecked_Conversion; package body System.Shared_Storage is package AS renames Ada.Streams; package IOX renames Ada.IO_Exceptions; package FCB renames System.File_Control_Block; package SFI renames System.File_IO; package SIO renames Ada.Streams.Stream_IO; type String_Access is access String; procedure Free is new Ada.Unchecked_Deallocation (Object => String, Name => String_Access); Dir : String_Access; -- Holds the directory ------------------------------------------------ -- Variables for Shared Variable Access Files -- ------------------------------------------------ Max_Shared_Var_Files : constant := 20; -- Maximum number of lock files that can be open Shared_Var_Files_Open : Natural := 0; -- Number of shared variable access files currently open type File_Stream_Type is new AS.Root_Stream_Type with record File : SIO.File_Type; end record; type File_Stream_Access is access all File_Stream_Type'Class; procedure Read (Stream : in out File_Stream_Type; Item : out AS.Stream_Element_Array; Last : out AS.Stream_Element_Offset); procedure Write (Stream : in out File_Stream_Type; Item : AS.Stream_Element_Array); subtype Hash_Header is Natural range 0 .. 30; -- Number of hash headers, related (for efficiency purposes only) to the -- maximum number of lock files. type Shared_Var_File_Entry; type Shared_Var_File_Entry_Ptr is access Shared_Var_File_Entry; type Shared_Var_File_Entry is record Name : String_Access; -- Name of variable, as passed to Read_File/Write_File routines Stream : File_Stream_Access; -- Stream_IO file for the shared variable file Next : Shared_Var_File_Entry_Ptr; Prev : Shared_Var_File_Entry_Ptr; -- Links for LRU chain end record; procedure Free is new Ada.Unchecked_Deallocation (Object => Shared_Var_File_Entry, Name => Shared_Var_File_Entry_Ptr); procedure Free is new Ada.Unchecked_Deallocation (Object => File_Stream_Type'Class, Name => File_Stream_Access); function To_AFCB_Ptr is new Ada.Unchecked_Conversion (SIO.File_Type, FCB.AFCB_Ptr); LRU_Head : Shared_Var_File_Entry_Ptr; LRU_Tail : Shared_Var_File_Entry_Ptr; -- As lock files are opened, they are organized into a least recently -- used chain, which is a doubly linked list using the Next and Prev -- fields of Shared_Var_File_Entry records. The field LRU_Head points -- to the least recently used entry, whose prev pointer is null, and -- LRU_Tail points to the most recently used entry, whose next pointer -- is null. These pointers are null only if the list is empty. function Hash (F : String_Access) return Hash_Header; function Equal (F1, F2 : String_Access) return Boolean; -- Hash and equality functions for hash table package SFT is new System.HTable.Simple_HTable (Header_Num => Hash_Header, Element => Shared_Var_File_Entry_Ptr, No_Element => null, Key => String_Access, Hash => Hash, Equal => Equal); -------------------------------- -- Variables for Lock Control -- -------------------------------- Global_Lock : Global_Locks.Lock_Type; Lock_Count : Natural := 0; -- Counts nesting of lock calls, 0 means lock is not held ----------------------- -- Local Subprograms -- ----------------------- procedure Initialize; -- Called to initialize data structures for this package. -- Has no effect except on the first call. procedure Enter_SFE (SFE : Shared_Var_File_Entry_Ptr; Fname : String); -- The first parameter is a pointer to a newly allocated SFE, whose -- File field is already set appropriately. Fname is the name of the -- variable as passed to Shared_Var_RFile/Shared_Var_WFile. Enter_SFE -- completes the SFE value, and enters it into the hash table. If the -- hash table is already full, the least recently used entry is first -- closed and discarded. function Retrieve (File : String) return Shared_Var_File_Entry_Ptr; -- Given a file name, this function searches the hash table to see if -- the file is currently open. If so, then a pointer to the already -- created entry is returned, after first moving it to the head of -- the LRU chain. If not, then null is returned. function Shared_Var_ROpen (Var : String) return SIO.Stream_Access; -- As described above, this routine returns null if the -- corresponding shared storage does not exist, and otherwise, if -- the storage does exist, a Stream_Access value that references -- the shared storage, ready to read the current value. function Shared_Var_WOpen (Var : String) return SIO.Stream_Access; -- As described above, this routine returns a Stream_Access value -- that references the shared storage, ready to write the new -- value. The storage is created by this call if it does not -- already exist. procedure Shared_Var_Close (Var : SIO.Stream_Access); -- This routine signals the end of a read/assign operation. It can -- be useful to embrace a read/write operation between a call to -- open and a call to close which protect the whole operation. -- Otherwise, two simultaneous operations can result in the -- raising of exception Data_Error by setting the access mode of -- the variable in an incorrect mode. --------------- -- Enter_SFE -- --------------- procedure Enter_SFE (SFE : Shared_Var_File_Entry_Ptr; Fname : String) is Freed : Shared_Var_File_Entry_Ptr; begin SFE.Name := new String'(Fname); -- Release least recently used entry if we have to if Shared_Var_Files_Open = Max_Shared_Var_Files then Freed := LRU_Head; if Freed.Next /= null then Freed.Next.Prev := null; end if; LRU_Head := Freed.Next; SFT.Remove (Freed.Name); SIO.Close (Freed.Stream.File); Free (Freed.Name); Free (Freed.Stream); Free (Freed); else Shared_Var_Files_Open := Shared_Var_Files_Open + 1; end if; -- Add new entry to hash table SFT.Set (SFE.Name, SFE); -- Add new entry at end of LRU chain if LRU_Head = null then LRU_Head := SFE; LRU_Tail := SFE; else SFE.Prev := LRU_Tail; LRU_Tail.Next := SFE; LRU_Tail := SFE; end if; end Enter_SFE; ----------- -- Equal -- ----------- function Equal (F1, F2 : String_Access) return Boolean is begin return F1.all = F2.all; end Equal; ---------- -- Hash -- ---------- function Hash (F : String_Access) return Hash_Header is N : Natural := 0; begin -- Add up characters of name, mod our table size for J in F'Range loop N := (N + Character'Pos (F (J))) mod (Hash_Header'Last + 1); end loop; return N; end Hash; ---------------- -- Initialize -- ---------------- procedure Initialize is procedure Get_Env_Value_Ptr (Name, Length, Ptr : Address); pragma Import (C, Get_Env_Value_Ptr, "__gnat_getenv"); subtype size_t is CRTL.size_t; procedure Strncpy (dest, src : System.Address; n : size_t) renames CRTL.strncpy; Dir_Name : aliased constant String := "SHARED_MEMORY_DIRECTORY" & ASCII.NUL; Env_Value_Ptr : aliased Address; Env_Value_Len : aliased Integer; begin if Dir = null then Get_Env_Value_Ptr (Dir_Name'Address, Env_Value_Len'Address, Env_Value_Ptr'Address); Dir := new String (1 .. Env_Value_Len); if Env_Value_Len > 0 then Strncpy (Dir.all'Address, Env_Value_Ptr, size_t (Env_Value_Len)); end if; System.Global_Locks.Create_Lock (Global_Lock, Dir.all & "__lock"); end if; end Initialize; ---------- -- Read -- ---------- procedure Read (Stream : in out File_Stream_Type; Item : out AS.Stream_Element_Array; Last : out AS.Stream_Element_Offset) is begin SIO.Read (Stream.File, Item, Last); exception when others => Last := Item'Last; end Read; -------------- -- Retrieve -- -------------- function Retrieve (File : String) return Shared_Var_File_Entry_Ptr is SFE : Shared_Var_File_Entry_Ptr; begin Initialize; SFE := SFT.Get (File'Unrestricted_Access); if SFE /= null then -- Move to head of LRU chain if SFE = LRU_Tail then null; elsif SFE = LRU_Head then LRU_Head := LRU_Head.Next; LRU_Head.Prev := null; else SFE.Next.Prev := SFE.Prev; SFE.Prev.Next := SFE.Next; end if; SFE.Next := null; SFE.Prev := LRU_Tail; LRU_Tail.Next := SFE; LRU_Tail := SFE; end if; return SFE; end Retrieve; ---------------------- -- Shared_Var_Close -- ---------------------- procedure Shared_Var_Close (Var : SIO.Stream_Access) is pragma Warnings (Off, Var); begin System.Soft_Links.Unlock_Task.all; end Shared_Var_Close; --------------------- -- Shared_Var_Lock -- --------------------- procedure Shared_Var_Lock (Var : String) is pragma Warnings (Off, Var); begin System.Soft_Links.Lock_Task.all; Initialize; if Lock_Count /= 0 then Lock_Count := Lock_Count + 1; System.Soft_Links.Unlock_Task.all; else Lock_Count := 1; System.Soft_Links.Unlock_Task.all; System.Global_Locks.Acquire_Lock (Global_Lock); end if; exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_Lock; ---------------------- -- Shared_Var_Procs -- ---------------------- package body Shared_Var_Procs is use type SIO.Stream_Access; ---------- -- Read -- ---------- procedure Read is S : SIO.Stream_Access := null; begin S := Shared_Var_ROpen (Full_Name); if S /= null then Typ'Read (S, V); Shared_Var_Close (S); end if; end Read; ------------ -- Write -- ------------ procedure Write is S : SIO.Stream_Access := null; begin S := Shared_Var_WOpen (Full_Name); Typ'Write (S, V); Shared_Var_Close (S); return; end Write; end Shared_Var_Procs; ---------------------- -- Shared_Var_ROpen -- ---------------------- function Shared_Var_ROpen (Var : String) return SIO.Stream_Access is SFE : Shared_Var_File_Entry_Ptr; use type Ada.Streams.Stream_IO.File_Mode; begin System.Soft_Links.Lock_Task.all; SFE := Retrieve (Var); -- Here if file is not already open, try to open it if SFE = null then declare S : aliased constant String := Dir.all & Var; begin SFE := new Shared_Var_File_Entry; SFE.Stream := new File_Stream_Type; SIO.Open (SFE.Stream.File, SIO.In_File, Name => S); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); -- File opened successfully, put new entry in hash table. Note -- that in this case, file is positioned correctly for read. Enter_SFE (SFE, Var); exception -- If we get an exception, it means that the file does not -- exist, and in this case, we don't need the SFE and we -- return null; when IOX.Name_Error => Free (SFE); System.Soft_Links.Unlock_Task.all; return null; end; -- Here if file is already open, set file for reading else if SIO.Mode (SFE.Stream.File) /= SIO.In_File then SIO.Set_Mode (SFE.Stream.File, SIO.In_File); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); end if; SIO.Set_Index (SFE.Stream.File, 1); end if; return SIO.Stream_Access (SFE.Stream); exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_ROpen; ----------------------- -- Shared_Var_Unlock -- ----------------------- procedure Shared_Var_Unlock (Var : String) is pragma Warnings (Off, Var); begin System.Soft_Links.Lock_Task.all; Initialize; Lock_Count := Lock_Count - 1; if Lock_Count = 0 then System.Global_Locks.Release_Lock (Global_Lock); end if; System.Soft_Links.Unlock_Task.all; exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_Unlock; ---------------------- -- Shared_Var_WOpen -- ---------------------- function Shared_Var_WOpen (Var : String) return SIO.Stream_Access is SFE : Shared_Var_File_Entry_Ptr; use type Ada.Streams.Stream_IO.File_Mode; begin System.Soft_Links.Lock_Task.all; SFE := Retrieve (Var); if SFE = null then declare S : aliased constant String := Dir.all & Var; begin SFE := new Shared_Var_File_Entry; SFE.Stream := new File_Stream_Type; SIO.Open (SFE.Stream.File, SIO.Out_File, Name => S); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); exception -- If we get an exception, it means that the file does not -- exist, and in this case, we create the file. when IOX.Name_Error => begin SIO.Create (SFE.Stream.File, SIO.Out_File, Name => S); exception -- Error if we cannot create the file when others => raise Program_Error with "cannot create shared variable file for """ & S & '"'; end; end; -- Make new hash table entry for opened/created file. Note that -- in both cases, the file is already in write mode at the start -- of the file, ready to be written. Enter_SFE (SFE, Var); -- Here if file is already open, set file for writing else if SIO.Mode (SFE.Stream.File) /= SIO.Out_File then SIO.Set_Mode (SFE.Stream.File, SIO.Out_File); SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File)); end if; SIO.Set_Index (SFE.Stream.File, 1); end if; return SIO.Stream_Access (SFE.Stream); exception when others => System.Soft_Links.Unlock_Task.all; raise; end Shared_Var_WOpen; ----------- -- Write -- ----------- procedure Write (Stream : in out File_Stream_Type; Item : AS.Stream_Element_Array) is begin SIO.Write (Stream.File, Item); end Write; end System.Shared_Storage;
optikos/oasis
Ada
4,222
adb
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Infix_Operators is function Create (Left : Program.Elements.Expressions.Expression_Access; Operator : not null Program.Elements.Operator_Symbols .Operator_Symbol_Access; Right : not null Program.Elements.Expressions.Expression_Access) return Infix_Operator is begin return Result : Infix_Operator := (Left => Left, Operator => Operator, Right => Right, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Left : Program.Elements.Expressions.Expression_Access; Operator : not null Program.Elements.Operator_Symbols .Operator_Symbol_Access; Right : not null Program.Elements.Expressions .Expression_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Infix_Operator is begin return Result : Implicit_Infix_Operator := (Left => Left, Operator => Operator, Right => Right, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Left (Self : Base_Infix_Operator) return Program.Elements.Expressions.Expression_Access is begin return Self.Left; end Left; overriding function Operator (Self : Base_Infix_Operator) return not null Program.Elements.Operator_Symbols .Operator_Symbol_Access is begin return Self.Operator; end Operator; overriding function Right (Self : Base_Infix_Operator) return not null Program.Elements.Expressions.Expression_Access is begin return Self.Right; end Right; overriding function Is_Part_Of_Implicit (Self : Implicit_Infix_Operator) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Infix_Operator) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Infix_Operator) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Infix_Operator'Class) is begin if Self.Left.Assigned then Set_Enclosing_Element (Self.Left, Self'Unchecked_Access); end if; Set_Enclosing_Element (Self.Operator, Self'Unchecked_Access); Set_Enclosing_Element (Self.Right, Self'Unchecked_Access); null; end Initialize; overriding function Is_Infix_Operator_Element (Self : Base_Infix_Operator) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Infix_Operator_Element; overriding function Is_Expression_Element (Self : Base_Infix_Operator) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Expression_Element; overriding procedure Visit (Self : not null access Base_Infix_Operator; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Infix_Operator (Self); end Visit; overriding function To_Infix_Operator_Text (Self : aliased in out Infix_Operator) return Program.Elements.Infix_Operators.Infix_Operator_Text_Access is begin return Self'Unchecked_Access; end To_Infix_Operator_Text; overriding function To_Infix_Operator_Text (Self : aliased in out Implicit_Infix_Operator) return Program.Elements.Infix_Operators.Infix_Operator_Text_Access is pragma Unreferenced (Self); begin return null; end To_Infix_Operator_Text; end Program.Nodes.Infix_Operators;
glencornell/ada-socketcan
Ada
3,504
ads
-- MIT License -- -- Copyright (c) 2021 Glen Cornell <[email protected]> -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in all -- copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -- SOFTWARE. -- To be merged with gnat.sockets.os_constants... -- from /usr/inlude/linux/can.h -- from /usr/inlude/linux/can/raw.h -- from /usr/inlude/bits/socket_type.h package Sockets.Os_Constants is pragma Pure; -- special address description flags for the CAN_ID CAN_EFF_FLAG : constant := 16#80000000#; -- EFF/SFF is set in the MSB CAN_RTR_FLAG : constant := 16#40000000#; -- remote transmission request CAN_ERR_FLAG : constant := 16#20000000#; -- error message frame -- valid bits in CAN ID for frame formats CAN_SFF_MASK : constant := 16#000007FF#; -- standard frame format (SFF) CAN_EFF_MASK : constant := 16#1FFFFFFF#; -- extended frame format (EFF) CAN_ERR_MASK : constant := 16#1FFFFFFF#; -- omit EFF, RTR, ERR flags CAN_INV_FILTER : constant := 16#20000000#; -- to be set in can_filter.can_id CAN_RAW_FILTER_MAX : constant := 512; -- maximum number of can_filter set via setsockopt() ----------------------- -- protocol families -- ----------------------- SOCK_RAW : constant := 3; -- Raw protocol interface. -- particular protocols of the protocol family PF_CAN CAN_RAW : constant := 1; -- RAW sockets CAN_BCM : constant := 2; -- Broadcast Manager CAN_TP16 : constant := 3; -- VAG Transport Protocol v1.6 CAN_TP20 : constant := 4; -- VAG Transport Protocol v2.0 CAN_MCNET : constant := 5; -- Bosch MCNet CAN_ISOTP : constant := 6; -- ISO 15765-2 Transport Protocol CAN_NPROTO : constant := 7; -- Protocol families. PF_CAN : constant := 29; -- Controller Area Network. -- Address families. AF_CAN : constant := PF_CAN; -------------------- -- Socket options -- -------------------- SOL_CAN_BASE : constant := 100; SOL_CAN_RAW : constant := SOL_CAN_BASE + CAN_RAW; CAN_RAW_FILTER : constant := 1; -- set 0 .. n can_filter(s) CAN_RAW_ERR_FILTER : constant := 2; -- set filter for error frames CAN_RAW_LOOPBACK : constant := 3; -- local loopback (default:on) CAN_RAW_RECV_OWN_MSGS : constant := 4; -- receive my own msgs (default:off) CAN_RAW_FD_FRAMES : constant := 5; -- allow CAN FD frames (default:off) CAN_RAW_JOIN_FILTERS : constant := 6; -- all filters must match to trigger end Sockets.Os_Constants;
strenkml/EE368
Ada
1,563
adb
with Memory.Transform.Flip; use Memory.Transform.Flip; with Memory.Join; use Memory.Join; package body Test.Flip is procedure Run_Tests is mem : constant Monitor_Pointer := Create_Monitor(0); bank : constant Monitor_Pointer := Create_Monitor(0, False); flip : Flip_Pointer := Create_Flip; join : constant Join_Pointer := Create_Join(flip, 0); begin Set_Memory(bank.all, join); Set_Bank(flip.all, bank); Set_Memory(flip.all, mem); Read(flip.all, 0, 8); Check(mem.last_addr = 0); Check(mem.last_size = 8); Check(bank.last_addr = 0); Check(bank.last_size = 8); Check(Get_Time(flip.all) = 1); Check(Get_Writes(flip.all) = 0); Read(flip.all, 8, 8); Check(mem.last_addr = 8); Check(mem.last_size = 8); Check(bank.last_addr = 2 ** 31); Check(bank.last_size = 8); Check(Get_Time(flip.all) = 2); Check(Get_Writes(flip.all) = 0); Write(flip.all, 2 ** 31, 8); Check(mem.last_addr = 2 ** 31); Check(mem.last_size = 8); Check(bank.last_addr = 8); Check(bank.last_size = 8); Check(Get_Time(flip.all) = 3); Check(Get_Writes(flip.all) = 1); Read(flip.all, 9, 4); Check(mem.last_addr = 9); Check(mem.last_size = 4); Check(bank.last_addr = ((2 ** 31) or 1)); Check(bank.last_size = 4); Check(Get_Time(flip.all) = 4); Check(Get_Writes(flip.all) = 1); Destroy(Memory_Pointer(flip)); end Run_Tests; end Test.Flip;
MinimSecure/unum-sdk
Ada
2,103
adb
-- Copyright 2008-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; package body Homonym is type Integer_Range is new Integer range -100 .. 100; type Positive_Range is new Positive range 1 .. 19740804; --------------- -- Get_Value -- --------------- function Get_Value return Integer_Range is subtype Local_Type is Integer_Range; subtype Local_Type_Subtype is Local_Type; subtype Int_Type is Integer_Range; Lcl : Local_Type := 29; Some_Local_Type_Subtype : Local_Type_Subtype := Lcl; I : Int_Type := 1; begin Do_Nothing (Some_Local_Type_Subtype'Address); Do_Nothing (I'Address); return Lcl; -- BREAK_1 end Get_Value; --------------- -- Get_Value -- --------------- function Get_Value return Positive_Range is subtype Local_Type is Positive_Range; subtype Local_Type_Subtype is Local_Type; subtype Pos_Type is Positive_Range; Lcl : Local_Type := 17; Some_Local_Type_Subtype : Local_Type_Subtype := Lcl; P : Pos_Type := 2; begin Do_Nothing (Some_Local_Type_Subtype'Address); Do_Nothing (P'Address); return Lcl; -- BREAK_2 end Get_Value; ---------------- -- Start_Test -- ---------------- procedure Start_Test is Int : Integer_Range; Pos : Positive_Range; begin Int := Get_Value; Pos := Get_Value; end Start_Test; end Homonym;
reznikmm/matreshka
Ada
4,728
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2014, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with XML.DOM.Visitors; with ODF.DOM.Text_Image_Count_Elements; package Matreshka.ODF_Text.Image_Count_Elements is type Text_Image_Count_Element_Node is new Matreshka.ODF_Text.Abstract_Text_Element_Node and ODF.DOM.Text_Image_Count_Elements.ODF_Text_Image_Count with null record; overriding function Create (Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters) return Text_Image_Count_Element_Node; overriding function Get_Local_Name (Self : not null access constant Text_Image_Count_Element_Node) return League.Strings.Universal_String; overriding procedure Enter_Node (Self : not null access Text_Image_Count_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Leave_Node (Self : not null access Text_Image_Count_Element_Node; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); overriding procedure Visit_Node (Self : not null access Text_Image_Count_Element_Node; Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class; Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class; Control : in out XML.DOM.Visitors.Traverse_Control); end Matreshka.ODF_Text.Image_Count_Elements;
hergin/ada2fuml
Ada
264
ads
with Globals_Example1; package Md_Example1 is function Function_Itype (The_I : Globals_Example1.Itype) return Globals_Example1.Itype; function Function_Ftype (The_F : Globals_Example1.Ftype) return Globals_Example1.Ftype; end Md_Example1;
reznikmm/matreshka
Ada
3,715
ads
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Open Document Toolkit -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2013, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with Matreshka.ODF_Elements.Text.H; package ODF.DOM.Elements.Text.H.Internals is function Create (Node : Matreshka.ODF_Elements.Text.H.Text_H_Access) return ODF.DOM.Elements.Text.H.ODF_Text_H; function Wrap (Node : Matreshka.ODF_Elements.Text.H.Text_H_Access) return ODF.DOM.Elements.Text.H.ODF_Text_H; end ODF.DOM.Elements.Text.H.Internals;
io7m/coreland-opengl-ada
Ada
2,389
ads
package OpenGL.State is type Capability_t is (Alpha_Test, Auto_Normal, Blend, Color_Array, Color_Logic_Op, Color_Material, Color_Sum, Color_Table, Convolution_1D, Convolution_2D, Cull_Face, Depth_Test, Dither, Edge_Flag_Array, Fog, Fog_Coord_Array, Histogram, Index_Array, Index_Logic_Op, Lighting, Line_Smooth, Line_Stipple, Map1_Color_4, Map1_Index, Map1_Normal, Map1_Texture_Coord_1, Map1_Texture_Coord_2, Map1_Texture_Coord_3, Map1_Texture_Coord_4, Map2_Color_4, Map2_Index, Map2_Normal, Map2_Texture_Coord_1, Map2_Texture_Coord_2, Map2_Texture_Coord_3, Map2_Texture_Coord_4, Map2_Vertex_3, Map2_Vertex_4, Minmax, Multisample, Normal_Array, Normalize, Point_Smooth, Point_Sprite, Polygon_Smooth, Polygon_Offset_Fill, Polygon_Offset_Line, Polygon_Offset_Point, Polygon_Stipple, Post_Color_Matrix_Color_Table, Post_Convolution_Color_Table, Rescale_Normal, Sample_Alpha_To_Coverage, Sample_Alpha_To_One, Sample_Coverage, Scissor_Test, Secondary_Color_Array, Separable_2D, Stencil_Test, Texture_1D, Texture_2D, Texture_3D, Texture_Coord_Array, Texture_Cube_Map, Texture_Gen_Q, Texture_Gen_R, Texture_Gen_S, Texture_Gen_T, Texture_Rectangle_ARB, Vertex_Array, Vertex_Program_Point_Size, Vertex_Program_Two_Side); -- proc_map : glEnable procedure Enable (Capability : in Capability_t); pragma Inline (Enable); -- proc_map : glDisable procedure Disable (Capability : in Capability_t); pragma Inline (Disable); -- proc_map : glIsEnabled function Is_Enabled (Capability : in Capability_t) return Boolean; pragma Inline (Is_Enabled); -- -- Client state. -- type Client_Capability_t is (Color_Array, Edge_Flag_Array, Fog_Coord_Array, Index_Array, Normal_Array, Secondary_Color_Array, Texture_Coord_Array, Vertex_Array); -- proc_map : glEnableClientState procedure Enable_Client_State (Capability : in Client_Capability_t); pragma Inline (Enable_Client_State); -- proc_map : glDisableClientState procedure Disable_Client_State (Capability : in Client_Capability_t); pragma Inline (Disable_Client_State); end OpenGL.State;
Owen864720655/userIntentDataset
Ada
1,080,784
ads
0 24 0.073729 20 0.071803 18 0.061656 19 0.058444 23 0.058124 22 0.05725 21 0.054979 3 0.050712 4 0.049857 5 0.049602 9 0.049094 8 0.045431 1 0.045059 7 0.045013 2 0.044846 6 0.043185 12 0.028974 17 0.027317 10 0.025672 11 0.023767 16 0.01151 0 0.010307 14 0.009419 15 0.004253 24 0.073729 20 0.071803 18 0.061656 19 0.058444 23 0.058124 22 0.05725 21 0.054979 3 0.050712 4 0.049857 5 0.049602 9 0.049094 8 0.045431 1 0.045059 7 0.045013 2 0.044846 6 0.043185 12 0.028974 17 0.027317 10 0.025672 11 0.023767 16 0.01151 0 0.010307 14 0.009419 15 0.004253 20 0.06257875702314612 18 0.06190547745687542 24 0.06176134496889586 19 0.060306871160643774 22 0.058018560949600964 21 0.05770765885381182 23 0.05277149862620484 9 0.04449875116675415 4 0.04004274605521654 5 0.039629445388846225 3 0.038920517692929764 12 0.03672173522174041 8 0.0358471406610365 17 0.03573169183068319 7 0.03564016200426433 1 0.035537325435986554 6 0.03525408554533238 2 0.03521842518686074 11 0.035010926452319284 10 0.03433728487984038 16 0.024364038531788052 14 0.02202244837444646 0 0.02200324352769984 15 0.015919413580141442 13 0.01451958347565953 __DUMMY__ 0.0037308659492756515 false 1.0 1 18 0.06617 22 0.062982 19 0.060374 9 0.054082 20 0.053323 24 0.053025 21 0.05177 17 0.047049 23 0.046203 4 0.043104 5 0.042457 3 0.041516 8 0.03914 1 0.038936 7 0.038904 6 0.038657 10 0.038515 2 0.038367 11 0.03417 0 0.033831 16 0.028536 12 0.025227 14 0.012237 15 0.011424 18 0.06617 22 0.062982 19 0.060374 9 0.054082 20 0.053323 24 0.053025 21 0.05177 17 0.047049 23 0.046203 4 0.043104 5 0.042457 3 0.041516 8 0.03914 1 0.038936 7 0.038904 6 0.038657 10 0.038515 2 0.038367 11 0.03417 0 0.033831 16 0.028536 12 0.025227 14 0.012237 15 0.011424 18 0.06495776447277338 22 0.061990250775796285 19 0.06120922011909421 21 0.055584160161606146 20 0.05335222259655562 24 0.05177363821388772 9 0.048905552714489646 23 0.04634635976712335 17 0.04568937473666402 10 0.04067344255024435 11 0.03939603774529872 4 0.03782332197832246 5 0.03723887613226746 3 0.03570483643139568 6 0.03395618029941455 8 0.03388154981358909 7 0.03374265212634001 0 0.03368925911046983 1 0.033611287419194134 2 0.03310583685298512 12 0.03244897536447002 16 0.0314848525111387 14 0.02118218342578557 15 0.017712460262768296 13 0.011215216240481992 __DUMMY__ 0.0033244881778437233 false 1.0 2 20 0.083445 24 0.080885 23 0.065318 19 0.057714 21 0.054338 18 0.053083 12 0.047492 3 0.04434 4 0.043733 5 0.043702 22 0.041201 8 0.03962 1 0.039618 7 0.039421 2 0.039381 6 0.038167 9 0.031832 14 0.027757 13 0.025485 15 0.023023 11 0.021505 10 0.019901 17 0.019564 16 0.019475 20 0.083445 24 0.080885 23 0.065318 19 0.057714 21 0.054338 18 0.053083 12 0.047492 3 0.04434 4 0.043733 5 0.043702 22 0.041201 8 0.03962 1 0.039618 7 0.039421 2 0.039381 6 0.038167 9 0.031832 14 0.027757 13 0.025485 15 0.023023 11 0.021505 10 0.019901 17 0.019564 16 0.019475 20 0.07142153567863863 24 0.06671027762502406 19 0.06312196889341347 21 0.060351594615562026 18 0.05944049605560053 23 0.05683611517635537 22 0.05068514946782359 12 0.049282484751583866 11 0.03558665553383217 4 0.034316191581093225 5 0.034024367117955645 9 0.03372947116883658 14 0.03348498861894836 3 0.032866018794847074 10 0.032357925489902475 17 0.031465790226760326 13 0.030017013988328532 8 0.02992746946087209 6 0.02987665060044832 7 0.029834969380749487 1 0.029793127973049383 16 0.029554585895933547 2 0.029511378761685924 15 0.025866793937002995 0 0.01568317942132753 __DUMMY__ 0.004253799784424829 false 1.0 3 20 0.115717 19 0.101955 24 0.083132 18 0.081487 21 0.079234 12 0.077526 23 0.066153 16 0.059682 13 0.051246 14 0.05027 22 0.046589 15 0.040739 11 0.038839 17 0.038294 10 0.036236 9 0.007216 4 0.006471 0 0.005762 5 0.005158 3 0.003472 6 0.001461 7 0.001208 1 0.001156 8 9.97E-4 20 0.115717 19 0.101955 24 0.083132 18 0.081487 21 0.079234 12 0.077526 23 0.066153 16 0.059682 13 0.051246 14 0.05027 22 0.046589 15 0.040739 11 0.038839 17 0.038294 10 0.036236 9 0.007216 4 0.006471 0 0.005762 5 0.005158 3 0.003472 6 0.001461 7 0.001208 1 0.001156 8 9.97E-4 20 0.09217706536335564 19 0.08854678621012992 18 0.07562307380336972 21 0.0750386647316066 24 0.07030420307370798 12 0.06687927920966326 23 0.057683185500660636 22 0.053256835200555006 16 0.050498560613386104 14 0.04792243955158815 13 0.045429958703465 11 0.044552617858701044 10 0.041195433686973315 17 0.039617236196002784 15 0.036814622519504174 9 0.01918506007096844 0 0.01598689467746602 4 0.013138155607304445 5 0.01227240314341735 3 0.009944651317740315 6 0.00864671583283515 7 0.007873574404722104 8 0.007760880857417189 1 0.007695906012977252 2 0.007012004718846157 __DUMMY__ 0.0049437911336361615 false 1.0 4 13 0.117399 14 0.103927 12 0.090517 10 0.083109 21 0.075291 18 0.074776 11 0.073892 15 0.05679 22 0.050022 19 0.046275 20 0.041179 0 0.037456 9 0.030547 23 0.027528 17 0.024574 24 0.017129 16 0.014102 5 0.009197 4 0.009003 6 0.008174 1 0.002326 2 0.002301 7 0.002261 8 0.002226 13 0.117399 14 0.103927 12 0.090517 10 0.083109 21 0.075291 18 0.074776 11 0.073892 15 0.05679 22 0.050022 19 0.046275 20 0.041179 0 0.037456 9 0.030547 23 0.027528 17 0.024574 24 0.017129 16 0.014102 5 0.009197 4 0.009003 6 0.008174 1 0.002326 2 0.002301 7 0.002261 8 0.002226 13 0.0898155924901025 14 0.08195047603741155 12 0.07747955777279426 21 0.07300508480347678 18 0.06978359548341104 10 0.06909258454656161 11 0.065789602541923 22 0.05444813743729065 19 0.050828460892445644 15 0.045862533128959306 20 0.04358762471506538 0 0.03600040381276319 23 0.03410122052838369 9 0.03379774881236046 17 0.03069476303902156 24 0.02800954958133444 16 0.020387626399904223 4 0.015706299121677193 5 0.015573413712138572 6 0.01414329640827313 8 0.009596859900970577 7 0.009587603299336082 1 0.00954656714598307 2 0.009386385321080916 3 0.008260203487688703 __DUMMY__ 0.003564809579642347 false 1.0 5 22 0.060025 18 0.057786 9 0.057498 24 0.054133 4 0.050446 19 0.05025 3 0.049342 21 0.049058 5 0.048918 20 0.04842 23 0.047572 8 0.04677 7 0.046715 1 0.046554 6 0.045829 2 0.045722 17 0.039225 10 0.035447 11 0.033038 0 0.03036 12 0.022246 16 0.018235 14 0.010446 15 0.005963 22 0.060025 18 0.057786 9 0.057498 24 0.054133 4 0.050446 19 0.05025 3 0.049342 21 0.049058 5 0.048918 20 0.04842 23 0.047572 8 0.04677 7 0.046715 1 0.046554 6 0.045829 2 0.045722 17 0.039225 10 0.035447 11 0.033038 0 0.03036 12 0.022246 16 0.018235 14 0.010446 15 0.005963 22 0.060719936348925814 18 0.058817114312633596 19 0.053340570226402 21 0.053221037504733795 9 0.051922632223557495 24 0.04950439622661349 20 0.0463767466874774 23 0.045703033176485594 17 0.04264266759502251 4 0.04255063842678833 5 0.04157169428854532 3 0.04058694325992323 11 0.039961715818199746 10 0.039477866829592125 8 0.0389652310152549 6 0.0389404055410593 7 0.03890692153270361 1 0.038727731832741884 2 0.038107308194081854 0 0.03462340264104045 12 0.03032570631739405 16 0.02606923121975443 14 0.019708518865750323 15 0.014329137069606646 13 0.011452704674129944 __DUMMY__ 0.0034467081715821492 false 1.0 6 20 0.119602 19 0.111406 24 0.090112 18 0.081864 21 0.074139 23 0.072107 16 0.062797 12 0.0583 22 0.052678 15 0.047726 14 0.047234 11 0.037891 10 0.0367 17 0.035319 13 0.02956 4 0.00876 3 0.008074 9 0.007686 5 0.007562 8 0.002873 7 0.00249 1 0.002243 2 0.001701 6 0.001174 20 0.119602 19 0.111406 24 0.090112 18 0.081864 21 0.074139 23 0.072107 16 0.062797 12 0.0583 22 0.052678 15 0.047726 14 0.047234 11 0.037891 10 0.0367 17 0.035319 13 0.02956 4 0.00876 3 0.008074 9 0.007686 5 0.007562 8 0.002873 7 0.00249 1 0.002243 2 0.001701 6 0.001174 20 0.09410661532417074 19 0.0929019627892482 18 0.07590355389001342 24 0.0739528911693671 21 0.07218153598900102 23 0.06076770365247931 22 0.05646255002765238 12 0.05640683488965537 16 0.051472960596619696 14 0.04671522349043787 11 0.044050485370237515 10 0.04172900603328916 15 0.04084477142208825 17 0.037683611748891344 13 0.03397399408931317 9 0.01966236360115577 4 0.01461631084458783 5 0.013795028965185318 0 0.012733191352444773 3 0.012672568789228369 8 0.009005364901040775 7 0.008854547680588106 6 0.0087551453479156 1 0.00857197341977941 2 0.008183206686237302 __DUMMY__ 0.003996597929372247 false 1.0 7 19 0.098244 18 0.088139 22 0.086974 17 0.07664 21 0.071896 11 0.067844 16 0.067059 0 0.064538 10 0.062019 9 0.05206 20 0.051731 24 0.03822 12 0.03656 23 0.035768 4 0.01461 5 0.013411 6 0.011214 3 0.010522 14 0.00985 8 0.009849 7 0.009678 1 0.009135 2 0.008791 15 0.005246 19 0.098244 18 0.088139 22 0.086974 17 0.07664 21 0.071896 11 0.067844 16 0.067059 0 0.064538 10 0.062019 9 0.05206 20 0.051731 24 0.03822 12 0.03656 23 0.035768 4 0.01461 5 0.013411 6 0.011214 3 0.010522 14 0.00985 8 0.009849 7 0.009678 1 0.009135 2 0.008791 15 0.005246 19 0.08658412492842228 18 0.07657538214155278 22 0.0741130374036105 21 0.06833402486547074 17 0.06432925068335633 11 0.06134297932890557 16 0.060035710455097036 10 0.05421551371071268 20 0.05414090512678552 0 0.05241868352370848 12 0.043918338680572155 9 0.04380684370970247 24 0.04294444274991944 23 0.04023481762819162 14 0.021613748930291197 4 0.018201277992292653 5 0.017449332476746533 15 0.0157249938022232 13 0.015652725718224337 6 0.015292560146500041 3 0.014495087044775277 8 0.013875311574464148 7 0.013803096564144326 1 0.01345911347828677 2 0.01311083985743473 __DUMMY__ 0.004327857478609072 false 1.0 8 19 0.092637 18 0.090191 10 0.077732 11 0.069701 22 0.068824 21 0.067846 16 0.063436 17 0.062254 20 0.060897 0 0.055291 12 0.053078 14 0.047127 13 0.039442 9 0.039098 15 0.034727 24 0.032039 23 0.030924 4 0.0053 5 0.004765 6 0.002601 3 9.37E-4 7 4.96E-4 8 3.68E-4 1 2.88E-4 19 0.092637 18 0.090191 10 0.077732 11 0.069701 22 0.068824 21 0.067846 16 0.063436 17 0.062254 20 0.060897 0 0.055291 12 0.053078 14 0.047127 13 0.039442 9 0.039098 15 0.034727 24 0.032039 23 0.030924 4 0.0053 5 0.004765 6 0.002601 3 9.37E-4 7 4.96E-4 8 3.68E-4 1 2.88E-4 18 0.08263810974982418 19 0.08177465212864904 10 0.0701838072055768 21 0.06902909558729291 22 0.06721138390870675 11 0.06598287298974077 20 0.05649806379382915 17 0.05502350134164257 12 0.05408204191559533 16 0.05174061793018443 0 0.04920788688277876 14 0.047123545175721246 13 0.04158757624417558 9 0.039861245888837514 24 0.03520125243113271 23 0.033795180432048 15 0.0314662506614964 4 0.011352125763739227 5 0.01090636891463066 6 0.008609729894479992 3 0.007006589826099106 7 0.006517183690373855 8 0.00643861116199578 1 0.0063270719933671135 2 0.006020263367270893 __DUMMY__ 0.004414971120811041 false 1.0 800 18 0.07676122584034514 10 0.07257781290229005 22 0.06436377425115838 21 0.05957353787403561 11 0.059468927988367136 19 0.058210655376929724 14 0.052024116527646616 9 0.05016774616676854 0 0.04839498371233992 17 0.046616253981559004 12 0.04221376841319253 13 0.04180341958327926 20 0.03937984056129915 15 0.034921783166685226 16 0.029674791060100035 23 0.02932772445616779 24 0.0257048244404623 4 0.022539628320660993 5 0.022125779347487114 6 0.020190757088868423 3 0.01854063949008953 7 0.018342120750962684 8 0.01833736237100325 1 0.018188693866288144 2 0.017813860993657258 __DUMMY__ 0.012735971468356129 false 0.0 9 10 0.118606 18 0.110392 22 0.087542 11 0.07996 19 0.078676 14 0.075691 21 0.067482 9 0.063175 0 0.055798 15 0.048201 17 0.045093 20 0.0416 13 0.032123 12 0.023343 16 0.02078 23 0.016224 24 0.011905 4 0.008594 5 0.007433 3 0.004763 6 0.001478 8 6.22E-4 7 4.32E-4 1 8.8E-5 10 0.118606 18 0.110392 22 0.087542 11 0.07996 19 0.078676 14 0.075691 21 0.067482 9 0.063175 0 0.055798 15 0.048201 17 0.045093 20 0.0416 13 0.032123 12 0.023343 16 0.02078 23 0.016224 24 0.011905 4 0.008594 5 0.007433 3 0.004763 6 0.001478 8 6.22E-4 7 4.32E-4 1 8.8E-5 10 0.09201150888620453 18 0.09151891679239171 22 0.07456365686520422 19 0.06809834714783872 11 0.06763818022367094 14 0.063184383757575 21 0.06305834108611338 9 0.05512286050697276 0 0.04969925780095458 17 0.04496744718061429 15 0.04250021380414425 20 0.04209603059906915 13 0.036502366053867766 12 0.03305651099909437 16 0.025740049736266396 23 0.025386915724427084 24 0.021622944106629072 4 0.016765222191295916 5 0.016005819333270267 3 0.012970459476321848 6 0.012027199646206911 8 0.010735750484469852 7 0.010652841856639597 1 0.010392938344375942 2 0.010180367807145964 __DUMMY__ 0.003501469589235545 false 1.0 801 0 0.05950694580409559 17 0.05927667668827176 22 0.05871376911611469 9 0.05782113738500139 18 0.05063394868981325 11 0.04611956269854522 10 0.045053139447015444 6 0.04428590132745779 4 0.043760660642839115 5 0.043243284050463744 8 0.04298801552315056 7 0.04292504362306787 1 0.042794960296170116 2 0.042223558823827126 3 0.040726680007691675 19 0.04048279391711506 21 0.040287176897044856 16 0.03984664581537595 23 0.034122785033510177 12 0.025098420493550808 24 0.024356030924517175 15 0.018255040455429215 20 0.01813900597977566 14 0.015013078152997484 13 0.01345715081615414 __DUMMY__ 0.010868587391004228 false 0.0 802 22 0.05980494709002152 9 0.05875611201023891 0 0.05807889378803148 17 0.05741830586910655 18 0.05074705651019065 11 0.04591179463802871 10 0.04529364759676126 6 0.04444852594650153 4 0.04431909369837623 5 0.04379035150388232 8 0.04330301915624264 7 0.043241050647041784 1 0.043099498082415276 2 0.04252772983466021 3 0.04143526211235282 21 0.041416733234639465 19 0.04007546154887874 16 0.03701156177054365 23 0.034239315999470187 24 0.02531715645465029 12 0.024162306368345446 20 0.018145478666145336 15 0.017868131260546632 14 0.015944251502160982 13 0.012792409576971074 __DUMMY__ 0.010851905133796106 false 0.0 803 21 0.07436776094574772 19 0.07293867924598521 20 0.06649789920193973 18 0.06583886463782408 12 0.06070923934004926 22 0.0601151692907442 24 0.058699380098999276 11 0.05183732628065717 23 0.04995112638257723 14 0.04580689711453926 13 0.04324432037129604 10 0.04302219778060738 16 0.03880118808029641 17 0.038487164879272916 9 0.029945756905780777 15 0.02906876292876217 0 0.025058389391349814 4 0.020086323490051485 5 0.019598206685762724 3 0.01629069228499191 __DUMMY__ 0.01614616788122645 6 0.016084655313977757 7 0.014559725498799027 8 0.014526218466713488 1 0.014313500448711835 2 0.014004387053336446 false 0.0 804 17 0.06568810155692552 16 0.05785901861624049 0 0.0562790046630944 18 0.05369143198825623 22 0.05336391644327176 19 0.05298317502984536 9 0.045817196393853836 11 0.04471762469645041 21 0.040497130591735674 10 0.03995606301988814 23 0.038565885218409805 6 0.03671108976296447 4 0.03551473057529054 8 0.03516964304232329 7 0.035053303575931324 5 0.03504798182543516 1 0.034938881426137144 2 0.03445228355159833 20 0.0334357431022501 12 0.033365162188003485 3 0.032285499978539536 24 0.0319960443068447 15 0.027260704373889208 13 0.017602110668078992 14 0.016215093024196433 __DUMMY__ 0.011533180380545457 false 0.0 805 19 0.07141485570788042 20 0.06763202533348087 21 0.06753965646975357 18 0.06675241393802141 24 0.05827107671550561 22 0.057350483023624645 12 0.05264928026487611 23 0.05027287220074254 11 0.04628591005700899 14 0.04619877601245171 10 0.043986409682681485 16 0.03864895330862016 17 0.03836268475791198 13 0.03809792153295437 15 0.03534044833420121 9 0.031352093307224826 0 0.023699334311104905 4 0.022300245793651072 5 0.021809503924004832 3 0.019412455701338864 6 0.018244186357999858 7 0.017342712298129073 8 0.017333509711024115 1 0.01708780950427471 2 0.01679258488447637 __DUMMY__ 0.015821796867056148 false 0.0 806 19 0.07028435053823605 18 0.06509605483882246 20 0.06051323401067025 21 0.059130660105459844 22 0.055611243808702145 24 0.05052740765383014 16 0.048065310189459705 17 0.04749009595410206 23 0.04732501150815756 12 0.04707089470046864 11 0.04616835121508285 10 0.04476557074780095 14 0.03857549304693736 15 0.035420974966862244 9 0.03407051749620204 0 0.033494310217348944 13 0.032248075524116286 4 0.023935825766759247 5 0.023499737864221302 6 0.02135249644302712 3 0.021138759255870634 8 0.020341965439495093 7 0.020322983254251727 1 0.020120230173213596 2 0.01980293739693303 __DUMMY__ 0.013627507883968822 false 0.0 807 17 0.06605348259317936 16 0.060881166758436155 19 0.059095574861960376 18 0.0575125623394506 0 0.05560524187593074 22 0.05494379442468357 11 0.048656784350810355 21 0.04486631720514806 9 0.04276338831216754 10 0.04257146282093871 23 0.03862102821062842 20 0.038169120186839135 12 0.0381614108190549 24 0.03325154895160164 6 0.031532723983259923 4 0.030643862726317285 5 0.030186727256558202 8 0.029755456116322236 7 0.029655773499137374 1 0.02951556991650057 2 0.029071535633547505 15 0.028119562756581448 3 0.027077000765905405 13 0.021282079051698516 14 0.01944762886064922 __DUMMY__ 0.012559195722693029 false 0.0 808 18 0.06498513360029917 19 0.059510117091794885 22 0.053777386673051486 20 0.05354858666393567 21 0.05201738350320032 10 0.048982730237118986 24 0.045668212333148196 23 0.04451850678894739 17 0.04306971887812373 9 0.04155655774020295 14 0.041388822137385234 11 0.04010058953716291 15 0.0388692226808703 12 0.0369230928994288 16 0.03577933498908482 0 0.03307386403170084 4 0.030197371607220472 5 0.02975501706670775 13 0.02945886616494729 3 0.02818044126385045 6 0.0274306810848448 8 0.027032704638405337 7 0.02696375441126912 1 0.026792572600347547 2 0.02645819780467739 __DUMMY__ 0.013961133572273998 false 0.0 809 17 0.06280714491943037 18 0.05856934580731327 16 0.0580487635704314 19 0.058044366231009656 22 0.051923280675360825 0 0.049995772049764686 20 0.04283136653550723 11 0.04232273987555985 9 0.04218865043451399 10 0.0421314090008582 21 0.04167265181242979 23 0.04010723430942103 24 0.036810863186143766 15 0.03672566663188718 12 0.033720567127254644 6 0.03199111911794507 4 0.03158976771514791 5 0.031123738371470967 8 0.03085191575176796 7 0.030715326972356544 1 0.03057103857454714 2 0.03013883949088624 3 0.028839474803889282 14 0.024571597263264786 13 0.020479188679638733 __DUMMY__ 0.011228171092199583 false 0.0 1000 17 0.06594800255623301 0 0.0588360700775696 16 0.055329201957190835 22 0.054224802718970615 18 0.05268955934062918 19 0.04961158933754836 9 0.048700709966507605 11 0.04532015718808121 10 0.04101137056903391 21 0.039407914054192285 6 0.03883742231498613 4 0.03744535845919057 8 0.03721747682040151 7 0.037108707816072 1 0.036998634272539424 5 0.03696822402088676 23 0.03693378122545891 2 0.03648455727636265 3 0.03411104634551562 12 0.03155757665200925 24 0.028828013832496367 20 0.02863325600936693 15 0.024790254707372807 13 0.016541252232403124 14 0.014621715333538413 __DUMMY__ 0.011843344915443242 false 0.0 810 18 0.07400006852606511 21 0.07120254801184685 22 0.06786921857445889 10 0.06631327157414599 11 0.06531242322948902 19 0.06308178516865723 12 0.054387028757795164 14 0.05108430386409594 13 0.047207357979677185 9 0.04483485638790694 0 0.04466469951403372 17 0.04429364834544452 20 0.04365612486632771 24 0.03335751753467564 23 0.03321720431107652 16 0.03056428247328114 15 0.02687059564828398 4 0.01946451481307828 5 0.01906533593810691 6 0.016593417388257554 3 0.014600247324495587 7 0.014210319935213845 8 0.014143618348250763 1 0.01402140782405896 2 0.013665987933662381 __DUMMY__ 0.012318215727614105 false 0.0 811 21 0.08177764627569839 22 0.07330954673872372 11 0.06679853942660015 19 0.06407077723810878 18 0.06088950072695761 12 0.05950953177553368 24 0.04910553167080082 10 0.04618250391355429 20 0.044681841189222984 23 0.042009815463644254 17 0.041005393975344334 9 0.040428084796476416 14 0.039898515599225234 13 0.03928806089493355 0 0.03682948111143192 16 0.030680352764963278 4 0.023538099546861646 5 0.023033073232028127 6 0.019650819025488892 3 0.018443141446179905 7 0.017348861409184558 8 0.017235371698757312 1 0.017051643064999303 __DUMMY__ 0.01676014419369511 2 0.016629335943555076 15 0.013844386878030744 false 0.0 812 22 0.06834845335615249 21 0.05746682944495111 9 0.05584033597041724 18 0.05498196429300872 11 0.053981990055702006 0 0.04983622413485023 17 0.0495597753583873 19 0.047828562169726856 10 0.04711736046519818 4 0.03820260686813175 5 0.037633028714512684 6 0.0361416682213466 23 0.03562309525567148 8 0.034945952942727176 3 0.03493481410907432 7 0.03491287130070926 1 0.03467795361926747 24 0.034402168653973705 2 0.03416431403705224 12 0.03259064687914703 16 0.029777803401591516 20 0.025731762074782172 14 0.025624620725590238 13 0.01872042826826432 15 0.01588271367690226 __DUMMY__ 0.01107205600286182 false 0.0 813 21 0.08173347041834834 12 0.07015944178884964 22 0.0653571166068101 19 0.06408968808356824 11 0.0627156249716091 18 0.0600563687840753 13 0.052638184077408466 20 0.05036760182610406 24 0.050258548325707766 23 0.04676180070145479 14 0.04495100473996522 10 0.04350076298727637 17 0.037793388400820034 9 0.033298162120244335 0 0.032326466736171997 16 0.03152001667642087 4 0.02170836432935861 5 0.021218407513924085 6 0.018519814528306987 __DUMMY__ 0.017470870928632008 15 0.016871035135628654 3 0.015739296031539837 7 0.015471238129102765 8 0.015379003489150635 1 0.015221713987859946 2 0.014872608681661754 false 0.0 814 21 0.0726701274001466 19 0.06802967054108332 22 0.06297774576959918 18 0.06296945544654864 20 0.05759668329722347 12 0.05521113006708061 24 0.05434884546090193 11 0.053437949001378875 23 0.04753931170892163 10 0.04375367156837786 14 0.04221228286948764 17 0.039399444178939765 13 0.03808845066069273 16 0.035709944452013406 9 0.035178147747008726 0 0.02927094441071426 15 0.025468971386367997 4 0.02367586954269944 5 0.023183040723863048 3 0.019974863082691148 6 0.01978709852427216 7 0.018359232771674998 8 0.018310691162895885 1 0.018105546885614752 2 0.017746535606395757 __DUMMY__ 0.016994345733406527 false 0.0 815 21 0.07848488879512201 22 0.0662858839329786 19 0.06614853546729349 12 0.06147195181921021 18 0.061327550409459544 11 0.05939324668678052 20 0.053004213501425444 24 0.05295996355887715 23 0.046515516389626616 10 0.04346211828776238 13 0.043110067624189105 14 0.04275738152316197 17 0.03860883931364246 9 0.035277499122052025 16 0.03277706376960007 0 0.030976274582237392 4 0.02285888530969048 5 0.02236285656714666 15 0.0198453186026405 6 0.01906391640964081 __DUMMY__ 0.018466819172310585 3 0.018106980283465635 7 0.01692527266085448 8 0.016853043157907 1 0.016660014961026964 2 0.016295898091897895 false 0.0 816 19 0.07425793474060527 21 0.07112243256667733 20 0.07002545219024929 18 0.06708057045126167 24 0.06029613736514955 22 0.05813849732782477 12 0.057222078449293376 23 0.05102887115197045 11 0.04829703157665916 14 0.04590340831383766 10 0.042816980324706135 13 0.04040268822980909 16 0.04037448477992638 17 0.038623363013157046 15 0.032987977945219155 9 0.02925889868873318 0 0.0231843012672456 4 0.020342558934811714 5 0.019856934680803427 3 0.017131569046325398 6 0.016220726814698175 __DUMMY__ 0.015845620596364764 7 0.015096814882887902 8 0.015080613087744365 1 0.014847152332679255 2 0.01455690124136 false 0.0 817 21 0.07761631032766189 12 0.06652345094714145 19 0.06409071735491338 22 0.06213946078696917 18 0.061985040931213826 11 0.057917088485595715 20 0.05442122277239302 13 0.052818916787081296 24 0.05119584673957978 14 0.049542954997199226 23 0.04635554370136747 10 0.045143010774905644 17 0.03647606216475032 9 0.032812376065482436 16 0.03137114124251389 0 0.02937154818975389 15 0.024726215798404238 4 0.02150363047811285 5 0.021032935144452737 6 0.018145782331283708 __DUMMY__ 0.017169202053798894 3 0.01624375681476807 7 0.015542883051988579 8 0.01551454045501186 1 0.015329186656997363 2 0.015011174946659517 false 0.0 818 21 0.08050592572356405 22 0.06763054790001949 12 0.06404887653157115 19 0.0636213722545264 11 0.06214170933002476 18 0.059629236530276825 24 0.051272504715763396 20 0.049014084140409364 23 0.04592697787424959 13 0.04562640194829263 10 0.04313790149228254 14 0.042670626219393215 17 0.03817533178346612 9 0.03593773600180542 0 0.03241980692523346 16 0.030631460013135325 4 0.0234140365445345 5 0.022908549513843805 6 0.019805973825318655 __DUMMY__ 0.018504109311506773 3 0.01808072949867046 7 0.01726611899306838 8 0.017176802092969935 1 0.01699518215282592 15 0.016836500294873418 2 0.01662149838837443 false 0.0 819 21 0.080801857130463 22 0.06770408729233772 12 0.06461714370375708 19 0.06336544552747489 11 0.06251950090780813 18 0.059448580942600734 24 0.0510460765786725 20 0.04861557442360246 13 0.04621541581031339 23 0.04588905344426871 10 0.043103452470569174 14 0.042766988175294667 17 0.03812395025078875 9 0.03587751280540556 0 0.03258177015868594 16 0.030454134009269954 4 0.02338424207786271 5 0.02287847089588206 6 0.01981579811276759 __DUMMY__ 0.018510776295290323 3 0.017953334057809307 7 0.01720546752364619 8 0.01711489566404133 1 0.016934485925797497 2 0.016561064625253474 15 0.016510921190336963 false 0.0 1011 21 0.08067183047205657 22 0.07451201064575193 11 0.06650701487832164 19 0.06408085211410164 18 0.060761902143961675 12 0.05596074083424587 24 0.04959120501425083 10 0.04575275619579164 20 0.04398343772456142 17 0.04194359380343019 23 0.041798517349984 9 0.04175731152784285 14 0.03812322435013026 0 0.03724283283828767 13 0.035030300835740213 16 0.031097811976153036 4 0.024554874515935715 5 0.024039401488349047 6 0.020527972498320397 3 0.019765080345965715 7 0.018472547640669874 8 0.01836603100813503 1 0.018161054760268656 2 0.017722153094862962 __DUMMY__ 0.01552559234285628 15 0.014049949600024512 false 0.0 1010 21 0.08219772273865741 22 0.07337607456862816 11 0.06713430276303009 19 0.06388035769890209 18 0.060644372685061426 12 0.06018878067137673 24 0.049116173374819425 10 0.046008354088053156 20 0.04446463045352988 23 0.042091973903961126 17 0.040838709909328225 9 0.04027101082005233 14 0.040033209157656 13 0.03991171718941962 0 0.03680308188325379 16 0.030480429538006806 4 0.023506928635455344 5 0.023001956584284233 6 0.019637320336898235 3 0.018322062279685997 7 0.01727212111840458 8 0.01715742114715846 1 0.01697499579528904 __DUMMY__ 0.016620920133486705 2 0.016553263629931703 15 0.01351210889566953 false 0.0 1008 21 0.0821778797360108 22 0.07333845974235031 11 0.06711308646897785 19 0.0638683039346108 18 0.060638436754761375 12 0.06021722581181525 24 0.0491003131938753 10 0.0460048222646648 20 0.04447010529533329 23 0.04209802036782147 17 0.04083718743024372 9 0.040254357250737 14 0.04003732169716573 13 0.03995342143705702 0 0.03680359272897675 16 0.030488238765761545 4 0.023506162610505074 5 0.023001451684341916 6 0.019641886291359826 3 0.018318811894745077 7 0.017274010766719895 8 0.01715941343301001 1 0.016977329535089573 __DUMMY__ 0.016647277650580182 2 0.01655581199084433 15 0.01351707126264093 false 0.0 1007 21 0.07486333507847746 12 0.06838092905048586 13 0.06227855495315851 22 0.0601863483816768 18 0.05925587683423013 11 0.058996329250114006 14 0.0554595949541039 19 0.053828464335351635 10 0.0485490305807646 20 0.04396215247208066 23 0.042844677530403746 24 0.04234916382992001 9 0.035886240869941494 17 0.034557209989408144 0 0.03288539195655381 15 0.026803678752862402 16 0.024528264093535503 4 0.02415926045536164 5 0.023711178672358293 6 0.021714012271843264 8 0.018330046547579474 7 0.018284535853518802 1 0.018133912682984095 3 0.017913162129360106 2 0.017835764394333563 __DUMMY__ 0.014302884079592165 false 0.0 1006 21 0.07498519844186338 12 0.06442408730360981 19 0.06347309257693923 22 0.059229169011863744 18 0.0586347666179518 20 0.05648751448789441 24 0.05543605260144942 11 0.05298867738472317 23 0.05168296605298642 13 0.04892520879793763 14 0.04543400944929135 10 0.03877030685502251 17 0.035530641034548546 16 0.032251061579348116 9 0.03069090842955767 0 0.025897495305530295 15 0.02469527043423249 4 0.024484001438290683 5 0.023961132380738756 6 0.021161199729434373 3 0.01954838582425059 7 0.01883425897839603 8 0.018777080044691228 1 0.018582215022470414 2 0.01824474325114038 __DUMMY__ 0.016870556965837554 false 0.0 1005 21 0.08071141341132457 22 0.07293317610867901 19 0.06616456601498921 11 0.06476839705104084 18 0.06202949571951562 12 0.05687272857642177 24 0.05167047146608227 20 0.048165834510283 10 0.045841127302892345 23 0.04335424410066155 17 0.040586132032147997 14 0.040197781511293634 9 0.039755395160254704 13 0.0363796556851155 0 0.03457157582884122 16 0.03167487312419493 4 0.023469014732932208 5 0.02296697894588888 6 0.01922227547368657 3 0.018873666101600375 7 0.017298485344629973 8 0.01719133800504264 1 0.016986328191611378 2 0.01658187366308315 15 0.0165163705384257 __DUMMY__ 0.015216801399360632 false 0.0 1004 21 0.08103171096369383 12 0.06847343400915222 19 0.06657173594600267 22 0.06539762442235794 18 0.061956629501238376 11 0.0617836712130779 20 0.05322261472073488 24 0.05130409971897931 13 0.05002867343075902 23 0.04630310474066794 10 0.04464254896412091 14 0.04405416591378554 17 0.038630386266730404 9 0.03352449277165341 16 0.03319127725683167 0 0.0321808665877939 4 0.02097626219189685 5 0.02051126929980995 6 0.017570041080428436 15 0.01741340482822039 __DUMMY__ 0.017334546360163263 3 0.015467569638961043 7 0.014823795753670644 8 0.014747166537294968 1 0.01459136534286269 2 0.014267542539111994 false 0.0 1003 21 0.07832901405404633 12 0.06678625510547313 22 0.06302234669347573 19 0.06094392678146943 11 0.058216934899613854 18 0.05671576135241319 24 0.05153755139541524 13 0.04986494419853745 23 0.04985608772432035 20 0.0490408392676638 14 0.04294905331820113 10 0.03930822247586379 17 0.03654453208945171 9 0.03332511192610449 0 0.03024960825733863 16 0.030090544318366462 4 0.02526626942076002 5 0.024743739141117556 6 0.02217964978326745 3 0.019524111139230985 7 0.01931522962797124 8 0.019229608503582338 1 0.019054640660784748 2 0.01868361386297564 15 0.017975696207026833 __DUMMY__ 0.017246707795528445 false 0.0 820 21 0.08045984422008526 22 0.06971354170703124 19 0.06359178974290577 11 0.06341157139274244 12 0.061431892988119165 18 0.06006412958962166 24 0.05054584806707994 20 0.047381432708024335 23 0.04438120283213175 10 0.04423199015711684 13 0.04246953675849784 14 0.041528994520701794 17 0.039190972062931775 9 0.037883583212547235 0 0.03389161724850425 16 0.03051225941109067 4 0.023735035637821637 5 0.02323059104124974 6 0.019981749508038316 3 0.018596438146812774 __DUMMY__ 0.018260660462348702 7 0.017604696423429104 8 0.017513694808165198 1 0.017327584889206327 2 0.01693700003465876 15 0.016122342429137283 false 0.0 1002 21 0.08096304310934262 22 0.07254052590916943 11 0.06436334461358399 19 0.06248117030247658 18 0.05835782898397551 12 0.058249472577968586 24 0.051075116078027075 20 0.04418288895910867 23 0.04374719166784385 10 0.04270265203112713 9 0.040314904565005416 17 0.040228823534590584 14 0.039022681680462 13 0.037942505223046846 0 0.03518550872555077 16 0.029912985811228504 4 0.025531637629268102 5 0.024997983364670177 6 0.0216206556444852 3 0.02055032815785556 7 0.019410477420331366 8 0.01932501768001594 1 0.019122922662356753 2 0.01868291025636467 __DUMMY__ 0.01515608684786062 15 0.014331336564283986 false 0.0 821 21 0.074486431802378 19 0.07270465919908708 20 0.066080746455163 18 0.06568958805124968 12 0.06078258916290494 22 0.06026584291167102 24 0.058501434921006595 11 0.05206241597658888 23 0.04984304540760528 14 0.045743157077984 13 0.04331492367909118 10 0.04303091624919219 16 0.03860584082057681 17 0.03847301777213548 9 0.030077064965408327 15 0.028796508033038258 0 0.025228350144489688 4 0.02015543299282776 5 0.019667168308379345 __DUMMY__ 0.016374049941484527 3 0.01632396752519288 6 0.016165587218787705 7 0.014616367629576561 8 0.014581710463135491 1 0.014369810583344671 2 0.014059372707700595 false 0.0 1001 21 0.07759759478422468 22 0.0696907087024752 19 0.0668263699686887 18 0.06249005228354047 11 0.06077344370695118 12 0.05549713006452291 24 0.053392160255212186 20 0.051987966654511136 23 0.04477199519762882 10 0.04472455173567889 14 0.04098401724112966 17 0.040351820102492955 9 0.03804757791648244 13 0.03608988842671826 16 0.0332925321516423 0 0.03227360887524484 4 0.023580610355969693 5 0.023065857446776847 15 0.020548826944383886 6 0.01940464318934945 3 0.019379317652872187 7 0.017724646988587615 8 0.017644615036176873 1 0.017425633577060985 2 0.01703194224133242 __DUMMY__ 0.015402488500345698 false 0.0 822 21 0.08047719390252585 22 0.06973987924963271 19 0.06356889379326827 11 0.06344281987584297 12 0.06143478890428661 18 0.06005039461721905 24 0.05052576449204262 20 0.047332857748340694 23 0.04436760017877677 10 0.04423601646881764 13 0.04246811381046103 14 0.04151863887748309 17 0.03919362327386823 9 0.03790496756049265 0 0.033915192250273674 16 0.030491426609808418 4 0.023744963221304278 5 0.023240466137920097 6 0.019992231137574753 3 0.01860280820580144 __DUMMY__ 0.018246832371102056 7 0.017612941818693523 8 0.0175217893566737 1 0.01733574411687556 2 0.01694493968463271 15 0.016089112336281654 false 0.0 823 21 0.07911143286869621 22 0.06796053920403908 12 0.06153417855932164 11 0.06146155217912835 19 0.060200876515921105 18 0.05692419722722317 24 0.050308794941336936 23 0.04656597273698278 20 0.04490086705798812 13 0.043504427277846196 10 0.04121699558803329 14 0.04097923103752241 17 0.037873959484599824 9 0.037496944591623636 0 0.032929334852972204 16 0.02870834977146548 4 0.02611692605321723 5 0.025594160537696257 6 0.022633671784176152 3 0.020741846576366234 7 0.020094543214966412 8 0.019995127988241018 1 0.019807366021298487 2 0.01940608336830347 __DUMMY__ 0.017934988929209052 15 0.01599763163182545 false 0.0 824 21 0.07197738364327565 22 0.06191743450206962 12 0.06085712348463514 18 0.057511703069463085 11 0.05695689068567695 19 0.05293365278729636 13 0.05261768264360984 14 0.04953655080314781 10 0.04630894656688706 24 0.043188198306557964 23 0.04260529824156452 20 0.04152924436141326 9 0.03922922734825487 17 0.03655567950493922 0 0.03430117188059009 4 0.02736151471547492 5 0.02687313138987135 16 0.025115748342539015 15 0.025006581356542774 6 0.024747308606015747 8 0.02193888824817727 7 0.02188109482995444 3 0.021855515050535006 1 0.021714308396857566 2 0.02137814831230854 __DUMMY__ 0.014101572922341665 false 0.0 825 21 0.08050378349968461 22 0.06979890301997797 11 0.06368114269246108 12 0.061845396640240836 19 0.06051657224542429 18 0.057626867859683295 24 0.04950817262458229 23 0.04508946433400423 20 0.04379826101333395 13 0.04340147801589548 10 0.04252573426560281 14 0.04099845141794705 17 0.03851327712982508 9 0.038449366820537074 0 0.034293472829710354 16 0.028475615873782032 4 0.02549085743039855 5 0.024964927992486716 6 0.021943645802374886 3 0.020005222766076296 7 0.01934083667019424 8 0.019242588746793472 1 0.019053190956536965 2 0.01864027303505329 __DUMMY__ 0.017517183297576882 15 0.014775313019816124 false 0.0 826 21 0.0731059371895688 19 0.0679242066892489 18 0.06425187371549378 20 0.06129152981377721 12 0.0605330934414467 22 0.05963496828134378 24 0.054887336255424 11 0.05243736550969351 14 0.04817717397717025 23 0.048117251746891986 13 0.04628307569321024 10 0.04440848409002229 17 0.03749613733504855 16 0.03529262278075597 9 0.03179196753651079 15 0.03002478060303199 0 0.02659058960648996 4 0.021530147936731022 5 0.021068621684842477 6 0.01785955186976497 3 0.01743414397963097 __DUMMY__ 0.016330245494787027 7 0.016080893927679904 8 0.016052039702070968 1 0.015852332581896965 2 0.015543628557467087 false 0.0 827 21 0.08049747818905635 22 0.07071588514492266 11 0.06435950664669784 12 0.06079260743195377 19 0.06020497190912143 18 0.05750371749033861 24 0.04900048192721344 23 0.044576739142783164 10 0.042752523634318584 20 0.04255669651467703 13 0.042206835978227185 14 0.04043641667970908 9 0.039310872251156204 17 0.03903032046048826 0 0.03512826117950811 16 0.028370564241449337 4 0.025814275834613733 5 0.025281772855426612 6 0.02225906187387946 3 0.020346994695510715 7 0.019687632429862413 8 0.019583963119794316 1 0.019392133668916206 2 0.018961623145707335 __DUMMY__ 0.016851104370918468 15 0.014377559183749392 false 0.0 828 21 0.08102455814461688 12 0.07069502059281689 22 0.06396903674423435 19 0.06204069314992064 11 0.061385162802676974 18 0.05866059522929338 13 0.054275510107190346 24 0.05028961051843648 20 0.04959223026858903 23 0.04791690551088068 14 0.04568173553524305 10 0.04217345282278336 17 0.036510153716108704 9 0.032797753113619016 0 0.03123372043486251 16 0.0299607886246051 4 0.022787075276320182 5 0.022281528716241315 6 0.01972499578298288 __DUMMY__ 0.0174965236479286 15 0.017476092935621444 3 0.016672587584344832 7 0.01657558628620819 8 0.01648564843470575 1 0.016324375482846237 2 0.015968658536923294 false 0.0 829 21 0.06936899267553145 22 0.06269157200006605 18 0.06267458680434108 19 0.06265686834223 11 0.05327117390186024 20 0.05249853103987298 12 0.05155228864993639 24 0.05015413203755621 14 0.048300703685009425 10 0.046376792822978276 23 0.04425971534328092 13 0.04017541110459896 17 0.03923716162205841 9 0.037225241109391356 15 0.03305573643573512 16 0.0329580162059333 0 0.030330265020875085 4 0.024374398358626585 5 0.02389372806022991 6 0.02077358969721925 3 0.020558404620040927 7 0.01921444016591386 8 0.01921276559655493 1 0.018974354537304085 2 0.01863381044637341 __DUMMY__ 0.017577319716481583 false 0.0 1009 21 0.07867034484028505 12 0.06651748352340232 22 0.0661003675023951 11 0.06321450306949603 19 0.06183730979994474 18 0.05984683585854389 13 0.04884501523611257 24 0.04617829249068147 20 0.04591768572889703 10 0.045604757085808134 23 0.04364660911764453 14 0.041172100105597846 17 0.040814840912954044 0 0.03717201759332472 9 0.03710539791209448 16 0.032317624857436444 4 0.023516066308536525 5 0.02306163429055045 6 0.020724480851831102 7 0.017787402118589476 3 0.017778973728762335 8 0.017693166101040266 1 0.01758024333674614 2 0.017200002687909263 __DUMMY__ 0.015059144863962934 15 0.014637700077453126 false 0.0 1022 21 0.07494312000513019 22 0.07081855142826719 18 0.06329014010715783 19 0.0631651434988614 11 0.06273165042584539 12 0.051929289405340924 10 0.049175752887054454 24 0.047555112789592284 20 0.0460531409565448 23 0.041940544223285435 9 0.041890358393541195 17 0.040907487994865065 14 0.0408018140449868 0 0.036196156984304825 13 0.03490742632479062 16 0.030328025735140783 4 0.025239818450341116 5 0.02474493680634163 6 0.021261497705009205 3 0.020963951127198684 15 0.020029584173609255 7 0.01949556975984311 8 0.01942242934474434 1 0.019206298794022605 2 0.01883613131171124 __DUMMY__ 0.01416606732246966 false 0.0 1021 21 0.08132232976580671 19 0.06745611682340223 22 0.0673811090108827 12 0.06543424150755962 11 0.06224830905677807 18 0.06211904897120747 20 0.0531489474954135 24 0.052482086079127195 13 0.046103278334009665 23 0.04572819204131739 10 0.04442535844988251 14 0.04321946505245581 17 0.039190501724067864 9 0.034628968999619474 16 0.03351287733968484 0 0.03215670351322962 4 0.0211556210746363 5 0.020668046971384964 15 0.017691144002271418 __DUMMY__ 0.01750327255358291 6 0.01744610129758154 3 0.01597032882864455 7 0.014998016553374674 8 0.014909432584084269 1 0.014733637425075793 2 0.01436686454491897 false 0.0 1020 21 0.08104655901778296 22 0.07527224881073248 11 0.0680475819954345 19 0.06312987458325574 18 0.060662563077624916 12 0.05637351555522859 24 0.047677797660401665 10 0.04679490752757028 9 0.04263084472982979 17 0.04237770743117258 20 0.041754029919295485 23 0.04064024155779895 0 0.03885679814186927 14 0.038186541802620974 13 0.035821510352326766 16 0.030538557213589158 4 0.024506568717482427 5 0.023997942994653347 6 0.020613301716190066 3 0.01952148382868225 7 0.018414229604249027 8 0.018299130796112707 1 0.01810421203062772 2 0.01765791379309044 __DUMMY__ 0.01599720294671839 15 0.01307673419565946 false 0.0 1019 21 0.08216689754620722 22 0.07334172010918626 11 0.06709307528768642 19 0.06385685277035472 18 0.0606170412677093 12 0.06018461738683622 24 0.04912302032078056 10 0.04597547402481048 20 0.04446363609143638 23 0.042107728724477274 17 0.040836877005428394 9 0.040263081646789475 14 0.04001826949740007 13 0.039913237315695224 0 0.03679332280457474 16 0.030485597741051376 4 0.023527123766851968 5 0.023022154892185464 6 0.019661359505859254 3 0.018343487316155368 7 0.017296388980765336 8 0.017181994040289646 1 0.016999654336242256 __DUMMY__ 0.016629731133698315 2 0.016577873289052608 15 0.013519783198475655 false 0.0 1018 21 0.08200411530897316 12 0.07108299977658117 22 0.06515385864231908 19 0.06345153918180933 11 0.06292279593663633 18 0.05956057113848934 13 0.05377101474349371 24 0.050005926256198666 20 0.049817288108100696 23 0.046892113397169 14 0.04523493447293235 10 0.04323132692415399 17 0.03748617905502203 9 0.03311148902238487 0 0.03231998811530886 16 0.031079377111720204 4 0.021837744400626167 5 0.02134787296761991 6 0.018720918806508932 __DUMMY__ 0.017357183325115384 15 0.016556436787164574 3 0.015725794261634535 7 0.015565221472961334 8 0.015474279136353939 1 0.01531820251506696 2 0.014970829135655396 false 0.0 1017 21 0.07142526465660184 19 0.06420883174144311 22 0.0636908012543007 18 0.058820193921144445 24 0.05538254073950768 20 0.05345271728361782 12 0.05326257450251895 11 0.05302978974796187 23 0.047945329078481695 17 0.04035378674771875 10 0.039269210627871705 14 0.03845745709535838 9 0.03627518279308825 16 0.035166552234843045 13 0.03474125510990845 0 0.029992468323056895 4 0.026705766372334874 5 0.026180070780955134 15 0.023465600274505546 6 0.023048606625466102 3 0.022925515100179785 7 0.021548463913548407 8 0.02154536741419548 1 0.021306490976245835 2 0.02093850836095528 __DUMMY__ 0.016861654324189852 false 0.0 1016 21 0.06918395219331158 22 0.0661738372368059 11 0.06000409107797211 18 0.056017156112678004 12 0.05258614311706509 19 0.05043936667557418 10 0.04754944479900061 9 0.04578487470773628 0 0.041187970137976454 17 0.04050043114606733 23 0.04044003320460333 13 0.03950080982764056 24 0.039274874239895965 14 0.037621414766469886 20 0.03363887589715736 4 0.03176018548702438 5 0.03131567174138516 6 0.029221505811938175 7 0.02681955229546649 3 0.02680151650595694 8 0.026754308154934826 1 0.026642960491150655 2 0.026214648347518413 16 0.025099189637799203 15 0.015568536726947168 __DUMMY__ 0.013898649659923885 false 0.0 1015 21 0.07491486180993766 22 0.07081506798134463 18 0.0633688611157039 19 0.06324434749703232 11 0.06270217855933168 12 0.051866177587097544 10 0.04922056375719239 24 0.04760137733758028 20 0.0461653416961925 23 0.0419616013764583 9 0.04187537734695074 17 0.04090596260183695 14 0.0408450946700783 0 0.03615196372032272 13 0.034855963750421416 16 0.03036027878624399 4 0.025216962414206068 5 0.024721857864792942 6 0.021228679300096955 3 0.020953151698816536 15 0.020131054514626164 7 0.019471705241066943 8 0.019398958905696685 1 0.019181901433872977 2 0.018812739227967314 __DUMMY__ 0.014027969805131883 false 0.0 1014 21 0.07761413957010017 22 0.06972540867212741 19 0.06681256602660586 18 0.062486936225301055 11 0.06081208376013435 12 0.055489241175069155 24 0.05337032706255712 20 0.0519430528098949 23 0.044751120793924404 10 0.04473981457920385 14 0.0409712550765994 17 0.04036149903511299 9 0.03807404001000473 13 0.03607456666768267 16 0.033278247149408115 0 0.03230323661693586 4 0.0235860429304868 5 0.023071263762452342 15 0.02051773713753624 6 0.01940976144439446 3 0.019382531971853134 7 0.017728601832720754 8 0.017648341898278734 1 0.01742939920491553 2 0.017035456454902724 __DUMMY__ 0.015383328131797375 false 0.0 830 21 0.0810245581446169 12 0.07069502059281692 22 0.06396903674423435 19 0.06204069314992064 11 0.061385162802676974 18 0.05866059522929338 13 0.05427551010719035 24 0.05028961051843648 20 0.049592230268589055 23 0.04791690551088069 14 0.04568173553524306 10 0.04217345282278338 17 0.03651015371610871 9 0.032797753113619016 0 0.031233720434862517 16 0.029960788624605102 4 0.022787075276320193 5 0.022281528716241315 6 0.019724995782982882 __DUMMY__ 0.017496523647928596 15 0.01747609293562145 3 0.016672587584344836 7 0.01657558628620819 8 0.016485648434705753 1 0.01632437548284624 2 0.015968658536923298 false 0.0 1013 21 0.07439014817873975 19 0.07184610887686595 18 0.06518513738873201 20 0.06488556293817004 12 0.060783673610592476 22 0.060357083082550465 24 0.05783851590427119 11 0.05233282823344846 23 0.04960000689570226 14 0.04557172112177366 13 0.04350975049634555 10 0.04299985956450292 17 0.03846184772206834 16 0.03812092242380932 9 0.030431450625409855 15 0.02834206863398016 0 0.025692982834411262 4 0.020490611037533007 5 0.02000330004593265 __DUMMY__ 0.0169895107239236 3 0.01658100793317789 6 0.016571723416358274 7 0.014962858212759783 8 0.01492753774112553 1 0.014718242001931175 2 0.01440554035588419 false 0.0 831 21 0.0810245581446169 12 0.07069502059281689 22 0.06396903674423436 19 0.062040693149920646 11 0.061385162802676974 18 0.058660595229293386 13 0.05427551010719035 24 0.05028961051843648 20 0.04959223026858905 23 0.04791690551088069 14 0.04568173553524305 10 0.042173452822783376 17 0.036510153716108704 9 0.032797753113619016 0 0.03123372043486251 16 0.0299607886246051 4 0.02278707527632019 5 0.022281528716241318 6 0.01972499578298288 __DUMMY__ 0.017496523647928603 15 0.017476092935621444 3 0.016672587584344836 7 0.01657558628620819 8 0.016485648434705753 1 0.016324375482846244 2 0.015968658536923298 false 0.0 1012 21 0.08219827263486043 22 0.0733759089584521 11 0.06713458922072395 19 0.06388042072172441 18 0.06064445164937333 12 0.06019000082341493 24 0.04911613750563867 10 0.046008504598379706 20 0.044464837453748116 23 0.0420921272694052 17 0.04083849352159032 9 0.040270693167878444 14 0.04003378361650929 13 0.03991307231861677 0 0.03680303298192916 16 0.030480322502407734 4 0.023506695816271305 5 0.023001725610046018 6 0.019637121845014927 3 0.01832171624392345 7 0.017271836933693767 8 0.017157134604104122 1 0.016974714848151936 __DUMMY__ 0.016619426695897596 2 0.016552986431004817 15 0.01351199202723948 false 0.0 832 21 0.08102455814461688 12 0.07069502059281689 22 0.06396903674423435 19 0.06204069314992064 11 0.06138516280267697 18 0.05866059522929338 13 0.054275510107190346 24 0.05028961051843648 20 0.04959223026858903 23 0.04791690551088068 14 0.045681735535243045 10 0.04217345282278337 17 0.036510153716108704 9 0.032797753113619016 0 0.03123372043486251 16 0.029960788624605095 4 0.022787075276320186 5 0.022281528716241318 6 0.01972499578298288 __DUMMY__ 0.0174965236479286 15 0.017476092935621444 3 0.016672587584344832 7 0.01657558628620819 8 0.01648564843470575 1 0.01632437548284624 2 0.015968658536923294 false 0.0 833 21 0.07320842041924097 22 0.0644413926617872 12 0.05855893713880854 11 0.057678483624047316 18 0.056335071558743434 19 0.05371653731661102 13 0.04741753554989571 14 0.045783442140962353 24 0.045207488395481804 10 0.044124955461805594 23 0.043266717494699986 20 0.04071404458174758 9 0.040357440730694305 17 0.0371886882787904 0 0.03443608887786453 4 0.028489071463156834 5 0.027968719436910823 6 0.025563581130926778 16 0.025270541672806266 3 0.02321065505011509 8 0.02296780314128709 7 0.022931020202099247 1 0.022733405392650965 2 0.022368355756270632 15 0.021927664410903866 __DUMMY__ 0.014133938111691651 false 0.0 834 22 0.06728296818536848 21 0.06400658417788728 18 0.053344067120651914 11 0.053129783186220476 19 0.05216101592460917 9 0.048424630526604055 24 0.04458441336409196 17 0.04411091309036664 23 0.04185705139006864 10 0.04085314972977253 0 0.04023352609479787 12 0.040233094047431146 4 0.0356999514532712 5 0.03516713179176691 20 0.03489476354280128 6 0.03278538070305223 3 0.03226244569459861 8 0.03150567014888073 7 0.03150375071588506 1 0.03128430520622879 2 0.03081618716072115 14 0.029802475666262145 16 0.02960876674337627 13 0.023718502922906066 15 0.017350320721139886 __DUMMY__ 0.013379150691239605 false 0.0 835 22 0.06491472631009662 21 0.05539500465810889 9 0.053787285281274924 18 0.05145079608449461 11 0.04868804500337626 17 0.04666751458455644 19 0.04609084587666923 0 0.04495266019253137 10 0.04192064944342785 4 0.04075836639549079 5 0.04020477757957882 23 0.039534462813823584 6 0.038562534701638125 24 0.03850310805277502 3 0.037868510494363156 8 0.03763111446437375 7 0.03760167278064149 1 0.03740365415178792 2 0.0368838986831117 12 0.03165767906917324 16 0.028779248457034876 20 0.028079288646877774 14 0.025037642818192044 13 0.017772751808722797 15 0.017511648975861285 __DUMMY__ 0.012342112672017421 false 0.0 836 21 0.07197225855233398 22 0.06934924103978019 11 0.06213853836303831 18 0.05749307592288294 19 0.05467563904825492 12 0.0518681263588496 10 0.04713072915515928 9 0.04538634143111981 17 0.04192591352071962 24 0.04191684547592282 0 0.040950309810984735 23 0.04026506870124838 14 0.03655727613638094 13 0.03601187274325188 20 0.0359858631596144 4 0.02984495782497674 5 0.0293725149903037 16 0.027592703836734858 6 0.02686811461622067 3 0.02507124455524359 7 0.024671734948895407 8 0.024593267312256036 1 0.024447565216847208 2 0.02400579784161109 __DUMMY__ 0.015020613990755051 15 0.014884385446613939 false 0.0 837 18 0.05818927510405145 22 0.05775902691476708 19 0.052458555144402556 21 0.05153880325098613 9 0.046675979279077164 10 0.04485102295076305 17 0.04419299159978869 24 0.04352477726536649 20 0.04304981355548504 23 0.04177394849800172 11 0.041567984565629545 14 0.03838245877309383 15 0.03687095558560409 0 0.03639974703074421 4 0.035090467497843274 5 0.03458112724534484 3 0.03307548302514553 16 0.03292859995471987 6 0.03249571622329288 8 0.03215787445587076 7 0.0320530837791322 1 0.031857013233110375 12 0.03152725766938352 2 0.03147294743986829 13 0.024097600178111928 __DUMMY__ 0.011427489780415455 false 0.0 838 21 0.07496269766157679 19 0.07347945106561803 18 0.06613543796444216 20 0.06593669459048317 22 0.061790315943967104 12 0.05919430141982782 24 0.05888119331040441 11 0.052949250075973564 23 0.0495476488243783 14 0.045195809412606563 10 0.04355969731883154 13 0.041024253217193246 17 0.038750109901156814 16 0.03870234358190688 9 0.030849328041363717 15 0.028527621052058076 0 0.025480570094406792 4 0.020158545354528684 5 0.019674397868041767 3 0.0165066380200338 6 0.015950216151135975 __DUMMY__ 0.015401887930492339 7 0.014556273591803906 8 0.01450559721882388 1 0.014294065895386305 2 0.013985654493558644 false 0.0 839 21 0.07610601176225493 12 0.06995340558790875 13 0.0638251049251073 22 0.060331719799527776 11 0.05979743823738281 18 0.059572893471618864 14 0.0565759418526374 19 0.054498636574633746 10 0.04854276458619501 20 0.04466951063014089 23 0.0433086554838448 24 0.04282265906735546 9 0.03492714602165936 17 0.03413457279410763 0 0.032264415497322355 15 0.02708229486630673 16 0.024540842004502263 4 0.02334025442709997 5 0.022882874022018787 6 0.02084862646638892 8 0.017343084860962768 7 0.017311252481984313 1 0.017153249239565158 3 0.016907978846288377 2 0.016847765143990834 __DUMMY__ 0.014410901349194843 false 0.0 1033 21 0.08111709879065139 22 0.07535933983078134 11 0.06813677335308709 19 0.06314482032817903 18 0.06066481536318685 12 0.05638163410604629 24 0.04767343476298872 10 0.046809334662855515 9 0.042666847216552596 17 0.04240522143754382 20 0.0417027876394999 23 0.040609269516822186 0 0.03890245347535536 14 0.03816301827326338 13 0.035789104625801316 16 0.030537986697993656 4 0.02449793986488872 5 0.023989277533325172 6 0.020600910628469332 3 0.01950855341840704 7 0.018400135805025093 8 0.018284437855642238 1 0.01808964684499541 2 0.0176425844267272 __DUMMY__ 0.01591026138923286 15 0.013012312152678333 false 0.0 1032 21 0.07444827302913477 19 0.0717096052174842 18 0.0650881154003802 20 0.06463057174724915 12 0.06078225571309908 22 0.060464475499673744 24 0.05773660935913731 11 0.052463303834485206 23 0.049533650521488115 14 0.045497682300797704 13 0.04348662944585845 10 0.042988821044528856 17 0.038470341851564824 16 0.03801810316173749 9 0.030525454341440435 15 0.028173070947131628 0 0.025800621150780356 4 0.020546348731138808 5 0.020058729046369884 __DUMMY__ 0.01711190353416873 6 0.016632683920043998 3 0.016620130730992888 7 0.015013019375211375 8 0.014977150632488665 1 0.014768084474748889 2 0.014454364988865208 false 0.0 1031 21 0.07444827302913477 19 0.0717096052174842 18 0.0650881154003802 20 0.06463057174724915 12 0.06078225571309908 22 0.060464475499673744 24 0.05773660935913731 11 0.052463303834485206 23 0.049533650521488115 14 0.045497682300797704 13 0.04348662944585845 10 0.042988821044528856 17 0.038470341851564824 16 0.03801810316173749 9 0.030525454341440435 15 0.028173070947131628 0 0.025800621150780356 4 0.020546348731138808 5 0.020058729046369884 __DUMMY__ 0.01711190353416873 6 0.016632683920043998 3 0.016620130730992888 7 0.015013019375211375 8 0.014977150632488665 1 0.014768084474748889 2 0.014454364988865208 false 0.0 1030 21 0.08219467639655578 22 0.07335108385753542 11 0.06711028168508774 19 0.06385267873608542 18 0.06060203932191867 12 0.060218222893257095 24 0.049127111420576505 10 0.04595993044366968 20 0.04445057532072609 23 0.04211101140265651 17 0.04083480439174301 9 0.040257790780893137 14 0.04001557223615655 13 0.03993626304559997 0 0.036796020465908935 16 0.03048153993325302 4 0.02352486115751536 5 0.023019804995575318 6 0.019660007615575525 3 0.018336873094823843 7 0.017292154816510467 8 0.017177593035926697 1 0.016995372634754164 __DUMMY__ 0.01662703860298568 2 0.016573373024869446 15 0.013493318689839962 false 0.0 1029 21 0.07271428290237787 12 0.06277090095524898 22 0.06144467309136859 18 0.057687278824305174 11 0.05734059143019684 13 0.055050039816513595 19 0.05295800644108695 14 0.05095837225901962 10 0.0465872909507038 24 0.043119648448558354 23 0.04280005433231345 20 0.04201644693210804 9 0.03838236104345716 17 0.03592961654244639 0 0.033823074009313094 4 0.026730173908222143 5 0.026248317171175244 15 0.025364009092266257 16 0.024806935628504966 6 0.024156400466789206 8 0.02120114486968089 7 0.021142907465300086 3 0.021030701739766115 1 0.020981179033322375 2 0.020655468400046856 __DUMMY__ 0.014100124245908147 false 0.0 1028 21 0.07889061198985245 22 0.07472816603793977 11 0.06782615511868398 19 0.06314259255477726 18 0.061150198854451165 12 0.054705356271636287 10 0.04760353069410317 24 0.04630025167026102 17 0.04395358774753658 9 0.04307640030362341 20 0.04122297763358227 0 0.04038932514107606 23 0.04007086370177224 14 0.03700433923905182 13 0.03435210562601099 16 0.03218234172254102 4 0.024705282919417232 5 0.024202757780503688 6 0.021033961470321383 3 0.01982234759290687 7 0.01887154497110703 8 0.01876590611905303 1 0.01856774255252979 2 0.018127865832633785 __DUMMY__ 0.015541948312379946 15 0.013761838142247651 false 0.0 1027 21 0.07444827302913477 19 0.0717096052174842 18 0.0650881154003802 20 0.06463057174724915 12 0.06078225571309908 22 0.060464475499673744 24 0.05773660935913731 11 0.052463303834485206 23 0.049533650521488115 14 0.045497682300797704 13 0.04348662944585845 10 0.042988821044528856 17 0.038470341851564824 16 0.03801810316173749 9 0.030525454341440435 15 0.028173070947131628 0 0.025800621150780356 4 0.020546348731138808 5 0.020058729046369884 __DUMMY__ 0.01711190353416873 6 0.016632683920043998 3 0.016620130730992888 7 0.015013019375211375 8 0.014977150632488665 1 0.014768084474748889 2 0.014454364988865208 false 0.0 840 21 0.07876681632886828 22 0.07577587603368802 11 0.06650831347464084 19 0.06036147414038452 18 0.05935229197985766 12 0.052161177130654594 10 0.046568153570217354 24 0.04621914353645188 9 0.04564175641655531 17 0.042785516280946 0 0.04024092359983627 23 0.039661788287592696 20 0.038321710657544306 14 0.036423075787696366 13 0.03237632404268652 16 0.02881092045571108 4 0.02709786846018592 5 0.026569622403409637 6 0.0232501364031458 3 0.022402361929310124 7 0.021254631375809723 8 0.021161715194167287 1 0.020946439727875313 2 0.020480511159387902 __DUMMY__ 0.014215583577986317 15 0.012645868045390229 false 0.0 1026 21 0.08213139682726915 22 0.0697236095861832 11 0.06436467124763906 12 0.06420456406745341 19 0.06400058119000586 18 0.059973180607594 24 0.05089946914021735 20 0.047849599908858696 13 0.04489040435948508 23 0.04479924212078208 10 0.04397843385768186 14 0.0421784518698354 17 0.038752428248206114 9 0.036948055949419634 0 0.03361721271489385 16 0.03042233525424686 4 0.02304884303553211 5 0.022544075512785207 6 0.01932802300272396 3 0.01763588381113234 __DUMMY__ 0.01756018913524576 7 0.016757864427666656 8 0.016658765656920645 1 0.01648018568484337 2 0.016093767275613156 15 0.015158765507765274 false 0.0 841 17 0.0668933121350022 0 0.059662283870330735 16 0.056228606237223894 22 0.054087837304571916 18 0.0526232096732692 19 0.049469518245147524 9 0.048943779907107986 11 0.045207996115548925 10 0.04095568096358168 6 0.039147572332521724 21 0.03866235465105059 4 0.03761470278744099 8 0.03752167485221786 7 0.037407785544630937 1 0.03730035266202639 5 0.037136925409537204 2 0.03678137223162891 23 0.03666290015877646 3 0.03428421879623429 12 0.031049529761473408 24 0.028325964486109623 20 0.02816998103913226 15 0.024951357223051487 13 0.015958301171596828 14 0.013939588565323777 __DUMMY__ 0.0110131938754632 false 0.0 1025 21 0.0822081375726372 22 0.06808903669990976 12 0.06686391683659862 11 0.06381609693541578 19 0.06126066648013802 18 0.05763599209189444 24 0.050225351325728765 13 0.04863831447955188 23 0.046532371130310106 20 0.04588258735944089 14 0.042929651926544604 10 0.041909858436051065 17 0.037356879780904365 9 0.035806757360981115 0 0.032909968558574025 16 0.028735220523160257 4 0.02414930464976061 5 0.023626320357442953 6 0.020755376834827494 3 0.018233361179193316 7 0.017826906222579403 8 0.01771563406571973 1 0.01754282211274278 __DUMMY__ 0.017472881750929998 2 0.01715039502906679 15 0.014726190299896061 false 0.0 842 21 0.07456949156941162 19 0.07243947339841578 20 0.0656720317315074 18 0.0655328561994554 12 0.06087766941014731 22 0.06036136841073193 24 0.058289975416505505 11 0.052246508803771886 23 0.049753244505340986 14 0.0457314434254536 13 0.04345582856808357 10 0.043033260513779065 17 0.038443028285675675 16 0.03840472166536564 9 0.030182336775716335 15 0.028590977391615348 0 0.025376996487311038 4 0.020228692013199056 5 0.019740241683756026 __DUMMY__ 0.016575260306231666 3 0.016357989669581005 6 0.01625676275472452 7 0.01468005781581488 8 0.01464452664400821 1 0.014433405457932088 2 0.014121851096464525 false 0.0 1024 19 0.07293157131587458 21 0.07003967824094215 20 0.06927603087567737 18 0.06705627760868794 24 0.059463242015805 22 0.05752211599919895 12 0.0563989396099838 23 0.050767218859033444 11 0.04763335857892529 14 0.046704086551633335 10 0.04337805597522183 13 0.04076831880840196 16 0.039328105105357815 17 0.03816309274134048 15 0.03403250983305461 9 0.029667858739186963 0 0.02311758836869771 4 0.020832399973915554 5 0.020348626589988348 3 0.017640119243148202 6 0.01677184087710881 __DUMMY__ 0.016350181376494695 7 0.015652561533791423 8 0.015636844236039536 1 0.015403281646060418 2 0.015116095296429693 false 0.0 600 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.09191764790158127 22 0.08300755170822774 11 0.07704972849248458 19 0.07079227967496884 18 0.06483881790248999 12 0.06347912689879955 24 0.05033817950304301 10 0.05001733979486177 20 0.04460485691907946 17 0.04398323017950856 9 0.04264533662507301 0 0.040608590157421735 14 0.03955789830637181 23 0.03866841598069002 13 0.03781337789425545 16 0.03265683014388736 4 0.01944159289738088 5 0.01896076402049853 6 0.014790305316674968 3 0.01396769673349699 7 0.012362723938592226 8 0.012096645114458439 1 0.01201727346198586 2 0.011587527931496543 15 0.007490887140474138 __DUMMY__ 0.005305375362197091 false 1.0 843 22 0.06589182552868118 9 0.058149212295066276 18 0.054306021248707155 0 0.05259286323421668 17 0.05142461694387164 21 0.05130889853689881 11 0.05115003547493721 10 0.04823035476493901 19 0.04443751699056612 4 0.04076541728974031 5 0.04020245752124803 6 0.039262494330981196 8 0.038227063058877624 7 0.03818034930523605 1 0.03797134667269737 3 0.037800892096742096 2 0.037444142182204834 23 0.03447218724983576 24 0.03045035823017773 16 0.030417893224543004 12 0.027714163548054747 14 0.02324590387108782 20 0.022404887682253117 15 0.017308935679765523 13 0.015819854508352257 __DUMMY__ 0.010820308530318394 false 0.0 601 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.0738892048175524 17 0.06970827238745426 9 0.06189157392541379 22 0.061062339265086286 18 0.05348084804870533 11 0.05279632330471795 10 0.05155940863552127 16 0.046895417815357644 6 0.04485206198815923 8 0.042826996530010125 7 0.04280457596761456 4 0.04268657440323589 1 0.04251193493098048 2 0.04201997259853594 5 0.04198560724598323 19 0.039408549916657404 3 0.038850316912026894 21 0.03673177063225542 23 0.028050293606723606 12 0.024402600039085634 15 0.014584748871733477 24 0.013673166574472245 13 0.012442243416045568 20 0.009778078422951253 14 0.009099581334529499 __DUMMY__ 0.0020075384091902825 false 1.0 1023 21 0.06988272410052139 22 0.06626721575509319 11 0.05657467262588564 18 0.0535481165961255 19 0.05201021012791999 12 0.05118977622226893 9 0.04424812726208275 24 0.04401223505683481 23 0.04388620823174539 10 0.041069995366585246 17 0.04055289980610746 0 0.03818184699874772 13 0.036419623728475146 14 0.03583830087534467 20 0.035543521284022744 4 0.03279032597330594 5 0.03220906403570288 6 0.030068875974509964 3 0.02796340559466109 7 0.027842580318374388 8 0.027818653295913036 1 0.027581986947565456 2 0.027127344201398722 16 0.02648556502644808 15 0.016297133207906545 __DUMMY__ 0.01458959138645338 false 0.0 602 21 0.099875 19 0.092342 22 0.07967 18 0.076686 20 0.076086 12 0.073312 11 0.07158 24 0.068452 23 0.048544 10 0.046801 16 0.044251 14 0.043335 17 0.043259 13 0.04056 9 0.028872 0 0.026674 15 0.014146 4 0.008852 5 0.007953 3 0.003816 6 0.002715 7 9.09E-4 8 6.71E-4 1 6.39E-4 21 0.099875 19 0.092342 22 0.07967 18 0.076686 20 0.076086 12 0.073312 11 0.07158 24 0.068452 23 0.048544 10 0.046801 16 0.044251 14 0.043335 17 0.043259 13 0.04056 9 0.028872 0 0.026674 15 0.014146 4 0.008852 5 0.007953 3 0.003816 6 0.002715 7 9.09E-4 8 6.71E-4 1 6.39E-4 21 0.08896986682429407 19 0.08032310370590333 22 0.07439314507969605 18 0.07003785952125074 11 0.06582783911764306 20 0.06514579051642619 12 0.06505303675837798 24 0.061346206026941456 23 0.04712508248902988 10 0.04578503971873624 14 0.04233968007212759 17 0.04178348608914862 16 0.0391560072592721 13 0.03884927905606458 9 0.03313521699908895 0 0.029163926193640406 15 0.01749925342441893 4 0.016037751864623116 5 0.015350175146505279 3 0.011429548447426404 6 0.010872668417483555 7 0.00913237357235324 8 0.008968159995774883 1 0.008838755638638196 2 0.008333044163247032 __DUMMY__ 0.005103703901887949 false 1.0 844 12 0.0768025418706803 21 0.0746298902351485 13 0.0644925439229835 11 0.05857711351341758 22 0.056333661117394976 18 0.05615032684219789 19 0.05509376920204692 23 0.046924845541949714 14 0.046051415644176134 20 0.04577040396318447 24 0.04355635730270484 10 0.04286227105753242 17 0.03771400139389968 0 0.034914595575307975 9 0.03183096837406896 16 0.030851515574343485 4 0.02483171491901841 5 0.024397197471175778 6 0.023419847976516868 8 0.01934733413600786 7 0.01929372788165108 1 0.019156102070148246 2 0.018904217192495486 3 0.017778429868557755 15 0.017684257255671784 __DUMMY__ 0.012630950097719364 false 0.0 603 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.0738892048175524 17 0.06970827238745426 9 0.06189157392541379 22 0.061062339265086286 18 0.05348084804870533 11 0.05279632330471795 10 0.05155940863552127 16 0.046895417815357644 6 0.04485206198815923 8 0.042826996530010125 7 0.04280457596761456 4 0.04268657440323589 1 0.04251193493098048 2 0.04201997259853594 5 0.04198560724598323 19 0.039408549916657404 3 0.038850316912026894 21 0.03673177063225542 23 0.028050293606723606 12 0.024402600039085634 15 0.014584748871733477 24 0.013673166574472245 13 0.012442243416045568 20 0.009778078422951253 14 0.009099581334529499 __DUMMY__ 0.0020075384091902825 false 1.0 845 21 0.08100854158810394 12 0.06783307610658773 22 0.06577919435595563 19 0.06323978276066233 11 0.06191469275678707 18 0.05927555600089932 24 0.050977215328070834 13 0.05009545813571891 20 0.04972912076902842 23 0.04686571640443588 14 0.04401399790111767 10 0.04267709826479221 17 0.037470145428209624 9 0.03416202045244536 0 0.03186931379636131 16 0.030666355656876833 4 0.022832369810461845 5 0.02232913221323821 6 0.019497638556306762 __DUMMY__ 0.01820910172468589 3 0.017099805778384162 15 0.016855940915244633 7 0.01664234758712053 8 0.016553273515833626 1 0.016382723391017446 2 0.01602038080165377 false 0.0 604 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.0738892048175524 17 0.06970827238745426 9 0.06189157392541379 22 0.061062339265086286 18 0.05348084804870533 11 0.05279632330471795 10 0.05155940863552127 16 0.046895417815357644 6 0.04485206198815923 8 0.042826996530010125 7 0.04280457596761456 4 0.04268657440323589 1 0.04251193493098048 2 0.04201997259853594 5 0.04198560724598323 19 0.039408549916657404 3 0.038850316912026894 21 0.03673177063225542 23 0.028050293606723606 12 0.024402600039085634 15 0.014584748871733477 24 0.013673166574472245 13 0.012442243416045568 20 0.009778078422951253 14 0.009099581334529499 __DUMMY__ 0.0020075384091902825 false 1.0 846 21 0.08011395505612327 22 0.06640447003854356 12 0.0653761499722389 19 0.06366597997899974 11 0.06160637084401937 18 0.05989228669345428 24 0.05101637822500682 20 0.04986691918960785 13 0.04746448057972525 23 0.04612548525201763 14 0.043368469138412434 10 0.043365199603679926 17 0.0380120716580503 9 0.035132378451630086 0 0.032177689911540075 16 0.030991117082023446 4 0.02301689874495108 5 0.02252149060136539 6 0.019541934589279157 __DUMMY__ 0.018692330022597715 3 0.01759485058645954 15 0.017380192664876053 7 0.016906581779909582 8 0.016827003737735925 1 0.016648797338265516 2 0.016290518259487095 false 0.0 847 21 0.07786834785902279 19 0.07094121835478903 12 0.06427545033602872 18 0.06397750641366273 22 0.06292832127724109 20 0.06087984178552395 11 0.05655969686990033 24 0.05598454472642186 23 0.04850267340383975 13 0.045412295861890314 14 0.044023119735423985 10 0.04319822491341915 17 0.039011339621205926 16 0.03710367872082612 9 0.0314306366894495 0 0.02840434996160809 15 0.022949302087261623 4 0.02031437122034007 5 0.01983982422562782 __DUMMY__ 0.016905361528680517 6 0.016545936880689067 3 0.01578701356916568 7 0.014507801949602578 8 0.014447341275455652 1 0.014262575784134484 2 0.013939224948789195 false 0.0 605 22 0.094452 21 0.077836 9 0.069628 11 0.058343 24 0.052235 18 0.049537 19 0.046006 4 0.044672 5 0.043504 3 0.042328 0 0.041025 17 0.040729 8 0.038313 6 0.037917 7 0.037654 1 0.037508 2 0.037239 10 0.03699 23 0.033076 14 0.029236 12 0.01859 20 0.017038 15 0.009282 16 0.00686 22 0.094452 21 0.077836 9 0.069628 11 0.058343 24 0.052235 18 0.049537 19 0.046006 4 0.044672 5 0.043504 3 0.042328 0 0.041025 17 0.040729 8 0.038313 6 0.037917 7 0.037654 1 0.037508 2 0.037239 10 0.03699 23 0.033076 14 0.029236 12 0.01859 20 0.017038 15 0.009282 16 0.00686 22 0.07758046400629465 21 0.07432246831255075 11 0.05794127355727335 9 0.054286278087396625 18 0.05418104927840104 19 0.049706242717532746 24 0.04668539165492303 10 0.04258393501001474 12 0.04040756334473275 17 0.039409536694939504 14 0.03937909484674438 0 0.0385783765544198 23 0.03778440374895197 4 0.03579367302775724 5 0.03498530394973644 3 0.03178070294830351 6 0.03131763334764916 8 0.03001723194475677 7 0.029685074236947172 1 0.02952066990862974 20 0.02944631382072174 2 0.02920236259819983 13 0.02721786488828558 15 0.0174070404809831 16 0.017039935145434126 __DUMMY__ 0.00374011588842025 false 1.0 848 21 0.07830568203231382 19 0.0701486827647621 12 0.06490966306400267 22 0.06460731412056808 18 0.06340410848602393 11 0.05980605340015358 20 0.05641293264936797 24 0.05245940059421164 23 0.04675910900397887 13 0.04542281811852128 10 0.04441823175588745 14 0.0420336347263387 17 0.04130402128388142 16 0.038183019836688495 9 0.03290522704765144 0 0.03250721063767266 4 0.020281096349098075 15 0.01997880368554023 5 0.019818580471437062 6 0.016889510230304636 __DUMMY__ 0.016833886341874365 3 0.015344134382033105 7 0.014540128781954991 8 0.01446502954311873 1 0.014300915630050072 2 0.013960805062564648 false 0.0 606 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.09043812203640458 22 0.07986170590348676 11 0.07512670708861605 12 0.06434657568880066 19 0.05872855813835299 18 0.05339895054007659 24 0.05081179807325196 23 0.04457934043292554 13 0.041784014150785594 9 0.04098359584434396 14 0.039527331870903966 10 0.03919373138530623 17 0.03911865436442706 0 0.03742158916307686 20 0.03484032165795853 4 0.026468263843555655 5 0.02579119387582389 16 0.02572794577866736 6 0.022511529339765666 3 0.01998140625682765 7 0.019512075594303672 8 0.0194248224426005 1 0.019137519139581897 2 0.018477735226022925 15 0.007618297764281944 __DUMMY__ 0.005188214399851831 false 1.0 849 22 0.06561435573304525 18 0.057176243587763936 21 0.054739924565138744 9 0.054170401061467255 19 0.05034972782501291 11 0.04957033783054202 17 0.04928084200097244 0 0.04681160039334601 10 0.04673543507878535 4 0.03781501532610857 23 0.03753824973280823 5 0.03724186508010729 24 0.03705058825047454 6 0.035574116897804056 3 0.035042230283330186 8 0.03475991005678135 7 0.03469267980470326 1 0.03447100008785197 2 0.03396991973022856 16 0.03146962248845343 20 0.03143108788903697 12 0.03063411957072374 14 0.026082620483531424 15 0.01967049614320661 13 0.017130964366390566 __DUMMY__ 0.010976645732385099 false 0.0 607 21 0.099806 19 0.093055 22 0.083743 20 0.080939 18 0.079676 24 0.073743 11 0.070622 12 0.066484 23 0.05058 10 0.043837 16 0.043068 14 0.042804 17 0.042367 13 0.031317 9 0.028971 0 0.021954 15 0.016259 4 0.009538 5 0.008475 3 0.004767 6 0.002802 7 0.002089 1 0.001628 8 0.001479 21 0.099806 19 0.093055 22 0.083743 20 0.080939 18 0.079676 24 0.073743 11 0.070622 12 0.066484 23 0.05058 10 0.043837 16 0.043068 14 0.042804 17 0.042367 13 0.031317 9 0.028971 0 0.021954 15 0.016259 4 0.009538 5 0.008475 3 0.004767 6 0.002802 7 0.002089 1 0.001628 8 0.001479 21 0.0876284779565852 19 0.07969295241810205 22 0.07637426963151651 18 0.0714201096931057 20 0.06594762728679211 11 0.06545313698413557 24 0.0625408591129023 12 0.06028466183739539 23 0.047327512560409034 10 0.045118977709816856 17 0.04198500934133487 14 0.04191317846700219 16 0.038562164295498094 9 0.0340858401340951 13 0.0336299532140405 0 0.027997683508739334 15 0.019152815423857883 4 0.016880338716620848 5 0.016112170164527748 3 0.012441543302246609 6 0.011537821727272472 7 0.010325825523921351 8 0.009999215691027333 1 0.00994664115488359 2 0.00898190571707942 __DUMMY__ 0.004659308427091884 false 1.0 608 22 0.082315 9 0.07124 21 0.059648 11 0.053954 0 0.053696 18 0.051644 17 0.049894 4 0.046894 5 0.045875 10 0.044877 3 0.044758 8 0.043106 6 0.043025 7 0.042551 1 0.042392 2 0.042122 19 0.041581 24 0.036863 23 0.029211 14 0.020165 16 0.017103 12 0.014627 20 0.012832 15 0.009629 22 0.082315 9 0.07124 21 0.059648 11 0.053954 0 0.053696 18 0.051644 17 0.049894 4 0.046894 5 0.045875 10 0.044877 3 0.044758 8 0.043106 6 0.043025 7 0.042551 1 0.042392 2 0.042122 19 0.041581 24 0.036863 23 0.029211 14 0.020165 16 0.017103 12 0.014627 20 0.012832 15 0.009629 22 0.07332360410508594 21 0.062415331347363774 9 0.058933359277748135 11 0.05466500421757271 18 0.053975563228188764 0 0.04739125507169937 17 0.04603591873993959 19 0.04583657574792687 10 0.045815666873561395 4 0.03982182277456363 5 0.03906041538709782 24 0.03797938462013175 6 0.036749257027828254 3 0.036472044530226296 8 0.03571924244484938 7 0.035429761967532315 1 0.03524993590977899 2 0.03489676552141171 23 0.03464523194787937 12 0.03166356672111481 14 0.029946561797266617 20 0.02364095382960072 16 0.022087000865869493 13 0.019311770205045594 15 0.015753287573382596 __DUMMY__ 0.0031807182673340598 false 1.0 609 21 0.099214 22 0.096057 11 0.089446 19 0.068519 18 0.062644 12 0.057866 10 0.05292 9 0.050978 0 0.047574 24 0.047109 17 0.046385 14 0.036424 20 0.032856 23 0.032081 16 0.029452 13 0.029321 4 0.020464 5 0.02006 6 0.015384 3 0.014883 7 0.013268 8 0.012725 1 0.012546 2 0.011825 21 0.099214 22 0.096057 11 0.089446 19 0.068519 18 0.062644 12 0.057866 10 0.05292 9 0.050978 0 0.047574 24 0.047109 17 0.046385 14 0.036424 20 0.032856 23 0.032081 16 0.029452 13 0.029321 4 0.020464 5 0.02006 6 0.015384 3 0.014883 7 0.013268 8 0.012725 1 0.012546 2 0.011825 21 0.08856911180974099 22 0.08468894943568735 11 0.07738063223268159 19 0.06550241491580448 18 0.06179496437905716 12 0.05619289899515526 10 0.0498307274630307 24 0.047187189521434414 9 0.04701071540579319 17 0.04476357674762254 0 0.043342624365858215 20 0.03758270235848787 14 0.036972519596456116 23 0.03672972183814428 13 0.03211466084282623 16 0.030387427937446365 4 0.023174718361701284 5 0.022708514048567444 6 0.018789443107212 3 0.017989834692586765 7 0.016675165717515643 8 0.016371775412115326 1 0.016177954663027103 2 0.01560200137690382 15 0.007457811575899637 __DUMMY__ 0.005001943199244036 false 1.0 1044 22 0.07215015724408928 21 0.06857511745097312 11 0.06192684023973049 18 0.057406245901972124 19 0.054428802821770116 9 0.04989043721345701 10 0.047300907438429365 17 0.046832510984228595 0 0.045807045399075666 12 0.04397223708839179 24 0.03962721217634868 23 0.03738279631278505 20 0.03178136848643336 4 0.031724724556697594 5 0.031190825290589568 14 0.031137405429199395 16 0.03037185173776617 6 0.028925911395377493 3 0.027489208239674167 7 0.027117947765139257 8 0.027081447386392968 1 0.026852594679290763 13 0.026850012355665493 2 0.026370685544903204 15 0.01399704360705778 __DUMMY__ 0.013808663254561543 false 0.0 1043 21 0.08050892051201892 22 0.07198192321873667 11 0.06428828844358321 19 0.06291980066622949 18 0.05937822085503068 12 0.05835226989673227 24 0.050620798112971134 20 0.045145538373899334 10 0.04382378487036779 23 0.0438156698672702 17 0.03986632774734006 9 0.039846078452265975 14 0.03967728778610751 13 0.0384654454538563 0 0.034797621191177894 16 0.0298976081652851 4 0.024975638388234186 5 0.02446020025619784 6 0.021042554482410096 3 0.020011264947145557 7 0.018837563980933062 8 0.01874276836023776 1 0.018543371618792232 2 0.018125475312648152 __DUMMY__ 0.01687081988214713 15 0.01500475915838124 false 0.0 1042 21 0.07628504199261332 19 0.07088783356841954 18 0.06449204722384846 12 0.06219444187320311 22 0.06216755104048496 20 0.06199596097505616 24 0.056456571909173366 11 0.054969949826998744 23 0.04858727453328206 14 0.044973893768718694 13 0.044314623501797615 10 0.04341247837769153 17 0.03871774044126926 16 0.03708145172803534 9 0.031419709196409025 0 0.02738618175348312 15 0.02553478553538732 4 0.020517772365980604 5 0.020036395370383698 __DUMMY__ 0.01722169366067653 6 0.01665857864234188 3 0.016269168149207706 7 0.014822251450832099 8 0.014771126893829777 1 0.014574280540618142 2 0.014251195680258033 false 0.0 1041 21 0.07271849737785858 12 0.07058196901933468 13 0.06983379223108006 14 0.0645234685875521 18 0.06299146450982937 11 0.056641435978440534 22 0.05567601731395424 19 0.05519813309129896 10 0.05256071182781366 20 0.04936395191934439 23 0.042663357180072914 24 0.041454354747166286 15 0.03683069209020722 17 0.032944003833793395 9 0.032468290838515504 0 0.029964864211876097 16 0.025622465421603884 4 0.020780347717693208 5 0.02038368226361082 6 0.018476630453867878 8 0.015028777623350031 7 0.014974771837859087 1 0.014845106462281822 2 0.01459420538131122 3 0.014531736176473844 __DUMMY__ 0.014347271903810046 false 0.0 1040 21 0.05902915495549509 22 0.05383265055943416 23 0.053200780634508005 18 0.0511345804147868 19 0.05099532358264088 12 0.04949658854513135 24 0.046608325840387585 11 0.043230231236721546 20 0.04267259596318421 17 0.03906914800413705 9 0.038794071295171345 4 0.0366507081982859 5 0.03618486631853961 13 0.03589360722565155 10 0.035729193238747035 6 0.034758127007722885 7 0.032848456089992185 8 0.03275629403461018 0 0.03273882005518572 1 0.032644864153635544 3 0.032462397340100355 2 0.03223486455819102 14 0.031976448178991805 16 0.03082409819623168 15 0.021071664192823643 __DUMMY__ 0.013162140179692862 false 0.0 1039 21 0.07952471003161364 22 0.06938749920478081 19 0.06762640612847474 18 0.062025002389922014 11 0.06076006907331686 12 0.05835722114835215 24 0.054694655968351144 20 0.05326628887537742 23 0.045770609746975825 10 0.043435418266282146 14 0.04096956779361824 17 0.039565854456474314 13 0.03803545182213163 9 0.036797829638557 16 0.03319297080725426 0 0.03121472696420419 4 0.02300404778548801 5 0.02249053249095575 15 0.018984152259152284 6 0.018790801567768745 3 0.01861304385126983 7 0.01698518589010847 8 0.016895664392719948 1 0.01668831687182151 __DUMMY__ 0.016632761899763218 2 0.016291210675265882 false 0.0 1038 21 0.0765730417688035 19 0.07073552230147702 18 0.06409119466059818 12 0.06301362357200438 22 0.06215561761798623 20 0.061477230747462114 24 0.056161350630233545 11 0.05537101703492109 23 0.04863987189931936 13 0.044760487019356525 14 0.04433299341930411 10 0.04314941289643185 17 0.03890307059259491 16 0.037230545952787575 9 0.031355933375725356 0 0.027866841043657893 15 0.024446794494735878 4 0.02058370650618467 5 0.02010562412509101 __DUMMY__ 0.017317392733744313 6 0.016812249131802584 3 0.01622572665583036 7 0.014889336423246911 8 0.014836099900478645 1 0.014644203933309893 2 0.014321111562911977 false 0.0 850 22 0.07371443963429446 21 0.07235007645102079 11 0.06403709566744951 18 0.05877444854679463 19 0.05775830717520845 9 0.04819037002345628 10 0.047694717129486044 12 0.046611731790917064 17 0.045648879534199265 0 0.0438871566643953 24 0.04220983936396622 23 0.038049746510990114 20 0.03498732987069379 14 0.0334140900604602 16 0.030662228452683953 4 0.029493990049612614 5 0.028964615392796114 13 0.028496651769372734 6 0.026238237770072167 3 0.025210142326616832 7 0.02444154564484982 8 0.02438274890695344 1 0.024158654950077324 2 0.023690111679198034 15 0.014177892640506035 __DUMMY__ 0.012754951993928723 false 0.0 1037 21 0.07337559836484053 19 0.06969833233836123 22 0.06333058021619112 18 0.06299229035689256 12 0.05922139972655245 11 0.057007798446884056 20 0.05560029716126465 24 0.0514488184070044 23 0.046535338795167636 10 0.04393217376006069 17 0.043639950043518574 16 0.04078186711292165 13 0.039961529765264195 14 0.03901059503162039 9 0.03417414587329476 0 0.03393792399527402 15 0.021977171061517035 4 0.021901620005769173 5 0.021437314862354114 6 0.018746634965202527 __DUMMY__ 0.01761757271825747 3 0.017521341550070926 7 0.016757715057527715 8 0.016701894440543333 1 0.01652160741898273 2 0.016168488524662097 false 0.0 851 21 0.07063635201952875 19 0.06408265137144416 22 0.063429164280409 18 0.05919660994138006 24 0.05411470347960611 11 0.053126643173070996 20 0.05288771766077664 12 0.052879388005407035 23 0.04730069635854508 17 0.04103341716332675 10 0.04008996755680853 14 0.03826811408526826 9 0.03658849002682232 16 0.03570505904610843 13 0.034727264253097 0 0.030965813869072597 4 0.02654891613670921 5 0.02603039668511265 15 0.023653580987784913 6 0.023031747107888696 3 0.022756608109374174 7 0.021507404670284617 8 0.021500770045681687 1 0.02126682568493951 2 0.020896692246658206 __DUMMY__ 0.01777500603489452 false 0.0 852 21 0.08249663765045799 22 0.07093887254789748 11 0.06536086865267501 19 0.06523386816995126 12 0.06328194811089786 18 0.06116388192444973 24 0.05055705668872302 20 0.048025102263451414 10 0.04529970599589514 23 0.043730111970558316 13 0.04337005364929206 14 0.04164433586250482 17 0.039728875656581064 9 0.03776129073459961 0 0.03466840397966147 16 0.031207075042119226 4 0.022419969087635615 5 0.0219204297040977 6 0.01860273685887196 __DUMMY__ 0.01725263772737312 3 0.017133874104105638 7 0.016137996241722817 8 0.016028431917012993 1 0.015852161503369173 2 0.015453600514113503 15 0.014730073441982098 false 0.0 610 21 0.098095 22 0.095024 11 0.086211 19 0.059863 12 0.055586 18 0.054527 24 0.050949 9 0.050218 10 0.043499 0 0.042497 17 0.041344 23 0.038312 14 0.035394 13 0.027849 4 0.027252 5 0.026681 20 0.026224 6 0.022015 16 0.021783 3 0.020928 7 0.019575 8 0.019234 1 0.01897 2 0.017972 21 0.098095 22 0.095024 11 0.086211 19 0.059863 12 0.055586 18 0.054527 24 0.050949 9 0.050218 10 0.043499 0 0.042497 17 0.041344 23 0.038312 14 0.035394 13 0.027849 4 0.027252 5 0.026681 20 0.026224 6 0.022015 16 0.021783 3 0.020928 7 0.019575 8 0.019234 1 0.01897 2 0.017972 21 0.0879661253502629 22 0.083528191369058 11 0.07483677285246476 19 0.0609660175854788 18 0.05730169141903271 12 0.05539533099962084 24 0.04976219206273296 9 0.04622063182494332 10 0.044400015860652585 17 0.04157005679036935 23 0.04049399573095406 0 0.039898789921967485 14 0.03675966437998582 20 0.03484709093785642 13 0.03190796974553706 4 0.026820911751458662 5 0.026269201578610856 16 0.026146309138479706 6 0.02233403783800889 3 0.02129706153573492 7 0.02007513974866036 8 0.01987100812590861 1 0.019635565289497822 2 0.018933585931127324 15 0.007705227605877204 __DUMMY__ 0.005057414625718457 false 1.0 1036 21 0.07710555587616394 22 0.07228487983091596 11 0.06282715531433368 19 0.06191154108229923 18 0.05900451194135643 12 0.053143774021131296 24 0.04948681551256853 10 0.04389318007995958 20 0.04318401625968377 23 0.04250884679808575 9 0.0421949932113438 17 0.04204139862478884 14 0.03710330646276323 0 0.0367845344158946 13 0.03331257076393248 16 0.031177036440682725 4 0.026630472709242327 5 0.026107044378065946 6 0.022819960050092552 3 0.02212629089683435 7 0.020917422075019777 8 0.02084979657534641 1 0.020630862254232805 2 0.02019866661291748 __DUMMY__ 0.01588246528167021 15 0.01587290253067448 false 0.0 853 21 0.07233194975317891 22 0.06180624950606411 12 0.06153733676120274 18 0.05757224515080988 11 0.057087214016877164 13 0.053471554029446394 19 0.0529878692262515 14 0.050118336717286646 10 0.04635495990922868 24 0.04329578027745213 23 0.04271434937136001 20 0.04177838271403859 9 0.03891182610323328 17 0.036272598046304845 0 0.03402867137595838 4 0.027131395481223442 5 0.02664434297239038 15 0.025181814027408055 16 0.024956600191264403 6 0.024511892053521653 8 0.02165818349107186 7 0.021599471260055007 3 0.02156235612803461 1 0.021434372391598972 2 0.021101906258073243 __DUMMY__ 0.013948342786665256 false 0.0 1035 22 0.06727324986292305 9 0.05576749879640244 18 0.0555949202494483 21 0.05539432379583654 11 0.05377506775463267 0 0.0502569808628456 17 0.0497471190897376 10 0.048575156030536686 19 0.047489591927751096 4 0.03824854124637793 5 0.03770677179088948 6 0.03629485793656958 23 0.03539797299444039 8 0.03515744807427911 7 0.03513629490887388 3 0.035120067237257246 1 0.034910288988416575 2 0.03441376796125505 24 0.03308426544413921 12 0.031225751903352042 16 0.030318740316349995 14 0.02581112416971249 20 0.025669620423893424 13 0.018289307114459565 15 0.017323099172294784 __DUMMY__ 0.0120181719473252 false 0.0 611 16 0.105394 17 0.090379 19 0.074535 0 0.061026 20 0.057181 18 0.054585 23 0.047018 24 0.04614 22 0.041872 15 0.040837 11 0.038888 12 0.037409 6 0.030066 21 0.029224 8 0.028375 7 0.028318 1 0.028124 2 0.02778 9 0.026384 4 0.026066 5 0.025571 10 0.024456 3 0.023341 13 0.007032 16 0.105394 17 0.090379 19 0.074535 0 0.061026 20 0.057181 18 0.054585 23 0.047018 24 0.04614 22 0.041872 15 0.040837 11 0.038888 12 0.037409 6 0.030066 21 0.029224 8 0.028375 7 0.028318 1 0.028124 2 0.02778 9 0.026384 4 0.026066 5 0.025571 10 0.024456 3 0.023341 13 0.007032 16 0.08050017970512287 17 0.0768709941270378 19 0.06455463549205993 0 0.057263227561405734 18 0.05595719619153926 22 0.04805314279771014 20 0.04677689826377027 23 0.04262209493023482 11 0.04251037608829907 24 0.03927047936345216 15 0.03717531507628131 12 0.0368285953808802 21 0.03646483745561059 9 0.035466276001975876 10 0.03398042986546555 6 0.03168815894795066 8 0.0299846907619874 7 0.029884556140460896 1 0.02972003608671378 2 0.02932652871983766 4 0.029305349743928094 5 0.02883033630091454 3 0.02615834002235624 13 0.015415370751209289 14 0.012476291561760878 __DUMMY__ 0.002915662662034817 false 1.0 612 22 0.077655 9 0.071672 0 0.057243 18 0.053554 17 0.053148 21 0.052965 11 0.051135 4 0.047475 10 0.047125 5 0.046658 3 0.045503 8 0.045009 6 0.044883 7 0.044796 1 0.044653 2 0.043784 19 0.039784 24 0.030721 23 0.028741 16 0.020966 14 0.017071 12 0.013239 20 0.011817 15 0.0104 22 0.077655 9 0.071672 0 0.057243 18 0.053554 17 0.053148 21 0.052965 11 0.051135 4 0.047475 10 0.047125 5 0.046658 3 0.045503 8 0.045009 6 0.044883 7 0.044796 1 0.044653 2 0.043784 19 0.039784 24 0.030721 23 0.028741 16 0.020966 14 0.017071 12 0.013239 20 0.011817 15 0.0104 22 0.07173581893067724 9 0.06170388366925193 21 0.056523518768688934 18 0.05428704535301439 11 0.05236358155770693 0 0.051293618719576654 17 0.04948840463550576 10 0.046843265450135486 19 0.04393416990920164 4 0.04199898154850595 5 0.04132236320402171 6 0.039628009624998246 3 0.03912792957179196 8 0.03890363364612826 7 0.038770522193491266 1 0.038593574734148595 2 0.03793913050466774 24 0.03376391613823276 23 0.033428969496396066 12 0.02627199746101849 14 0.024797059764432836 16 0.024599225376776137 20 0.020757888717784875 15 0.015094970385095115 13 0.013915473531120815 __DUMMY__ 0.0029130471076303866 false 1.0 1034 21 0.07961460832192116 22 0.07343529729272158 11 0.06478215770221757 19 0.06371312263426317 18 0.06049549220719762 12 0.055061531967605985 24 0.049973653626021644 10 0.045393719935607924 20 0.044639119406692775 23 0.042429607067924056 9 0.04163118939309183 17 0.04118784164295801 14 0.03849867116555406 0 0.03623985719008046 13 0.034807305140458905 16 0.030635327336497133 4 0.025105496815750625 5 0.024593640873462618 6 0.021036704705000134 3 0.020498283754444197 7 0.019102924839304963 8 0.01900311180412257 1 0.018795563015135717 2 0.01836242267378185 __DUMMY__ 0.01583391018741094 15 0.015129439300772594 false 0.0 854 21 0.0819124050131275 22 0.0733415457822128 11 0.06688853466203067 19 0.06406312730277013 18 0.0608692418881076 12 0.05967213115685471 24 0.049141645054144735 10 0.04616328002989574 20 0.04468080401835957 23 0.042037210537133086 17 0.040934642598342084 9 0.04036674395094453 14 0.03999504148380739 13 0.03944881475448835 0 0.036774283991221984 16 0.030614104007103203 4 0.023494632959606992 5 0.022989652658739014 6 0.019602527290088972 3 0.018379690403240483 7 0.01728769869867227 8 0.01717349373528471 1 0.016990161111010135 __DUMMY__ 0.016794730165622274 2 0.016568133969089308 15 0.013815722778101848 false 0.0 855 21 0.06801755256114649 22 0.06230662431109902 19 0.06223986836643597 18 0.05757728603603354 24 0.05395629841211196 20 0.05161037021868163 11 0.05085621795601158 12 0.05009957010646003 23 0.048030975135405204 17 0.0412131127727289 10 0.03862453267940379 9 0.0375803850528175 14 0.03587504286463492 16 0.03547959615512907 13 0.031929342005816805 0 0.03111248981906703 4 0.02883501962226575 5 0.028325076386101843 6 0.02545129295742503 3 0.025331387625606702 7 0.024127477349483496 8 0.024108302554175655 1 0.023907712703054397 2 0.02350799265777198 15 0.023322099533510218 __DUMMY__ 0.016574374157621412 false 0.0 613 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.09049132543753352 22 0.07985289928844327 11 0.0751560875380975 12 0.06443592332062639 19 0.05875916345650072 18 0.0534003381557076 24 0.050838709077697906 23 0.044607893708663596 13 0.04186106834490707 9 0.04093025045891532 14 0.039561524431354606 10 0.03918395579360898 17 0.03909417034844339 0 0.03738902432697075 20 0.03488154976868307 4 0.026433698054989248 5 0.025757344547136535 16 0.025736497212917313 6 0.02247600979053706 3 0.019939586900024134 7 0.019471429812172973 8 0.01938345808449749 1 0.01909659880665132 2 0.01843747801365321 15 0.007611653741824396 __DUMMY__ 0.005212361579442488 false 1.0 856 9 0.05827817599213965 22 0.05710182483774283 17 0.048875972326837026 0 0.04845649531760365 18 0.04828678346119629 4 0.047826338302380665 5 0.047294221840484825 6 0.046768412524057626 8 0.04647537685844258 7 0.04645029670449184 1 0.046310209732518474 3 0.04603760404039763 2 0.0457312069414378 10 0.04213033369045924 21 0.04063134231702525 23 0.038808042318746884 11 0.03849950407855719 19 0.038105770089756234 24 0.03156352022989748 16 0.029428002222855323 20 0.02260563710433674 15 0.02157860742843025 12 0.019953613333340996 14 0.019706272321317653 __DUMMY__ 0.012121759743750479 13 0.010974676241795113 false 0.0 614 19 0.10396 22 0.098417 21 0.089719 11 0.088225 18 0.079995 17 0.069087 16 0.068187 10 0.05667 0 0.054367 20 0.051761 24 0.050024 12 0.046791 9 0.04357 23 0.034337 14 0.023645 15 0.009453 5 0.008569 4 0.008452 13 0.005866 3 0.003484 6 0.002915 7 8.53E-4 1 8.31E-4 8 8.23E-4 19 0.10396 22 0.098417 21 0.089719 11 0.088225 18 0.079995 17 0.069087 16 0.068187 10 0.05667 0 0.054367 20 0.051761 24 0.050024 12 0.046791 9 0.04357 23 0.034337 14 0.023645 15 0.009453 5 0.008569 4 0.008452 13 0.005866 3 0.003484 6 0.002915 7 8.53E-4 1 8.31E-4 8 8.23E-4 22 0.08415094097747353 19 0.08339730761170598 21 0.08184126503037847 11 0.07569526732987265 18 0.07052199165416041 17 0.05712088604814046 10 0.051764848124666335 16 0.05175726066690741 12 0.05029097047607262 24 0.04803680842621399 20 0.04780306361823157 0 0.047332780501112635 9 0.04267856682537352 23 0.038025271142557354 14 0.030071521556981562 13 0.020443120487454225 4 0.017082515177093867 5 0.016872712178159294 15 0.013453226659070292 6 0.012762589387775252 3 0.01233966951246925 7 0.0107314637408938 8 0.01067274003837074 1 0.010568704286339378 2 0.009955729120058031 __DUMMY__ 0.004628779422467402 false 1.0 857 22 0.06293478072804345 9 0.057200842041577674 18 0.0521764002478529 0 0.05097279310537076 17 0.050943266911062934 21 0.048499725472973466 11 0.04703596815066125 10 0.045203843539886 19 0.0432075399991408 4 0.04238033265001139 5 0.04180883666260106 6 0.041058338193837425 8 0.04022198875270008 7 0.040142778422772626 1 0.03995064718605921 3 0.03973119820476366 2 0.0394421475412221 23 0.03613512243577621 24 0.03176273319900646 16 0.03108408896572899 12 0.026385901906717857 20 0.023437533415335107 14 0.022433438436601047 15 0.019175399957763916 13 0.01513635358010164 __DUMMY__ 0.011538000292431861 false 0.0 615 0 0.086795 17 0.079885 9 0.066272 22 0.062948 11 0.058859 18 0.056162 10 0.056149 16 0.053129 6 0.04556 7 0.042878 8 0.04284 1 0.042811 4 0.041805 2 0.041387 5 0.040979 19 0.037736 3 0.036592 21 0.033028 12 0.02366 23 0.021496 13 0.011821 15 0.011284 14 0.00349 24 0.002431 0 0.086795 17 0.079885 9 0.066272 22 0.062948 11 0.058859 18 0.056162 10 0.056149 16 0.053129 6 0.04556 7 0.042878 8 0.04284 1 0.042811 4 0.041805 2 0.041387 5 0.040979 19 0.037736 3 0.036592 21 0.033028 12 0.02366 23 0.021496 13 0.011821 15 0.011284 14 0.00349 24 0.002431 0 0.07268136429682412 17 0.06941692349139249 9 0.06190534922327712 22 0.06084405226288692 18 0.05348016291359007 11 0.05228509656498178 10 0.05040032708331601 16 0.04658207931838202 6 0.04499820456444208 8 0.04301577046014741 7 0.042998878984192766 4 0.04291951205496352 1 0.04289674318755786 5 0.04225710726032057 2 0.04192806448418896 19 0.03948410380666195 3 0.038841253943048715 21 0.03693675939547426 23 0.028319361836210383 12 0.024600371600563498 15 0.015070200222720266 24 0.014116222305247067 13 0.012720697029061938 20 0.009790077290739557 14 0.009506357106250035 __DUMMY__ 0.00200495931355854 false 1.0 858 23 0.0534095461174515 21 0.05113070001466639 22 0.050953479736811975 18 0.04921159546717022 19 0.04795831596625825 24 0.046998843752841676 20 0.04228441292442285 9 0.04182735163686144 4 0.04161972308429586 5 0.0411518663648827 12 0.04041752802504417 17 0.04027626014279999 6 0.03984456302375365 7 0.0387199718936897 8 0.038667959737044684 3 0.038604742093444826 1 0.0385684303067575 2 0.03812769169969386 11 0.03635975560265484 10 0.03328467048702053 0 0.03270720588734989 16 0.031228128974708738 13 0.02683898241791204 14 0.026305900304273974 15 0.022282168244625835 __DUMMY__ 0.011220206093562798 false 0.0 616 21 0.103382 22 0.092022 11 0.087656 19 0.071188 12 0.068056 18 0.062062 24 0.052607 10 0.047663 9 0.043845 17 0.043772 0 0.042493 14 0.038939 20 0.038734 13 0.038314 23 0.038012 16 0.029858 4 0.018386 5 0.017966 6 0.013414 3 0.011731 7 0.010543 8 0.010184 1 0.010024 2 0.009146 21 0.103382 22 0.092022 11 0.087656 19 0.071188 12 0.068056 18 0.062062 24 0.052607 10 0.047663 9 0.043845 17 0.043772 0 0.042493 14 0.038939 20 0.038734 13 0.038314 23 0.038012 16 0.029858 4 0.018386 5 0.017966 6 0.013414 3 0.011731 7 0.010543 8 0.010184 1 0.010024 2 0.009146 21 0.09216803034943495 22 0.08228855839719434 11 0.07686114738351424 19 0.06704971154868075 12 0.06392293121403667 18 0.06126074011323558 24 0.050606117645440055 10 0.046749198185644186 17 0.04235612534933533 9 0.04224195992312977 20 0.04137596248150019 23 0.04044767713148211 0 0.039740075067521766 14 0.03948025986809692 13 0.03929783004504412 16 0.030022713776313742 4 0.02152885176618898 5 0.02105555833075874 6 0.017174445722133527 3 0.015592940012752519 7 0.01453276815794136 8 0.014305657516865635 1 0.014130501548692415 2 0.013492819427953296 15 0.007129893224564798 __DUMMY__ 0.005187525812543896 false 1.0 859 21 0.07269744374748344 22 0.07138778780244 18 0.06309635641887816 19 0.06251032085573661 11 0.061589687101622326 10 0.04986915435220005 12 0.04762618993310494 24 0.04644360967269329 9 0.044117038573672405 20 0.044069528110968786 17 0.042117530696367714 23 0.04109157858630043 14 0.039227773318331355 0 0.03770826106393047 13 0.030930001103409422 16 0.0307319768915286 4 0.026610301430420487 5 0.026106287770069903 3 0.022729572761806715 6 0.022629119199561634 7 0.02113469296091026 8 0.02107303003324217 1 0.02084993243158625 2 0.020474570991949142 15 0.020451650954583435 __DUMMY__ 0.012726603237201923 false 0.0 617 21 0.104054 22 0.093227 11 0.088358 19 0.077632 18 0.068026 12 0.067941 10 0.053601 24 0.052486 17 0.046433 9 0.045089 20 0.044275 0 0.044041 14 0.03898 13 0.036325 23 0.034891 16 0.033847 4 0.014567 5 0.013926 6 0.00908 3 0.008744 7 0.006494 8 0.006332 1 0.00597 2 0.005682 21 0.104054 22 0.093227 11 0.088358 19 0.077632 18 0.068026 12 0.067941 10 0.053601 24 0.052486 17 0.046433 9 0.045089 20 0.044275 0 0.044041 14 0.03898 13 0.036325 23 0.034891 16 0.033847 4 0.014567 5 0.013926 6 0.00908 3 0.008744 7 0.006494 8 0.006332 1 0.00597 2 0.005682 21 0.09224809673566266 22 0.08291146141236172 11 0.07716412720371169 19 0.07086449869650813 18 0.06482796901304663 12 0.06342343158351464 24 0.05047357844183515 10 0.05023256925505406 20 0.044663741595693786 17 0.04402337901507983 9 0.04290525527265964 0 0.040694876941400705 14 0.03946161964620649 23 0.038640354653947113 13 0.03782935417053318 16 0.03255535673415522 4 0.019312604662451896 5 0.018744320112545038 6 0.014689095541402264 3 0.013869036572363337 7 0.012252317982931736 8 0.012113815194450076 1 0.011846832957371049 2 0.01148395110835932 15 0.007467718689221652 __DUMMY__ 0.005300636807533077 false 1.0 618 21 0.10289 22 0.092724 11 0.088015 19 0.077191 12 0.06792 18 0.067673 10 0.053827 24 0.052062 17 0.046264 20 0.044638 9 0.044231 0 0.043892 14 0.039038 13 0.036604 23 0.034997 16 0.033815 4 0.014971 5 0.014354 6 0.009492 3 0.009091 7 0.00688 8 0.006723 1 0.00664 2 0.006069 21 0.10289 22 0.092724 11 0.088015 19 0.077191 12 0.06792 18 0.067673 10 0.053827 24 0.052062 17 0.046264 20 0.044638 9 0.044231 0 0.043892 14 0.039038 13 0.036604 23 0.034997 16 0.033815 4 0.014971 5 0.014354 6 0.009492 3 0.009091 7 0.00688 8 0.006723 1 0.00664 2 0.006069 21 0.09170978786548346 22 0.0826788416858152 11 0.07700550182358155 19 0.07066055177919796 18 0.06466471898626548 12 0.06341371982554747 10 0.05033708626936718 24 0.05027749342383174 20 0.044831616269125935 17 0.043945222486677524 9 0.0425084605900018 0 0.04062596970630047 14 0.03948844259678242 23 0.03868937590844796 13 0.03795838181209673 16 0.032540557864871936 4 0.019499440387153254 5 0.01894225498920885 6 0.014879630983424439 3 0.01402951181115386 7 0.012430829343661251 8 0.012294638878505099 1 0.012156684282989633 2 0.011662924933753937 15 0.007467718689221652 __DUMMY__ 0.005300636807533076 false 1.0 619 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07706127033495712 21 0.0741018192946731 11 0.057356209727181064 18 0.05441867936342121 9 0.05422240016714263 19 0.04960102678544307 24 0.04637220418765715 10 0.04233554467436154 12 0.04054459561437669 17 0.03948276897377972 14 0.03943483857251363 23 0.03820017573858218 0 0.03817560451968068 4 0.03578357836408089 5 0.03495080718061567 3 0.031702185471814755 6 0.03144611314253016 8 0.03017746919376449 7 0.030009910562543703 1 0.029866380721443705 20 0.0296806686807102 2 0.029159599447726933 13 0.027337872314867402 15 0.01765560751140738 16 0.017167854410300543 __DUMMY__ 0.0037548150444243057 false 1.0 1055 21 0.07339669972869341 19 0.06968957506865099 22 0.06334976357356749 18 0.06298808227776134 12 0.05922068778868578 11 0.057020568710838236 20 0.0555898058396303 24 0.05145723123320159 23 0.04653309976560461 10 0.043931444656976855 17 0.04362398827457089 16 0.04075335843033076 13 0.03995887590018647 14 0.03901856833352663 9 0.034182647580811805 0 0.03392869540990088 15 0.021965472829703594 4 0.021905247526215248 5 0.021440810319630892 6 0.018746799476499477 __DUMMY__ 0.01762302444473556 3 0.017524544475363363 7 0.01675818862905389 8 0.01670224434695868 1 0.016521909591730038 2 0.016168665787171087 false 0.0 1054 21 0.07655068952777852 19 0.06706676482918068 22 0.06668281543041081 11 0.06308033875811367 12 0.06250806472018582 18 0.06235610376280326 20 0.04914642436889361 24 0.04693773553231955 10 0.04638773775305112 17 0.04479875252979169 13 0.04318682361444571 23 0.04307342600896867 14 0.03900967530625578 16 0.0389057848291744 0 0.03859600650273337 9 0.03647551713520389 4 0.02147958302762544 5 0.021020434837000303 6 0.018653553642230727 15 0.01739096575638753 __DUMMY__ 0.016917469679669447 3 0.016305896865155857 7 0.01609840127347866 8 0.016021231656014392 1 0.015859181766095812 2 0.015490620887031313 false 0.0 1053 21 0.07443122715100868 19 0.07144300847717329 18 0.06502657363163056 20 0.06434790008226023 12 0.06088703327425465 22 0.06043157165509173 24 0.057490513208853816 11 0.05254636701449456 23 0.049417025222280635 14 0.04572419999682599 13 0.04380734201153238 10 0.04310791684164658 17 0.03839415827159386 16 0.037815244299486156 9 0.0305823023450856 15 0.028243544158131503 0 0.02588030179363455 4 0.02056799842794041 5 0.02008148358714063 __DUMMY__ 0.01720451634747728 6 0.016675945839418248 3 0.01660865898224073 7 0.015030063858606186 8 0.014995261546575041 1 0.014786541037032296 2 0.014473300938584526 false 0.0 1052 21 0.08179039815865535 22 0.07319238852411931 11 0.06647029383805764 19 0.06279238295213484 18 0.06006406473900046 12 0.05965981324326847 24 0.04883108799752999 10 0.04572984376862065 20 0.04357330687653285 23 0.04200862146048664 9 0.04085529530398538 17 0.04045948286214447 14 0.04017097792585348 13 0.03995742906857735 0 0.03677352228628638 16 0.02948948361821865 4 0.024238110986502442 5 0.02372320216437185 6 0.020386659230814588 3 0.019068294727159825 7 0.018030413437173747 8 0.01792839437883348 1 0.01774013578691193 2 0.01731107480284199 __DUMMY__ 0.01617616736037418 15 0.013579154501543915 false 0.0 1051 17 0.06579931608746914 0 0.060089767675710906 22 0.05500895824342876 16 0.05383064377460952 18 0.05279561000696179 9 0.049843894517748656 19 0.04826188321298754 11 0.046594994078359 10 0.04245338749023489 21 0.03967526967133423 6 0.039101298141248984 4 0.03765283107914171 8 0.03735155771030034 7 0.03724604984646659 5 0.037175470648979705 1 0.03713293407489521 2 0.03662095398230749 23 0.03584879613560563 3 0.03413732389400087 12 0.031594501749961756 24 0.026861035084417628 20 0.02634597756110751 15 0.024179025144299527 13 0.01740310549842885 14 0.015234398180737097 __DUMMY__ 0.011761016509256659 false 0.0 1050 21 0.0647139520512078 19 0.06458879984211435 22 0.06397107030561726 18 0.06043374461254908 11 0.05644133636406992 17 0.051009654985539034 12 0.04866308356765448 20 0.04683283551635878 24 0.045829699268637156 16 0.04532718576204111 10 0.04357259686828265 23 0.04252583103482191 0 0.041670446144602524 9 0.03941973276265345 14 0.03197326817609433 13 0.029691844393028098 4 0.025980171607892323 5 0.02549999113813787 6 0.02381115016984898 15 0.023519850510657136 7 0.02206529842834133 3 0.022060937334365285 8 0.02205198080415692 1 0.021832469749662305 2 0.021425726057264914 __DUMMY__ 0.01508734254440109 false 0.0 860 18 0.07014089759969973 10 0.06588527840282495 22 0.06078434301891852 21 0.05732392558505163 11 0.055277038667004515 19 0.053322709816793455 14 0.052028150133060086 9 0.048270801838612036 0 0.04427227554717256 17 0.043189028665077074 13 0.04259890737681372 12 0.04204175277296961 20 0.03818795188147373 15 0.03680181552088267 23 0.0331242744885777 24 0.028514873965794354 16 0.0274873798286703 4 0.026236004965096125 5 0.025847510591764034 6 0.023992714854096743 3 0.022348249547333995 8 0.022198420835075613 7 0.022183314844896242 1 0.022038809471273162 2 0.02169702337158137 __DUMMY__ 0.014206546409486084 false 0.0 861 9 0.05518081891321083 22 0.053181609255058125 4 0.04924065252644053 5 0.04874998773223344 6 0.04806362356214587 7 0.0477093668997008 8 0.04770881797492484 1 0.04760466827669724 3 0.04739385309451616 2 0.04704983975427309 18 0.04690084642242878 17 0.04499262596113314 23 0.043708094695696885 0 0.04306055750863888 21 0.0400130926230713 10 0.03885579888401142 19 0.03712393203042436 24 0.03501767548233671 11 0.03398803177937489 16 0.027189779062299253 20 0.02635535220791264 15 0.022721022515066053 12 0.02248057657104583 14 0.02094812524012833 13 0.013947167902940897 __DUMMY__ 0.010814083124289713 false 0.0 1049 21 0.07270381873106736 12 0.07063880486961419 13 0.06999077338770035 14 0.06464223271697805 18 0.06298702521555653 11 0.05665757611611368 22 0.055641655588891316 19 0.0551098591887296 10 0.05261932176792202 20 0.049291500727844655 23 0.042629447027674953 24 0.041366206001375846 15 0.03689629919008733 17 0.032912100444132696 9 0.03247554612393273 0 0.029983268445456516 16 0.025556726719534507 4 0.020780825738250103 5 0.020384669256849876 6 0.018486264385787456 8 0.015028670156591577 7 0.014974072750078522 1 0.014845091804133077 2 0.014594612425761688 3 0.014519640138218212 __DUMMY__ 0.014283991081717093 false 0.0 862 18 0.06540795557079933 22 0.06080194380677349 10 0.06076961428496088 9 0.054143668467240134 21 0.05080486853840879 11 0.049746888868507415 19 0.049182919059900666 0 0.04813881927963906 17 0.04698247466934861 14 0.03916787636825103 4 0.03358466182078758 23 0.033286210817516065 5 0.033136530446999955 20 0.032353945522683655 12 0.0320254871970176 6 0.031738556772596585 3 0.030616979251685474 8 0.030610499622838912 7 0.03060873352182452 1 0.0304781268844424 15 0.030040928364475885 2 0.030008635163192653 13 0.02897927678131038 16 0.02845936738465236 24 0.027675722601115005 __DUMMY__ 0.011249308933031592 false 0.0 620 21 0.106568 22 0.091954 11 0.087495 19 0.082235 12 0.072622 18 0.071093 24 0.05422 10 0.054059 20 0.050289 17 0.046299 0 0.0423 9 0.04214 14 0.040173 13 0.039855 23 0.036769 16 0.036057 4 0.011616 5 0.010941 6 0.006129 3 0.005445 7 0.003412 8 0.003173 1 0.002767 2 0.00239 21 0.106568 22 0.091954 11 0.087495 19 0.082235 12 0.072622 18 0.071093 24 0.05422 10 0.054059 20 0.050289 17 0.046299 0 0.0423 9 0.04214 14 0.040173 13 0.039855 23 0.036769 16 0.036057 4 0.011616 5 0.010941 6 0.006129 3 0.005445 7 0.003412 8 0.003173 1 0.002767 2 0.00239 21 0.09359049449034552 22 0.08142067035244252 11 0.07618877842903807 19 0.07348403161448477 12 0.066827544575144 18 0.06640422408996992 24 0.0518571688284391 10 0.0501794085348135 20 0.04878169924385697 17 0.04348140807404237 13 0.040866787471434525 14 0.04073679115112168 9 0.0405438985175087 23 0.04012786795801698 0 0.03903800402484743 16 0.033821694916808163 4 0.01750502416748905 5 0.016924976938149528 6 0.012895511933442348 3 0.011860428724246306 7 0.01035761418047205 8 0.01018519240047484 1 0.009901073876203566 2 0.009508218947171222 15 0.007986698957571686 __DUMMY__ 0.00552478760246507 false 1.0 1048 21 0.082361705448278 22 0.07350103830182342 11 0.06726802100736447 19 0.06380740361231273 18 0.06056839284678765 12 0.06028061112294186 24 0.049120671610281295 10 0.045974209708298 20 0.044319654170833174 23 0.04207391295303175 17 0.040788496445982245 9 0.040322785774040075 14 0.04002642056317197 13 0.03996019226553776 0 0.03682450333849063 16 0.03034898439876183 4 0.02353441837200836 5 0.02302886028346695 6 0.019657323533247607 3 0.01833195711801354 7 0.017282295093984004 8 0.01716664547278727 1 0.016984681325468525 __DUMMY__ 0.016562363413945624 2 0.01656166613191254 15 0.013342785687228648 false 0.0 1047 21 0.07541963292329323 22 0.0705944313887135 19 0.0645176836296785 18 0.064117000364964 11 0.06245233905579396 12 0.05252214624850793 10 0.04954466823134784 24 0.04818887738615167 20 0.04767231319051791 23 0.042235627943524666 14 0.041945813352314454 9 0.04105738694992075 17 0.0407536411604664 13 0.03562381756410018 0 0.0354343362444377 16 0.031066321424282194 4 0.024256218370634287 5 0.023772873555282587 15 0.0211473994598265 6 0.02019627318517808 3 0.02001947055978229 7 0.018455562555711208 8 0.018376795174228733 1 0.018163950310956706 2 0.01780810902084405 __DUMMY__ 0.014657310749540691 false 0.0 863 22 0.05830624774326926 18 0.056928211465374697 9 0.05684774969747069 10 0.05262736770271391 0 0.048113603645011244 17 0.046922706270811125 21 0.04473375722519839 11 0.0435142032536983 19 0.04196110746669478 4 0.041277763841186754 5 0.040794655979057425 6 0.03984240151346096 8 0.03910845445542928 7 0.039104312059545634 1 0.03898129931161034 3 0.038864125077674214 2 0.03844249637079869 23 0.03582159458285589 14 0.03081312052488658 24 0.028302422474309013 16 0.027093410468046256 15 0.02686323419050417 20 0.026319056578267584 12 0.025231174753279607 13 0.02086226055494475 __DUMMY__ 0.012323262793900749 false 0.0 621 0 0.087379 17 0.079507 9 0.065784 22 0.062688 11 0.059408 10 0.056889 18 0.054477 16 0.053411 6 0.045299 8 0.042699 7 0.0425 1 0.04229 2 0.04202 4 0.041647 5 0.040993 19 0.037611 3 0.037229 21 0.032733 12 0.024139 23 0.021116 13 0.012134 15 0.011498 14 0.00367 24 0.002877 0 0.087379 17 0.079507 9 0.065784 22 0.062688 11 0.059408 10 0.056889 18 0.054477 16 0.053411 6 0.045299 8 0.042699 7 0.0425 1 0.04229 2 0.04202 4 0.041647 5 0.040993 19 0.037611 3 0.037229 21 0.032733 12 0.024139 23 0.021116 13 0.012134 15 0.011498 14 0.00367 24 0.002877 0 0.07295096697219691 17 0.06924236661928493 9 0.061680008172721165 22 0.06072398064253525 18 0.05270216381695663 11 0.05253854895169925 10 0.05074196616295173 16 0.04671225886877457 6 0.04487767855433338 8 0.042950650070707155 4 0.042846542710039355 7 0.042824334309451643 1 0.042656174619411125 5 0.04226355163225858 2 0.0422203049465659 19 0.03942637234186187 3 0.03913534265413646 21 0.036800539107528195 23 0.028143900527332493 12 0.02482151735801715 15 0.01516899832262467 24 0.014322136609318158 13 0.012865205095673527 20 0.009790072770603328 14 0.009589459775159535 __DUMMY__ 0.0020049583878570397 false 1.0 864 18 0.05547530540349868 22 0.053252237870188804 21 0.052450698970973084 19 0.050582361201474794 23 0.04832993432862786 24 0.043787780091882715 9 0.043491250908244614 20 0.04345897742905396 10 0.04174411985158624 17 0.04061542714492257 12 0.04003151292004799 11 0.03978054537185239 4 0.03763797140054295 5 0.037180667497335236 6 0.03545897200740351 3 0.03469052972648009 0 0.034458610876595436 8 0.03435225225295377 7 0.03431757031145926 1 0.03416652672858461 2 0.03383230165321903 14 0.03301742131143776 16 0.03023712339290374 13 0.029700633835365815 15 0.026791293526616647 __DUMMY__ 0.011157973986748448 false 0.0 1046 21 0.0718873775504964 12 0.06378332648381804 18 0.06246781102907324 19 0.06053573236533525 22 0.05738892737746989 13 0.05643515855323793 14 0.055860720870214924 20 0.0549441116967659 11 0.053042546569029195 24 0.0491153227405275 10 0.0469257757123505 23 0.04595517712085043 17 0.034916896222736915 15 0.034209413307188095 9 0.03238112959326952 16 0.029982018848107646 0 0.0274422261030315 4 0.022296286297178936 5 0.021841354782619598 6 0.0192596225476546 3 0.017284592893321658 8 0.016775241712999135 7 0.01674129424535411 1 0.016567092245750738 2 0.016279344554516472 __DUMMY__ 0.015681498577101913 false 0.0 622 21 0.10811 22 0.089779 11 0.085399 19 0.084989 12 0.074436 18 0.073671 24 0.055046 20 0.055038 10 0.053649 17 0.045892 13 0.042014 0 0.040571 14 0.040168 23 0.039641 9 0.039195 16 0.036852 4 0.010403 5 0.009719 6 0.005182 3 0.003749 7 0.002386 1 0.0017 8 0.00163 2 7.82E-4 21 0.10811 22 0.089779 11 0.085399 19 0.084989 12 0.074436 18 0.073671 24 0.055046 20 0.055038 10 0.053649 17 0.045892 13 0.042014 0 0.040571 14 0.040168 23 0.039641 9 0.039195 16 0.036852 4 0.010403 5 0.009719 6 0.005182 3 0.003749 7 0.002386 1 0.0017 8 0.00163 2 7.82E-4 21 0.09456822781570007 22 0.0799934822854215 19 0.07507514823285036 11 0.07505384590523648 12 0.06860535704573478 18 0.06767885015948127 24 0.05248549301555064 20 0.051639692788311986 10 0.04983029980503126 17 0.04313353616562449 13 0.04278455230668688 23 0.04176122270661645 14 0.04103995646083495 9 0.03862216520815196 0 0.03790697490996809 16 0.03441096489875509 4 0.01663699212748763 5 0.016053537918366476 6 0.012177304843698968 3 0.01070765097602682 7 0.009554455281358813 8 0.009141874016445126 1 0.009080556720195239 2 0.008440697432806172 15 0.008034690754424718 __DUMMY__ 0.005582470219233702 false 1.0 865 22 0.07188468858686653 21 0.06820660930747935 11 0.06081317526300805 18 0.06027051261244344 19 0.05695825430800704 10 0.049924810250661665 9 0.049328368652027686 17 0.04474627386497113 0 0.04296164015916214 12 0.041835803582213026 24 0.04128335620028164 23 0.03815852717448633 20 0.035933076427229566 14 0.0341658382733576 4 0.03074872175324833 5 0.03022406064077868 16 0.029495131683874125 6 0.0273448257015141 3 0.027052332477567935 7 0.025948899155970682 13 0.025923872298618436 8 0.025905280338372375 1 0.025673973211482886 2 0.02523274092372102 15 0.017546240233346205 __DUMMY__ 0.012432986919310022 false 0.0 623 21 0.108359 22 0.090462 11 0.086134 19 0.085327 12 0.075408 18 0.073583 24 0.055187 20 0.054974 10 0.054086 17 0.045999 13 0.042315 0 0.040946 14 0.040854 9 0.039508 23 0.038981 16 0.037598 4 0.009651 5 0.009095 6 0.004271 3 0.003333 7 0.001636 8 0.001055 1 9.21E-4 2 3.19E-4 21 0.108359 22 0.090462 11 0.086134 19 0.085327 12 0.075408 18 0.073583 24 0.055187 20 0.054974 10 0.054086 17 0.045999 13 0.042315 0 0.040946 14 0.040854 9 0.039508 23 0.038981 16 0.037598 4 0.009651 5 0.009095 6 0.004271 3 0.003333 7 0.001636 8 0.001055 1 9.21E-4 2 3.19E-4 21 0.09468343806350199 22 0.0803095837968253 11 0.07539401881572456 19 0.07523156271546501 12 0.0690552325507651 18 0.06763808648859057 24 0.05255073304650456 20 0.051610045362666876 10 0.0500325498602825 17 0.043183043028538974 13 0.04292385563615879 23 0.04145571079259884 14 0.04135746460521689 9 0.03876702487487784 0 0.03808053269593594 16 0.034756248164582386 4 0.016288908027907417 5 0.015764701135462137 6 0.01175562686764764 3 0.010515093118307598 7 0.00920730019515843 8 0.008875720942757601 1 0.008719978694348672 2 0.00822638584945766 15 0.008034687035427078 __DUMMY__ 0.00558246763528938 false 1.0 1045 17 0.060846882696606604 19 0.05848975763370408 18 0.05670381012966055 22 0.05656025451388953 16 0.05506999593186284 0 0.05027278267475389 21 0.05002727147577444 11 0.04906082960120576 9 0.04169725162859763 12 0.041070570243003625 10 0.040850820837464594 23 0.04032390791143343 20 0.04023886230375232 24 0.03795681309312339 6 0.030574237432563413 4 0.030511008917399208 5 0.030036834034604228 8 0.028810114841652495 7 0.028724544573586478 1 0.02856190407348084 2 0.028125948785021983 15 0.027676165816987647 3 0.026834382881153345 13 0.024095099821634214 14 0.02344030187289505 __DUMMY__ 0.013439646274188425 false 0.0 866 18 0.07014119668655545 10 0.06575035975170868 22 0.06148521574924264 21 0.060224753697631014 11 0.05727823045824705 19 0.05419922811911629 14 0.05274311013420358 9 0.04713438958290198 12 0.04577963207805395 13 0.04544187618236398 0 0.043842897566148835 17 0.04237740406625973 20 0.03887052364401712 15 0.034853687470615534 23 0.03352714242352298 24 0.029314144310798543 16 0.02705282980216349 4 0.025136778787569806 5 0.024755994439981274 6 0.02281376236366547 3 0.020919032082117626 8 0.020780941482401942 7 0.02077533167401338 1 0.020633969568920288 2 0.020305723563711308 __DUMMY__ 0.013861844314068276 false 0.0 624 21 0.107681 22 0.088479 11 0.086723 12 0.078095 19 0.071932 18 0.059113 24 0.056848 13 0.047784 23 0.044934 20 0.041893 14 0.041496 10 0.040917 17 0.040339 9 0.037252 0 0.037172 16 0.028861 4 0.017637 5 0.016874 6 0.012859 3 0.009451 7 0.00907 8 0.008681 1 0.008434 2 0.007476 21 0.107681 22 0.088479 11 0.086723 12 0.078095 19 0.071932 18 0.059113 24 0.056848 13 0.047784 23 0.044934 20 0.041893 14 0.041496 10 0.040917 17 0.040339 9 0.037252 0 0.037172 16 0.028861 4 0.017637 5 0.016874 6 0.012859 3 0.009451 7 0.00907 8 0.008681 1 0.008434 2 0.007476 21 0.09448935187848315 22 0.07898520459730417 11 0.07542888369622577 12 0.07105945868375217 19 0.06712136441190229 18 0.05912152206620545 24 0.05328700406716897 13 0.04655606437831908 23 0.04511309467288747 20 0.04389034548060538 10 0.042351842121024566 14 0.0416171841642216 17 0.03968852493636375 9 0.03754582952930605 0 0.03590064072930972 16 0.029364006483684743 4 0.02108154328438943 5 0.02044566988891726 6 0.01693551635265923 3 0.014224548779591208 7 0.013704669321702136 8 0.013462238442543845 1 0.013251022956216824 2 0.012586443656941572 15 0.00742570690088914 __DUMMY__ 0.005362318519385168 false 1.0 625 22 0.082308 9 0.071301 21 0.059562 0 0.05351 11 0.053404 18 0.052071 17 0.049568 4 0.04666 5 0.045681 10 0.045232 3 0.044814 8 0.04327 6 0.042981 7 0.042879 1 0.04257 2 0.042188 19 0.041334 24 0.036479 23 0.029539 14 0.020169 16 0.0171 12 0.014358 20 0.013073 15 0.009951 22 0.082308 9 0.071301 21 0.059562 0 0.05351 11 0.053404 18 0.052071 17 0.049568 4 0.04666 5 0.045681 10 0.045232 3 0.044814 8 0.04327 6 0.042981 7 0.042879 1 0.04257 2 0.042188 19 0.041334 24 0.036479 23 0.029539 14 0.020169 16 0.0171 12 0.014358 20 0.013073 15 0.009951 22 0.07350948369277237 21 0.06273066809287378 9 0.05887678555853704 11 0.05460631930995493 18 0.05419346852227395 0 0.04714038715472374 10 0.045931904188049336 19 0.045874933368856764 17 0.04574997389302364 4 0.039604662569896115 5 0.03886110403721082 24 0.038021161608383244 6 0.03657877344266898 3 0.03637366880178657 8 0.035638914016447025 7 0.03542645417895981 1 0.03517585645973335 23 0.03485633536812934 2 0.0347702944239648 12 0.031738636450142896 14 0.030081061603794295 20 0.02387676995283571 16 0.021984442453948712 13 0.019401160725040455 15 0.015808906838019984 __DUMMY__ 0.0031878732879722063 false 1.0 867 21 0.07937905119960087 22 0.06725559485967643 12 0.0669821988675797 11 0.06641660213500557 18 0.05932604759718113 19 0.05908288241126372 13 0.05153549411594057 10 0.046907630391219056 24 0.04408899820568952 14 0.04405635534166745 23 0.043182676702864284 20 0.04208850757669512 17 0.03952466036715938 0 0.037741334689150696 9 0.03730360781589811 16 0.02927575305994376 4 0.02358348357925588 5 0.023090313916350226 6 0.020844942866998274 7 0.017582081449440966 8 0.01749345552897788 3 0.017343883820726318 1 0.017336153323096355 2 0.016963441894119302 __DUMMY__ 0.01588298908841544 15 0.015731859196083903 false 0.0 868 22 0.06013503851201402 21 0.05989230181398064 18 0.0586518849486203 19 0.05573483732648354 11 0.047548412735687176 10 0.04544416537900886 24 0.04501088497406857 20 0.044679128850284154 9 0.043693701104585266 23 0.04354947082435042 17 0.04099007057422184 12 0.04094879866813137 14 0.038374581244413696 0 0.034991010141625596 4 0.032048502074830156 5 0.03155162543302391 16 0.030946209014255533 13 0.030040374296270798 3 0.029166272549537967 6 0.029029468319390017 15 0.028389695826450838 8 0.028077641131224716 7 0.02806835290953796 1 0.027859009067995207 2 0.027464261157524063 __DUMMY__ 0.017714301122483518 false 0.0 626 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.0924190518946822 22 0.08301139605294904 11 0.07699436691135705 19 0.07108259593117167 18 0.06516875614200225 12 0.0631703674383173 10 0.05030406433141916 24 0.049863845704446345 20 0.044931780369420804 17 0.04394886286620478 9 0.042850873254365006 0 0.04066849929586554 14 0.03938479692815996 23 0.03901425646070274 13 0.03789720505243706 16 0.032530815750531676 4 0.019229171483667474 5 0.018799182267056326 6 0.01474289326940463 3 0.01365447165965481 7 0.01239126581586962 8 0.012023017292982023 1 0.011865621249808351 2 0.011279858694957994 15 0.007470378117033743 __DUMMY__ 0.00530260576553242 false 1.0 869 22 0.05838549776608473 9 0.05797407023432146 18 0.055121047027315344 10 0.0511861941619093 0 0.04921737724398729 17 0.04766012426117928 21 0.043499974573198825 11 0.042994699628301755 4 0.042932065352352666 5 0.04243866581685129 6 0.04164912342399457 8 0.040971232842146856 7 0.040959813882367566 1 0.04082957901126638 3 0.04060410224310678 19 0.04040580030948514 2 0.040284807873516924 23 0.03573792209074243 14 0.02831102405754263 24 0.0278067591205828 16 0.027183445959370944 15 0.025436368056550168 20 0.02417211152500364 12 0.023595924677606676 13 0.01862628353749186 __DUMMY__ 0.01201598532372281 false 0.0 627 21 0.103258 22 0.091645 11 0.088095 12 0.068778 19 0.068218 18 0.058605 24 0.05281 10 0.044765 9 0.043463 17 0.042446 0 0.04172 23 0.039627 13 0.039505 14 0.039114 20 0.035504 16 0.027903 4 0.02026 5 0.019534 6 0.015362 3 0.01308 7 0.012164 8 0.011838 1 0.011586 2 0.010721 21 0.103258 22 0.091645 11 0.088095 12 0.068778 19 0.068218 18 0.058605 24 0.05281 10 0.044765 9 0.043463 17 0.042446 0 0.04172 23 0.039627 13 0.039505 14 0.039114 20 0.035504 16 0.027903 4 0.02026 5 0.019534 6 0.015362 3 0.01308 7 0.012164 8 0.011838 1 0.011586 2 0.010721 21 0.09182041511257605 22 0.0817104161429617 11 0.07663483087968044 19 0.06520838943025314 12 0.06428667141943649 18 0.059244437355644594 24 0.05072938686404854 10 0.04498484161106122 9 0.04193255197868655 23 0.04155228892429777 17 0.04149148578286459 13 0.0400834451002615 20 0.039699912914871946 14 0.039570460023582256 0 0.03913726590260625 16 0.028873841936204944 4 0.02272429850028479 5 0.02210754645262271 6 0.018443939437238387 3 0.016524868834277444 7 0.015634409728482738 8 0.01542257215354032 1 0.015204884250578829 2 0.014572538751402806 15 0.0072469743604984095 __DUMMY__ 0.005157326152035441 false 1.0 628 21 0.101993 19 0.094482 22 0.083683 20 0.078985 18 0.078025 24 0.074905 11 0.071839 12 0.066991 23 0.051533 10 0.044142 16 0.042648 17 0.042409 14 0.041656 13 0.031864 9 0.029283 0 0.021725 15 0.015571 4 0.009551 5 0.008432 3 0.004859 6 0.002345 7 0.001093 8 0.001022 1 9.63E-4 21 0.101993 19 0.094482 22 0.083683 20 0.078985 18 0.078025 24 0.074905 11 0.071839 12 0.066991 23 0.051533 10 0.044142 16 0.042648 17 0.042409 14 0.041656 13 0.031864 9 0.029283 0 0.021725 15 0.015571 4 0.009551 5 0.008432 3 0.004859 6 0.002345 7 0.001093 8 0.001022 1 9.63E-4 21 0.08877948975526437 19 0.08033733706314548 22 0.07646538915091791 18 0.07062418691136671 11 0.06616528448557724 20 0.06492886326300709 24 0.06305473686993746 12 0.060598943318185626 23 0.04773205098221503 10 0.04526004162427365 17 0.04201115000914159 14 0.041363336681204343 16 0.03832276170176081 9 0.034268111227721 13 0.033910946369999286 0 0.027953953172761007 15 0.0186957236916069 4 0.01687512168174509 5 0.016080659965233727 3 0.01245556060864644 6 0.011313424833393372 7 0.009843143687939593 8 0.009763910796587897 1 0.009615509763538737 2 0.008955624883036518 __DUMMY__ 0.004624737501793233 false 1.0 629 21 0.102562 22 0.090212 11 0.088269 12 0.069731 19 0.057379 24 0.053731 18 0.047697 23 0.043358 13 0.043023 9 0.042187 14 0.039489 0 0.039141 17 0.038393 10 0.034913 4 0.026549 5 0.02557 20 0.025468 6 0.022062 16 0.021388 3 0.018324 7 0.018136 8 0.018006 1 0.017666 2 0.016747 21 0.102562 22 0.090212 11 0.088269 12 0.069731 19 0.057379 24 0.053731 18 0.047697 23 0.043358 13 0.043023 9 0.042187 14 0.039489 0 0.039141 17 0.038393 10 0.034913 4 0.026549 5 0.02557 20 0.025468 6 0.022062 16 0.021388 3 0.018324 7 0.018136 8 0.018006 1 0.017666 2 0.016747 21 0.09080396949147435 22 0.0801016273920615 11 0.07555968811368376 12 0.06471184940765433 19 0.05929302822120727 18 0.053348368514417696 24 0.05134960497505046 23 0.04411527346910775 13 0.04211585498267602 9 0.041002743829013866 14 0.03973640432280229 10 0.03938820408576714 17 0.0391214589816305 0 0.03729987155610261 20 0.03485810116158984 4 0.026324696592831504 5 0.025580727844284733 16 0.025430711737728887 6 0.022315090305680893 3 0.0196091921789015 7 0.01914411779554348 8 0.019027684123087637 1 0.01876413115995987 2 0.018104492849979413 15 0.0076393900783250515 __DUMMY__ 0.005253716829437615 false 1.0 1066 21 0.06905513836479477 22 0.06530993515712402 11 0.05666092155680266 18 0.05618750502448038 12 0.0519082157469736 19 0.05089220508328146 10 0.046121509669229004 9 0.04484055775771474 14 0.04317106844105919 13 0.042037677601496244 24 0.04137222298320383 23 0.040414045375520964 17 0.039238933267023324 0 0.03807351962418791 20 0.03602627871417167 4 0.030970025301395455 5 0.030442501722718843 6 0.02822689498352868 3 0.026167461178289875 8 0.025969180843684322 7 0.025907892686335993 1 0.025714841668766725 2 0.0253267422972808 16 0.024532820047642002 15 0.02189562679641655 __DUMMY__ 0.01353627810687681 false 0.0 1065 21 0.07447632723300265 19 0.0713732251520577 18 0.06497608055914886 20 0.06421698717365922 12 0.06091978725767067 22 0.06048198634101267 24 0.05743254234666269 11 0.052621257943676225 23 0.049385159561613 14 0.04570036854774116 13 0.04383291984215132 10 0.043104227352430295 17 0.03839260462911732 16 0.03775905999427302 9 0.03062092178010187 15 0.0281505461813245 0 0.025935265025554998 4 0.02058835412230653 5 0.020101755738372407 __DUMMY__ 0.017265549377331792 6 0.016700272058693726 3 0.01661672875258487 7 0.015046023974966839 8 0.015010900601304175 1 0.014802407096622368 2 0.014488741356619185 false 0.0 1064 21 0.08220770316057344 12 0.07150124992064551 22 0.06514269314951704 19 0.0632369697526807 11 0.0631106966693567 18 0.059487972990196245 13 0.054349104795826185 24 0.0498598816169645 20 0.049617752613223834 23 0.046877229148557346 14 0.04554111786747333 10 0.04329369976073675 17 0.03732695812549587 9 0.033057058401007915 0 0.032319234671431614 16 0.030830332344026375 4 0.021806494064555246 5 0.0213173141021411 6 0.018707049013420424 __DUMMY__ 0.017169974953380858 15 0.016517802376073448 3 0.015630895023265208 7 0.01550515699330239 8 0.015413949327955442 1 0.015259039598570967 2 0.014912669559621717 false 0.0 1063 21 0.07345718726896464 19 0.06963950889097885 22 0.06341508116291646 18 0.06296320805968922 12 0.05922501780505934 11 0.05708270635675534 20 0.05551012830521172 24 0.051444892091381894 23 0.046502918160435135 10 0.04393744504637248 17 0.04359268988955378 16 0.04066864286168603 13 0.039959813031360696 14 0.03902965217581223 9 0.034222125668113355 0 0.03393699956595333 4 0.021918268705336526 15 0.02190750327846477 5 0.02145351076836387 6 0.018754040993048865 __DUMMY__ 0.017677202199735145 3 0.017532348490026287 7 0.016763115033956243 8 0.01670682796393302 1 0.01652642340843063 2 0.016172742818460043 false 0.0 1062 21 0.07568639242399396 22 0.07134876491675668 11 0.06203288055883643 19 0.05887008446847369 18 0.05828488759723827 12 0.05287998285478047 24 0.045992295147374435 10 0.045188141548942996 9 0.044337327485737 17 0.04185170408178242 23 0.0410025047939344 20 0.03976011425578605 0 0.03890217481642828 14 0.03699207838681546 13 0.03496891529992264 16 0.028878708427670263 4 0.028065826615651834 5 0.027532161475307432 6 0.02458523654851346 3 0.02346348880297189 7 0.02257064723419913 8 0.0225122699837326 1 0.02229455140950845 2 0.021854780821353444 __DUMMY__ 0.01554112940230399 15 0.014602950641984462 false 0.0 1061 21 0.08253534188327086 22 0.07366510432206344 11 0.06742812273643875 19 0.06374983439541294 18 0.060548529896084835 12 0.06032694065712682 24 0.04912139015417359 10 0.046007022979963764 20 0.044191290654800326 23 0.04203172464805381 17 0.04072512307745773 9 0.04040399128262518 14 0.04006484158634187 13 0.03998186853861647 0 0.03684022853504028 16 0.03018177503578633 4 0.023551658732747463 5 0.02304543899426617 6 0.01965825518789604 3 0.018336347791383417 7 0.01727776461239076 8 0.01716102523159675 1 0.01697909179911377 2 0.01655510707356815 __DUMMY__ 0.016420697062615033 15 0.013211483131165208 false 0.0 1060 21 0.08253534188327086 22 0.07366510432206344 11 0.06742812273643875 19 0.06374983439541294 18 0.060548529896084835 12 0.06032694065712682 24 0.04912139015417359 10 0.046007022979963764 20 0.044191290654800326 23 0.04203172464805381 17 0.04072512307745773 9 0.04040399128262518 14 0.04006484158634187 13 0.03998186853861647 0 0.03684022853504028 16 0.030181775035786326 4 0.023551658732747463 5 0.02304543899426617 6 0.01965825518789604 3 0.018336347791383417 7 0.01727776461239076 8 0.01716102523159675 1 0.01697909179911377 2 0.01655510707356815 __DUMMY__ 0.016420697062615033 15 0.013211483131165208 false 0.0 870 18 0.06911024338332099 10 0.05904415103159147 19 0.0571654926373326 22 0.05703722368071461 21 0.05442843507702161 14 0.04708155107328355 11 0.04694879413083141 20 0.0465002394194006 9 0.04487800313627971 17 0.04216474469027322 23 0.040393055393506294 12 0.039073574032636046 0 0.03797168787456035 15 0.03786054143165926 24 0.036493324957464365 13 0.03597799541022221 16 0.03062172490418747 4 0.028287992231911196 5 0.027880784429093988 6 0.025627944749616265 3 0.02526177751941624 8 0.024463499694586915 7 0.024445818124936305 1 0.024264322585877535 2 0.02398271238579906 __DUMMY__ 0.013034366014476707 false 0.0 871 18 0.07163524275808443 10 0.06100721154681081 19 0.06059361770220955 21 0.058872148106271456 22 0.05793535728055111 14 0.05460076330787137 20 0.05103058964718269 11 0.05036256965413192 12 0.04417326644310275 15 0.04260858732118428 13 0.0425810621378096 9 0.041699827420746585 17 0.04121507747040012 23 0.038467426671268214 24 0.03827483700248204 0 0.03589726105992318 16 0.03191005271575601 4 0.023364322507177883 5 0.022956113294418375 6 0.020439650800041897 3 0.02008818726858065 8 0.019122446090891268 7 0.019109755518803836 1 0.018929892238191953 2 0.01862716884499799 __DUMMY__ 0.014497565191109877 false 0.0 872 18 0.07018501501100914 10 0.06506397574838413 22 0.05824830344822947 14 0.055782222596534724 21 0.05478780467449949 19 0.05300329882039974 11 0.05098997406791345 9 0.04717837304943962 15 0.043527373324649836 13 0.04271956760063467 17 0.041708677429790515 20 0.04104292578534231 0 0.04086176936163787 12 0.03949615541549467 23 0.03417466201936123 24 0.0302217731580374 16 0.02739405699979145 4 0.026484082336314503 5 0.026097277186739584 6 0.024097276034907158 3 0.023053095102330754 8 0.022638452715785892 7 0.022608692753467913 1 0.02246089637880627 2 0.02212565429902632 __DUMMY__ 0.01404864468147179 false 0.0 630 21 0.107808 22 0.089713 11 0.085512 19 0.08432 12 0.075242 18 0.073147 24 0.055718 20 0.054795 10 0.053695 17 0.04582 13 0.042027 0 0.040985 14 0.040845 9 0.039195 23 0.039164 16 0.037672 4 0.010136 5 0.009314 6 0.004662 3 0.004057 7 0.002039 8 0.001635 1 0.001447 2 0.001054 21 0.107808 22 0.089713 11 0.085512 19 0.08432 12 0.075242 18 0.073147 24 0.055718 20 0.054795 10 0.053695 17 0.04582 13 0.042027 0 0.040985 14 0.040845 9 0.039195 23 0.039164 16 0.037672 4 0.010136 5 0.009314 6 0.004662 3 0.004057 7 0.002039 8 0.001635 1 0.001447 2 0.001054 21 0.09444123884138902 22 0.07997615184309612 11 0.07512196130581468 19 0.07475712749910464 12 0.06898245004781745 18 0.06742591242646097 24 0.05279448572964293 20 0.051507069660404206 10 0.049846039772713784 17 0.043099402129630766 13 0.042790748840056236 23 0.041538164444187724 14 0.04135053335905494 9 0.03862766245369953 0 0.038104625686764745 16 0.03478183594251004 4 0.016517240397481644 5 0.015869753542132395 6 0.01194037653219643 3 0.010851947847893477 7 0.00939650161218092 8 0.009146707894769509 1 0.008965877638401008 2 0.008568709976102854 15 0.008021571158770049 __DUMMY__ 0.005575903417723992 false 1.0 873 21 0.06992566261994805 19 0.06963501581150196 18 0.06705724215502391 20 0.06269031031716917 22 0.06152831706238631 24 0.05536061494873893 12 0.052722759929734804 11 0.051897157628578904 23 0.04745420688419705 10 0.046242303378769105 14 0.045862856446321154 17 0.039176319482487044 13 0.03776381328576582 16 0.036322036616931806 9 0.03397165752928052 15 0.0323739982941305 0 0.02694183925164379 4 0.022371388454939092 5 0.02187663625519986 3 0.019031559826032076 6 0.01827833302060997 7 0.017111104414491908 8 0.017084227616966267 1 0.01683295591528815 2 0.01650875582499165 __DUMMY__ 0.01397892702887232 false 0.0 1059 21 0.0776745072448693 19 0.06791064290938548 22 0.06537236557241038 18 0.06230038189320037 12 0.06114056442910385 11 0.05814693169435849 20 0.05525624504105401 24 0.0535605414403541 23 0.04686529658888751 10 0.04368933160945038 13 0.04243877943165311 14 0.04231420408184841 17 0.03926149182619276 9 0.034712609706207403 16 0.034597503296703136 0 0.030747053498028292 4 0.02231073580679089 5 0.021821172142883666 15 0.020625933949556374 6 0.01851793015216919 __DUMMY__ 0.017852655862177998 3 0.01777313344160634 7 0.016513115583028988 8 0.016445372610743005 1 0.016255630376413602 2 0.01589586981092307 false 0.0 631 21 0.106917 22 0.08762 11 0.08551 12 0.077286 19 0.070342 18 0.058785 24 0.057211 13 0.047262 23 0.044653 20 0.041844 14 0.041383 10 0.040429 17 0.040195 0 0.03723 9 0.036972 16 0.028891 4 0.018276 5 0.017533 6 0.013495 3 0.010589 7 0.009878 8 0.009645 1 0.009417 2 0.008637 21 0.106917 22 0.08762 11 0.08551 12 0.077286 19 0.070342 18 0.058785 24 0.057211 13 0.047262 23 0.044653 20 0.041844 14 0.041383 10 0.040429 17 0.040195 0 0.03723 9 0.036972 16 0.028891 4 0.018276 5 0.017533 6 0.013495 3 0.010589 7 0.009878 8 0.009645 1 0.009417 2 0.008637 21 0.09412706100041018 22 0.07858065044399554 11 0.07486931573151964 12 0.07069096160553497 19 0.06635154215850088 18 0.05894470645411493 24 0.05343390984259985 13 0.04633265636216888 23 0.044980148104943114 20 0.04382808515555058 10 0.042118556784937956 14 0.04156458352519353 17 0.03961569425661815 9 0.03742351020672501 0 0.03593857106224029 16 0.02935965252381235 4 0.021392832150587664 5 0.020766531879761053 6 0.017248717331603707 3 0.014763835650110467 7 0.014094984264500449 8 0.013924679580909458 1 0.013722142518995138 2 0.01314011559967617 15 0.007416597099669046 __DUMMY__ 0.005369958705321145 false 1.0 874 22 0.05515960443606206 9 0.052385550089506086 18 0.052196106370133555 21 0.048335538237540714 10 0.04761667350187549 0 0.04378767862797948 11 0.04340204765894121 17 0.04230233345275365 4 0.041792141202172374 5 0.0413532345646456 6 0.0406314969741097 23 0.03936874668004751 7 0.039187493934759884 8 0.039171533565427435 1 0.03911570578301098 2 0.03857379970539773 3 0.03841147356760524 19 0.038344579891142795 12 0.034974807867356655 14 0.034347565749056876 13 0.03125117981212884 24 0.030816702841661377 20 0.02673897567572459 15 0.025689922648277942 16 0.023867061626732557 __DUMMY__ 0.011178045535949695 false 0.0 632 0 0.089074 17 0.079762 9 0.065787 22 0.062919 11 0.060067 10 0.05785 18 0.055243 16 0.053353 6 0.04514 8 0.042541 7 0.042357 1 0.042037 2 0.041618 4 0.04125 5 0.040424 19 0.037447 3 0.036761 21 0.032696 12 0.02349 23 0.021134 13 0.012308 15 0.010943 14 0.003176 24 0.002624 0 0.089074 17 0.079762 9 0.065787 22 0.062919 11 0.060067 10 0.05785 18 0.055243 16 0.053353 6 0.04514 8 0.042541 7 0.042357 1 0.042037 2 0.041618 4 0.04125 5 0.040424 19 0.037447 3 0.036761 21 0.032696 12 0.02349 23 0.021134 13 0.012308 15 0.010943 14 0.003176 24 0.002624 0 0.07371352756454717 17 0.06933783475668373 9 0.061682667969576735 22 0.06085313543393309 18 0.05306056636552385 11 0.05285552972465783 10 0.05118671385676163 16 0.04665635479446766 6 0.044791905760162676 8 0.042865937419009445 7 0.042746313052405185 4 0.04265647272667915 1 0.04252717627831748 2 0.04202278614520749 5 0.04199371554993635 19 0.03935807557241618 3 0.0389122562379567 21 0.03681799010104139 23 0.02815281189611405 12 0.02453160163642701 15 0.014908597927994071 24 0.014226154459981688 13 0.012954656648611652 20 0.009798300248669607 14 0.009384916168634514 __DUMMY__ 0.002004001704283613 false 1.0 1058 21 0.07768929139939416 22 0.06768009252376875 19 0.06480830186046853 18 0.05995365092947981 11 0.05990048037897418 12 0.05910025150482551 24 0.05226032802881831 20 0.050025424811600064 23 0.04541183507268582 10 0.04270185566718069 14 0.04093199897767487 13 0.040240629774255354 17 0.040108823263555506 9 0.03705499387761909 16 0.033214307957071004 0 0.03279782830985884 4 0.02410533377353886 5 0.02359960338316097 6 0.020402931689558212 3 0.01942499816767719 15 0.01916516576408864 7 0.018309198284414428 8 0.018256713986780138 1 0.01804747167065208 2 0.017668393594599787 __DUMMY__ 0.017140095348299238 false 0.0 1057 21 0.07459829816464264 19 0.07017374045424427 18 0.06341104244376519 22 0.06268824427936542 12 0.060580062774653824 20 0.05831641738825272 11 0.056046235749661236 24 0.05366682186050952 23 0.04757208547492877 10 0.04349413306826452 13 0.04186694618903871 17 0.041451580789138326 14 0.041440850031037195 16 0.03923501698729391 9 0.03286949923692498 0 0.031064763817190862 15 0.023380391084029548 4 0.021360115476158008 5 0.020888282325756753 6 0.017914118431591217 __DUMMY__ 0.017832022789671987 3 0.01704419865536094 7 0.015995892989208498 8 0.015938332412044714 1 0.015756949769304706 2 0.015413957357961642 false 0.0 875 9 0.0573622724452809 22 0.05401419391905551 4 0.049277013380609365 5 0.04879352561857516 6 0.04836975637328112 7 0.047865934343888146 8 0.04785314810231312 1 0.04778404327744871 3 0.04721436304936059 2 0.047168543050384926 18 0.04698287564093173 0 0.04589307909259603 17 0.045684288964899206 10 0.041593509673201336 23 0.04048794017731002 21 0.03951550616751338 11 0.03588957404260171 19 0.034415227561357266 24 0.03110659909220356 16 0.025734323093366925 15 0.02315954696522096 14 0.022559139566610854 20 0.022175406625775114 12 0.02182668426404622 13 0.0154594554209045 __DUMMY__ 0.011814050091263574 false 0.0 633 21 0.103465 22 0.092091 11 0.086874 19 0.076338 18 0.068009 12 0.067139 10 0.053058 24 0.052143 17 0.045952 20 0.044587 9 0.044385 0 0.04404 14 0.038806 23 0.03604 13 0.035982 16 0.033948 4 0.015229 5 0.014408 6 0.009869 3 0.009551 7 0.007487 8 0.007146 1 0.006923 2 0.00653 21 0.103465 22 0.092091 11 0.086874 19 0.076338 18 0.068009 12 0.067139 10 0.053058 24 0.052143 17 0.045952 20 0.044587 9 0.044385 0 0.04404 14 0.038806 23 0.03604 13 0.035982 16 0.033948 4 0.015229 5 0.014408 6 0.009869 3 0.009551 7 0.007487 8 0.007146 1 0.006923 2 0.00653 21 0.09197251020758435 22 0.08238622383737963 11 0.07648085950798875 19 0.07024751649217167 18 0.06480517000599227 12 0.06305154257786143 24 0.050307355016960605 10 0.04997437785161095 20 0.044785403394374014 17 0.04379773791102801 9 0.04258431200782927 0 0.04069901772048529 14 0.0393795942715976 23 0.039170926065860465 13 0.03767445118907162 16 0.03259155175674568 4 0.019628522044034476 5 0.018977019376037466 6 0.015064932711870014 3 0.014250620340570064 7 0.012721448279016648 8 0.012500243217014616 1 0.012297450125700424 2 0.011885956945393161 15 0.007463181617856536 __DUMMY__ 0.005302075527965032 false 1.0 1056 21 0.07339669972869341 19 0.06968957506865099 22 0.06334976357356749 18 0.06298808227776134 12 0.05922068778868578 11 0.057020568710838236 20 0.0555898058396303 24 0.05145723123320159 23 0.04653309976560461 10 0.043931444656976855 17 0.04362398827457089 16 0.04075335843033076 13 0.03995887590018647 14 0.03901856833352663 9 0.034182647580811805 0 0.03392869540990088 15 0.021965472829703594 4 0.021905247526215248 5 0.021440810319630892 6 0.018746799476499477 __DUMMY__ 0.01762302444473556 3 0.017524544475363363 7 0.01675818862905389 8 0.01670224434695868 1 0.016521909591730038 2 0.016168665787171087 false 0.0 876 21 0.06628144398006902 22 0.05984241746905435 12 0.05756436210917379 18 0.05735093815033032 11 0.057068638958223165 10 0.05089464838173092 13 0.050820363379325405 19 0.047230825947918456 14 0.04513882174533221 9 0.04328265646604577 23 0.0408519122368248 0 0.039589659947951585 17 0.0375412627872366 24 0.035743956526378635 20 0.03498450264097314 4 0.03088952247203533 5 0.03048345822783528 6 0.028958704448071502 7 0.026029173015087028 8 0.026014453312688438 1 0.025920512289133335 2 0.02556097466682698 3 0.025385145028928895 16 0.02263730282488716 15 0.02137028216897397 __DUMMY__ 0.012564060818963978 false 0.0 634 21 0.104412 19 0.087211 22 0.082715 11 0.079754 12 0.07845 18 0.074275 20 0.062177 24 0.056525 10 0.053073 13 0.047342 17 0.045217 14 0.042533 23 0.041801 16 0.041107 0 0.038174 9 0.035071 4 0.008626 5 0.008155 15 0.004552 6 0.003766 3 0.002656 7 0.00122 8 6.35E-4 1 5.51E-4 21 0.104412 19 0.087211 22 0.082715 11 0.079754 12 0.07845 18 0.074275 20 0.062177 24 0.056525 10 0.053073 13 0.047342 17 0.045217 14 0.042533 23 0.041801 16 0.041107 0 0.038174 9 0.035071 4 0.008626 5 0.008155 15 0.004552 6 0.003766 3 0.002656 7 0.00122 8 6.35E-4 1 5.51E-4 21 0.09251600891397269 19 0.07655198841937452 22 0.0751729354096977 12 0.07206957749994863 11 0.07157810513509044 18 0.06825051062039601 20 0.056429527131253286 24 0.05332010515834387 10 0.049483201335562076 13 0.04732573786719513 23 0.043384394333051 14 0.04296200910821288 17 0.0425655263155589 16 0.037035612059926816 0 0.03617192613684664 9 0.03546081848285984 4 0.015272060013088843 5 0.014793950523103757 6 0.011108111977615354 15 0.010976305057924064 3 0.009573039777406308 7 0.008508484014026539 8 0.00818288913852523 1 0.00805360773982616 2 0.0075989632757933355 __DUMMY__ 0.005654604555399976 false 1.0 635 22 0.099468 21 0.094181 24 0.069662 9 0.061525 11 0.059701 19 0.050333 18 0.045363 14 0.043494 4 0.040453 23 0.040066 5 0.039376 3 0.038697 8 0.032506 7 0.032061 1 0.031763 6 0.031494 2 0.031398 17 0.027962 12 0.027866 20 0.027636 10 0.027596 0 0.023725 15 0.015516 13 0.008159 22 0.099468 21 0.094181 24 0.069662 9 0.061525 11 0.059701 19 0.050333 18 0.045363 14 0.043494 4 0.040453 23 0.040066 5 0.039376 3 0.038697 8 0.032506 7 0.032061 1 0.031763 6 0.031494 2 0.031398 17 0.027962 12 0.027866 20 0.027636 10 0.027596 0 0.023725 15 0.015516 13 0.008159 21 0.08347058467279254 22 0.07989859783876306 11 0.058841845364751476 24 0.056883331553315 19 0.05407384963318948 18 0.052944320856619334 9 0.04876733230465913 12 0.04640060187584359 14 0.046213854172286864 23 0.04214298087205509 10 0.03758916846292691 20 0.037262595737880086 17 0.033150224177566634 4 0.03249723811952446 5 0.031733811777254844 13 0.03143422536153937 0 0.029063919353702197 3 0.028757557563855403 6 0.026814189463335938 8 0.025803405984200736 7 0.025589116666680057 1 0.02534699720283673 2 0.02499070405382477 15 0.02023295716699557 16 0.0150442210224147 __DUMMY__ 0.005052368741186151 false 1.0 877 22 0.06362030840101586 18 0.05898711028788112 9 0.05886444752525185 0 0.05493486653243838 10 0.05475281212706443 17 0.05276074338012544 11 0.050425156210634245 21 0.04775921055672184 19 0.04476376625998962 4 0.03884221907339899 5 0.03829192984952771 6 0.03772417164480235 8 0.03664056943824523 7 0.03659086756887638 1 0.036407154029660174 3 0.03588038566498672 2 0.03587365195743965 23 0.031825548416255706 16 0.031227207885821912 14 0.026941781875120613 12 0.026525803841222773 24 0.025472679478654153 20 0.02294567971268547 15 0.021923066371886363 13 0.018736198234079536 __DUMMY__ 0.011282663676213545 false 0.0 636 17 0.090148 18 0.084545 19 0.080401 16 0.078137 11 0.075528 0 0.075071 22 0.06996 21 0.056967 10 0.053546 12 0.051961 20 0.04878 9 0.038675 23 0.034422 24 0.029606 6 0.018227 13 0.016288 4 0.015968 5 0.014628 7 0.013389 8 0.01332 1 0.012568 2 0.01114 15 0.01003 3 0.006695 17 0.090148 18 0.084545 19 0.080401 16 0.078137 11 0.075528 0 0.075071 22 0.06996 21 0.056967 10 0.053546 12 0.051961 20 0.04878 9 0.038675 23 0.034422 24 0.029606 6 0.018227 13 0.016288 4 0.015968 5 0.014628 7 0.013389 8 0.01332 1 0.012568 2 0.01114 15 0.01003 3 0.006695 18 0.07129295731048112 22 0.06770975683417484 19 0.06736842221597908 17 0.0671199471449464 11 0.06502796130345076 21 0.059788208014926715 0 0.05786726190345752 16 0.05462996989598404 10 0.05032472853806358 12 0.04687624937186515 20 0.04367502053179294 9 0.043007229221702005 23 0.037518287868158896 24 0.03590615168679503 4 0.024507124735915937 6 0.024221427784266 5 0.023629946791030518 13 0.022332837068812655 7 0.021193562830342384 8 0.02114676220908625 1 0.020699107586229344 2 0.019803279126412866 3 0.01827526081916342 14 0.01759657802738926 15 0.01635581691337569 __DUMMY__ 0.0021261442661977058 false 1.0 878 9 0.058988277214267706 22 0.055407625392901116 4 0.05048696763363651 5 0.04998022125715444 6 0.04958955088073264 7 0.04921811802418538 8 0.04920786419267662 1 0.049119906231953996 3 0.048595693790388986 2 0.048491030967750745 0 0.047524043919796505 17 0.04710215177736756 18 0.04599859934884141 10 0.040583200237271556 23 0.04001845568899387 21 0.03913935726203205 11 0.036215316130926725 19 0.03422383008892778 24 0.030996634575231642 16 0.02638774337239449 15 0.020576166342509666 20 0.0203870055188469 12 0.019702933004052518 14 0.019076920702113104 13 0.011663884782901191 __DUMMY__ 0.01131850166214485 false 0.0 879 17 0.05852354685396249 0 0.056174559091071254 9 0.05560930346562617 22 0.05434810355416599 18 0.047702073736043155 6 0.046582387965277076 4 0.04584206085220338 8 0.045507164217499216 7 0.04546122569792462 1 0.04536611116822819 5 0.04534530849348423 2 0.044762337125300276 3 0.04317375190381093 16 0.04167916856611313 11 0.04034342076854674 10 0.04027243915248253 19 0.03946144071799882 23 0.03752509525223747 21 0.03671472407861601 24 0.027145299953582256 12 0.02385747722461308 15 0.02084984735599076 20 0.02074147260829016 14 0.013593570852140717 13 0.012253445917321132 __DUMMY__ 0.011164663427470242 false 0.0 637 21 0.103572 22 0.09346 11 0.087685 19 0.077196 18 0.068431 12 0.067583 10 0.052725 24 0.051339 17 0.04634 9 0.044364 20 0.044264 0 0.043909 14 0.039077 13 0.036379 23 0.035693 16 0.033962 4 0.01495 5 0.014626 6 0.009414 3 0.00911 7 0.006804 1 0.006522 8 0.006502 2 0.006094 21 0.103572 22 0.09346 11 0.087685 19 0.077196 18 0.068431 12 0.067583 10 0.052725 24 0.051339 17 0.04634 9 0.044364 20 0.044264 0 0.043909 14 0.039077 13 0.036379 23 0.035693 16 0.033962 4 0.01495 5 0.014626 6 0.009414 3 0.00911 7 0.006804 1 0.006522 8 0.006502 2 0.006094 21 0.09205361313732587 22 0.08303869972897641 11 0.0768427017640431 19 0.07061851263216586 18 0.06496934500874595 12 0.06324795312161327 24 0.04996743744187394 10 0.049797902470597157 20 0.04462126204119672 17 0.043925576487418704 9 0.04258714848053497 0 0.04059461458012954 14 0.039547127452450995 23 0.03901670595419156 13 0.03786580410748439 16 0.03253426058546353 4 0.019516285535161795 5 0.01909467392132397 6 0.014863016152657319 3 0.014067674996660113 7 0.012417143747335577 8 0.012214526320343321 1 0.012123974219194065 2 0.01169708930423531 15 0.007471895342570443 __DUMMY__ 0.005305055466306218 false 1.0 638 14 0.108861 13 0.099643 21 0.090716 12 0.079373 11 0.062865 18 0.06254 22 0.061519 15 0.060566 10 0.060561 20 0.049727 19 0.048283 24 0.046353 23 0.037453 9 0.031832 4 0.015392 5 0.015068 0 0.012485 6 0.010179 17 0.009631 3 0.009235 8 0.00703 7 0.007027 1 0.006961 2 0.006702 14 0.108861 13 0.099643 21 0.090716 12 0.079373 11 0.062865 18 0.06254 22 0.061519 15 0.060566 10 0.060561 20 0.049727 19 0.048283 24 0.046353 23 0.037453 9 0.031832 4 0.015392 5 0.015068 0 0.012485 6 0.010179 17 0.009631 3 0.009235 8 0.00703 7 0.007027 1 0.006961 2 0.006702 21 0.0822773319762452 14 0.07990644562540683 13 0.07819683421891285 12 0.07298341050875064 18 0.06219696491379331 22 0.06090586133597617 11 0.06056621620039807 10 0.05445456155421954 19 0.05364710882411331 20 0.04915582631063891 24 0.04544369108570109 15 0.04342342364885495 23 0.04088717157640903 9 0.033379586066839495 17 0.02381631457511332 0 0.023040519435820268 4 0.01923052116670087 5 0.018840207554625895 6 0.015378664419674263 16 0.015108449315850144 3 0.013221303817211354 8 0.012244137283751216 7 0.012238100277690964 1 0.012114668778342552 2 0.011829732636479259 __DUMMY__ 0.005512946892480295 false 1.0 639 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.07741402873726516 21 0.0742191937172964 11 0.05755943945890008 18 0.05423949778589691 9 0.0541503348984143 19 0.04949429007137798 24 0.0464930712279339 10 0.04264080812751073 12 0.04043729274764966 14 0.03965050227647009 17 0.039145934221431186 0 0.03847697816285465 23 0.03798473319515106 4 0.0357396813768645 5 0.03501622141063301 3 0.031805996243957885 6 0.03135930738165313 8 0.03006963198297604 7 0.029786741581295215 1 0.02957214159051336 20 0.02954809691749644 2 0.02923279247217649 13 0.027513877278368317 15 0.017697847413268245 16 0.01699146478906075 __DUMMY__ 0.0037600949335846426 false 1.0 1077 21 0.08117933438778702 12 0.06870982997167727 19 0.0663887806558719 22 0.06544467864688285 11 0.061955059876652584 18 0.06190150619341326 20 0.05300430844806992 24 0.05116378492068804 13 0.0503763842090606 23 0.04624569243870393 10 0.04471604945555587 14 0.04424846972835773 17 0.03853086933785385 9 0.0335466434395649 16 0.032979885605878716 0 0.032224282607920214 4 0.020971900130700202 5 0.02050740797212958 6 0.017575205942472964 15 0.017353271213437976 __DUMMY__ 0.017227441866497963 3 0.015420268194868648 7 0.014798164409783042 8 0.014721493538518123 1 0.01456632537398335 2 0.014242961433669703 false 0.0 1076 21 0.0826333612795834 22 0.07373260502491609 11 0.06751594930193039 19 0.06376171655593214 18 0.060547208189508726 12 0.0603969589550199 24 0.04913624447353376 10 0.04601246855201965 20 0.04416678891458721 23 0.04202233748658204 17 0.04071753555197987 9 0.040408506425889446 14 0.04007934989813829 13 0.040020379467348266 0 0.036851273193183036 16 0.03015718571481795 4 0.02353227634095664 5 0.0230259618885235 6 0.01963439886484892 3 0.01830761371069592 7 0.01724861926408022 8 0.017131207206358683 1 0.01694954681600663 2 0.016525115497917502 __DUMMY__ 0.016336262750474354 15 0.013149128675167425 false 0.0 1075 21 0.07448816179535044 19 0.07136005537751997 18 0.06496642765075161 20 0.06419032966873191 12 0.0609316433721617 22 0.0604921137011927 24 0.0574191728369537 11 0.05263890764452588 23 0.04937871692292988 14 0.04569542382575549 13 0.043842499023589485 10 0.043104592252596795 17 0.038391993567754655 16 0.03774761277628732 9 0.03062750133302095 15 0.028128008446064993 0 0.025947450148863366 4 0.020590768309720668 5 0.020104179233570937 __DUMMY__ 0.017281629492835335 6 0.016703683334152584 3 0.01661608055168261 7 0.01504731906345919 8 0.015012095069007112 1 0.014803688289645766 2 0.014489946311874764 false 0.0 1074 21 0.07533133162067455 22 0.07093658723937973 19 0.06315752486489591 18 0.06306052136914087 11 0.06293570897086026 12 0.05237222575204436 10 0.04890127541034792 24 0.04765730660422252 20 0.04592201402336211 23 0.041960312542185504 9 0.041771543698224015 17 0.04088120299625228 14 0.04070914527934459 0 0.0361935548831132 13 0.03515173271042849 16 0.03032052155654152 4 0.02515518088213493 5 0.024659550338469775 6 0.02118502811784479 3 0.020827846083048055 15 0.01963112534001 7 0.01938518742328306 8 0.019309903566413957 1 0.019095470666015236 2 0.018722044790584206 __DUMMY__ 0.01476615327117791 false 0.0 1073 21 0.07683707521074334 12 0.06708644933619404 22 0.06262373307477932 11 0.05959504602126638 18 0.05706215686225122 13 0.05673509437559187 19 0.05498215389697583 14 0.05011452508298237 24 0.0454724027086684 23 0.044962426964920726 10 0.04434064625022755 20 0.04340565812265656 9 0.03610229329036667 17 0.03519549510888051 0 0.032496879444877655 4 0.025535880203354393 16 0.025202113307020147 5 0.025033356813279936 6 0.022812111722826517 15 0.022170035376161863 8 0.019553725946331976 7 0.019551860285390823 3 0.0193849158878166 1 0.019353834190396272 2 0.019013153971039164 __DUMMY__ 0.01537697654500002 false 0.0 1072 21 0.08198278465481941 12 0.07029685055901382 22 0.06542173708969183 19 0.06472433030052548 11 0.0626384685591822 18 0.06034609672110119 13 0.05241034804919488 20 0.05115057642755495 24 0.050749322112931206 23 0.0468614370220848 14 0.04482803668199224 10 0.043482193711205555 17 0.037804582680836495 9 0.03312388210499974 0 0.03207247794234475 16 0.03180963639753522 4 0.021473170596854746 5 0.020989793245053782 6 0.018219702651748628 __DUMMY__ 0.017378402086117004 15 0.016776033458321113 3 0.01555748714839692 7 0.015207178516162904 8 0.015118862910683746 1 0.0149598071921317 2 0.014616801179515722 false 0.0 1071 21 0.07771672674973776 19 0.06791435241441598 22 0.06539693308255859 18 0.06229965938039863 12 0.06117787010559572 11 0.05818602286148933 20 0.05524484969373901 24 0.05356241445161522 23 0.04686388503575209 10 0.04369403029265582 13 0.042464843809627215 14 0.042323150400419195 17 0.03925396260232134 9 0.03471019024002053 16 0.034584107621510235 0 0.030750436116978943 4 0.02230057039892099 5 0.021811050447903553 15 0.020597221370445985 6 0.01850621100352782 __DUMMY__ 0.01783347633485353 3 0.01775792729416186 7 0.01649831195577882 8 0.016430251307516956 1 0.01624068976778685 2 0.015880855260268063 false 0.0 1070 21 0.07447632723300264 19 0.07137322515205768 18 0.06497608055914886 20 0.06421698717365923 12 0.06091978725767067 22 0.06048198634101267 24 0.057432542346662695 11 0.05262125794367623 23 0.049385159561613 14 0.04570036854774117 13 0.04383291984215132 10 0.04310422735243029 17 0.03839260462911732 16 0.03775905999427302 9 0.030620921780101874 15 0.0281505461813245 0 0.025935265025554995 4 0.020588354122306533 5 0.02010175573837241 __DUMMY__ 0.017265549377331796 6 0.016700272058693733 3 0.016616728752584874 7 0.01504602397496684 8 0.015010900601304175 1 0.014802407096622368 2 0.014488741356619185 false 0.0 880 9 0.05899473686729986 22 0.05541008932748243 4 0.05049548391855146 5 0.04998871448956596 6 0.049595265196263914 7 0.0492251057389204 8 0.049214756013456186 1 0.04912688750128219 3 0.048605511960841605 2 0.04849796198578582 0 0.0475098647867848 17 0.047083245048101484 18 0.04599624237577321 10 0.04058421192910162 23 0.04002318061434757 21 0.039143954609380395 11 0.03620871050326454 19 0.034215309805730974 24 0.03100356682142791 16 0.026361994664011405 15 0.02057594429184387 20 0.020386643532557203 12 0.019696086181734487 14 0.019086492913749694 13 0.011663018498898517 __DUMMY__ 0.011307020423842589 false 0.0 881 9 0.05737538579480735 22 0.05400431697572289 4 0.04930150262398111 5 0.048818092043540054 6 0.04838897330055838 7 0.047888651743394406 8 0.04787563864468561 1 0.04780691343659769 3 0.04724283187890905 2 0.047191189839219334 18 0.04698020539301326 0 0.04585513694719545 17 0.04563968229549688 10 0.041598926183152064 23 0.04050371343979998 21 0.03950834805919179 11 0.03585656266056093 19 0.03438964558044109 24 0.031119908965225256 16 0.025677014207167354 15 0.023184948122749537 14 0.02259350099617185 20 0.022181222891402442 12 0.02180275829269704 13 0.01546350603850536 __DUMMY__ 0.011751423645813951 false 0.0 882 9 0.05900020785152344 22 0.0550781409266447 4 0.05087112186637605 5 0.05037174352288036 6 0.04994668564743114 7 0.0496333336298459 8 0.04961961179889553 1 0.049541734414796874 3 0.04906361393278828 2 0.04891010708575732 0 0.04709454227976791 17 0.04666622910816038 18 0.04567216684767407 10 0.04029940188409428 23 0.04026507347876254 21 0.038841130879096304 11 0.03568734495471366 19 0.033873372144145965 24 0.03125642243992253 16 0.02598320522250416 15 0.020783895798917276 20 0.02048307529302563 12 0.01937424848741027 14 0.01914378936970246 13 0.011545535507366849 __DUMMY__ 0.010994265627796056 false 0.0 640 21 0.080499 12 0.078063 23 0.07752 19 0.076038 24 0.073825 20 0.072797 18 0.052111 22 0.049949 13 0.042107 16 0.041456 17 0.034699 11 0.033859 5 0.03037 4 0.030237 6 0.026996 3 0.025718 2 0.024787 7 0.024321 1 0.024266 8 0.024049 9 0.021746 14 0.019665 10 0.018819 0 0.016103 21 0.080499 12 0.078063 23 0.07752 19 0.076038 24 0.073825 20 0.072797 18 0.052111 22 0.049949 13 0.042107 16 0.041456 17 0.034699 11 0.033859 5 0.03037 4 0.030237 6 0.026996 3 0.025718 2 0.024787 7 0.024321 1 0.024266 8 0.024049 9 0.021746 14 0.019665 10 0.018819 0 0.016103 21 0.07682345648298519 12 0.07029179333684549 19 0.06844146500599609 23 0.06413304477114984 24 0.06170335347358759 20 0.06068067089006921 22 0.05562649666664653 18 0.05465487271171633 11 0.04489208784427998 13 0.04375246086748582 16 0.03740511892688184 17 0.03703366387228062 10 0.029566105713247713 14 0.029234246074686162 4 0.028862163497869582 5 0.02865801978257951 9 0.028346037937050688 6 0.025915848352277213 0 0.02457848654868666 3 0.023913158560997377 7 0.023280791035707547 2 0.023146970668489805 1 0.02310822705942632 8 0.02308867988061588 15 0.009111464485225342 __DUMMY__ 0.0037513155532159143 false 1.0 883 9 0.05909243673561884 22 0.05668614640845115 18 0.049308118153771834 0 0.048533264582229375 4 0.047969173676400786 17 0.047923319623139504 5 0.04744901364536788 6 0.04691925211287908 8 0.04655844515813857 7 0.04654646581006403 1 0.046420643944417694 3 0.04608058006910988 2 0.04582304539810145 10 0.04431641417060561 21 0.040056660712771905 11 0.03830419421239954 23 0.038232003986833685 19 0.03677235974760203 24 0.02986573678871745 16 0.027330739509849225 15 0.02256017629553825 20 0.021707526676197523 14 0.021657769167277102 12 0.019716492560013524 13 0.012592479452687393 __DUMMY__ 0.01157754140181691 false 0.0 641 22 0.108526 21 0.099946 11 0.098039 19 0.092139 18 0.074088 17 0.061922 10 0.057627 0 0.055781 16 0.051985 12 0.050261 9 0.049993 24 0.049037 20 0.039348 23 0.029874 14 0.027102 4 0.011435 5 0.01129 13 0.009963 3 0.006223 6 0.005184 8 0.002807 7 0.002768 2 0.002369 1 0.002291 22 0.108526 21 0.099946 11 0.098039 19 0.092139 18 0.074088 17 0.061922 10 0.057627 0 0.055781 16 0.051985 12 0.050261 9 0.049993 24 0.049037 20 0.039348 23 0.029874 14 0.027102 4 0.011435 5 0.01129 13 0.009963 3 0.006223 6 0.005184 8 0.002807 7 0.002768 2 0.002369 1 0.002291 22 0.08988227124995876 21 0.08793381763751507 11 0.08107567274577028 19 0.07701882480634785 18 0.06742732156806534 17 0.0527504454932312 12 0.05226704673712539 10 0.052189605513319706 24 0.04784011309839887 0 0.047542266295361166 9 0.04620842258912219 16 0.04222494086192168 20 0.04112636182440788 23 0.035750932858850074 14 0.03224953475032272 13 0.02271797602718635 4 0.018763655467320714 5 0.018424904082814633 6 0.013945559263576263 3 0.013813759309107167 7 0.0117170363361816 8 0.011685024549519005 1 0.011336684645227014 2 0.011136806743004301 15 0.008155896537506872 __DUMMY__ 0.004815119008837919 false 1.0 400 20 0.103463 19 0.100029 21 0.084927 12 0.08011 18 0.07804 24 0.077732 23 0.059361 16 0.056844 22 0.053981 13 0.053144 14 0.049054 11 0.04782 17 0.039611 10 0.038715 15 0.033701 0 0.012998 9 0.012854 4 0.006233 5 0.006061 3 0.003519 6 0.001277 2 3.0E-4 8 1.52E-4 7 7.4E-5 20 0.103463 19 0.100029 21 0.084927 12 0.08011 18 0.07804 24 0.077732 23 0.059361 16 0.056844 22 0.053981 13 0.053144 14 0.049054 11 0.04782 17 0.039611 10 0.038715 15 0.033701 0 0.012998 9 0.012854 4 0.006233 5 0.006061 3 0.003519 6 0.001277 2 3.0E-4 8 1.52E-4 7 7.4E-5 19 0.08709072168615434 20 0.0849387534816167 21 0.07896601335662531 18 0.07305142161814822 12 0.07001891610843365 24 0.06707361817357689 22 0.057114139433911706 23 0.05429637926577826 11 0.0501942312967049 16 0.048834309159931526 13 0.047954731513168196 14 0.04719494407098382 10 0.042203026120652166 17 0.040106902718418797 15 0.03169743276337744 9 0.021772269676797306 0 0.0201963619661044 4 0.012933983117153738 5 0.012601615084365898 3 0.009625181886563985 6 0.008568257637069528 8 0.0071826227607492184 7 0.007165495113540897 1 0.006993382853020489 2 0.0069814778298208525 __DUMMY__ 0.005243811307331894 false 1.0 642 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07698415903792648 21 0.0740847275359372 11 0.057289214378212744 18 0.054428431011222474 9 0.05417872440822218 19 0.049555251308636146 24 0.04637606095175172 10 0.04236967933994574 12 0.04058724942710388 14 0.039644502846042935 17 0.039382127039555244 23 0.03820074442974764 0 0.03807558337105152 4 0.03576166602458677 5 0.03492995433300573 3 0.031682577689704755 6 0.03142074395238355 8 0.03015308717190616 7 0.02998441247412266 1 0.02984228673728704 20 0.029736135401415946 2 0.02913735676895202 13 0.027513852037326387 15 0.017833146663693105 16 0.017088234176160545 __DUMMY__ 0.0037600914840993905 false 1.0 884 17 0.06182075502277297 0 0.05963852205527052 22 0.056483580569220204 9 0.05561111145355006 18 0.04964332953721507 16 0.044995248828153304 6 0.0443767317012082 11 0.044242811747407566 4 0.043402477247106934 8 0.043058820824083695 7 0.042984195733019856 5 0.04289188458355511 1 0.04286431619442422 2 0.0422907636130244 10 0.04218478379352458 19 0.0419065797150966 3 0.04040587446832523 21 0.03827720121365129 23 0.03536699350306284 12 0.025569102039873785 24 0.0255224676553689 20 0.02021453305650403 15 0.01976040620425725 14 0.012908773981264969 13 0.01267719789517321 __DUMMY__ 0.010901537363885324 false 0.0 401 15 0.159 14 0.158712 10 0.093107 18 0.092093 13 0.078334 20 0.072627 19 0.053604 22 0.045995 21 0.045972 24 0.038037 9 0.036204 11 0.029914 23 0.024434 12 0.019232 17 0.015114 16 0.011109 3 0.007369 4 0.006806 5 0.006483 8 0.001756 2 0.001435 7 0.001365 1 0.001249 6 5.2E-5 15 0.159 14 0.158712 10 0.093107 18 0.092093 13 0.078334 20 0.072627 19 0.053604 22 0.045995 21 0.045972 24 0.038037 9 0.036204 11 0.029914 23 0.024434 12 0.019232 17 0.015114 16 0.011109 3 0.007369 4 0.006806 5 0.006483 8 0.001756 2 0.001435 7 0.001365 1 0.001249 6 5.2E-5 14 0.10858550086242633 15 0.10305129604292101 18 0.08093020835048864 10 0.07423112377303841 20 0.06442673399448631 13 0.06380721311744707 19 0.05799449417943953 21 0.05383642825272318 22 0.05076375130500186 24 0.04068283960101062 11 0.03959123825380616 9 0.03605058657419423 12 0.03527788952857656 23 0.03327679592266723 17 0.027876670886985987 16 0.023280651842386816 0 0.015778637766840548 4 0.014188363400459349 5 0.013820604892005576 3 0.012509547987422716 6 0.009467352865134044 8 0.009436618464543182 7 0.009229109650488334 1 0.009072215253470883 2 0.00901081128885178 __DUMMY__ 0.0038233159431836105 false 1.0 885 19 0.06335070828266325 21 0.06314003360350395 18 0.05915975445402448 22 0.057577987640182 12 0.05200482118642033 20 0.05096902939419366 23 0.04982936572361751 11 0.0495058947043073 24 0.047935507528215744 17 0.04447052728294516 10 0.04137339070758631 16 0.04084476303166817 9 0.035856247403533915 13 0.03550504176666395 0 0.03514877466868698 14 0.034322529632063024 4 0.028066767164714516 5 0.027615035647611773 6 0.0258001676447615 15 0.02422211500183769 3 0.02404787177263605 7 0.023984040729896603 8 0.023921564754620834 1 0.023752418164219295 2 0.023397910183323715 __DUMMY__ 0.014197731926102405 false 0.0 643 21 0.113104 22 0.085495 19 0.081072 12 0.080461 11 0.072824 24 0.070921 20 0.058833 18 0.058476 23 0.051966 13 0.045446 14 0.041897 17 0.035624 16 0.033266 9 0.031795 10 0.031218 0 0.023581 4 0.016622 5 0.016145 3 0.010511 6 0.010446 7 0.007953 1 0.007789 8 0.007599 2 0.006955 21 0.113104 22 0.085495 19 0.081072 12 0.080461 11 0.072824 24 0.070921 20 0.058833 18 0.058476 23 0.051966 13 0.045446 14 0.041897 17 0.035624 16 0.033266 9 0.031795 10 0.031218 0 0.023581 4 0.016622 5 0.016145 3 0.010511 6 0.010446 7 0.007953 1 0.007789 8 0.007599 2 0.006955 21 0.09510128951092439 22 0.07512142167877832 19 0.0725449099962759 12 0.07201086262072515 11 0.0663884000412836 24 0.06077975499479903 18 0.05976049009237279 20 0.0550486279703071 23 0.04924235536358083 13 0.0459871681444273 14 0.0425487573133569 10 0.0378153297515426 17 0.03734570481481156 9 0.0335232705656192 16 0.032896466809878906 0 0.028133364328574287 4 0.020090944203060283 5 0.019599552995274536 6 0.015345168609201966 3 0.014447875884870244 7 0.012847542120854604 8 0.012642165058307217 1 0.01263242156717645 2 0.012052560760590336 15 0.009955917792960343 __DUMMY__ 0.006137677010446104 false 1.0 1069 21 0.08259770342942149 22 0.07371035439039374 11 0.06748706484112023 19 0.06376047479135108 18 0.060556240693135505 12 0.060366446152841285 24 0.049132458063596444 10 0.04601977567308485 20 0.04418245149710692 23 0.04202559039400917 17 0.040714824730501455 9 0.040406131450592624 14 0.04008340576786148 13 0.0400049853964526 0 0.036841432121052065 16 0.030160565493604116 4 0.02353634350771379 5 0.023030108246267375 6 0.01963857430195479 3 0.0183157356297812 7 0.01725530671577257 8 0.017138110422606653 1 0.016956327396722037 2 0.016532183659005144 __DUMMY__ 0.01636653264782732 15 0.013180872586224265 false 0.0 644 19 0.095159 22 0.087969 21 0.087889 20 0.082821 24 0.082005 18 0.077552 11 0.070628 23 0.054766 10 0.046176 12 0.036517 9 0.033887 14 0.033183 16 0.031753 17 0.031441 4 0.020885 3 0.019802 15 0.019801 5 0.019711 0 0.013855 8 0.011692 7 0.011067 1 0.010845 2 0.010602 6 0.009995 19 0.095159 22 0.087969 21 0.087889 20 0.082821 24 0.082005 18 0.077552 11 0.070628 23 0.054766 10 0.046176 12 0.036517 9 0.033887 14 0.033183 16 0.031753 17 0.031441 4 0.020885 3 0.019802 15 0.019801 5 0.019711 0 0.013855 8 0.011692 7 0.011067 1 0.010845 2 0.010602 6 0.009995 21 0.08080619573174475 22 0.07915310118662135 19 0.0781119952119244 18 0.07047276209606448 11 0.06665432808712314 24 0.06331558750656302 20 0.06304316827087024 10 0.04855177683383882 23 0.04773729228731192 12 0.04428918140209786 9 0.038742145497891727 14 0.03758334733427117 17 0.03683840752811404 16 0.031024698498385666 0 0.0262645604108762 4 0.023412205594740814 5 0.02260710957345259 3 0.020656118827751695 15 0.020432366081405126 13 0.018467325500818543 6 0.016212170076627428 8 0.016039284373998704 7 0.01579054985028673 1 0.01552877168677726 2 0.015222287934051672 __DUMMY__ 0.0030432626163908066 false 1.0 886 21 0.06778703356135661 12 0.06176932301411244 22 0.05880046971143385 11 0.05702856541000521 18 0.05604431704322064 13 0.053500387389116506 10 0.048535055404517066 19 0.04774029523639126 14 0.0439320206158197 23 0.04213242466646556 9 0.04141436305756595 0 0.03908736462649391 17 0.037480025719634644 24 0.03688795961510846 20 0.03612074368751298 4 0.030555040772723606 5 0.030144164039405036 6 0.028845481438332026 7 0.025653540846658114 8 0.025629335927309742 1 0.025551966478328754 2 0.025188700996923684 3 0.024706010109970044 16 0.023790663809248852 15 0.0188419936539212 __DUMMY__ 0.012832753168423918 false 0.0 402 16 0.120625 17 0.100588 19 0.094631 15 0.087454 20 0.079309 18 0.076776 24 0.056127 0 0.050911 22 0.046596 23 0.04346 10 0.033027 11 0.03281 21 0.028371 14 0.026818 12 0.022557 9 0.02062 6 0.011583 8 0.011271 7 0.01068 1 0.010426 2 0.010077 4 0.009423 5 0.008537 3 0.007325 16 0.120625 17 0.100588 19 0.094631 15 0.087454 20 0.079309 18 0.076776 24 0.056127 0 0.050911 22 0.046596 23 0.04346 10 0.033027 11 0.03281 21 0.028371 14 0.026818 12 0.022557 9 0.02062 6 0.011583 8 0.011271 7 0.01068 1 0.010426 2 0.010077 4 0.009423 5 0.008537 3 0.007325 16 0.08505705867724181 17 0.0772969061655199 19 0.07640639550646805 18 0.06940246176707845 15 0.0657064204104184 20 0.06324238950513625 22 0.04942959223848906 24 0.047169614390360944 0 0.04683940917195015 23 0.04202995543549362 10 0.04020645488825387 11 0.03862041181247433 21 0.03821312517186782 14 0.03337274390828292 12 0.03133745167104659 9 0.030137798489416206 6 0.019589095714735726 4 0.01880713862299981 8 0.018728717614179283 7 0.018395231358399808 1 0.01818870952237421 5 0.018162202175057852 2 0.017830399185622858 13 0.016581005744463025 3 0.016182595088510467 __DUMMY__ 0.003066715764158556 false 1.0 1068 21 0.08259770342942149 22 0.07371035439039374 11 0.06748706484112023 19 0.06376047479135108 18 0.060556240693135505 12 0.060366446152841285 24 0.049132458063596444 10 0.04601977567308485 20 0.04418245149710692 23 0.04202559039400917 17 0.040714824730501455 9 0.040406131450592624 14 0.04008340576786148 13 0.0400049853964526 0 0.036841432121052065 16 0.030160565493604116 4 0.02353634350771379 5 0.023030108246267375 6 0.01963857430195479 3 0.0183157356297812 7 0.01725530671577257 8 0.017138110422606653 1 0.016956327396722037 2 0.016532183659005144 __DUMMY__ 0.01636653264782732 15 0.013180872586224265 false 0.0 645 20 0.125979 19 0.123729 18 0.110397 24 0.086118 21 0.07569 23 0.069698 22 0.064752 16 0.062105 17 0.05546 12 0.047507 10 0.03936 15 0.031511 9 0.025125 11 0.022789 14 0.020907 4 0.008154 5 0.007613 0 0.006096 3 0.005265 13 0.005057 7 0.002217 8 0.001731 1 0.001501 6 0.001241 20 0.125979 19 0.123729 18 0.110397 24 0.086118 21 0.07569 23 0.069698 22 0.064752 16 0.062105 17 0.05546 12 0.047507 10 0.03936 15 0.031511 9 0.025125 11 0.022789 14 0.020907 4 0.008154 5 0.007613 0 0.006096 3 0.005265 13 0.005057 7 0.002217 8 0.001731 1 0.001501 6 0.001241 19 0.09753001549186316 20 0.09631512943188474 18 0.0892989996273358 21 0.07181313272871843 24 0.07133712167879835 22 0.06182593838676631 23 0.05870121216836903 16 0.05030647440804905 12 0.04984860841429252 17 0.04720702076870489 10 0.043508174773178934 11 0.03604479862925235 14 0.03498375662209841 15 0.03426147374569233 9 0.028997459152031828 13 0.022157302186868687 0 0.01599067532680742 4 0.014954658556180861 5 0.01443695794085165 3 0.012151641765268862 7 0.009491832511159225 6 0.009441775124446244 8 0.009265486768759308 1 0.009009877523335864 2 0.008152700284653912 __DUMMY__ 0.0029677759846316524 false 1.0 1067 21 0.07447632723300264 19 0.07137322515205768 18 0.06497608055914886 20 0.06421698717365923 12 0.060919787257670666 22 0.06048198634101268 24 0.057432542346662695 11 0.05262125794367623 23 0.049385159561613 14 0.04570036854774117 13 0.04383291984215132 10 0.04310422735243029 17 0.03839260462911732 16 0.03775905999427302 9 0.030620921780101874 15 0.0281505461813245 0 0.025935265025554995 4 0.020588354122306533 5 0.02010175573837241 __DUMMY__ 0.017265549377331796 6 0.016700272058693733 3 0.016616728752584874 7 0.01504602397496684 8 0.015010900601304175 1 0.014802407096622368 2 0.014488741356619185 false 0.0 403 14 0.146968 15 0.121314 13 0.118095 10 0.093656 18 0.085005 12 0.062181 20 0.057331 21 0.056502 11 0.047596 19 0.043018 22 0.03833 9 0.029676 23 0.025562 24 0.02059 0 0.01585 17 0.014781 16 0.00761 4 0.005847 5 0.005693 6 0.003186 3 6.03E-4 8 3.47E-4 7 1.46E-4 1 1.14E-4 14 0.146968 15 0.121314 13 0.118095 10 0.093656 18 0.085005 12 0.062181 20 0.057331 21 0.056502 11 0.047596 19 0.043018 22 0.03833 9 0.029676 23 0.025562 24 0.02059 0 0.01585 17 0.014781 16 0.00761 4 0.005847 5 0.005693 6 0.003186 3 6.03E-4 8 3.47E-4 7 1.46E-4 1 1.14E-4 14 0.10615627822747913 13 0.09015002394596411 15 0.08407760034196049 18 0.0758156443369511 10 0.0748815140496433 12 0.0610087844806132 21 0.06058694064620133 20 0.05391135722041554 11 0.049869580285447086 19 0.04951356788954095 22 0.04626531749770443 23 0.03324541755096795 9 0.03239592717839671 24 0.029949163239725615 17 0.02593070081847968 0 0.023819214697336902 16 0.018717906204146914 4 0.013706906957620493 5 0.013435523661763862 6 0.011303235072546469 8 0.008521544218494548 3 0.008478282134053874 7 0.00838847613208 1 0.008300931366367453 2 0.008109873834500136 __DUMMY__ 0.0034602880115989403 false 1.0 887 21 0.08181720752583942 12 0.06962147254963863 22 0.06567851480716261 19 0.06464228343972372 11 0.06268615400062603 18 0.0604060966814921 13 0.05189590601161829 20 0.05088035102722496 24 0.05069501092237979 23 0.0466266603696444 14 0.04491591201917672 10 0.04360594278915706 17 0.037941182109311675 9 0.033446525022246223 0 0.032219571182931006 16 0.03172277552318135 4 0.021568883532639298 5 0.021080191887867382 6 0.018287976271227968 15 0.017113537533641268 __DUMMY__ 0.017056070097697208 3 0.015717722220710138 7 0.015326830859339838 8 0.015238698039845696 1 0.015078455493141407 2 0.014730068082535701 false 0.0 646 21 0.097705 19 0.091518 12 0.089206 20 0.08595 24 0.073093 18 0.070353 22 0.062846 11 0.061473 13 0.060844 23 0.059664 14 0.048996 16 0.046456 17 0.037402 10 0.03612 15 0.019839 0 0.017876 9 0.015361 4 0.008661 5 0.007444 6 0.004065 3 0.002134 7 0.001276 8 0.001015 1 7.02E-4 21 0.097705 19 0.091518 12 0.089206 20 0.08595 24 0.073093 18 0.070353 22 0.062846 11 0.061473 13 0.060844 23 0.059664 14 0.048996 16 0.046456 17 0.037402 10 0.03612 15 0.019839 0 0.017876 9 0.015361 4 0.008661 5 0.007444 6 0.004065 3 0.002134 7 0.001276 8 0.001015 1 7.02E-4 21 0.08838276335242105 19 0.0789657251145059 12 0.07781105546188287 20 0.07013673004832519 18 0.06584043720184733 22 0.06353287927167851 24 0.06293932516750182 11 0.06040108591912075 13 0.054697854758919376 23 0.05392151414486001 14 0.04657133284699052 16 0.04022674381191813 10 0.039578268385438896 17 0.037990268471563345 0 0.024363045550252104 9 0.024263372546461263 15 0.01998722836497408 4 0.015479066711326095 5 0.014647835539574827 6 0.01148169014789398 3 0.009605977782613871 7 0.008813302628486593 8 0.008645919026108756 1 0.00840631204969709 2 0.007896271063804387 __DUMMY__ 0.005413994631833319 false 1.0 404 15 0.153741 14 0.142698 10 0.083652 18 0.083583 13 0.068975 20 0.067842 19 0.043872 9 0.038323 22 0.036923 24 0.035985 21 0.032526 23 0.032179 3 0.0194 4 0.018381 5 0.018268 11 0.017962 17 0.014726 8 0.014659 7 0.014547 2 0.014205 1 0.01416 6 0.012963 12 0.011494 16 0.008935 15 0.153741 14 0.142698 10 0.083652 18 0.083583 13 0.068975 20 0.067842 19 0.043872 9 0.038323 22 0.036923 24 0.035985 21 0.032526 23 0.032179 3 0.0194 4 0.018381 5 0.018268 11 0.017962 17 0.014726 8 0.014659 7 0.014547 2 0.014205 1 0.01416 6 0.012963 12 0.011494 16 0.008935 15 0.10492077534545843 14 0.10431924923220522 18 0.07781313483957872 10 0.07271291926483806 13 0.0606635887505751 20 0.060403240699666266 19 0.051134143780806655 22 0.045156016935173 21 0.04459495072091312 9 0.038301563860297295 24 0.036640327468916864 23 0.03534764385396864 11 0.032872795348638746 12 0.029203731506834897 17 0.027461628546499403 16 0.0209985173935766 4 0.019972842773409927 5 0.019721331469555133 3 0.01862088817213283 0 0.01654926516426649 8 0.016083848483338464 6 0.01606380459209697 7 0.01599611737731928 1 0.01572625066465305 2 0.015605780502955373 __DUMMY__ 0.0031156432523256157 false 1.0 888 21 0.07038299590398493 12 0.06511009508795992 22 0.05914157001608243 11 0.058233520578590776 18 0.05667071198316719 13 0.05621080860754888 19 0.04943940630970931 10 0.04841536957858502 14 0.045382285364913615 23 0.042723168694529134 9 0.03981673163806793 24 0.038228840815828107 20 0.038100246976007834 0 0.03797788849078283 17 0.036742605604474204 4 0.028981928437706167 5 0.02857326994955237 6 0.02714238020654904 16 0.02399662157946246 7 0.023789504280795907 8 0.023761149541056403 1 0.023682243193512257 2 0.023337133847141478 3 0.02289470676591529 15 0.01837917262697247 __DUMMY__ 0.01288564392110394 false 0.0 405 18 0.094498 10 0.08997 19 0.077691 11 0.076421 21 0.075897 22 0.072034 12 0.059824 14 0.05944 0 0.056238 13 0.056212 17 0.053175 20 0.050474 9 0.046696 16 0.039529 15 0.030159 23 0.022844 24 0.022275 4 0.005781 5 0.00568 6 0.003324 3 5.32E-4 7 5.01E-4 8 4.35E-4 1 3.7E-4 18 0.094498 10 0.08997 19 0.077691 11 0.076421 21 0.075897 22 0.072034 12 0.059824 14 0.05944 0 0.056238 13 0.056212 17 0.053175 20 0.050474 9 0.046696 16 0.039529 15 0.030159 23 0.022844 24 0.022275 4 0.005781 5 0.00568 6 0.003324 3 5.32E-4 7 5.01E-4 8 4.35E-4 1 3.7E-4 18 0.08560493785301329 10 0.08050928719274149 21 0.07139891886390741 11 0.0703954259694046 19 0.06971532307490953 22 0.06932047977516599 14 0.05606036828265908 12 0.05546668442945707 0 0.051813753472137326 13 0.05169250049393989 17 0.04948420962677878 9 0.04688090353721277 20 0.046401373613306124 16 0.035094557727532935 15 0.030264813233815826 23 0.026903166298568402 24 0.025725398012322438 4 0.01289507367246577 5 0.012633511560917656 6 0.01038504095747211 3 0.007922138427922885 7 0.007808055940105452 8 0.007760145994913192 1 0.0076597385220595355 2 0.0073111922067806215 __DUMMY__ 0.002893001260489944 false 1.0 889 22 0.056632150606625235 21 0.05584344975704838 18 0.04977602276470239 9 0.04858311705612453 11 0.04656527605756927 12 0.044281476206193375 23 0.04323161027692267 10 0.04271352972158058 4 0.04076319098973372 0 0.04061985737338528 5 0.040320444426614165 19 0.04022702009848992 17 0.03959027001101226 6 0.03928477403155032 7 0.03729361144437473 8 0.03726363278664353 1 0.03720737647552668 2 0.036720911340583764 3 0.036561845793619804 24 0.03596587778953034 13 0.03567936855343694 14 0.03258895637470692 20 0.029142533814337644 16 0.02263593380141804 15 0.018300660908613067 __DUMMY__ 0.012207101539656446 false 0.0 647 21 0.103391 22 0.092941 11 0.087552 19 0.077041 18 0.067885 12 0.067699 10 0.052182 24 0.051505 17 0.046247 9 0.044354 20 0.044103 0 0.043978 14 0.039093 13 0.03651 23 0.035047 16 0.034041 4 0.015153 5 0.014603 6 0.009728 3 0.00925 7 0.007439 1 0.007101 8 0.006932 2 0.006227 21 0.103391 22 0.092941 11 0.087552 19 0.077041 18 0.067885 12 0.067699 10 0.052182 24 0.051505 17 0.046247 9 0.044354 20 0.044103 0 0.043978 14 0.039093 13 0.03651 23 0.035047 16 0.034041 4 0.015153 5 0.014603 6 0.009728 3 0.00925 7 0.007439 1 0.007101 8 0.006932 2 0.006227 21 0.0919829439646946 22 0.08280463067255513 11 0.07680886482401962 19 0.07048521902235444 18 0.06470416750836042 12 0.06332729747528991 24 0.04998527562613647 10 0.049583244936910825 20 0.044475103735153905 17 0.04386661417680892 9 0.042605135668845044 0 0.040647879397247254 14 0.03964092907140527 23 0.03866572294200363 13 0.03801652510075531 16 0.03252351199175361 4 0.01960242344865617 5 0.01907712366937002 6 0.015004890243027732 3 0.014118901391452304 7 0.012703107369452423 8 0.01240533606321436 1 0.012384331795617959 2 0.011750607338454615 15 0.007509608703062928 __DUMMY__ 0.005320603863396979 false 1.0 406 14 0.142532 15 0.124282 18 0.089191 10 0.087559 13 0.074871 20 0.071188 21 0.060458 19 0.05684 22 0.054576 24 0.045624 11 0.039193 9 0.036818 23 0.031052 12 0.031031 4 0.009831 5 0.009711 17 0.009224 3 0.00919 16 0.003744 7 0.002942 8 0.002793 1 0.00264 2 0.002629 6 0.002081 14 0.142532 15 0.124282 18 0.089191 10 0.087559 13 0.074871 20 0.071188 21 0.060458 19 0.05684 22 0.054576 24 0.045624 11 0.039193 9 0.036818 23 0.031052 12 0.031031 4 0.009831 5 0.009711 17 0.009224 3 0.00919 16 0.003744 7 0.002942 8 0.002793 1 0.00264 2 0.002629 6 0.002081 14 0.1003397645249125 15 0.08557544701648342 18 0.08029064788555532 10 0.07222435411895074 20 0.06423713029520169 13 0.06155457910459602 21 0.06118041453643235 19 0.06035801329543423 22 0.05534727712971847 24 0.044408880611134946 11 0.044405882900085875 12 0.040832222326530596 9 0.0365474968202845 23 0.03637818667948267 17 0.02509892621284582 16 0.019709817570909696 0 0.01589901058954956 4 0.015373665094692077 5 0.01509580951513239 3 0.013169909848098236 6 0.010069906056211667 7 0.009660917679959679 8 0.00961047168272479 1 0.009415137801152081 2 0.009264604426539346 __DUMMY__ 0.003951526277381401 false 1.0 648 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07698415903792648 21 0.0740847275359372 11 0.057289214378212744 18 0.054428431011222474 9 0.05417872440822218 19 0.049555251308636146 24 0.04637606095175172 10 0.042369679339945746 12 0.04058724942710387 14 0.039644502846042935 17 0.03938212703955525 23 0.038200744429747635 0 0.03807558337105152 4 0.03576166602458677 5 0.034929954333005726 3 0.031682577689704755 6 0.03142074395238355 8 0.03015308717190616 7 0.029984412474122667 1 0.029842286737287036 20 0.029736135401415946 2 0.02913735676895202 13 0.02751385203732638 15 0.017833146663693105 16 0.017088234176160545 __DUMMY__ 0.003760091484099391 false 1.0 649 21 0.110716 22 0.08719 12 0.08205 11 0.081231 19 0.079652 24 0.063058 18 0.062115 20 0.053486 13 0.048656 23 0.046696 14 0.043012 17 0.039672 10 0.038812 16 0.033345 9 0.033141 0 0.031443 4 0.014641 5 0.013681 6 0.00895 3 0.00754 7 0.00552 8 0.005288 1 0.005255 2 0.004849 21 0.110716 22 0.08719 12 0.08205 11 0.081231 19 0.079652 24 0.063058 18 0.062115 20 0.053486 13 0.048656 23 0.046696 14 0.043012 17 0.039672 10 0.038812 16 0.033345 9 0.033141 0 0.031443 4 0.014641 5 0.013681 6 0.00895 3 0.00754 7 0.00552 8 0.005288 1 0.005255 2 0.004849 21 0.09529650292403152 22 0.07722129374285372 12 0.07333175238860797 11 0.07190369969542923 19 0.07174872578644315 18 0.06138884311418107 24 0.05654876506045227 20 0.051256157893835017 13 0.0476989198969172 23 0.04620703751742113 14 0.042973806997619476 10 0.0417314787450328 17 0.039393390775774424 9 0.034716963911800264 0 0.03260804314212301 16 0.03241143615768854 4 0.018980862458917048 5 0.018262867095915118 6 0.014434113453962307 3 0.012715844917005536 7 0.011408583093850955 8 0.011247072319222487 1 0.01113693536177578 2 0.010743207915842693 15 0.008669862544462495 __DUMMY__ 0.005963833088834951 false 1.0 407 17 0.08601 16 0.082722 0 0.070622 19 0.057397 18 0.051582 22 0.051442 9 0.046114 11 0.044729 6 0.0388 8 0.037187 7 0.036917 1 0.036767 2 0.036114 4 0.034889 5 0.034365 23 0.034277 10 0.034038 3 0.03163 21 0.031318 20 0.031142 12 0.030662 24 0.027701 15 0.025993 13 0.00758 17 0.08601 16 0.082722 0 0.070622 19 0.057397 18 0.051582 22 0.051442 9 0.046114 11 0.044729 6 0.0388 8 0.037187 7 0.036917 1 0.036767 2 0.036114 4 0.034889 5 0.034365 23 0.034277 10 0.034038 3 0.03163 21 0.031318 20 0.031142 12 0.030662 24 0.027701 15 0.025993 13 0.00758 17 0.07702255813388469 16 0.06974282340840364 0 0.0660572841615402 19 0.05308196653145973 22 0.05292126283072429 18 0.0520450207726005 9 0.04799536389042835 11 0.04534557953321534 6 0.03945938084368455 10 0.03780347245461798 8 0.03777378335603258 7 0.037587281175658044 1 0.03746549942412006 2 0.036879184389349805 4 0.03662498338615188 5 0.036130833346258474 23 0.0353345440508087 21 0.0347612121612061 3 0.03326116759598098 12 0.030848316196961333 20 0.028811323284443687 24 0.027254238964546987 15 0.025197713978780928 13 0.011823576924430793 14 0.006610687114037387 __DUMMY__ 0.002160942090672998 false 1.0 408 20 0.09806 14 0.081142 19 0.077999 18 0.076598 13 0.074663 12 0.071197 21 0.070225 24 0.068337 15 0.063258 23 0.059265 10 0.049288 22 0.040137 11 0.033407 16 0.031884 17 0.019984 9 0.014766 4 0.012991 5 0.012389 3 0.009909 6 0.007787 8 0.006893 1 0.006724 7 0.006707 2 0.006389 20 0.09806 14 0.081142 19 0.077999 18 0.076598 13 0.074663 12 0.071197 21 0.070225 24 0.068337 15 0.063258 23 0.059265 10 0.049288 22 0.040137 11 0.033407 16 0.031884 17 0.019984 9 0.014766 4 0.012991 5 0.012389 3 0.009909 6 0.007787 8 0.006893 1 0.006724 7 0.006707 2 0.006389 20 0.08073187333606095 19 0.07304778237414905 18 0.07268107211823739 21 0.06851532546922011 14 0.06770386621698561 12 0.06307442221089012 13 0.06052527963977476 24 0.060039140381136114 23 0.052864229809502804 15 0.05246164858384595 10 0.049531835208319115 22 0.048472479293798575 11 0.04125357990485281 16 0.03462530609366763 17 0.02952514123220826 9 0.02356945274204132 4 0.016830087927353344 5 0.016316978235464595 3 0.013487761819805806 0 0.013412747665988354 6 0.012510531993425838 8 0.011316334727542184 7 0.01122439937947802 1 0.011112135527644014 2 0.010812568649896296 __DUMMY__ 0.004354019458710817 false 1.0 409 14 0.123212 15 0.106228 13 0.099407 18 0.084173 20 0.083039 10 0.073256 12 0.065516 19 0.062424 21 0.061262 24 0.04562 23 0.042331 11 0.037699 22 0.035889 16 0.022708 9 0.01888 17 0.017796 4 0.005935 5 0.005813 0 0.004071 3 0.002107 6 0.002022 1 2.92E-4 8 2.16E-4 7 1.06E-4 14 0.123212 15 0.106228 13 0.099407 18 0.084173 20 0.083039 10 0.073256 12 0.065516 19 0.062424 21 0.061262 24 0.04562 23 0.042331 11 0.037699 22 0.035889 16 0.022708 9 0.01888 17 0.017796 4 0.005935 5 0.005813 0 0.004071 3 0.002107 6 0.002022 1 2.92E-4 8 2.16E-4 7 1.06E-4 14 0.09332073141134888 13 0.07862126104199242 15 0.07726928382602181 18 0.07635019814851415 20 0.07007648663802192 10 0.06404476337984107 21 0.06263353704191363 19 0.061743115151975184 12 0.06171561333416426 22 0.04469343330708583 24 0.04464030221125748 11 0.043787913127080746 23 0.042629633443728145 16 0.02820075345192615 17 0.02779376846152624 9 0.025964537021031006 0 0.016694441732059865 4 0.0131353141579588 5 0.01286788891188038 6 0.00991684909167926 3 0.008963133039598553 8 0.007908228816140724 7 0.007832406201587037 1 0.00782688657791717 2 0.0075540372819988605 __DUMMY__ 0.0038154831917504755 false 1.0 1080 22 0.056380479300417355 18 0.054851453649997654 21 0.05244516508680568 19 0.052191276915231385 24 0.04709485921726123 23 0.04649124673577619 9 0.04542542410292079 20 0.044257762978690066 17 0.04102140939551242 10 0.04051677327163459 11 0.039551325624731806 4 0.03783239421112804 5 0.03731215780137361 3 0.035980740630834354 6 0.034943511004489884 8 0.03472678179892614 7 0.03467018373556536 1 0.0344786319022345 2 0.0340769905421268 0 0.033426449780006876 12 0.03289777491074085 14 0.032853763361379816 16 0.03086666404025541 15 0.029823814400572118 13 0.021973077278766694 __DUMMY__ 0.013909888322620318 false 0.0 1088 19 0.06488348179519485 20 0.06442554987313699 18 0.06421774021470254 21 0.05529320326302746 24 0.0549888022977156 23 0.050884500037815576 22 0.05016573407098964 12 0.04409619353629764 14 0.04388692517547578 10 0.04238457078655307 15 0.042290952066425316 17 0.040525370625909406 16 0.039698499631466204 11 0.03723850168286723 13 0.03407389595816488 9 0.03319870736627194 4 0.027325822267729907 5 0.026877816071106703 3 0.02521244533614702 0 0.02508325018662461 6 0.024252253906938952 8 0.02378198050228359 7 0.023711309236711796 1 0.023536801088990245 2 0.023268149661902802 __DUMMY__ 0.014697543359550418 false 0.0 1087 19 0.0644369637225457 20 0.06369746771799872 18 0.06137047687643772 21 0.0570586085945793 24 0.056556026579685885 23 0.053124627780093775 22 0.05014202557527989 12 0.04701837420296988 14 0.041183108330233496 17 0.04023513334383045 16 0.040185139031263195 10 0.03871876899060053 15 0.038535730453984486 11 0.0378244957017743 13 0.034698469170274776 9 0.0318017279017439 4 0.0281785732457501 5 0.027703041606235355 3 0.025699510414209877 6 0.025257995153292884 0 0.024674979126368745 8 0.024524998891836906 7 0.02448255028088125 1 0.02428456031892697 2 0.024000749536811628 __DUMMY__ 0.014605897452390458 false 0.0 1086 21 0.07075541897804237 19 0.06749652124521814 18 0.060772927369544844 20 0.06074463867070918 12 0.058957714240070916 22 0.05785351472408612 24 0.05676838763569464 23 0.05264243163885757 11 0.04905333694611481 13 0.04127599026201429 14 0.04061183444855885 10 0.03906242444502649 17 0.03829506905747051 16 0.037207946231005984 9 0.03107677117958028 0 0.026256408115387864 15 0.02544950099165615 4 0.02475199776443174 5 0.02426074429819522 6 0.02133984903490547 3 0.020745553471968242 7 0.01964161136485058 8 0.019583079826933983 1 0.01939616874401894 2 0.019068911089698777 __DUMMY__ 0.01693124822595811 false 0.0 1085 9 0.055194279053092446 22 0.05454254517555721 4 0.04796400959244897 18 0.04776625114600929 5 0.04745768041948754 6 0.04666312794317041 8 0.0464484013802169 7 0.046429115466298305 1 0.046310449352978955 3 0.046284605539865874 17 0.04618496502632031 2 0.045757421518684956 0 0.04369175729905878 23 0.04251746211052967 21 0.04098734678178645 10 0.03914913521335531 19 0.03904648890841538 24 0.035779704291313656 11 0.035343061413387764 16 0.028780877008948085 20 0.02738398210657707 15 0.02286118836292088 12 0.022152656165316153 14 0.020755501209359054 13 0.01271951840682137 __DUMMY__ 0.011828469108079042 false 0.0 1084 17 0.05968834913836762 0 0.0579098843542914 22 0.05619951646281986 9 0.05304712590992911 18 0.050355294322585335 11 0.04632268948679284 16 0.043911999118840694 19 0.04309846418483548 10 0.042767406785377445 6 0.04216057556578046 21 0.04170995374389015 4 0.041295415924556746 5 0.04079891937971433 8 0.04048036562244005 7 0.04040784688909612 1 0.0402918761917338 2 0.03975956424325974 3 0.03780131701147753 23 0.03625017553199056 12 0.0313637046572083 24 0.026424267954380184 20 0.02232987455645426 15 0.019167048446570457 13 0.018641007742843854 14 0.016071387440211405 __DUMMY__ 0.01174596933455226 false 0.0 1083 22 0.058383167763119866 18 0.057150489301873685 9 0.051737214097052606 21 0.049348171970768094 10 0.049116332397969656 19 0.04744354211907989 11 0.041726763426524247 17 0.041544375054358665 23 0.040123194445425385 0 0.03876052945686693 4 0.03869531974819747 5 0.03819531999315444 24 0.03790031045903836 14 0.037125410344079464 3 0.036978534104119075 20 0.036147791079602885 6 0.035966920303845754 8 0.03582219354332858 7 0.03577542875845729 1 0.03559723171619181 2 0.03517133350666985 15 0.03299366003054556 12 0.026805348592348302 16 0.0265069613129025 13 0.021989653492800344 __DUMMY__ 0.012994802981679454 false 0.0 1082 22 0.05632444000335481 18 0.054869969724129844 21 0.05249480996846365 19 0.05227658745432995 24 0.04725771655631892 23 0.04659884018354079 9 0.04531383032316051 20 0.04446095940417556 17 0.040915773472151924 10 0.040463115849624906 11 0.03947972966280372 4 0.03779584639981962 5 0.03727598299188026 3 0.03595276892044277 6 0.03488970113993112 8 0.03467978051480852 7 0.03462326678347638 1 0.03443166655605269 2 0.034031254829780345 0 0.03324757445505679 14 0.03296198543025905 12 0.03296188699860059 16 0.03085397614463529 15 0.029928584003371256 13 0.022040265982377953 __DUMMY__ 0.013869686247452858 false 0.0 890 21 0.06992566261994805 19 0.06963501581150197 18 0.06705724215502391 20 0.06269031031716917 22 0.06152831706238631 24 0.05536061494873893 12 0.052722759929734804 11 0.051897157628578904 23 0.04745420688419705 10 0.046242303378769105 14 0.045862856446321154 17 0.039176319482487044 13 0.03776381328576582 16 0.0363220366169318 9 0.033971657529280525 15 0.03237399829413049 0 0.02694183925164379 4 0.022371388454939092 5 0.02187663625519986 3 0.019031559826032076 6 0.01827833302060997 7 0.017111104414491908 8 0.017084227616966267 1 0.01683295591528815 2 0.01650875582499165 __DUMMY__ 0.01397892702887232 false 0.0 1081 22 0.06324580199059726 9 0.058624716374050735 0 0.054305713432431645 17 0.05350203670008606 18 0.05310185214268703 11 0.04809316179371665 21 0.047086126953529955 10 0.046995212535287344 19 0.042714419341981454 4 0.042317331358764046 5 0.041750375366900544 6 0.04140019466216934 8 0.04039618501891453 7 0.04032945494880944 1 0.040142135683619205 2 0.03959575166610594 3 0.039462872166071174 23 0.03440256687588396 16 0.03254884690100578 24 0.028632662428664742 12 0.02573112738925465 20 0.021120167540294794 14 0.020596253494277697 15 0.017943347393215184 13 0.014374239573825184 __DUMMY__ 0.01158744626785544 false 0.0 891 18 0.07493045369961504 10 0.07106053397427738 22 0.06332306338424969 21 0.05834394554704284 11 0.05803565094031298 19 0.05646861309650288 14 0.05203631066716292 9 0.050067915587054444 0 0.047426456359667704 17 0.04566056051779424 13 0.04147306874701524 12 0.041260288148105805 20 0.03859881911718303 15 0.03581349624826024 23 0.030227277531175288 16 0.028817410589454265 24 0.026087487440764157 4 0.023860994559108426 5 0.023455307042116638 6 0.021537679188533457 3 0.01996051191313289 8 0.01975064524377389 7 0.019749196473003536 1 0.019595805789774292 2 0.019229876856697293 __DUMMY__ 0.013228631338221648 false 0.0 892 21 0.06877361304885596 22 0.06556124115260929 11 0.06370035892811184 18 0.06052373988597645 19 0.05753952714910483 12 0.05612177303566729 10 0.050566616432267154 17 0.046872297558250134 0 0.04543199948686266 9 0.042119888079092366 13 0.04177696519341757 23 0.0384826873748629 20 0.03781931435342081 14 0.037668997146221565 24 0.03733128755377926 16 0.0355266375541027 4 0.02580693348949404 5 0.025359430124538597 6 0.02395176031005379 7 0.021185630601106745 8 0.021157520107598665 1 0.020993396507865504 2 0.020624187636444337 3 0.020508066328695142 15 0.018293333983533888 __DUMMY__ 0.016302796978066764 false 0.0 650 21 0.108063 22 0.088565 11 0.087906 12 0.078684 19 0.071847 24 0.059272 18 0.057904 13 0.04827 23 0.042612 14 0.0418 20 0.041673 10 0.041096 17 0.040444 9 0.037287 0 0.037136 16 0.028757 4 0.017426 5 0.016629 6 0.012573 3 0.009518 7 0.008539 8 0.008378 1 0.008086 2 0.007533 21 0.108063 22 0.088565 11 0.087906 12 0.078684 19 0.071847 24 0.059272 18 0.057904 13 0.04827 23 0.042612 14 0.0418 20 0.041673 10 0.041096 17 0.040444 9 0.037287 0 0.037136 16 0.028757 4 0.017426 5 0.016629 6 0.012573 3 0.009518 7 0.008539 8 0.008378 1 0.008086 2 0.007533 21 0.09463877579964684 22 0.07907269696300723 11 0.07595353803426949 12 0.07120599376987345 19 0.06693149206733469 18 0.05851376741673392 24 0.05435649121193151 13 0.046784878930351076 23 0.04395279800386558 20 0.043639178824820685 10 0.04245794761354699 14 0.0418905239631555 17 0.03967481634044826 9 0.03766994134864887 0 0.03587836562808695 16 0.029149047533149525 4 0.021048186724032213 5 0.020395090744747685 6 0.01685997373599214 3 0.014326071604136126 7 0.01352087289752585 8 0.01338650141381761 1 0.013152843391509095 2 0.012674560427016235 15 0.0075346943679982835 __DUMMY__ 0.005330951244353986 false 1.0 651 22 0.077924 9 0.071823 0 0.05828 17 0.05321 21 0.053067 18 0.052406 11 0.052366 10 0.04773 4 0.047697 5 0.046734 3 0.045637 6 0.044873 8 0.04484 7 0.044323 1 0.044159 2 0.043889 19 0.03998 24 0.0313 23 0.027812 16 0.020809 14 0.016884 12 0.013193 20 0.01131 15 0.009754 22 0.077924 9 0.071823 0 0.05828 17 0.05321 21 0.053067 18 0.052406 11 0.052366 10 0.04773 4 0.047697 5 0.046734 3 0.045637 6 0.044873 8 0.04484 7 0.044323 1 0.044159 2 0.043889 19 0.03998 24 0.0313 23 0.027812 16 0.020809 14 0.016884 12 0.013193 20 0.01131 15 0.009754 22 0.07210483877761815 9 0.061542567805209954 21 0.05726138627318737 18 0.05379115772230839 11 0.053140869107458036 0 0.051250084892581045 17 0.049064166074156486 10 0.04701422365664446 19 0.0442186772394037 4 0.04187670047764159 5 0.04113026422484625 6 0.0393125712649793 3 0.03893577396730151 8 0.038505853330043874 7 0.03823252682295871 1 0.038045581458267815 2 0.03766601422939023 24 0.034503318768858704 23 0.03314697932715734 12 0.026729564900203447 14 0.025318984526482426 16 0.02414212998168897 20 0.020850650877075515 15 0.01489406736939796 13 0.01440406566313514 __DUMMY__ 0.0029169812620034674 false 1.0 893 18 0.06709041190549267 22 0.06500422119233162 10 0.06500376452444014 11 0.05992117667543485 21 0.05637167980149691 0 0.05364911485809477 9 0.0535979132192048 19 0.050274701618008885 17 0.04958380571397374 14 0.04145332318828209 12 0.0393196046545477 13 0.035679320746371125 16 0.030000313899774596 23 0.029311078902357006 4 0.029246932012252397 5 0.028795574481071392 20 0.02828569217621324 6 0.027797236425932736 15 0.026879693524425322 8 0.025762362796994995 7 0.025741650126380477 1 0.0255846131018472 2 0.025158561032487956 3 0.025030617548944756 24 0.023316264723120123 __DUMMY__ 0.012140371150518648 false 0.0 894 21 0.06736662693932137 19 0.0667792064150511 18 0.06640118263766372 22 0.05953391005673802 20 0.05579543710652975 12 0.05492976557266692 11 0.052838879460086814 10 0.04980332704635077 24 0.04732794338484464 23 0.045756833863871055 14 0.04492057930482071 13 0.042219291847341286 17 0.04147428014425322 16 0.03729261677326282 9 0.035479904977121134 0 0.032977280626175054 15 0.02977301611464671 4 0.022607743079016782 5 0.022180059470936802 6 0.01952469884118134 3 0.01856590734599039 7 0.01770051232580121 8 0.01767032545875073 1 0.01748481972268445 2 0.01720557228008426 __DUMMY__ 0.016390279204809025 false 0.0 410 15 0.182794 14 0.123717 18 0.09627 20 0.079296 10 0.077603 16 0.073147 19 0.06692 17 0.063387 13 0.04637 24 0.032097 22 0.030232 9 0.02797 23 0.025839 0 0.024695 11 0.014528 21 0.010163 8 0.003918 3 0.003738 2 0.0032 1 0.003142 7 0.003049 4 0.002855 5 0.002729 6 0.002343 15 0.182794 14 0.123717 18 0.09627 20 0.079296 10 0.077603 16 0.073147 19 0.06692 17 0.063387 13 0.04637 24 0.032097 22 0.030232 9 0.02797 23 0.025839 0 0.024695 11 0.014528 21 0.010163 8 0.003918 3 0.003738 2 0.0032 1 0.003142 7 0.003049 4 0.002855 5 0.002729 6 0.002343 15 0.11863683303423382 14 0.09235191829342945 18 0.0819778243697587 10 0.06702669164109525 20 0.0653842776077998 19 0.061820921728058434 16 0.05494312410281021 17 0.0529874579509532 13 0.04837115826868397 22 0.04078371064870815 24 0.03500355072181822 23 0.032878887687097735 9 0.032661217540732444 21 0.032122979900239025 11 0.030135082915031232 0 0.029421871667411937 12 0.0234534018147534 4 0.013287718869164356 5 0.013025472382083129 6 0.012158866294414544 8 0.012070144707401488 3 0.011845605035768711 7 0.011618599321692095 1 0.011573518044321739 2 0.0114426657736453 __DUMMY__ 0.003016499678893856 false 1.0 652 21 0.10341 22 0.093361 11 0.088328 19 0.07747 12 0.068292 18 0.067896 10 0.052932 24 0.051629 17 0.046366 9 0.044688 20 0.044002 0 0.043884 14 0.039084 13 0.036465 23 0.035357 16 0.034204 4 0.014848 5 0.014318 6 0.009289 3 0.008833 7 0.006759 8 0.006443 1 0.006357 2 0.005786 21 0.10341 22 0.093361 11 0.088328 19 0.07747 12 0.068292 18 0.067896 10 0.052932 24 0.051629 17 0.046366 9 0.044688 20 0.044002 0 0.043884 14 0.039084 13 0.036465 23 0.035357 16 0.034204 4 0.014848 5 0.014318 6 0.009289 3 0.008833 7 0.006759 8 0.006443 1 0.006357 2 0.005786 21 0.09199668984376595 22 0.08300027917409865 11 0.07716980899211992 19 0.07068576039129183 18 0.06470877980280386 12 0.06360653308112263 24 0.05004539212133733 10 0.04992803776743012 20 0.044430085537937786 17 0.04392077949772635 9 0.042757494843696515 0 0.04060281596368409 14 0.039637755274678124 23 0.038810525445946285 13 0.037998805880386316 16 0.032599023167783125 4 0.01945991526397054 5 0.018943789284916832 6 0.014800201102573603 3 0.013924121105350969 7 0.012386673775839354 8 0.012177209571470215 1 0.01203830514054253 2 0.011544695895303868 15 0.007507477970017888 __DUMMY__ 0.0053190441042053425 false 1.0 411 14 0.104588 13 0.102823 10 0.099322 18 0.088777 12 0.071797 11 0.069988 21 0.066797 15 0.064338 22 0.053144 19 0.050919 0 0.043711 20 0.042071 9 0.040502 17 0.031313 23 0.019305 16 0.0158 24 0.008684 5 0.007239 4 0.006968 6 0.005919 1 0.001605 7 0.00156 8 0.001543 2 0.001287 14 0.104588 13 0.102823 10 0.099322 18 0.088777 12 0.071797 11 0.069988 21 0.066797 15 0.064338 22 0.053144 19 0.050919 0 0.043711 20 0.042071 9 0.040502 17 0.031313 23 0.019305 16 0.0158 24 0.008684 5 0.007239 4 0.006968 6 0.005919 1 0.001605 7 0.00156 8 0.001543 2 0.001287 14 0.08451162417085088 13 0.08280560861724076 10 0.08199485576556943 18 0.07998548397600655 21 0.06668036785593626 12 0.06592128046979355 11 0.06399161491120714 22 0.055585299465126185 19 0.05352036595753153 15 0.0523863896650109 20 0.04406879191543096 0 0.040659146825683556 9 0.04004388208016207 17 0.034660099677328346 23 0.027855323211248045 16 0.02117772520279166 24 0.020781334710585738 4 0.013701126915042137 5 0.01362817650810663 6 0.012069491214461792 8 0.00840382094534381 7 0.00839883618371175 1 0.008353395642447517 2 0.008058027094002966 3 0.007456118544599834 __DUMMY__ 0.0033018124747801513 false 1.0 895 18 0.07453729634936783 10 0.06674069933909912 22 0.0609031963693521 19 0.06029787266632714 21 0.05908054183464197 11 0.054771139168464655 14 0.05273530058351843 20 0.04586756266702069 9 0.04529972154899366 17 0.04397330234388353 12 0.0434488003729512 0 0.04189900406535611 13 0.04188327097088471 15 0.03851515086301031 23 0.034941649095580854 24 0.032282147005972886 16 0.031475769138104286 4 0.022800600909420474 5 0.022397549292386427 6 0.02014432763165205 3 0.019108393947054388 8 0.018508038294445722 7 0.018507900232360014 1 0.01833381081357854 2 0.018024174643059283 __DUMMY__ 0.013522779853513552 false 0.0 653 0 0.087394 17 0.080064 9 0.066661 22 0.062443 11 0.059329 10 0.056488 18 0.055927 16 0.053413 6 0.04559 7 0.043069 8 0.042788 1 0.042741 4 0.041697 2 0.041382 5 0.040697 19 0.037773 3 0.036533 21 0.033141 12 0.0236 23 0.021583 13 0.011531 15 0.01071 14 0.00304 24 0.002406 0 0.087394 17 0.080064 9 0.066661 22 0.062443 11 0.059329 10 0.056488 18 0.055927 16 0.053413 6 0.04559 7 0.043069 8 0.042788 1 0.042741 4 0.041697 2 0.041382 5 0.040697 19 0.037773 3 0.036533 21 0.033141 12 0.0236 23 0.021583 13 0.011531 15 0.01071 14 0.00304 24 0.002406 0 0.07292583310134754 17 0.06944499841217254 9 0.06211915838245982 22 0.06064158649813604 18 0.053345547768977014 11 0.05249398297650482 10 0.05055204858453213 16 0.04662959244566133 6 0.04502623134000932 7 0.043105069454854136 8 0.04301055894091686 4 0.04289354836462987 1 0.042882780785426663 5 0.04215067218317448 2 0.041945276473922766 19 0.039467776243901624 3 0.038843483570701845 21 0.037019573178662904 23 0.028352375222523866 12 0.02454680871536308 15 0.014798318238863272 24 0.014123359900849447 13 0.012581896064256566 20 0.009758013472731364 14 0.009336135912749878 __DUMMY__ 0.0020053737666709355 false 1.0 896 19 0.06795419629466852 18 0.0673435441015938 20 0.06293440578821438 21 0.061899930758521265 22 0.054947493339824176 24 0.05185531129789677 12 0.04932369591514153 23 0.0485400749529837 10 0.047832255054127436 14 0.04714258485291595 11 0.0449498507652583 17 0.03998786613970928 13 0.038804910234556934 16 0.0387126517000564 15 0.03859170550873571 9 0.03344518755156012 0 0.027377281041250562 4 0.02353226464835765 5 0.023086519247111574 3 0.02057245629504362 6 0.0201498419927323 8 0.019088090908981187 7 0.019086248753547773 1 0.018862041913028402 2 0.018602178540078812 __DUMMY__ 0.015377412404103839 false 0.0 412 14 0.133049 13 0.108446 15 0.093821 10 0.086157 18 0.081541 21 0.070857 12 0.069114 20 0.058607 11 0.05558 22 0.04966 19 0.049483 24 0.031467 9 0.030439 23 0.029445 0 0.014264 17 0.012119 5 0.007515 4 0.00748 16 0.005095 6 0.003319 3 0.002043 7 2.17E-4 2 1.75E-4 8 1.08E-4 14 0.133049 13 0.108446 15 0.093821 10 0.086157 18 0.081541 21 0.070857 12 0.069114 20 0.058607 11 0.05558 22 0.04966 19 0.049483 24 0.031467 9 0.030439 23 0.029445 0 0.014264 17 0.012119 5 0.007515 4 0.00748 16 0.005095 6 0.003319 3 0.002043 7 2.17E-4 2 1.75E-4 8 1.08E-4 14 0.09486791034283922 13 0.08142373624233126 18 0.07401256527339302 21 0.0699465366124444 10 0.0694220086161543 15 0.06574586744344664 12 0.06438766767719808 20 0.055799382935563566 19 0.05536629978514818 11 0.05495001269723856 22 0.054044296272011925 24 0.03782757640498021 23 0.036138107381421175 9 0.03287730013916528 17 0.025359369737368954 0 0.023097173421650637 16 0.01857153760433937 4 0.01450794626307651 5 0.014301247111651321 6 0.011042922265689132 3 0.009338895398046153 7 0.008264402407066074 8 0.008230884410029086 1 0.008071009410869849 2 0.008004427907162506 __DUMMY__ 0.004400916239714789 false 1.0 654 21 0.104755 19 0.086989 22 0.086402 11 0.08301 12 0.078563 18 0.073644 20 0.058471 24 0.056581 10 0.052745 13 0.046461 17 0.046266 14 0.042169 16 0.040428 0 0.039813 23 0.037955 9 0.037225 4 0.008912 5 0.008504 6 0.003495 15 0.00344 3 0.002811 7 6.87E-4 1 3.9E-4 8 2.84E-4 21 0.104755 19 0.086989 22 0.086402 11 0.08301 12 0.078563 18 0.073644 20 0.058471 24 0.056581 10 0.052745 13 0.046461 17 0.046266 14 0.042169 16 0.040428 0 0.039813 23 0.037955 9 0.037225 4 0.008912 5 0.008504 6 0.003495 15 0.00344 3 0.002811 7 6.87E-4 1 3.9E-4 8 2.84E-4 21 0.09285585179747119 22 0.07770063065247358 19 0.07633297299810418 11 0.07357319083534263 12 0.0712814382105629 18 0.06788668938050171 20 0.053987189096986736 24 0.05321507287676334 10 0.04947278470553079 13 0.045885219713269525 17 0.043248628952536006 14 0.042473723575443004 23 0.041185462633255135 0 0.03731273335342464 9 0.03709305951909574 16 0.0365027117638875 4 0.01557372127700646 5 0.015122166540384306 6 0.011085939363268613 15 0.010151796475966412 3 0.009867075891291682 7 0.008415915600826093 8 0.008171714560253427 1 0.008128125215092005 2 0.007741911189828127 __DUMMY__ 0.0057342738214342295 false 1.0 897 21 0.0777168734094465 19 0.07050380766542678 22 0.06555093680075667 18 0.06528624777050318 20 0.06000780157320291 12 0.059861949697237196 11 0.05770789521803505 24 0.055862394113354336 23 0.04695071932391231 10 0.04498979210725419 14 0.04450729878644713 13 0.041423332607702965 17 0.03875389312069215 16 0.03506533971451995 9 0.033786707782804105 0 0.028480657791693138 15 0.024100632646521562 4 0.020886814293792116 5 0.02038782034005438 3 0.016733967460940812 6 0.016686277590209093 __DUMMY__ 0.015748326682780592 7 0.01500177703908972 8 0.01492331181552614 1 0.014717238329782681 2 0.01435818631831437 false 0.0 413 14 0.087784 15 0.078872 10 0.065407 18 0.058595 13 0.057131 9 0.050869 22 0.047535 21 0.044149 4 0.037555 5 0.037083 11 0.036399 3 0.035482 23 0.034912 6 0.034285 8 0.033961 7 0.033651 1 0.033646 2 0.033335 20 0.032154 24 0.029388 12 0.027767 19 0.024844 0 0.024681 17 0.020515 14 0.087784 15 0.078872 10 0.065407 18 0.058595 13 0.057131 9 0.050869 22 0.047535 21 0.044149 4 0.037555 5 0.037083 11 0.036399 3 0.035482 23 0.034912 6 0.034285 8 0.033961 7 0.033651 1 0.033646 2 0.033335 20 0.032154 24 0.029388 12 0.027767 19 0.024844 0 0.024681 17 0.020515 14 0.07232666274911988 18 0.06103110834720186 10 0.06089816809394914 15 0.0581942528076319 13 0.056236535172319316 21 0.053154332131010715 22 0.051786839896451685 9 0.04606861962733051 11 0.04447467360769702 12 0.04124126754046638 19 0.037565171340100574 23 0.03731851792838197 20 0.03698739209345237 4 0.032400856388416534 24 0.032238550972682696 5 0.031980716033863515 0 0.030560032080775942 6 0.02977701465588586 17 0.028996650242515794 3 0.02886340628792626 8 0.02831536382735041 7 0.028158756072034503 1 0.028096816869681872 2 0.027772875351652012 16 0.012654773850844755 __DUMMY__ 0.002900646031256573 false 1.0 655 17 0.071011 0 0.064631 22 0.057758 9 0.057306 16 0.056284 18 0.052529 19 0.048183 6 0.043944 8 0.043518 7 0.043469 1 0.043303 11 0.042891 4 0.04284 2 0.042705 5 0.042212 3 0.041114 10 0.040868 21 0.033756 23 0.032919 24 0.028876 20 0.024844 15 0.022363 12 0.017453 14 0.005223 17 0.071011 0 0.064631 22 0.057758 9 0.057306 16 0.056284 18 0.052529 19 0.048183 6 0.043944 8 0.043518 7 0.043469 1 0.043303 11 0.042891 4 0.04284 2 0.042705 5 0.042212 3 0.041114 10 0.040868 21 0.033756 23 0.032919 24 0.028876 20 0.024844 15 0.022363 12 0.017453 14 0.005223 17 0.06504494394559279 0 0.061056292295772675 22 0.05893343330614032 9 0.056940595148236246 18 0.052289350498930125 16 0.04850446832071871 19 0.0458747424638542 11 0.04476178242789408 6 0.04323209713244205 10 0.04262094666926963 4 0.04260402826881198 8 0.04240103282540626 7 0.04232897080447899 1 0.04217334376085595 5 0.042023545628155044 2 0.04159470335196431 3 0.040221374034075996 21 0.03846168654284907 23 0.03411649685672999 24 0.0283367870721825 20 0.023318308731001946 12 0.022127024966957908 15 0.02105499965614481 14 0.011086791112263548 13 0.0070852314569120785 __DUMMY__ 0.001807022722358802 false 1.0 1079 22 0.05986298482627077 21 0.05960321454619583 18 0.05024110418199 19 0.04804262252705858 11 0.046630864441175444 23 0.045778747465293416 9 0.04547918081259966 24 0.044017423478730076 12 0.0426625641430934 17 0.0411783899336779 4 0.038118094683594596 5 0.037602667378314816 10 0.03749383929149994 0 0.03707413112363522 6 0.03585887498264091 20 0.035857128533509176 3 0.034533327861465644 7 0.03438519345438798 8 0.03437154448180198 1 0.03420309237734553 2 0.033757378401583854 14 0.031183286881036245 13 0.02946966355783085 16 0.028107844787103337 15 0.020124272768395606 __DUMMY__ 0.014362563079769195 false 0.0 1078 19 0.07287190579773078 21 0.07157894963399765 20 0.06778648162660525 18 0.06628174620269955 24 0.05905065454856154 22 0.05865641429088864 12 0.05778893164158425 23 0.05040541398284472 11 0.049350401552298105 14 0.04588637920575024 10 0.04298359777392121 13 0.04124506567208247 16 0.03936669584765388 17 0.03853019477380896 15 0.031867209685217654 9 0.029879336450363215 0 0.02411778274185248 4 0.02066780972455046 5 0.02018492705627947 3 0.017250653328491402 __DUMMY__ 0.016903569342821227 6 0.016649543506990504 7 0.015375634129966084 8 0.01535663861206679 1 0.015129457880167563 2 0.014834604990805763 false 0.0 656 19 0.098574 21 0.087402 18 0.077325 20 0.075381 12 0.071939 22 0.069486 11 0.066777 16 0.061663 24 0.056897 17 0.053106 10 0.051744 23 0.045328 13 0.042202 14 0.038759 0 0.038262 9 0.027551 15 0.018584 5 0.006567 4 0.006383 6 0.002688 3 0.002076 7 6.63E-4 8 3.8E-4 1 2.62E-4 19 0.098574 21 0.087402 18 0.077325 20 0.075381 12 0.071939 22 0.069486 11 0.066777 16 0.061663 24 0.056897 17 0.053106 10 0.051744 23 0.045328 13 0.042202 14 0.038759 0 0.038262 9 0.027551 15 0.018584 5 0.006567 4 0.006383 6 0.002688 3 0.002076 7 6.63E-4 8 3.8E-4 1 2.62E-4 21 0.0834646704927042 19 0.08344781036963883 18 0.07045389528436077 12 0.06944640602226214 22 0.06723718878829887 20 0.06528627200240937 11 0.06383446271648129 24 0.05426545916159821 16 0.0485956454344086 10 0.048595481302908486 17 0.04661209615688897 23 0.04599974669484235 13 0.045406783788980616 14 0.041391264213659566 0 0.03537415212831264 9 0.030511761792081586 15 0.019126030564573456 4 0.013561234697341554 5 0.01339542182435372 6 0.010022110269550584 3 0.00876013563808954 7 0.007719301650042007 8 0.0075455796965555235 1 0.007402164651186461 2 0.0070999705673484214 __DUMMY__ 0.0054449540911223745 false 1.0 414 14 0.136698 15 0.101959 13 0.100641 10 0.086612 18 0.083647 21 0.069201 20 0.062029 12 0.059925 19 0.051935 11 0.051906 22 0.051304 24 0.035193 9 0.031829 23 0.029465 17 0.01127 0 0.010181 4 0.007708 5 0.007578 16 0.004539 3 0.00336 6 0.00242 2 2.36E-4 7 2.02E-4 8 1.62E-4 14 0.136698 15 0.101959 13 0.100641 10 0.086612 18 0.083647 21 0.069201 20 0.062029 12 0.059925 19 0.051935 11 0.051906 22 0.051304 24 0.035193 9 0.031829 23 0.029465 17 0.01127 0 0.010181 4 0.007708 5 0.007578 16 0.004539 3 0.00336 6 0.00242 2 2.36E-4 7 2.02E-4 8 1.62E-4 14 0.09694293548401685 13 0.07612868264498425 18 0.07594809736173459 15 0.07142392883260598 10 0.07033893511384208 21 0.06803554795210273 20 0.05833281865334659 12 0.058011945646009186 19 0.0571980433996868 22 0.05471855142507962 11 0.052366245818266474 24 0.039733851158458997 23 0.03591294648695133 9 0.0338171666077889 17 0.02531955219524784 0 0.020946304379536464 16 0.01889895376237941 4 0.01447914824471373 5 0.01419744967794795 6 0.010390296221244207 3 0.010092288144814396 8 0.008222637767628825 7 0.00822255630042924 1 0.008030735928120045 2 0.007995048058041089 __DUMMY__ 0.004295332735022261 false 1.0 898 21 0.07990431322320118 12 0.0784870129463439 13 0.06719288335421099 11 0.06490390914445594 22 0.06077835718432893 18 0.06024444700810337 19 0.05743993766295934 14 0.0510675281067123 10 0.04906509652564573 20 0.04548473378623929 23 0.04371300630634363 24 0.04180001468676373 17 0.036376292876667236 0 0.03581130668710384 9 0.03287237427257414 16 0.028021000968138053 4 0.021142029708402593 5 0.02072086951547943 6 0.01912146386279166 15 0.01762289160234038 __DUMMY__ 0.015097988088768282 7 0.014959241954494192 8 0.014931043740222798 1 0.014804268651075687 2 0.014533891065827772 3 0.013904097070805688 false 0.0 415 15 0.160502 14 0.116648 18 0.077438 20 0.067934 10 0.066303 19 0.049058 13 0.046535 16 0.044715 17 0.040083 24 0.037243 23 0.034321 9 0.032991 22 0.028663 3 0.021787 8 0.020167 4 0.019981 5 0.019906 7 0.019734 1 0.0196 2 0.019514 6 0.017934 21 0.013955 0 0.013465 11 0.011527 15 0.160502 14 0.116648 18 0.077438 20 0.067934 10 0.066303 19 0.049058 13 0.046535 16 0.044715 17 0.040083 24 0.037243 23 0.034321 9 0.032991 22 0.028663 3 0.021787 8 0.020167 4 0.019981 5 0.019906 7 0.019734 1 0.0196 2 0.019514 6 0.017934 21 0.013955 0 0.013465 11 0.011527 15 0.10846870451525994 14 0.08851649507480785 18 0.0730188236802819 20 0.06099260287646514 10 0.06096935140016106 19 0.05383091370636974 13 0.04667101271094363 17 0.04164130041641728 16 0.04138518123056348 22 0.04011073342081309 24 0.03867894839471356 23 0.037411579738180496 9 0.03510317795060094 21 0.03363865723757558 11 0.027719729627550243 0 0.023169141419905958 12 0.022102765015610513 4 0.021749104395570314 5 0.021504831031844522 3 0.02099338902896121 8 0.020126192801524053 7 0.019877615615544464 1 0.01971899927866401 6 0.019713218611609 2 0.01952714410630579 __DUMMY__ 0.00336038671375647 false 1.0 899 21 0.07990431322320118 12 0.07848701294634389 13 0.06719288335421099 11 0.06490390914445594 22 0.06077835718432893 18 0.06024444700810337 19 0.057439937662959344 14 0.05106752810671231 10 0.04906509652564573 20 0.04548473378623929 23 0.04371300630634364 24 0.041800014686763726 17 0.03637629287666724 0 0.03581130668710385 9 0.03287237427257414 16 0.028021000968138057 4 0.021142029708402597 5 0.02072086951547943 6 0.019121463862791656 15 0.01762289160234038 __DUMMY__ 0.015097988088768282 7 0.01495924195449419 8 0.0149310437402228 1 0.014804268651075689 2 0.014533891065827772 3 0.013904097070805688 false 0.0 657 21 0.10512 22 0.080192 12 0.076834 11 0.070466 19 0.069625 18 0.06251 24 0.057776 20 0.050606 13 0.050229 23 0.048121 10 0.043562 14 0.043304 9 0.039351 17 0.032514 0 0.028738 4 0.020987 5 0.020374 16 0.019788 6 0.015322 3 0.014815 1 0.012733 7 0.012648 8 0.012421 2 0.011965 21 0.10512 22 0.080192 12 0.076834 11 0.070466 19 0.069625 18 0.06251 24 0.057776 20 0.050606 13 0.050229 23 0.048121 10 0.043562 14 0.043304 9 0.039351 17 0.032514 0 0.028738 4 0.020987 5 0.020374 16 0.019788 6 0.015322 3 0.014815 1 0.012733 7 0.012648 8 0.012421 2 0.011965 21 0.09238955861387722 12 0.0731978358706252 22 0.07253510684778344 11 0.06688966425449912 19 0.06596594026142123 18 0.061859660189138375 24 0.052590477329721705 13 0.052134831246793537 20 0.049702969983309406 23 0.046455288242296736 10 0.04517649750172529 14 0.044773704518073984 9 0.037192776194571835 17 0.03545554623223942 0 0.03162503058944609 16 0.025330551060582265 4 0.0216316713042946 5 0.021093745873528223 6 0.017326598639800246 3 0.015540501109568755 7 0.01442063561862439 1 0.01433659090011558 8 0.014274096704083035 2 0.013794087495453711 15 0.009033546620145091 __DUMMY__ 0.005273086798281597 false 1.0 416 14 0.141293 15 0.123558 18 0.088441 10 0.08721 13 0.074751 20 0.071279 21 0.060841 19 0.056781 22 0.054158 24 0.045671 11 0.039005 9 0.036933 12 0.031177 23 0.030755 4 0.010412 5 0.010075 17 0.009654 3 0.009583 16 0.003388 8 0.003224 7 0.003174 2 0.003069 1 0.003055 6 0.002513 14 0.141293 15 0.123558 18 0.088441 10 0.08721 13 0.074751 20 0.071279 21 0.060841 19 0.056781 22 0.054158 24 0.045671 11 0.039005 9 0.036933 12 0.031177 23 0.030755 4 0.010412 5 0.010075 17 0.009654 3 0.009583 16 0.003388 8 0.003224 7 0.003174 2 0.003069 1 0.003055 6 0.002513 14 0.0997251698786251 15 0.08511371466022045 18 0.07993337691047306 10 0.07206002604934077 20 0.0642538142143805 13 0.06150389790263138 21 0.06142542954915618 19 0.060336840830206157 22 0.05520049602462389 24 0.04443911332622206 11 0.04437289707413278 12 0.040950493604192784 9 0.0366131997958576 23 0.03624447409055886 17 0.025274961019239796 16 0.019503925730738916 0 0.015908467029694014 4 0.015646585865079117 5 0.015268505975358787 3 0.013350726544784837 6 0.01026958412543548 8 0.009805882122695451 7 0.009765571924723958 1 0.00960354741590766 2 0.009464687349197 __DUMMY__ 0.00396461098652351 false 1.0 658 21 0.081132 22 0.069342 12 0.061968 11 0.060737 18 0.054037 9 0.05082 10 0.05029 13 0.049789 23 0.0439 14 0.043875 24 0.041852 19 0.041797 4 0.037148 5 0.036657 0 0.033514 6 0.032555 3 0.0314 20 0.030084 1 0.029859 8 0.029785 7 0.029588 2 0.029584 17 0.025199 15 0.00509 21 0.081132 22 0.069342 12 0.061968 11 0.060737 18 0.054037 9 0.05082 10 0.05029 13 0.049789 23 0.0439 14 0.043875 24 0.041852 19 0.041797 4 0.037148 5 0.036657 0 0.033514 6 0.032555 3 0.0314 20 0.030084 1 0.029859 8 0.029785 7 0.029588 2 0.029584 17 0.025199 15 0.00509 21 0.07550960512894288 22 0.0641021116497803 12 0.06373547518638442 11 0.05959571339026663 18 0.055654325120563265 13 0.05325599694889863 10 0.049489069279514186 19 0.04603923821222903 9 0.0451602050615998 14 0.04469315031258715 23 0.043388203288063455 24 0.03996994147166483 0 0.03616763453077025 20 0.03442612717753233 4 0.03294588054964018 5 0.03249771641068323 17 0.03161999462141016 6 0.02983362186636236 3 0.027004487263346335 8 0.026729198166655265 1 0.02672173567898474 7 0.026655451444226885 2 0.026406360298925735 16 0.013010786353583497 15 0.012223856076732252 __DUMMY__ 0.0031641145106521334 false 1.0 659 21 0.08156 22 0.068745 12 0.06172 11 0.060616 18 0.053825 9 0.051043 10 0.050888 13 0.049484 23 0.043815 14 0.043663 24 0.042115 19 0.041584 4 0.036705 5 0.036472 0 0.033433 6 0.032338 3 0.031792 1 0.030127 20 0.030007 8 0.030006 2 0.029985 7 0.029898 17 0.025065 15 0.005115 21 0.08156 22 0.068745 12 0.06172 11 0.060616 18 0.053825 9 0.051043 10 0.050888 13 0.049484 23 0.043815 14 0.043663 24 0.042115 19 0.041584 4 0.036705 5 0.036472 0 0.033433 6 0.032338 3 0.031792 1 0.030127 20 0.030007 8 0.030006 2 0.029985 7 0.029898 17 0.025065 15 0.005115 21 0.07570625495682634 22 0.06382789053938444 12 0.06362157793543018 11 0.059540155646005476 18 0.05555696187935315 13 0.053115910157254954 10 0.04976380195272819 19 0.045941411172860366 9 0.045262667807962065 14 0.04459578203601973 23 0.04334917582044964 24 0.040090777080464726 0 0.03613044127083781 20 0.034390770642258914 4 0.03274238982663436 5 0.03241274582331735 17 0.03155845207043782 6 0.02973394985776402 3 0.02718457708681978 1 0.026844862107651753 8 0.026830733683822692 7 0.02679787185152851 2 0.026590584278148983 16 0.01301079233049374 15 0.012235346221358414 __DUMMY__ 0.0031641159641867555 false 1.0 417 16 0.137014 17 0.121332 15 0.103144 19 0.084362 18 0.083095 0 0.073361 20 0.058622 10 0.044621 22 0.040516 11 0.033409 14 0.032923 23 0.028527 9 0.027597 12 0.023201 24 0.0201 13 0.015906 6 0.012752 21 0.01266 8 0.00962 7 0.009384 1 0.009319 2 0.008134 4 0.005518 5 0.004882 16 0.137014 17 0.121332 15 0.103144 19 0.084362 18 0.083095 0 0.073361 20 0.058622 10 0.044621 22 0.040516 11 0.033409 14 0.032923 23 0.028527 9 0.027597 12 0.023201 24 0.0201 13 0.015906 6 0.012752 21 0.01266 8 0.00962 7 0.009384 1 0.009319 2 0.008134 4 0.005518 5 0.004882 16 0.09452617035609599 17 0.09035142620707469 15 0.07118621706291553 18 0.07055601019451987 19 0.068671764302931 0 0.06212013863724396 20 0.04822159790671555 22 0.046307883682908946 10 0.045668160163750526 11 0.039342869797222374 9 0.03570520302467494 23 0.03307983048683602 14 0.03245794135388555 12 0.02963321730275267 21 0.027692161138795343 24 0.026103110046952167 6 0.022649711636606104 13 0.02209188286971553 8 0.020318713123629886 7 0.020132133937610545 1 0.02002862098913386 2 0.01925393860212177 4 0.018776395071534172 5 0.01824683214500786 3 0.014405710146190277 __DUMMY__ 0.002472359813174917 false 1.0 418 15 0.161702 16 0.111034 18 0.092733 17 0.092558 20 0.083206 19 0.082174 14 0.081053 10 0.058591 0 0.0403 24 0.037591 23 0.032021 22 0.031416 9 0.022305 13 0.019602 11 0.014153 8 0.006339 7 0.005901 6 0.005474 1 0.005311 2 0.004793 21 0.003596 4 0.002889 5 0.002797 3 0.002461 15 0.161702 16 0.111034 18 0.092733 17 0.092558 20 0.083206 19 0.082174 14 0.081053 10 0.058591 0 0.0403 24 0.037591 23 0.032021 22 0.031416 9 0.022305 13 0.019602 11 0.014153 8 0.006339 7 0.005901 6 0.005474 1 0.005311 2 0.004793 21 0.003596 4 0.002889 5 0.002797 3 0.002461 15 0.10604005076478232 18 0.07866707864169131 16 0.07616703462665204 17 0.0698237487068996 19 0.06901740859507377 14 0.0670811543849303 20 0.06569966280750077 10 0.05579765962042375 22 0.041359948732296 0 0.03931550609612684 24 0.03726549403587995 23 0.035776884326938346 13 0.032064369157290766 9 0.03052441665868942 11 0.029775570420909024 21 0.027400853129695632 12 0.02216175462898032 6 0.01514339595506369 8 0.014740878735341374 7 0.014474899801553146 4 0.014424284906051485 5 0.01416638135510074 1 0.014121144840116876 2 0.013706230979912639 3 0.012433938544892028 __DUMMY__ 0.0028502495472078875 false 1.0 419 16 0.137498 17 0.120608 15 0.103699 19 0.084769 18 0.081369 0 0.072535 20 0.058577 10 0.045763 22 0.040161 11 0.033652 14 0.033558 9 0.0278 23 0.02774 12 0.023303 24 0.02021 13 0.015323 6 0.013522 21 0.011473 8 0.010035 7 0.010003 1 0.008846 2 0.008187 4 0.00615 5 0.005219 16 0.137498 17 0.120608 15 0.103699 19 0.084769 18 0.081369 0 0.072535 20 0.058577 10 0.045763 22 0.040161 11 0.033652 14 0.033558 9 0.0278 23 0.02774 12 0.023303 24 0.02021 13 0.015323 6 0.013522 21 0.011473 8 0.010035 7 0.010003 1 0.008846 2 0.008187 4 0.00615 5 0.005219 16 0.09477280546161589 17 0.09002993598023716 15 0.0715329121365018 18 0.06979834724653645 19 0.06887764821800998 0 0.061723524683280025 20 0.048241026407342104 10 0.046202317867367525 22 0.04613125123228547 11 0.039431341721511914 9 0.035779374196143195 14 0.03280050961654436 23 0.03271971525904455 12 0.029660042663167206 21 0.027131945817031662 24 0.02616255047873459 6 0.022976267049525552 13 0.02183368535874214 8 0.020485521443484506 7 0.02039165946453469 1 0.01979051857620283 2 0.019255400977756923 4 0.01904062583598877 5 0.018376998919020532 3 0.014384296161225002 __DUMMY__ 0.0024697772281653254 false 1.0 660 16 0.108125 19 0.097167 17 0.09206 20 0.073343 18 0.067943 24 0.057485 0 0.057347 21 0.056536 22 0.056136 12 0.055068 11 0.051885 23 0.048595 15 0.02756 10 0.026593 9 0.021748 6 0.014129 4 0.012441 5 0.011847 8 0.011773 7 0.011568 1 0.01112 2 0.011043 13 0.010382 3 0.008105 16 0.108125 19 0.097167 17 0.09206 20 0.073343 18 0.067943 24 0.057485 0 0.057347 21 0.056536 22 0.056136 12 0.055068 11 0.051885 23 0.048595 15 0.02756 10 0.026593 9 0.021748 6 0.014129 4 0.012441 5 0.011847 8 0.011773 7 0.011568 1 0.01112 2 0.011043 13 0.010382 3 0.008105 19 0.0803958779195399 16 0.07958104356496147 17 0.07288092133288801 18 0.0646708573606684 20 0.061896052451860264 21 0.057121396540138765 22 0.05600231470300666 12 0.05283950932872301 11 0.050818619568272466 24 0.050448314393840475 0 0.0495552913568598 23 0.045910453555214746 10 0.0350986949454128 15 0.03060150570200884 9 0.029033709903786325 13 0.023504580093063124 6 0.019271371304808896 4 0.018903757980693853 5 0.018400137323715163 14 0.01821028780145927 8 0.017112298173008845 7 0.01698197359091851 1 0.016685068006398063 2 0.01645881446913364 3 0.014737470063105681 __DUMMY__ 0.0028796785665129478 false 1.0 661 17 0.071437 0 0.064727 22 0.058179 9 0.057208 16 0.056077 18 0.053656 19 0.048254 6 0.043853 8 0.043548 1 0.043396 7 0.043357 11 0.042697 4 0.042555 2 0.042393 5 0.042201 3 0.040803 10 0.040801 21 0.033534 23 0.033036 24 0.028668 20 0.024949 15 0.022435 12 0.017128 14 0.005108 17 0.071437 0 0.064727 22 0.058179 9 0.057208 16 0.056077 18 0.053656 19 0.048254 6 0.043853 8 0.043548 1 0.043396 7 0.043357 11 0.042697 4 0.042555 2 0.042393 5 0.042201 3 0.040803 10 0.040801 21 0.033534 23 0.033036 24 0.028668 20 0.024949 15 0.022435 12 0.017128 14 0.005108 17 0.06524152348467734 0 0.06110059191021426 22 0.059127705573639375 9 0.056895372625160465 18 0.0528094095143017 16 0.04840894727707903 19 0.04590750572036829 11 0.0446722602903767 6 0.04319010478958596 10 0.04259002923002393 4 0.042472513788438505 8 0.04241487645491925 7 0.04227728792096379 1 0.04221625901234623 5 0.04201846963066696 2 0.041450729605029143 3 0.04007786174145792 21 0.03835924368445289 23 0.034170487011830675 24 0.02824080457422572 20 0.023366761434297438 12 0.02197705231390045 15 0.021088224366976 14 0.01103372386579706 13 0.007085231456912083 __DUMMY__ 0.001807022722358802 false 1.0 662 0 0.086041 17 0.07887 9 0.065832 22 0.062367 11 0.058418 10 0.055517 18 0.055196 16 0.053023 6 0.045498 1 0.0429 8 0.042844 7 0.042822 2 0.04196 4 0.041897 5 0.041433 19 0.037457 3 0.037244 21 0.033344 12 0.024287 23 0.02163 13 0.012286 15 0.011678 14 0.004187 24 0.003267 0 0.086041 17 0.07887 9 0.065832 22 0.062367 11 0.058418 10 0.055517 18 0.055196 16 0.053023 6 0.045498 1 0.0429 8 0.042844 7 0.042822 2 0.04196 4 0.041897 5 0.041433 19 0.037457 3 0.037244 21 0.033344 12 0.024287 23 0.02163 13 0.012286 15 0.011678 14 0.004187 24 0.003267 0 0.07229966378005882 17 0.068883369856699 9 0.06173909581739801 22 0.060606648832767805 18 0.0530050221196985 11 0.05207728237236297 10 0.050109649302285085 16 0.046433266112596336 6 0.04498659205541192 8 0.04303813555222308 7 0.042992821925671866 4 0.04298887739300317 1 0.04295794718275624 5 0.04249348102341767 2 0.042214117917782644 19 0.03931145523037482 3 0.0391732863918883 21 0.0371175139474008 23 0.028374290780694148 12 0.024871040018122025 15 0.015239536874659766 24 0.014512502572596318 13 0.012944041610048918 14 0.009873650454140265 20 0.009747239175662625 __DUMMY__ 0.0020094717002786316 false 1.0 420 16 0.101616 17 0.094059 0 0.067729 19 0.062665 18 0.051077 15 0.048399 20 0.043171 22 0.040531 23 0.039825 6 0.037382 8 0.03634 9 0.035998 7 0.035963 1 0.035948 2 0.0356 24 0.034392 11 0.034309 4 0.032326 5 0.031854 3 0.03039 10 0.027038 12 0.02359 21 0.018749 13 0.001048 16 0.101616 17 0.094059 0 0.067729 19 0.062665 18 0.051077 15 0.048399 20 0.043171 22 0.040531 23 0.039825 6 0.037382 8 0.03634 9 0.035998 7 0.035963 1 0.035948 2 0.0356 24 0.034392 11 0.034309 4 0.032326 5 0.031854 3 0.03039 10 0.027038 12 0.02359 21 0.018749 13 0.001048 16 0.07930676552516365 17 0.07904287178155482 0 0.06080295624178368 19 0.05848731829399145 18 0.054550741154131596 22 0.0466192137759974 15 0.04299852091605443 9 0.04017006512470621 20 0.03997513899958943 11 0.03965873937131057 23 0.038601024834673335 10 0.035935036466142184 6 0.03524645052543459 8 0.03389931519999745 7 0.03364907740491187 1 0.033565253198686036 2 0.03316752058799019 24 0.032736757959733416 4 0.03223211456252384 5 0.03176877554615385 21 0.029983265742309122 3 0.029554556021840893 12 0.029140867559941865 14 0.013500318986560737 13 0.012706893420459803 __DUMMY__ 0.0027004407983577576 false 1.0 421 17 0.086271 16 0.082974 0 0.070558 19 0.057562 22 0.052132 18 0.051647 9 0.045887 11 0.044885 6 0.038643 8 0.036879 7 0.0367 1 0.03665 2 0.036296 4 0.034722 5 0.034424 23 0.034223 10 0.034072 3 0.031783 21 0.031559 20 0.030877 12 0.030759 24 0.027673 15 0.025712 13 0.007113 17 0.086271 16 0.082974 0 0.070558 19 0.057562 22 0.052132 18 0.051647 9 0.045887 11 0.044885 6 0.038643 8 0.036879 7 0.0367 1 0.03665 2 0.036296 4 0.034722 5 0.034424 23 0.034223 10 0.034072 3 0.031783 21 0.031559 20 0.030877 12 0.030759 24 0.027673 15 0.025712 13 0.007113 17 0.07717020471858206 16 0.06995943549093607 0 0.06595971518958275 19 0.05323976058953965 22 0.053185567254048396 18 0.05216803202676579 9 0.04781498292573839 11 0.04535841814859008 6 0.03929587006005998 10 0.03786117014136596 8 0.037544959148650775 7 0.037399512113633626 1 0.0373225574252347 2 0.03687346171446027 4 0.03645765969204062 5 0.03606747696600363 23 0.03530790102045486 21 0.03482523795671255 3 0.03324451438984521 12 0.030863798984116012 20 0.028834238865617923 24 0.027276954055681313 15 0.025364051363370034 13 0.011660878196545427 14 0.00678876860929765 __DUMMY__ 0.00215487295312631 false 1.0 663 16 0.104701 17 0.090871 19 0.077963 0 0.057153 22 0.056029 24 0.055607 20 0.052773 18 0.047861 21 0.046218 11 0.045973 23 0.045749 12 0.042465 15 0.032557 9 0.028598 6 0.027416 8 0.025564 1 0.025249 7 0.025229 2 0.02492 4 0.02474 5 0.024465 3 0.021354 10 0.012792 13 0.003753 16 0.104701 17 0.090871 19 0.077963 0 0.057153 22 0.056029 24 0.055607 20 0.052773 18 0.047861 21 0.046218 11 0.045973 23 0.045749 12 0.042465 15 0.032557 9 0.028598 6 0.027416 8 0.025564 1 0.025249 7 0.025229 2 0.02492 4 0.02474 5 0.024465 3 0.021354 10 0.012792 13 0.003753 16 0.07815968221904784 17 0.07558241748090488 19 0.06557021498877187 22 0.05536545657958065 0 0.05451921652458925 18 0.05173095800596787 11 0.045918687905834275 21 0.045535564278993426 24 0.04481819918863084 20 0.044271865382171545 23 0.04274798514590499 12 0.03925281159136023 9 0.036961626063651304 6 0.031223737576690096 15 0.030829393705854528 4 0.029701448987566846 8 0.029513390606611123 5 0.029326454611832562 7 0.029305202331073393 1 0.029243736484989246 2 0.028840163533117514 10 0.027563055521336758 3 0.026316677568226716 13 0.013095712813215416 14 0.01145928264885505 __DUMMY__ 0.0031470582552217646 false 1.0 664 19 0.096025 20 0.092183 21 0.089308 12 0.081017 18 0.07667 24 0.071008 22 0.060126 11 0.056791 23 0.054558 13 0.053667 16 0.053139 14 0.047567 10 0.043375 17 0.041901 15 0.025357 0 0.020946 9 0.017753 4 0.006866 5 0.006108 3 0.00282 6 0.002052 7 3.74E-4 8 3.58E-4 1 3.3E-5 19 0.096025 20 0.092183 21 0.089308 12 0.081017 18 0.07667 24 0.071008 22 0.060126 11 0.056791 23 0.054558 13 0.053667 16 0.053139 14 0.047567 10 0.043375 17 0.041901 15 0.025357 0 0.020946 9 0.017753 4 0.006866 5 0.006108 3 0.00282 6 0.002052 7 3.74E-4 8 3.58E-4 1 3.3E-5 21 0.0836220655098921 19 0.08340256002956 20 0.0760146289773541 12 0.07264443933670646 18 0.07071719414701308 24 0.06282470154907588 22 0.06189921394132518 11 0.05718071427847097 23 0.05127930609310122 13 0.04985987649846743 14 0.04618685897406447 16 0.045096327078264394 10 0.044039779354960784 17 0.04073272730769592 0 0.02526193297931871 9 0.025045523796125138 15 0.02438239317838626 4 0.013630810397806026 5 0.013028887760781526 6 0.009379483986053079 3 0.009277405196045882 7 0.007475348686654287 8 0.00742968072332916 1 0.007182194164329283 2 0.006995152483735595 __DUMMY__ 0.005410793571483118 false 1.0 422 15 0.160664 14 0.116149 18 0.077175 20 0.067376 10 0.066126 19 0.048898 13 0.046275 16 0.044585 17 0.040094 24 0.036778 23 0.034224 9 0.033648 22 0.02826 3 0.022117 5 0.020871 8 0.020287 4 0.02024 1 0.020137 7 0.019889 2 0.019858 6 0.018269 21 0.013716 0 0.013346 11 0.011017 15 0.160664 14 0.116149 18 0.077175 20 0.067376 10 0.066126 19 0.048898 13 0.046275 16 0.044585 17 0.040094 24 0.036778 23 0.034224 9 0.033648 22 0.02826 3 0.022117 5 0.020871 8 0.020287 4 0.02024 1 0.020137 7 0.019889 2 0.019858 6 0.018269 21 0.013716 0 0.013346 11 0.011017 15 0.10848998088115173 14 0.08859302210013031 18 0.07291786626904659 10 0.0610033563970492 20 0.06079438102687128 19 0.05368127801432772 13 0.04679633760019824 17 0.04125654860156828 16 0.04085826628084805 22 0.03997508423550505 24 0.03856317826430744 23 0.037411758946800586 9 0.035413347095886324 21 0.033747303787258535 11 0.02752845033892955 0 0.022864998368321926 12 0.022222004865997173 5 0.021957741690975943 4 0.02188014385248241 3 0.02116310868479763 8 0.020150401934306585 1 0.01993477103553534 7 0.0199187088530178 6 0.019828876017338955 2 0.019657765611843132 __DUMMY__ 0.0033913192455042014 false 1.0 423 15 0.157622 14 0.115275 18 0.076197 20 0.067967 10 0.066385 19 0.048684 13 0.045915 16 0.044728 17 0.038647 24 0.035235 9 0.034448 23 0.034255 22 0.028699 3 0.022187 4 0.021598 7 0.021486 5 0.021212 8 0.020942 1 0.020248 2 0.019952 6 0.019926 21 0.014384 0 0.01312 11 0.010886 15 0.157622 14 0.115275 18 0.076197 20 0.067967 10 0.066385 19 0.048684 13 0.045915 16 0.044728 17 0.038647 24 0.035235 9 0.034448 23 0.034255 22 0.028699 3 0.022187 4 0.021598 7 0.021486 5 0.021212 8 0.020942 1 0.020248 2 0.019952 6 0.019926 21 0.014384 0 0.01312 11 0.010886 15 0.10710738283821378 14 0.08819581260169515 18 0.0724733796509536 10 0.061121104592559254 20 0.06106302949604807 19 0.05358403530840461 13 0.04663273196426621 16 0.040923281094837206 17 0.04059887809612172 22 0.04017463632614458 24 0.03786187269313503 23 0.03742586604582579 9 0.03577697853807664 21 0.034050937940086325 11 0.027468920838207084 0 0.022762287425616402 4 0.0224973908475082 12 0.022222014966324664 5 0.02211274271248494 3 0.021194934646624156 7 0.020644585041194503 6 0.02058202331564577 8 0.02044812115770681 1 0.01998523172554876 2 0.0197004993498467 __DUMMY__ 0.003391320786923853 false 1.0 665 17 0.093637 16 0.091672 0 0.079427 19 0.069106 18 0.060589 11 0.059987 22 0.055628 12 0.046803 21 0.042322 10 0.042164 9 0.039715 20 0.033831 23 0.032928 6 0.027855 8 0.024524 24 0.024519 1 0.024369 7 0.024292 2 0.023758 4 0.023306 5 0.023029 15 0.021181 3 0.017928 13 0.01743 17 0.093637 16 0.091672 0 0.079427 19 0.069106 18 0.060589 11 0.059987 22 0.055628 12 0.046803 21 0.042322 10 0.042164 9 0.039715 20 0.033831 23 0.032928 6 0.027855 8 0.024524 24 0.024519 1 0.024369 7 0.024292 2 0.023758 4 0.023306 5 0.023029 15 0.021181 3 0.017928 13 0.01743 17 0.0786056038181672 16 0.07370753884789318 0 0.06686700196186593 19 0.060810947688616564 18 0.057428694949861185 22 0.05446240062061686 11 0.052362752233679054 9 0.04251303850489857 21 0.04212679164529901 10 0.04143618673829468 12 0.041025957074949645 23 0.03619389089400093 20 0.034160614634597165 6 0.03213312458612252 8 0.029638817020491367 7 0.029474686759606898 1 0.02945205241058992 4 0.029363074008503118 5 0.028990959356981764 2 0.028914731981510528 24 0.02858735398423299 15 0.025275439168393192 3 0.024969860307667034 13 0.019279979965896882 14 0.0100599934722467 __DUMMY__ 0.0021585073650172318 false 1.0 666 19 0.107293 18 0.079682 20 0.078745 16 0.07796 21 0.076269 22 0.066209 17 0.06342 11 0.062773 12 0.060631 24 0.055437 10 0.052308 23 0.046351 0 0.042179 14 0.031691 13 0.029556 9 0.026992 15 0.026389 4 0.005112 5 0.004247 3 0.00199 6 0.001776 7 0.00109 1 0.001004 8 8.97E-4 19 0.107293 18 0.079682 20 0.078745 16 0.07796 21 0.076269 22 0.066209 17 0.06342 11 0.062773 12 0.060631 24 0.055437 10 0.052308 23 0.046351 0 0.042179 14 0.031691 13 0.029556 9 0.026992 15 0.026389 4 0.005112 5 0.004247 3 0.00199 6 0.001776 7 0.00109 1 0.001004 8 8.97E-4 19 0.08864062545983233 21 0.07473555464596257 18 0.07185844677099847 20 0.06728805588779119 22 0.06488168079812395 11 0.06006561966888146 12 0.06004291295453354 16 0.05964629237327173 17 0.05390964472452896 24 0.05314650636661948 10 0.04866248343801226 23 0.046398875646462244 0 0.03850824474218128 14 0.03551916723316017 13 0.03498726813767021 9 0.030802303684639744 15 0.02442359511238604 4 0.01353549832935663 5 0.012892881051772855 6 0.010335860998107585 3 0.009752881470138721 7 0.008953853265735931 8 0.008832986040088512 1 0.008783620029424665 2 0.008131881481297027 __DUMMY__ 0.005263259689022599 false 1.0 424 16 0.115156 17 0.09539 19 0.084947 20 0.068272 18 0.060394 0 0.058786 12 0.049513 24 0.047896 23 0.047765 22 0.041191 11 0.038636 15 0.038477 21 0.035164 6 0.023687 10 0.021941 8 0.021653 7 0.021125 1 0.020903 9 0.020735 2 0.020412 4 0.019166 5 0.018487 13 0.015202 3 0.015103 16 0.115156 17 0.09539 19 0.084947 20 0.068272 18 0.060394 0 0.058786 12 0.049513 24 0.047896 23 0.047765 22 0.041191 11 0.038636 15 0.038477 21 0.035164 6 0.023687 10 0.021941 8 0.021653 7 0.021125 1 0.020903 9 0.020735 2 0.020412 4 0.019166 5 0.018487 13 0.015202 3 0.015103 16 0.08822826788128121 17 0.08127966840767109 19 0.07085967150906541 18 0.05903389799866968 0 0.057335236273973786 20 0.05284461509833684 22 0.04737838579716339 23 0.04284615377915518 11 0.04244514033883497 12 0.04220133780200231 24 0.04009955000567181 21 0.038318165109257424 15 0.03634787918474607 10 0.0324611610056758 9 0.03225074144779093 6 0.02833201386711725 8 0.02647600724923865 7 0.02616331782552155 1 0.025981543580762986 2 0.025512728095760377 4 0.025490943195393374 5 0.02492380002220041 3 0.02176876646881164 13 0.018002921771515405 14 0.010920624735020203 __DUMMY__ 0.002497461549362364 false 1.0 425 18 0.099531 19 0.086432 10 0.081084 20 0.079196 14 0.065073 21 0.06164 22 0.054786 12 0.054728 11 0.05472 13 0.054663 15 0.053721 16 0.049662 17 0.049489 24 0.038114 0 0.037818 23 0.033709 9 0.032869 4 0.004329 5 0.004147 6 0.001667 3 0.001407 7 5.16E-4 8 3.98E-4 1 3.03E-4 18 0.099531 19 0.086432 10 0.081084 20 0.079196 14 0.065073 21 0.06164 22 0.054786 12 0.054728 11 0.05472 13 0.054663 15 0.053721 16 0.049662 17 0.049489 24 0.038114 0 0.037818 23 0.033709 9 0.032869 4 0.004329 5 0.004147 6 0.001667 3 0.001407 7 5.16E-4 8 3.98E-4 1 3.03E-4 18 0.08906702498416336 19 0.07563797634447299 10 0.07496006059844218 20 0.06530762206651906 21 0.06209782601832382 14 0.06097649247423276 22 0.05884412370839975 11 0.05523161403489618 12 0.04973161316125513 13 0.04883615019042496 15 0.04760175152888855 17 0.04643675919238007 16 0.040803945201531605 0 0.03866839044614004 9 0.03862496092909187 24 0.0367079302154915 23 0.034387448052700616 4 0.012248802867193109 5 0.011933847655533441 6 0.009282289221065889 3 0.008974408089361023 7 0.007960590899004917 8 0.007897876423008408 1 0.007747667204640817 2 0.007436238866537826 __DUMMY__ 0.002596589626300037 false 1.0 667 19 0.106929 18 0.07927 20 0.07846 16 0.078047 21 0.07639 22 0.066462 17 0.063106 11 0.063079 12 0.060911 24 0.055857 10 0.052205 23 0.046633 0 0.042231 14 0.032088 13 0.029332 9 0.026805 15 0.026363 4 0.005155 5 0.004475 3 0.001994 6 0.001683 8 0.001005 7 8.28E-4 1 6.93E-4 19 0.106929 18 0.07927 20 0.07846 16 0.078047 21 0.07639 22 0.066462 17 0.063106 11 0.063079 12 0.060911 24 0.055857 10 0.052205 23 0.046633 0 0.042231 14 0.032088 13 0.029332 9 0.026805 15 0.026363 4 0.005155 5 0.004475 3 0.001994 6 0.001683 8 0.001005 7 8.28E-4 1 6.93E-4 19 0.08847355837155713 21 0.07479109068354853 18 0.07166934885789578 20 0.06715724786537791 22 0.06499780160398555 11 0.06020606617715676 12 0.0601714260993606 16 0.05968622324327157 17 0.05376552641211574 24 0.05333927608386009 10 0.04861520895973659 23 0.046528306742323784 0 0.03853211146907773 14 0.03570138051350427 13 0.03488445762180855 9 0.030716475262915946 15 0.024411661748937812 4 0.01355523427659793 5 0.012997527469703472 6 0.010293176275004309 3 0.009754717372207684 8 0.008882555395950386 7 0.008833601680219171 1 0.008640878643563166 2 0.008131881481297024 __DUMMY__ 0.005263259689022599 false 1.0 668 19 0.107263 18 0.079188 20 0.078435 16 0.077968 21 0.076248 22 0.066545 11 0.06346 17 0.063402 12 0.060958 24 0.05664 10 0.051929 23 0.045831 0 0.042324 14 0.032179 13 0.029346 9 0.026638 15 0.026312 4 0.005111 5 0.004736 3 0.002007 6 0.001583 8 8.07E-4 1 5.65E-4 7 5.27E-4 19 0.107263 18 0.079188 20 0.078435 16 0.077968 21 0.076248 22 0.066545 11 0.06346 17 0.063402 12 0.060958 24 0.05664 10 0.051929 23 0.045831 0 0.042324 14 0.032179 13 0.029346 9 0.026638 15 0.026312 4 0.005111 5 0.004736 3 0.002007 6 0.001583 8 8.07E-4 1 5.65E-4 7 5.27E-4 19 0.08862681551677662 21 0.07472588186275023 18 0.07163167998829476 20 0.06714574265919496 22 0.06503586672204587 11 0.060380908135866475 12 0.06019297032157118 16 0.05964993679954905 17 0.05390135842581478 24 0.053698629267502504 10 0.048488509461939756 23 0.046160187191101876 0 0.0385747784873021 14 0.03574313088035108 13 0.03489086726499605 9 0.030639812288613247 15 0.024388242803952236 4 0.013535033141590552 5 0.013117314059176982 6 0.010247274020032459 3 0.009760679574018839 8 0.008791674208373738 7 0.008695446058533214 1 0.008582125838370858 2 0.008131877748964227 __DUMMY__ 0.005263257273316369 false 1.0 426 16 0.135461 17 0.121838 15 0.101745 19 0.084553 18 0.081824 0 0.07191 20 0.058215 10 0.043733 22 0.039339 11 0.034203 14 0.032966 9 0.027849 23 0.02784 12 0.023398 24 0.021354 13 0.016288 6 0.013336 21 0.013293 1 0.010906 8 0.010332 7 0.010197 2 0.008074 4 0.006389 5 0.004958 16 0.135461 17 0.121838 15 0.101745 19 0.084553 18 0.081824 0 0.07191 20 0.058215 10 0.043733 22 0.039339 11 0.034203 14 0.032966 9 0.027849 23 0.02784 12 0.023398 24 0.021354 13 0.016288 6 0.013336 21 0.013293 1 0.010906 8 0.010332 7 0.010197 2 0.008074 4 0.006389 5 0.004958 16 0.0937372564324162 17 0.09044845478876017 15 0.0710385367158928 18 0.07008147179191329 19 0.06876523576518363 0 0.061257103825309495 20 0.0482057564624385 22 0.04568621581885326 10 0.04536621651025559 11 0.039576401384982474 9 0.035759568352673944 14 0.032876231083862284 23 0.03276802102291677 12 0.02961926844997853 21 0.02791595906954885 24 0.026725671244547704 6 0.022827466121220247 13 0.022388983349818842 1 0.020675239324299516 8 0.020567688016348305 7 0.020427675934097323 2 0.019151457348759893 4 0.019103563601982537 5 0.01821396839092542 3 0.014353583785149773 __DUMMY__ 0.0024630054078648485 false 1.0 669 17 0.101861 16 0.099045 0 0.086089 18 0.080713 19 0.078825 11 0.063231 12 0.057262 10 0.054705 22 0.054486 20 0.042977 21 0.04082 9 0.035099 23 0.034518 13 0.027885 15 0.020551 6 0.019461 24 0.014614 8 0.014335 7 0.01407 4 0.013876 1 0.013626 2 0.013465 5 0.01297 3 0.005514 17 0.101861 16 0.099045 0 0.086089 18 0.080713 19 0.078825 11 0.063231 12 0.057262 10 0.054705 22 0.054486 20 0.042977 21 0.04082 9 0.035099 23 0.034518 13 0.027885 15 0.020551 6 0.019461 24 0.014614 8 0.014335 7 0.01407 4 0.013876 1 0.013626 2 0.013465 5 0.01297 3 0.005514 17 0.07807169855901076 16 0.07178302863369888 18 0.06768771815318284 0 0.06627148636591612 19 0.06529001754247968 22 0.05499553200794772 11 0.05319325440808288 10 0.04818610111660971 12 0.04513122962388709 21 0.043557579559490626 9 0.04104597791153525 20 0.04027944046563018 23 0.03793742094471307 6 0.02803482889010112 24 0.026307048761026713 4 0.025567461806033503 8 0.024991314964904345 5 0.024892692179245494 7 0.02484909530172772 15 0.02462655639194532 1 0.024568319584445657 2 0.024220959835411043 13 0.02409972966570904 3 0.020092427923864082 14 0.012526310846561832 __DUMMY__ 0.0017927685568390982 false 1.0 427 14 0.104329 10 0.09909 18 0.096593 15 0.080149 19 0.065838 22 0.065615 13 0.064876 21 0.064079 11 0.061842 20 0.054944 9 0.046865 12 0.040207 0 0.03613 17 0.035983 24 0.025707 16 0.022253 23 0.017818 4 0.006419 5 0.005591 3 0.003101 6 0.001709 7 4.59E-4 8 3.74E-4 1 2.9E-5 14 0.104329 10 0.09909 18 0.096593 15 0.080149 19 0.065838 22 0.065615 13 0.064876 21 0.064079 11 0.061842 20 0.054944 9 0.046865 12 0.040207 0 0.03613 17 0.035983 24 0.025707 16 0.022253 23 0.017818 4 0.006419 5 0.005591 3 0.003101 6 0.001709 7 4.59E-4 8 3.74E-4 1 2.9E-5 18 0.08660171871269354 10 0.0837348078443125 14 0.08274316704760941 19 0.06348479625953471 22 0.06310562022250724 15 0.06287241720593353 21 0.06276819665656291 11 0.05849818328566424 13 0.05658745991184007 20 0.05206708729402154 9 0.04514922235127165 12 0.04332731800359278 17 0.03900674618140378 0 0.03750788223005797 24 0.029598928690879826 16 0.026364131393836015 23 0.026179882912859317 4 0.01339900170962225 5 0.012807629020972398 3 0.009811056226304637 6 0.009606235826414969 7 0.008109031475394574 8 0.008079390226086947 1 0.007817071128837392 2 0.007647719162406291 __DUMMY__ 0.003125299019379349 false 1.0 428 15 0.160973 14 0.116391 18 0.076582 20 0.067425 10 0.066295 19 0.048628 13 0.046107 16 0.04445 17 0.039701 24 0.036677 23 0.034263 9 0.033274 22 0.028629 3 0.022458 5 0.020582 8 0.020466 4 0.020394 7 0.020239 2 0.020201 1 0.020082 6 0.018423 21 0.013674 0 0.013219 11 0.010867 15 0.160973 14 0.116391 18 0.076582 20 0.067425 10 0.066295 19 0.048628 13 0.046107 16 0.04445 17 0.039701 24 0.036677 23 0.034263 9 0.033274 22 0.028629 3 0.022458 5 0.020582 8 0.020466 4 0.020394 7 0.020239 2 0.020201 1 0.020082 6 0.018423 21 0.013674 0 0.013219 11 0.010867 15 0.10867445501693927 14 0.08890631403765285 18 0.07266257419719674 10 0.0611545186686944 20 0.06084115910252395 19 0.05349621733964211 13 0.04685060099443548 17 0.04086052111987762 16 0.04053463882141427 22 0.04015503744089038 24 0.03855689612829907 23 0.03744879135664061 9 0.035253974798199014 21 0.03381405996002909 11 0.027457190677498744 0 0.022663109333969048 12 0.022250522124973377 4 0.02196035575167165 5 0.021838389876553167 3 0.02133498749836642 8 0.020220369780186088 7 0.02006700840007252 1 0.01989795299667688 6 0.019882754067531993 2 0.019805453271665028 __DUMMY__ 0.003412147238400525 false 1.0 429 15 0.122811 14 0.122106 20 0.089074 18 0.086718 10 0.072271 13 0.067377 19 0.067183 24 0.054102 21 0.051678 22 0.041968 23 0.039675 12 0.035039 16 0.028208 11 0.028027 9 0.025527 17 0.021705 3 0.008939 4 0.008793 5 0.008353 7 0.004675 8 0.004477 1 0.004155 2 0.003897 6 0.003241 15 0.122811 14 0.122106 20 0.089074 18 0.086718 10 0.072271 13 0.067377 19 0.067183 24 0.054102 21 0.051678 22 0.041968 23 0.039675 12 0.035039 16 0.028208 11 0.028027 9 0.025527 17 0.021705 3 0.008939 4 0.008793 5 0.008353 7 0.004675 8 0.004477 1 0.004155 2 0.003897 6 0.003241 14 0.09029472554667817 15 0.08493068001145082 18 0.07865022874843094 20 0.07483889297758553 19 0.06635887728639593 10 0.06323928775046651 13 0.05788650106085284 21 0.057565318673160816 24 0.05056504864783268 22 0.04884194988788137 12 0.04359536789596842 23 0.04179497707712406 11 0.03830957274910924 16 0.0321312536101382 17 0.030577658083127852 9 0.02985281418757119 4 0.014698428561169232 0 0.014348628973916864 5 0.014272185485673081 3 0.01294556052453494 6 0.010336913325243778 7 0.010257999009446964 8 0.010180857165232203 1 0.009902012430946934 2 0.009645021989710548 __DUMMY__ 0.003979238340350862 false 1.0 670 21 0.103232 22 0.092668 11 0.088093 19 0.076978 12 0.067947 18 0.06732 10 0.053052 24 0.053004 17 0.046164 20 0.044404 9 0.044099 0 0.043923 14 0.039082 13 0.036379 23 0.034272 16 0.033957 4 0.01502 5 0.014609 6 0.009501 3 0.00936 7 0.007033 1 0.00683 8 0.006753 2 0.006322 21 0.103232 22 0.092668 11 0.088093 19 0.076978 12 0.067947 18 0.06732 10 0.053052 24 0.053004 17 0.046164 20 0.044404 9 0.044099 0 0.043923 14 0.039082 13 0.036379 23 0.034272 16 0.033957 4 0.01502 5 0.014609 6 0.009501 3 0.00936 7 0.007033 1 0.00683 8 0.006753 2 0.006322 21 0.09193513839986985 22 0.08274311561825944 11 0.07710841725083137 19 0.07029790822499277 18 0.06437295774507223 12 0.06340500671831595 24 0.050629848759679526 10 0.04997975151362161 20 0.04444134001225823 17 0.04377060910500761 9 0.04256970553731053 0 0.04063949441416515 14 0.039643389549332636 23 0.03827032534126962 13 0.03795019948425614 16 0.032316890697066086 4 0.019614135402443413 5 0.01915270324977654 6 0.014970641397656201 3 0.014235526585444925 7 0.012581790891907372 8 0.012388507459803995 1 0.012324880026214988 2 0.011860257766623918 15 0.00744324521183127 __DUMMY__ 0.005354213636988622 false 1.0 671 21 0.107465 22 0.090149 11 0.086973 19 0.085236 12 0.076171 18 0.072227 24 0.056689 20 0.05534 10 0.054076 17 0.045958 13 0.042728 14 0.041201 0 0.040756 9 0.038791 16 0.037595 23 0.036846 4 0.009766 5 0.00946 6 0.004221 3 0.003644 7 0.001501 1 0.001361 8 0.00122 2 6.27E-4 21 0.107465 22 0.090149 11 0.086973 19 0.085236 12 0.076171 18 0.072227 24 0.056689 20 0.05534 10 0.054076 17 0.045958 13 0.042728 14 0.041201 0 0.040756 9 0.038791 16 0.037595 23 0.036846 4 0.009766 5 0.00946 6 0.004221 3 0.003644 7 0.001501 1 0.001361 8 0.00122 2 6.27E-4 21 0.09441748676661828 22 0.08029478396415872 11 0.07589513930010257 19 0.0749767689318455 12 0.06943335702285663 18 0.06692804565168638 24 0.0532149494847265 20 0.05156725361919284 10 0.050049762087658836 13 0.04324145624827417 17 0.042989600250119754 14 0.04169838635057433 23 0.04039739652972288 9 0.038535066949339156 0 0.03794235273648061 16 0.03442167610229049 4 0.016402444431566805 5 0.01599307172948788 6 0.01177499685198423 3 0.010705304740062871 7 0.009180469806674226 8 0.008987333645592692 1 0.008958715330887148 2 0.008403309208434082 15 0.00799715409508197 __DUMMY__ 0.005593718164580678 false 1.0 430 14 0.104581 13 0.103038 10 0.098755 18 0.088554 12 0.072035 11 0.069944 21 0.066572 15 0.06402 22 0.053218 19 0.050923 0 0.043472 20 0.041911 9 0.040526 17 0.0314 23 0.019547 16 0.015881 24 0.008773 4 0.007374 5 0.00716 6 0.006087 1 0.00169 8 0.001658 7 0.001602 2 0.001282 14 0.104581 13 0.103038 10 0.098755 18 0.088554 12 0.072035 11 0.069944 21 0.066572 15 0.06402 22 0.053218 19 0.050923 0 0.043472 20 0.041911 9 0.040526 17 0.0314 23 0.019547 16 0.015881 24 0.008773 4 0.007374 5 0.00716 6 0.006087 1 0.00169 8 0.001658 7 0.001602 2 0.001282 14 0.08459465567230502 13 0.08300514368130597 10 0.08171834024418324 18 0.07983672638708972 21 0.06661041157422536 12 0.06608705773786967 11 0.06398267052818955 22 0.05561192139754025 19 0.053460665644660045 15 0.05226439368826667 20 0.043955591991356624 0 0.04051173629066153 9 0.04004154272187077 17 0.03463773071828746 23 0.027971608163091657 16 0.02114271887433372 24 0.02081982395774946 4 0.013896430595050614 5 0.013601235539398186 6 0.012154109190983172 8 0.008458258550277875 7 0.008419479484084297 1 0.008394222367586574 2 0.008058365293913346 3 0.0074570726586988545 __DUMMY__ 0.003308087047020359 false 1.0 672 22 0.081244 9 0.07039 18 0.068111 0 0.066244 17 0.06275 11 0.058941 21 0.058011 10 0.057033 19 0.05304 4 0.03829 5 0.037519 6 0.036474 8 0.035534 7 0.03542 1 0.035145 3 0.035033 2 0.034483 16 0.030226 23 0.02666 24 0.024092 12 0.02311 20 0.018097 14 0.01058 13 0.003572 22 0.081244 9 0.07039 18 0.068111 0 0.066244 17 0.06275 11 0.058941 21 0.058011 10 0.057033 19 0.05304 4 0.03829 5 0.037519 6 0.036474 8 0.035534 7 0.03542 1 0.035145 3 0.035033 2 0.034483 16 0.030226 23 0.02666 24 0.024092 12 0.02311 20 0.018097 14 0.01058 13 0.003572 22 0.07470041306464152 9 0.0628233118546297 18 0.061291188724167965 21 0.05807688082398864 0 0.057668770896453024 11 0.05663651841070686 17 0.05586053841486609 10 0.05193301273753858 19 0.05042574616224191 4 0.03834387137409569 5 0.03767792791955036 6 0.03638174842872182 8 0.035288471756769677 7 0.0352169292050339 3 0.035049548329303834 1 0.03496199404496087 2 0.03437810621930026 23 0.03153933855791233 16 0.030038957145888025 24 0.02974657531484359 12 0.028407470570744622 20 0.022216564714222276 14 0.01881899303347547 13 0.011837820031555863 15 0.008529576980482775 __DUMMY__ 0.002149725283904256 false 1.0 673 21 0.115739 22 0.088295 19 0.087648 12 0.079115 24 0.077593 11 0.07316 20 0.070022 18 0.066731 14 0.055477 13 0.049503 23 0.047834 10 0.03776 17 0.031394 9 0.031133 16 0.028095 0 0.017791 15 0.013531 4 0.010219 5 0.009957 3 0.005595 6 0.002027 8 6.79E-4 1 4.14E-4 7 2.86E-4 21 0.115739 22 0.088295 19 0.087648 12 0.079115 24 0.077593 11 0.07316 20 0.070022 18 0.066731 14 0.055477 13 0.049503 23 0.047834 10 0.03776 17 0.031394 9 0.031133 16 0.028095 0 0.017791 15 0.013531 4 0.010219 5 0.009957 3 0.005595 6 0.002027 8 6.79E-4 1 4.14E-4 7 2.86E-4 21 0.09605157332861203 22 0.07534743010776 19 0.07420128096265877 12 0.07300997657191186 11 0.06655336766848968 18 0.0638984670633836 24 0.06222309059457358 20 0.0595640557117612 13 0.051649572021347276 14 0.05161145651522392 23 0.04649465617781872 10 0.04225049656461976 17 0.03463407741975264 9 0.03306088515192192 16 0.029303987857747932 0 0.025570172565931668 15 0.01773823202766041 4 0.016721931000319174 5 0.016342958400783748 3 0.011530827126484271 6 0.01122289979637339 8 0.009026666244326936 7 0.008865208505241645 1 0.008808221912537526 2 0.008436240078761623 __DUMMY__ 0.005882268623996695 false 1.0 431 16 0.09942 17 0.084442 19 0.06611 15 0.06207 20 0.057787 0 0.052116 24 0.049419 18 0.049263 23 0.048458 8 0.036377 6 0.035911 7 0.035764 1 0.035651 2 0.035524 22 0.035307 4 0.032426 3 0.032283 5 0.032252 9 0.02767 11 0.026197 12 0.020772 10 0.019645 21 0.017352 14 0.007785 16 0.09942 17 0.084442 19 0.06611 15 0.06207 20 0.057787 0 0.052116 24 0.049419 18 0.049263 23 0.048458 8 0.036377 6 0.035911 7 0.035764 1 0.035651 2 0.035524 22 0.035307 4 0.032426 3 0.032283 5 0.032252 9 0.02767 11 0.026197 12 0.020772 10 0.019645 21 0.017352 14 0.007785 16 0.07538531551157694 17 0.07019101750788168 19 0.06229305423400371 18 0.056031995915910286 15 0.05429347288213267 20 0.052532531242462814 0 0.04783341897251364 23 0.04424996329691976 22 0.043559273545687234 24 0.043547666752559416 11 0.03454354861414968 9 0.03393724447913978 10 0.033599261747931576 6 0.03182027973804767 21 0.03164108890966151 8 0.031401618676126966 7 0.031056519287160262 1 0.030912949054677827 2 0.030653850777053668 4 0.030304255532041996 5 0.02998434259465705 12 0.0291459190980674 3 0.02871827683769536 14 0.023722349133444894 13 0.015529267396111053 __DUMMY__ 0.003111518262385176 false 1.0 432 15 0.160334 14 0.116447 18 0.077616 20 0.067875 10 0.066414 19 0.048528 13 0.046253 16 0.045245 17 0.040489 24 0.036661 23 0.034815 9 0.032445 22 0.029141 3 0.021875 4 0.020159 5 0.020152 8 0.019988 2 0.019615 7 0.019556 1 0.019504 6 0.018067 0 0.014416 21 0.013709 11 0.010695 15 0.160334 14 0.116447 18 0.077616 20 0.067875 10 0.066414 19 0.048528 13 0.046253 16 0.045245 17 0.040489 24 0.036661 23 0.034815 9 0.032445 22 0.029141 3 0.021875 4 0.020159 5 0.020152 8 0.019988 2 0.019615 7 0.019556 1 0.019504 6 0.018067 0 0.014416 21 0.013709 11 0.010695 15 0.10838592322364973 14 0.08895858155671993 18 0.073140402557607 10 0.0612258794415696 20 0.0610411547966213 19 0.05344375992448041 13 0.04694011139604037 17 0.04119877024346484 16 0.04086571308483921 22 0.04039330466023766 24 0.03854311382943284 23 0.03769558604185678 9 0.03488226606097023 21 0.033843556445323886 11 0.02738584169574853 0 0.023198267700291042 12 0.022259451406333494 4 0.021850693013093222 5 0.02164008166747432 3 0.021065709880126543 8 0.019997072589241733 7 0.019750711390611853 6 0.019715787899272814 1 0.019629400739508404 2 0.019533252250440017 __DUMMY__ 0.003415606505044092 false 1.0 674 21 0.082813 22 0.069472 12 0.061343 11 0.061085 18 0.055365 10 0.051617 9 0.051101 13 0.049995 23 0.044869 14 0.043436 19 0.041677 24 0.041476 4 0.03646 5 0.035764 0 0.034154 6 0.03226 3 0.03046 20 0.030401 7 0.029599 8 0.029456 1 0.029183 2 0.02863 17 0.024844 15 0.00454 21 0.082813 22 0.069472 12 0.061343 11 0.061085 18 0.055365 10 0.051617 9 0.051101 13 0.049995 23 0.044869 14 0.043436 19 0.041677 24 0.041476 4 0.03646 5 0.035764 0 0.034154 6 0.03226 3 0.03046 20 0.030401 7 0.029599 8 0.029456 1 0.029183 2 0.02863 17 0.024844 15 0.00454 21 0.07633355463120443 22 0.06419403003282993 12 0.06346391610418813 11 0.05977174415052381 18 0.05627821552312102 13 0.053341197194143194 10 0.050085616489001956 19 0.046033320353265336 9 0.04527513747408727 14 0.04450398514343522 23 0.04384061987010678 24 0.03984552265162773 0 0.03643553756027592 20 0.03461468778627352 4 0.03260466557285523 5 0.03206238043840461 17 0.031451432466934014 6 0.029665474927816578 7 0.02662992294178764 3 0.026549353097626294 8 0.026547862984780107 1 0.026380699772080903 2 0.025937561389605908 16 0.013020216848650316 15 0.011969446957225361 __DUMMY__ 0.0031638976381487835 false 1.0 675 20 0.119061 19 0.111183 24 0.090501 18 0.08037 21 0.073957 23 0.070646 16 0.063548 12 0.058644 22 0.052637 15 0.04851 14 0.047471 11 0.037567 10 0.037119 17 0.034932 13 0.029443 4 0.008744 3 0.008485 5 0.008308 9 0.007769 8 0.002838 7 0.002642 1 0.002064 2 0.002054 6 0.001505 20 0.119061 19 0.111183 24 0.090501 18 0.08037 21 0.073957 23 0.070646 16 0.063548 12 0.058644 22 0.052637 15 0.04851 14 0.047471 11 0.037567 10 0.037119 17 0.034932 13 0.029443 4 0.008744 3 0.008485 5 0.008308 9 0.007769 8 0.002838 7 0.002642 1 0.002064 2 0.002054 6 0.001505 20 0.09117422277060172 19 0.09081149803919687 18 0.07494315211831146 24 0.07231275364904352 21 0.07181049704076409 23 0.05886430341983494 22 0.05706652522083595 12 0.05545854749945977 16 0.04992463240527671 14 0.048416991240819884 11 0.04452576134491816 10 0.04330313015351319 15 0.042087943577787355 17 0.037109077624840926 13 0.03447076638754008 9 0.021192915631317498 4 0.01516332083982175 5 0.014709804632589453 0 0.013605744692437156 3 0.013391165600477645 8 0.009532005663280019 6 0.009473991533903369 7 0.009461531609372482 1 0.009043045213315448 2 0.008902248650018454 __DUMMY__ 0.0032444234407221907 false 1.0 433 14 0.109401 18 0.099956 10 0.099898 15 0.091479 13 0.065255 19 0.064781 22 0.061903 20 0.059655 21 0.059449 11 0.055344 9 0.045143 12 0.036481 17 0.034707 0 0.032118 24 0.024666 16 0.021538 23 0.020736 4 0.005828 5 0.005351 3 0.003142 6 0.001385 7 8.74E-4 8 6.28E-4 1 2.8E-4 14 0.109401 18 0.099956 10 0.099898 15 0.091479 13 0.065255 19 0.064781 22 0.061903 20 0.059655 21 0.059449 11 0.055344 9 0.045143 12 0.036481 17 0.034707 0 0.032118 24 0.024666 16 0.021538 23 0.020736 4 0.005828 5 0.005351 3 0.003142 6 0.001385 7 8.74E-4 8 6.28E-4 1 2.8E-4 14 0.08841175473175615 18 0.08758131353944472 10 0.08403809510141644 15 0.07302136581059882 19 0.0612019815620337 22 0.05931760410099223 21 0.05847461749544885 13 0.05835207192182347 20 0.05446450230030269 11 0.05321279348534406 9 0.043851337412860354 12 0.040359144359407455 17 0.037273301471601544 0 0.034085230029496094 24 0.028868805369620738 23 0.027715356162089488 16 0.025254084326818617 4 0.013570458344855122 5 0.013153104085866273 3 0.010413054714003415 6 0.009978966163745223 7 0.00889531918787597 8 0.008805221584131835 1 0.00853402883977791 2 0.008258054509624252 __DUMMY__ 0.002908433389064525 false 1.0 676 20 0.103324 19 0.09941 21 0.084581 12 0.079159 18 0.078392 24 0.077275 23 0.059879 16 0.056143 22 0.053372 13 0.05284 14 0.048956 11 0.048215 10 0.040501 17 0.039781 15 0.032901 0 0.013513 9 0.012943 4 0.006629 5 0.005982 3 0.003161 6 0.001791 8 5.13E-4 7 5.01E-4 1 2.38E-4 20 0.103324 19 0.09941 21 0.084581 12 0.079159 18 0.078392 24 0.077275 23 0.059879 16 0.056143 22 0.053372 13 0.05284 14 0.048956 11 0.048215 10 0.040501 17 0.039781 15 0.032901 0 0.013513 9 0.012943 4 0.006629 5 0.005982 3 0.003161 6 0.001791 8 5.13E-4 7 5.01E-4 1 2.38E-4 19 0.08587517446677101 20 0.08382341689197685 21 0.07964201238343445 18 0.07253089840292236 12 0.06982353646612298 24 0.06689925944777465 22 0.05746677114829707 23 0.054271938040246416 11 0.05094063156792101 13 0.04838639349809839 14 0.04793348272060512 16 0.04722227858952947 10 0.04282543716005507 17 0.03948705223872421 15 0.031134983453940585 9 0.02219867960044477 0 0.02021652156567154 4 0.013367216048742272 5 0.012811947802606295 3 0.009654383742610868 6 0.008982177706654545 7 0.007519084198741738 8 0.007499614710807879 1 0.007260933456547765 2 0.006987087464776062 __DUMMY__ 0.005239087225976373 false 1.0 434 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.08567217892528625 10 0.08076909694147748 21 0.07135269546559421 11 0.07021844646101014 19 0.06952429178634414 22 0.06895573911819788 14 0.05666456441411142 12 0.055539761974262664 13 0.052203746097355966 0 0.05151378569155894 17 0.04917380612343105 9 0.046680773243781566 20 0.04648653115082848 16 0.03485518248460838 15 0.030844667133732438 23 0.02704704350594785 24 0.025743641010816814 4 0.012896133940654851 5 0.01253864550198154 6 0.01038226882977405 3 0.00782041561475938 7 0.007781015363822947 8 0.007672889346361958 1 0.007590901163369006 2 0.0072107795893808216 __DUMMY__ 0.002860999121550002 false 1.0 435 15 0.125241 14 0.112611 20 0.097947 18 0.084913 19 0.071856 13 0.064872 10 0.063736 24 0.058663 23 0.044745 21 0.043183 16 0.041236 12 0.036284 22 0.032456 17 0.027878 11 0.0202 9 0.018751 3 0.00938 4 0.009066 5 0.008533 8 0.00626 7 0.006227 1 0.005624 2 0.005371 6 0.004966 15 0.125241 14 0.112611 20 0.097947 18 0.084913 19 0.071856 13 0.064872 10 0.063736 24 0.058663 23 0.044745 21 0.043183 16 0.041236 12 0.036284 22 0.032456 17 0.027878 11 0.0202 9 0.018751 3 0.00938 4 0.009066 5 0.008533 8 0.00626 7 0.006227 1 0.005624 2 0.005371 6 0.004966 15 0.08805442948168858 14 0.0863254054107165 20 0.0795919829363735 18 0.07795114555346422 19 0.06844747357349974 10 0.05915757748956132 13 0.05648169961700626 24 0.05263388646520293 21 0.05216511890621187 23 0.04427322567948314 22 0.04337936968311999 12 0.0432411492345241 16 0.0389943850196628 17 0.033809286995695076 11 0.03340267396888702 9 0.02642377512019822 4 0.01488935405554833 5 0.014422896681764307 0 0.014089109602376271 3 0.013329426256779997 6 0.011297603604778685 8 0.011242138882858042 7 0.011204718374818538 1 0.010811348317313126 2 0.010556571461584415 __DUMMY__ 0.0038242476268831255 false 1.0 677 21 0.104417 12 0.099004 23 0.077977 13 0.07656 11 0.069223 24 0.06661 22 0.062886 19 0.045247 14 0.044087 5 0.034354 20 0.034271 4 0.032933 6 0.030571 2 0.027686 1 0.025686 3 0.025633 18 0.024692 7 0.024398 8 0.023505 17 0.021536 16 0.016136 0 0.014817 9 0.011414 15 0.006354 21 0.104417 12 0.099004 23 0.077977 13 0.07656 11 0.069223 24 0.06661 22 0.062886 19 0.045247 14 0.044087 5 0.034354 20 0.034271 4 0.032933 6 0.030571 2 0.027686 1 0.025686 3 0.025633 18 0.024692 7 0.024398 8 0.023505 17 0.021536 16 0.016136 0 0.014817 9 0.011414 15 0.006354 21 0.09048506755434876 12 0.08279268361059393 13 0.06421790369031981 11 0.06367492213874752 23 0.062811456652061 22 0.06263457207875636 24 0.057829616956875954 19 0.05279145631000881 14 0.04464982019460278 18 0.041887315634561245 20 0.04162254391721894 17 0.02932044483279676 5 0.029311433545915633 4 0.028952321431570466 6 0.02632214121202484 0 0.023353690386910923 9 0.023207902470894944 16 0.02300960892906097 2 0.02294685378627369 3 0.02228224538358687 1 0.02223460589735187 7 0.021786053403641113 10 0.021654844586611252 8 0.02133249266239358 15 0.013022490505580867 __DUMMY__ 0.005865512227291038 false 1.0 436 20 0.103383 19 0.099982 21 0.084878 12 0.079574 18 0.078347 24 0.07743 23 0.060006 16 0.056704 22 0.05367 13 0.053269 14 0.048881 11 0.047915 10 0.039723 17 0.039637 15 0.033437 0 0.013282 9 0.012712 4 0.006204 5 0.005848 3 0.00321 6 0.00138 8 2.73E-4 7 2.49E-4 2 7.0E-6 20 0.103383 19 0.099982 21 0.084878 12 0.079574 18 0.078347 24 0.07743 23 0.060006 16 0.056704 22 0.05367 13 0.053269 14 0.048881 11 0.047915 10 0.039723 17 0.039637 15 0.033437 0 0.013282 9 0.012712 4 0.006204 5 0.005848 3 0.00321 6 0.00138 8 2.73E-4 7 2.49E-4 2 7.0E-6 19 0.0867936731120586 20 0.0848333262997424 21 0.0787811565242917 18 0.07330517696063646 12 0.06961755999230179 24 0.06672745243714125 22 0.05683694509036393 23 0.054416556422857976 11 0.05012286689895629 13 0.04845827253482218 16 0.04843765255162091 14 0.04797724787809924 10 0.04301566377971993 17 0.03986204233635362 15 0.032408075085868564 9 0.021744269980676332 0 0.02014758308209731 4 0.012861579786203952 5 0.01244708615219353 3 0.009432472022271732 6 0.008546222178815394 7 0.007180426586111742 8 0.007173997160056006 1 0.006929299252154345 2 0.00678534886091033 __DUMMY__ 0.0051580470336743175 false 1.0 678 21 0.115522 24 0.089203 22 0.08599 12 0.073785 11 0.066316 14 0.063308 23 0.061886 19 0.05314 13 0.052686 20 0.0429 4 0.032529 5 0.03163 18 0.030075 9 0.029162 3 0.026254 6 0.023891 8 0.021772 1 0.021387 7 0.021273 15 0.020798 2 0.020785 17 0.011119 10 0.003534 16 0.001052 21 0.115522 24 0.089203 22 0.08599 12 0.073785 11 0.066316 14 0.063308 23 0.061886 19 0.05314 13 0.052686 20 0.0429 4 0.032529 5 0.03163 18 0.030075 9 0.029162 3 0.026254 6 0.023891 8 0.021772 1 0.021387 7 0.021273 15 0.020798 2 0.020785 17 0.011119 10 0.003534 16 0.001052 21 0.09481812481545483 22 0.07331031549727436 12 0.0700558190712372 24 0.06727043418595993 11 0.06229107092346153 19 0.05649801301950049 14 0.055584973942361726 13 0.05360448794421516 23 0.05354823648500286 20 0.04592250560526925 18 0.04574317581566751 9 0.03211225984662291 4 0.028051880061826625 5 0.027369491329914286 10 0.0254683129966416 17 0.024703218952314296 6 0.02247236394137545 3 0.022046607095531967 15 0.022004215091916794 8 0.019885124474738284 7 0.0196652146958579 1 0.019604612985506885 2 0.0191427368534178 0 0.016905984872994575 16 0.015960166901518164 __DUMMY__ 0.0059606525944176265 false 1.0 437 14 0.121911 15 0.117738 10 0.106562 18 0.102169 13 0.066305 19 0.062541 20 0.057335 22 0.054334 11 0.049242 9 0.046484 21 0.044629 17 0.03919 0 0.034222 16 0.028507 12 0.0239 24 0.016095 23 0.014371 4 0.004831 5 0.004171 3 0.002659 6 0.001075 7 7.0E-4 8 6.99E-4 1 3.29E-4 14 0.121911 15 0.117738 10 0.106562 18 0.102169 13 0.066305 19 0.062541 20 0.057335 22 0.054334 11 0.049242 9 0.046484 21 0.044629 17 0.03919 0 0.034222 16 0.028507 12 0.0239 24 0.016095 23 0.014371 4 0.004831 5 0.004171 3 0.002659 6 0.001075 7 7.0E-4 8 6.99E-4 1 3.29E-4 14 0.09541361370390779 18 0.08846270234635785 15 0.0871955415387622 10 0.08706266132067016 13 0.05963878412392606 19 0.05960767245708011 22 0.0548708785554247 20 0.05359034089824681 21 0.05067096636840049 11 0.04951330624181788 9 0.044105102019875685 17 0.03920157047058727 0 0.03463199109499281 12 0.03427442211588949 16 0.02863116210803049 23 0.02485219974670248 24 0.024679660902037888 4 0.013127786684168185 5 0.012627344888441885 3 0.010222187095345356 6 0.009947379310007613 8 0.008955388960956 7 0.0089293771920679 1 0.008668559808911595 2 0.008366307929462415 __DUMMY__ 0.002753092117929014 false 1.0 679 21 0.107905 22 0.091077 11 0.086324 19 0.086193 12 0.07588 18 0.073843 24 0.05546 20 0.054658 10 0.053623 17 0.047089 13 0.04278 14 0.04109 0 0.040976 9 0.039714 23 0.037897 16 0.037383 4 0.009296 5 0.008568 6 0.003704 3 0.003011 7 0.001189 8 9.93E-4 1 9.41E-4 15 4.08E-4 21 0.107905 22 0.091077 11 0.086324 19 0.086193 12 0.07588 18 0.073843 24 0.05546 20 0.054658 10 0.053623 17 0.047089 13 0.04278 14 0.04109 0 0.040976 9 0.039714 23 0.037897 16 0.037383 4 0.009296 5 0.008568 6 0.003704 3 0.003011 7 0.001189 8 9.93E-4 1 9.41E-4 15 4.08E-4 21 0.09467171094711033 22 0.08075647127373943 11 0.07561097827118672 19 0.07537271251433797 12 0.06931572346395243 18 0.06761974172478952 24 0.05267501522075 20 0.051199944285198466 10 0.049789026372666086 17 0.04346866129857605 13 0.04329188771984965 14 0.04168212712234892 23 0.04089420117420728 9 0.03896750681786077 0 0.03801170869602291 16 0.03425574252628566 4 0.01620755089167557 5 0.015602671881164485 6 0.011552919843475565 3 0.010430766508631735 7 0.009050912674455487 8 0.008898124209006607 1 0.008779981975158899 15 0.008179669239445252 2 0.008128450579424573 __DUMMY__ 0.005585792768679582 false 1.0 438 14 0.104386 13 0.102673 10 0.0992 18 0.088702 12 0.071747 11 0.069822 21 0.066738 15 0.064402 22 0.053246 19 0.051044 0 0.043782 20 0.041997 9 0.040537 17 0.031379 23 0.019664 16 0.015998 24 0.008636 4 0.007134 5 0.007093 6 0.005991 8 0.001552 7 0.001536 1 0.001457 2 0.001283 14 0.104386 13 0.102673 10 0.0992 18 0.088702 12 0.071747 11 0.069822 21 0.066738 15 0.064402 22 0.053246 19 0.051044 0 0.043782 20 0.041997 9 0.040537 17 0.031379 23 0.019664 16 0.015998 24 0.008636 4 0.007134 5 0.007093 6 0.005991 8 0.001552 7 0.001536 1 0.001457 2 0.001283 14 0.08446794861676744 13 0.08289176638028829 10 0.08183440350022457 18 0.07982543897247103 21 0.06670595626461527 12 0.06603261241508285 11 0.0639148854689741 22 0.055595357170601475 19 0.053465429269550224 15 0.05236904933325059 20 0.043970943908031856 0 0.04062624807290859 9 0.040015497908322546 17 0.0345937766217759 23 0.02807246782430523 16 0.021168172944144255 24 0.020784558456572098 4 0.013821406732495503 5 0.013605916039546315 6 0.012149613430885395 8 0.008442931806134868 7 0.008422014501271178 1 0.008320715569404186 2 0.008092704992526695 3 0.007483861090976894 __DUMMY__ 0.0033263227088727644 false 1.0 439 18 0.109381 10 0.103203 14 0.082116 19 0.074524 22 0.073267 15 0.062353 11 0.062202 21 0.062029 9 0.055083 20 0.054492 17 0.049595 0 0.047209 13 0.044888 12 0.032347 16 0.027968 24 0.021223 23 0.016591 4 0.007179 5 0.005932 6 0.002693 3 0.002487 7 0.001294 8 0.001189 1 7.57E-4 18 0.109381 10 0.103203 14 0.082116 19 0.074524 22 0.073267 15 0.062353 11 0.062202 21 0.062029 9 0.055083 20 0.054492 17 0.049595 0 0.047209 13 0.044888 12 0.032347 16 0.027968 24 0.021223 23 0.016591 4 0.007179 5 0.005932 6 0.002693 3 0.002487 7 0.001294 8 0.001189 1 7.57E-4 18 0.09288960555949916 10 0.087447494092989 14 0.07086121523199408 22 0.06790322311092994 19 0.06649210217163246 21 0.06143172435359257 11 0.060022948349006226 15 0.05228865398975434 9 0.05112977573062305 20 0.04904966581794827 17 0.04616407095445707 13 0.04596081660004603 0 0.04511698629414572 12 0.038348852363593255 16 0.028107328131757862 24 0.025190989107557273 23 0.024123993878362147 4 0.014451018009861092 5 0.013655323864367705 6 0.010845581635124538 3 0.010197372267911911 7 0.009268708048415246 8 0.009219298346534049 1 0.008926385275703025 2 0.008396540924740976 __DUMMY__ 0.0025103258894530393 false 1.0 680 12 0.0941 21 0.08766 19 0.069144 11 0.067079 13 0.063302 22 0.059968 20 0.057455 24 0.056129 18 0.053555 23 0.052954 16 0.043868 17 0.041159 0 0.035195 10 0.033532 14 0.032523 9 0.023923 4 0.020315 5 0.020217 6 0.018556 7 0.014185 2 0.014057 8 0.01397 1 0.013872 3 0.01328 12 0.0941 21 0.08766 19 0.069144 11 0.067079 13 0.063302 22 0.059968 20 0.057455 24 0.056129 18 0.053555 23 0.052954 16 0.043868 17 0.041159 0 0.035195 10 0.033532 14 0.032523 9 0.023923 4 0.020315 5 0.020217 6 0.018556 7 0.014185 2 0.014057 8 0.01397 1 0.013872 3 0.01328 12 0.0862775227917946 21 0.08426604179340175 11 0.06473571326838495 19 0.06444613358028049 13 0.0642634234004673 22 0.060298288196944126 18 0.05666341706443409 20 0.05334229927914053 24 0.05128274571224655 23 0.04992977667040497 14 0.04122945143282441 10 0.039509313989011266 17 0.038612658860040505 16 0.03657530160936151 0 0.03400505123578347 9 0.0276944893511912 4 0.02104436368972015 5 0.02075965697265594 6 0.019007024666369422 7 0.014831109334887859 8 0.014722202547469776 1 0.014591540499104268 2 0.014533528349858025 3 0.013988287201306937 15 0.008980396427161938 __DUMMY__ 0.004410262075754193 false 1.0 681 21 0.109397 22 0.091246 11 0.085472 19 0.085204 12 0.074809 18 0.07445 20 0.055092 24 0.053892 10 0.053698 17 0.046193 13 0.042508 0 0.041039 14 0.040517 9 0.039879 23 0.038775 16 0.037385 4 0.009487 5 0.009107 6 0.004195 3 0.003187 7 0.001868 1 0.001211 8 0.001197 2 1.93E-4 21 0.109397 22 0.091246 11 0.085472 19 0.085204 12 0.074809 18 0.07445 20 0.055092 24 0.053892 10 0.053698 17 0.046193 13 0.042508 0 0.041039 14 0.040517 9 0.039879 23 0.038775 16 0.037385 4 0.009487 5 0.009107 6 0.004195 3 0.003187 7 0.001868 1 0.001211 8 0.001197 2 1.93E-4 21 0.0953625658195015 22 0.0808313634737658 11 0.07521626522760212 19 0.07491460951957822 12 0.0688267472769549 18 0.06789906621813013 24 0.05194968818688483 20 0.05140232774119769 10 0.04982172724035561 13 0.043172037448374535 17 0.04305352373636448 14 0.04141668440999242 23 0.041302429946183244 9 0.039040775531302516 0 0.038040465161856725 16 0.03425816054055963 4 0.016295604339379946 5 0.015851838158865837 6 0.011780335119181364 3 0.010511371333991038 7 0.009364837920569564 8 0.008992226141868072 1 0.008904641172279463 2 0.008217574589847204 15 0.007989107135515839 __DUMMY__ 0.005584026609897413 false 1.0 440 20 0.098454 24 0.082257 19 0.073377 23 0.067986 18 0.059417 21 0.053431 12 0.051128 15 0.049736 14 0.045048 16 0.043442 13 0.037352 22 0.03447 3 0.029763 4 0.02943 5 0.028653 17 0.027306 7 0.026219 8 0.026185 1 0.025996 2 0.025645 6 0.024911 10 0.024058 11 0.01881 9 0.016925 20 0.098454 24 0.082257 19 0.073377 23 0.067986 18 0.059417 21 0.053431 12 0.051128 15 0.049736 14 0.045048 16 0.043442 13 0.037352 22 0.03447 3 0.029763 4 0.02943 5 0.028653 17 0.027306 7 0.026219 8 0.026185 1 0.025996 2 0.025645 6 0.024911 10 0.024058 11 0.01881 9 0.016925 20 0.08195367360481157 19 0.0718803383471565 24 0.06908475919108514 18 0.06339026483243644 21 0.059660770545821064 23 0.0589134858361061 12 0.05143793411407057 22 0.045888531164825816 14 0.04525033245386648 15 0.042870528996327525 16 0.041444051630904366 13 0.0375574980346255 10 0.034521366270436005 17 0.03386821157704188 11 0.03256361256103132 4 0.0262657387560129 5 0.02564445822002302 3 0.024875504816004947 9 0.024791737294119 7 0.022266699860428323 8 0.022254354090186747 6 0.022158325373813577 1 0.02203313638408524 2 0.021711801979533044 0 0.01302102416024792 __DUMMY__ 0.004691859904998985 false 1.0 682 21 0.104894 22 0.094112 11 0.088757 19 0.078452 18 0.069054 12 0.067961 10 0.053782 24 0.051528 17 0.046696 9 0.045578 20 0.044552 0 0.043979 14 0.038815 13 0.036561 23 0.034778 16 0.033513 4 0.014018 5 0.013644 6 0.00863 3 0.008034 7 0.006268 8 0.005732 1 0.005713 2 0.004951 21 0.104894 22 0.094112 11 0.088757 19 0.078452 18 0.069054 12 0.067961 10 0.053782 24 0.051528 17 0.046696 9 0.045578 20 0.044552 0 0.043979 14 0.038815 13 0.036561 23 0.034778 16 0.033513 4 0.014018 5 0.013644 6 0.00863 3 0.008034 7 0.006268 8 0.005732 1 0.005713 2 0.004951 21 0.09277117882511415 22 0.08340512598454265 11 0.07741600953276306 19 0.07098648571941155 18 0.06514050028849509 12 0.06348738736524889 10 0.05025919805493984 24 0.05002446196423505 20 0.04455594787575223 17 0.04395252018455932 9 0.04319537532515998 0 0.0405808845684384 14 0.03959390525868395 23 0.03854905381722411 13 0.038114767507166566 16 0.032078809747786444 4 0.0191356937800543 5 0.018691346556662835 6 0.014545342945927155 3 0.013602948421412754 7 0.012202753598297351 8 0.011891829278302141 1 0.011783757067430194 2 0.011202062496991082 15 0.007475111066939766 __DUMMY__ 0.005357542768461223 false 1.0 683 19 0.106642 21 0.106366 20 0.093766 18 0.087832 22 0.082328 24 0.078249 23 0.063176 12 0.063016 11 0.051154 10 0.050811 14 0.044888 9 0.034861 13 0.02922 17 0.027136 16 0.026441 4 0.011684 5 0.011097 0 0.008893 15 0.008673 3 0.008268 7 0.00175 8 0.00145 6 0.001437 1 8.61E-4 19 0.106642 21 0.106366 20 0.093766 18 0.087832 22 0.082328 24 0.078249 23 0.063176 12 0.063016 11 0.051154 10 0.050811 14 0.044888 9 0.034861 13 0.02922 17 0.027136 16 0.026441 4 0.011684 5 0.011097 0 0.008893 15 0.008673 3 0.008268 7 0.00175 8 0.00145 6 0.001437 1 8.61E-4 21 0.08855761469845959 19 0.08634660747532054 18 0.0750550895751308 20 0.0745050398121893 22 0.07222790143661698 24 0.06514109920647064 12 0.05920705967038351 23 0.054677743925392534 11 0.052906037627886336 10 0.047643717025547 14 0.04385732414380417 9 0.03513959991808999 13 0.03445579223737403 17 0.03411404627306935 16 0.0318198274456107 0 0.020275071289508496 15 0.017975489910822894 4 0.01789094808825222 5 0.017356780187043577 3 0.014273603326264888 6 0.011081500983849364 7 0.010425000005700765 8 0.010255136670125092 1 0.009875790253427321 2 0.009285430171455767 __DUMMY__ 0.00565074864220438 false 1.0 441 15 0.108425 14 0.107448 20 0.066506 18 0.065368 13 0.064142 10 0.05961 24 0.048647 23 0.048489 19 0.044425 21 0.040804 22 0.033227 9 0.032012 12 0.029438 4 0.028856 3 0.02852 5 0.028504 8 0.024778 7 0.024655 1 0.024447 2 0.024337 6 0.02397 11 0.020081 17 0.012094 16 0.011217 15 0.108425 14 0.107448 20 0.066506 18 0.065368 13 0.064142 10 0.05961 24 0.048647 23 0.048489 19 0.044425 21 0.040804 22 0.033227 9 0.032012 12 0.029438 4 0.028856 3 0.02852 5 0.028504 8 0.024778 7 0.024655 1 0.024447 2 0.024337 6 0.02397 11 0.020081 17 0.012094 16 0.011217 14 0.07909666789412323 15 0.07488127354418714 18 0.0662537111709501 20 0.06054713381304792 10 0.05586437619468908 13 0.054850869396457426 19 0.05310770280031942 21 0.049950820914355085 23 0.04637555632766042 24 0.04579871808422087 22 0.043600041045525735 12 0.04012445538587346 9 0.034057312899038794 11 0.03369974882156552 17 0.027420369184365675 4 0.02646854891249764 5 0.026087774422402607 16 0.024617715312803812 3 0.024362515149822843 6 0.022921510400169123 8 0.0224286943902073 7 0.022351115847440126 1 0.022161744154768053 2 0.021964782587715056 0 0.016813542975839424 __DUMMY__ 0.004193298369954077 false 1.0 200 11 0.123596 22 0.09449 21 0.083714 0 0.081988 10 0.076624 18 0.076008 17 0.071645 12 0.066306 19 0.063828 16 0.048651 9 0.048367 13 0.045637 14 0.035652 20 0.015177 24 0.013609 23 0.009931 4 0.009382 6 0.009114 5 0.008604 15 0.005178 8 0.003366 7 0.003261 1 0.00302 2 0.002852 11 0.123596 22 0.09449 21 0.083714 0 0.081988 10 0.076624 18 0.076008 17 0.071645 12 0.066306 19 0.063828 16 0.048651 9 0.048367 13 0.045637 14 0.035652 20 0.015177 24 0.013609 23 0.009931 4 0.009382 6 0.009114 5 0.008604 15 0.005178 8 0.003366 7 0.003261 1 0.00302 2 0.002852 11 0.09058224255590218 22 0.080002233692886 21 0.07323314147851599 18 0.06810618279820366 10 0.06392109879141253 0 0.06374347400467213 17 0.059015645868620896 19 0.058982579094305966 12 0.055674412290009336 9 0.04812733990518419 16 0.040246308079381996 13 0.03886879843324758 14 0.03497032774869502 20 0.025114577541722638 24 0.025073739252716574 23 0.024564339526994612 4 0.020473318496987046 5 0.019868709651871964 6 0.019239796279155338 8 0.01539003971217664 7 0.01535519104254108 1 0.015145763433245453 2 0.014839231051503667 3 0.013676358043917295 15 0.012366915053173425 __DUMMY__ 0.003418236172956692 false 1.0 684 21 0.101398 19 0.096742 20 0.081557 22 0.08071 18 0.079969 24 0.071456 12 0.070435 11 0.06622 23 0.051529 10 0.048623 14 0.044217 16 0.039234 17 0.038531 13 0.037403 9 0.030339 0 0.021958 15 0.012892 4 0.009388 5 0.008867 3 0.005134 6 0.002054 7 6.88E-4 8 5.19E-4 1 1.39E-4 21 0.101398 19 0.096742 20 0.081557 22 0.08071 18 0.079969 24 0.071456 12 0.070435 11 0.06622 23 0.051529 10 0.048623 14 0.044217 16 0.039234 17 0.038531 13 0.037403 9 0.030339 0 0.021958 15 0.012892 4 0.009388 5 0.008867 3 0.005134 6 0.002054 7 6.88E-4 8 5.19E-4 1 1.39E-4 21 0.08945540248215252 19 0.08224588485921452 22 0.07417163515364893 18 0.071440386229577 20 0.06799500424358133 12 0.06408667493343757 11 0.06275168243975625 24 0.06270733918218171 23 0.0487353131503355 10 0.0465818015556006 14 0.043568298530437505 17 0.0392189768293447 13 0.03835498750142178 16 0.036774491373998804 9 0.03342681927193826 0 0.026566358400880515 15 0.01771472933885173 4 0.01619636519852894 5 0.015685138866660148 3 0.011949026893576338 6 0.010510731512379145 7 0.008961242588137385 8 0.008833757549049318 1 0.008546312827655457 2 0.008275421181464527 __DUMMY__ 0.005246217906189443 false 1.0 442 14 0.110034 10 0.103865 18 0.099189 15 0.087375 13 0.065761 22 0.064799 19 0.063221 21 0.060612 11 0.060593 20 0.053203 9 0.049112 0 0.036201 12 0.035561 17 0.034928 24 0.021727 16 0.019721 23 0.015471 4 0.006363 5 0.005632 3 0.003181 6 0.00162 7 7.5E-4 8 6.38E-4 1 4.42E-4 14 0.110034 10 0.103865 18 0.099189 15 0.087375 13 0.065761 22 0.064799 19 0.063221 21 0.060612 11 0.060593 20 0.053203 9 0.049112 0 0.036201 12 0.035561 17 0.034928 24 0.021727 16 0.019721 23 0.015471 4 0.006363 5 0.005632 3 0.003181 6 0.00162 7 7.5E-4 8 6.38E-4 1 4.42E-4 18 0.08751560537234004 10 0.08573961330240372 14 0.08506687218749368 15 0.06614553843411937 22 0.06260574913026887 19 0.06188378809174327 21 0.060803942153076 11 0.057650935512657916 13 0.05664846080533393 20 0.05091137360119547 9 0.04637744463349818 12 0.04078915877149837 17 0.0385154971507695 0 0.03759900054181898 24 0.027647261138731272 23 0.025155944145663862 16 0.025044841574989398 4 0.013721086147485587 5 0.01317116653278729 3 0.01021606498346878 6 0.009935132266888339 7 0.008628421257738507 8 0.008586493011461173 1 0.008393191286152507 2 0.00802866617250797 __DUMMY__ 0.003218751793908193 false 1.0 443 14 0.146422 15 0.120823 13 0.117913 10 0.093437 18 0.084677 12 0.062335 20 0.057278 21 0.056251 11 0.047891 19 0.043128 22 0.037894 9 0.029556 23 0.026193 24 0.020723 0 0.016267 17 0.0146 16 0.008013 4 0.006223 5 0.005734 6 0.003413 3 6.73E-4 8 4.06E-4 7 7.7E-5 2 7.3E-5 14 0.146422 15 0.120823 13 0.117913 10 0.093437 18 0.084677 12 0.062335 20 0.057278 21 0.056251 11 0.047891 19 0.043128 22 0.037894 9 0.029556 23 0.026193 24 0.020723 0 0.016267 17 0.0146 16 0.008013 4 0.006223 5 0.005734 6 0.003413 3 6.73E-4 8 4.06E-4 7 7.7E-5 2 7.3E-5 14 0.10591399501151118 13 0.09099133047774285 15 0.08253423336650761 18 0.07526368136387812 10 0.07455154593948066 12 0.062233606830264056 21 0.06143458172752005 20 0.05363578462302566 11 0.050487894413443535 19 0.04925808683510644 22 0.046277333012543935 23 0.03381428795438506 9 0.03223594205537473 24 0.030226852400811712 17 0.025045741265276283 0 0.023694405237315357 16 0.017879259480698274 4 0.014004722269225498 5 0.01358207422994743 6 0.011476674779955858 8 0.008545327749317521 3 0.008531958707205812 7 0.008355428802408412 1 0.00825026671219248 2 0.008151732431873638 __DUMMY__ 0.0036232523229878574 false 1.0 201 10 0.096236 11 0.095163 18 0.086902 0 0.079961 22 0.074783 17 0.0674 21 0.063252 19 0.061594 13 0.05577 14 0.054895 9 0.053687 12 0.053279 16 0.046317 15 0.030944 20 0.020993 6 0.009623 4 0.008964 5 0.008574 23 0.006923 1 0.005857 7 0.00569 8 0.005592 2 0.0052 3 0.0024 10 0.096236 11 0.095163 18 0.086902 0 0.079961 22 0.074783 17 0.0674 21 0.063252 19 0.061594 13 0.05577 14 0.054895 9 0.053687 12 0.053279 16 0.046317 15 0.030944 20 0.020993 6 0.009623 4 0.008964 5 0.008574 23 0.006923 1 0.005857 7 0.00569 8 0.005592 2 0.0052 3 0.0024 10 0.08055757957148323 18 0.07836522912836412 11 0.0763314332753991 22 0.06945273846972752 0 0.06507531056361826 21 0.060318388934754975 17 0.05798595134357905 19 0.057855314739723704 9 0.05262646780395241 14 0.048906169631348605 12 0.04682915092476791 13 0.04587451970080401 16 0.03864253467024985 15 0.029951428891512394 20 0.02772377407951279 23 0.019566846542871514 4 0.018538127478879583 5 0.018124281186054757 6 0.017948075768999806 7 0.015034724823282289 1 0.015033922026016174 8 0.014987812312692734 2 0.0145042240178483 24 0.013468135354776247 3 0.013231747630114355 __DUMMY__ 0.0030661111296662355 false 1.0 685 17 0.086151 0 0.084752 9 0.064787 16 0.063663 22 0.059519 18 0.057276 10 0.048821 6 0.047189 11 0.045683 8 0.044897 7 0.044666 1 0.044619 2 0.044029 5 0.042796 4 0.042604 19 0.039514 3 0.038784 21 0.025867 23 0.023518 15 0.020128 12 0.016012 24 0.005694 20 0.005514 13 0.003519 17 0.086151 0 0.084752 9 0.064787 16 0.063663 22 0.059519 18 0.057276 10 0.048821 6 0.047189 11 0.045683 8 0.044897 7 0.044666 1 0.044619 2 0.044029 5 0.042796 4 0.042604 19 0.039514 3 0.038784 21 0.025867 23 0.023518 15 0.020128 12 0.016012 24 0.005694 20 0.005514 13 0.003519 17 0.07309664348228058 0 0.07154840091811096 9 0.06047090099288401 22 0.05793431732495679 16 0.053294372856137494 18 0.05304096109897412 6 0.04639658023238284 10 0.04537024181676622 11 0.04468633443137131 8 0.044657825673301635 7 0.04451332570904682 1 0.04442854199466242 2 0.043842569186853864 4 0.04373959059311219 5 0.04355374927688728 3 0.04040478554001152 19 0.04036900731447314 21 0.032242749573625086 23 0.03004417788150824 12 0.020711853139469927 15 0.019755535533989923 24 0.016204312914660426 20 0.0129970818952633 13 0.008125839137933742 14 0.006668404612483918 __DUMMY__ 0.001901896868852195 false 1.0 202 11 0.103578 10 0.085023 21 0.081613 18 0.079236 22 0.078209 12 0.072333 13 0.066094 19 0.0655 0 0.063823 14 0.060629 17 0.050896 9 0.041864 16 0.036149 20 0.033196 15 0.022136 24 0.020568 23 0.018214 5 0.006735 4 0.006707 6 0.004922 2 7.85E-4 7 7.1E-4 1 6.29E-4 8 4.51E-4 11 0.103578 10 0.085023 21 0.081613 18 0.079236 22 0.078209 12 0.072333 13 0.066094 19 0.0655 0 0.063823 14 0.060629 17 0.050896 9 0.041864 16 0.036149 20 0.033196 15 0.022136 24 0.020568 23 0.018214 5 0.006735 4 0.006707 6 0.004922 2 7.85E-4 7 7.1E-4 1 6.29E-4 8 4.51E-4 11 0.08313475765574463 21 0.07560030065230716 18 0.07351906128562233 22 0.07323971604487313 10 0.0713636423818635 19 0.06316641242380686 12 0.06182275311942591 0 0.05381775297252974 13 0.052732474005660855 14 0.0515630274512322 17 0.048111936291138385 9 0.0435814359548788 20 0.037327720793381085 16 0.03402415791216307 24 0.02893471685360174 23 0.027727681477403808 15 0.022281092329129223 4 0.01562799816357883 5 0.015400234491333037 6 0.013325899520168995 7 0.010097641691544312 8 0.009953873169989247 1 0.009946388752820933 3 0.009891515303632184 2 0.009820818546042937 __DUMMY__ 0.0039869907561269294 false 1.0 444 15 0.162193 16 0.111509 17 0.09314 18 0.092902 20 0.083095 19 0.082553 14 0.081474 10 0.057607 0 0.04112 24 0.038936 23 0.031696 22 0.031193 9 0.021572 13 0.01986 11 0.01583 8 0.006019 7 0.004951 6 0.004778 1 0.004762 2 0.004602 21 0.003735 4 0.002299 3 0.002262 5 0.001914 15 0.162193 16 0.111509 17 0.09314 18 0.092902 20 0.083095 19 0.082553 14 0.081474 10 0.057607 0 0.04112 24 0.038936 23 0.031696 22 0.031193 9 0.021572 13 0.01986 11 0.01583 8 0.006019 7 0.004951 6 0.004778 1 0.004762 2 0.004602 21 0.003735 4 0.002299 3 0.002262 5 0.001914 15 0.10698982467797163 18 0.07895928789068939 16 0.07578293164721768 17 0.06948059378200976 19 0.06913894991085773 14 0.06824616235671058 20 0.06598065077795968 10 0.05568314510612744 22 0.04117323776680081 0 0.03913509392543232 24 0.03803011355572401 23 0.03565460184637447 13 0.03266099379621812 11 0.03040597136720864 9 0.030108440379436392 21 0.027588149805320414 12 0.022135294636372326 6 0.014627744261051935 8 0.014422724672873243 4 0.014037778037376727 7 0.013871035943545752 1 0.013698122191772659 5 0.01364866176419375 2 0.013451919581926876 3 0.012258547665873322 __DUMMY__ 0.002830022652954386 false 1.0 686 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09254533161420221 22 0.08310133831114198 11 0.07708935221842254 19 0.07078775460422866 18 0.06498376215378887 12 0.06322658933099978 10 0.05024861790088545 24 0.04982692055460861 20 0.04464134924944838 17 0.043769587536642944 9 0.0429276718198975 0 0.040615501756052955 14 0.03958669960517317 23 0.038951585108183764 13 0.038082558262372036 16 0.0322053735096369 4 0.019315602973156078 5 0.018886089760201744 6 0.014821673876732723 3 0.013723260745351271 7 0.012457697253344993 8 0.012090012639017446 1 0.011933282597026184 2 0.011348041383606518 15 0.007467304142503616 __DUMMY__ 0.005367041093373863 false 1.0 445 14 0.114137 15 0.097732 18 0.093796 10 0.085762 20 0.076024 19 0.06977 13 0.067158 21 0.062832 22 0.055905 11 0.045759 24 0.044231 12 0.040775 9 0.035092 23 0.031351 17 0.025045 16 0.021437 0 0.013858 4 0.00675 5 0.006101 3 0.004755 6 5.92E-4 7 5.0E-4 8 4.6E-4 1 1.78E-4 14 0.114137 15 0.097732 18 0.093796 10 0.085762 20 0.076024 19 0.06977 13 0.067158 21 0.062832 22 0.055905 11 0.045759 24 0.044231 12 0.040775 9 0.035092 23 0.031351 17 0.025045 16 0.021437 0 0.013858 4 0.00675 5 0.006101 3 0.004755 6 5.92E-4 7 5.0E-4 8 4.6E-4 1 1.78E-4 14 0.08741533276756804 18 0.08315214274978214 15 0.07320267504433293 10 0.07200494757315504 20 0.0671928023705408 19 0.06701476426698977 21 0.06260239214523201 13 0.05779650711856048 22 0.05624491874078519 11 0.047603022238131655 12 0.04525617722031547 24 0.04401431590273555 23 0.03651482134295081 9 0.035773943596851585 17 0.03218935678692552 16 0.02771629365275275 0 0.022064857059868014 4 0.013645137513530265 5 0.013122334998984483 3 0.010872192594856117 6 0.008964465692705374 7 0.008165891326263486 8 0.008160832540629583 1 0.007905350342481021 2 0.007682148562045766 __DUMMY__ 0.0037223758510260686 false 1.0 687 10 0.105973 18 0.098145 11 0.071004 0 0.067633 14 0.066857 22 0.066822 19 0.061659 9 0.057825 17 0.055737 13 0.052634 21 0.052382 15 0.046708 12 0.038832 16 0.034363 20 0.034255 4 0.012072 5 0.01194 23 0.01155 6 0.011071 2 0.00871 7 0.008641 8 0.008616 1 0.008479 3 0.008091 10 0.105973 18 0.098145 11 0.071004 0 0.067633 14 0.066857 22 0.066822 19 0.061659 9 0.057825 17 0.055737 13 0.052634 21 0.052382 15 0.046708 12 0.038832 16 0.034363 20 0.034255 4 0.012072 5 0.01194 23 0.01155 6 0.011071 2 0.00871 7 0.008641 8 0.008616 1 0.008479 3 0.008091 10 0.08833171929945943 18 0.08696744615839835 22 0.06580867904545759 11 0.06508739999670281 19 0.06004323306044605 14 0.059116170787119594 0 0.057477499162283854 21 0.05653224483241452 9 0.05391671350892686 17 0.0510100599849484 13 0.04695465525266431 12 0.040795142607206625 15 0.04050702288456104 20 0.03712741980413608 16 0.031926864804593495 23 0.021178789556920898 4 0.017749635109725347 5 0.01746350399444423 6 0.016008262505218078 24 0.013902843716623503 7 0.01388250828896147 8 0.01386783384284827 3 0.013737636720128817 1 0.013723974239254737 2 0.013625208609525399 __DUMMY__ 0.0032575322270303555 false 1.0 203 0 0.087323 17 0.079269 9 0.065647 22 0.062214 11 0.060124 10 0.057001 18 0.054547 16 0.053132 6 0.045356 8 0.042779 7 0.04247 1 0.042334 2 0.041862 4 0.041591 5 0.040961 19 0.037645 3 0.03706 21 0.033021 12 0.024102 23 0.020795 13 0.012242 15 0.011414 14 0.003735 24 0.003376 0 0.087323 17 0.079269 9 0.065647 22 0.062214 11 0.060124 10 0.057001 18 0.054547 16 0.053132 6 0.045356 8 0.042779 7 0.04247 1 0.042334 2 0.041862 4 0.041591 5 0.040961 19 0.037645 3 0.03706 21 0.033021 12 0.024102 23 0.020795 13 0.012242 15 0.011414 14 0.003735 24 0.003376 0 0.07322729074269027 17 0.06950780916630823 9 0.06165282697604656 22 0.060419025278314206 11 0.0528114726752337 18 0.052751355874269545 10 0.050760104885860996 16 0.04692034803795253 6 0.044982279428495885 8 0.043048459942814775 7 0.04286918301852138 4 0.042834036874761255 1 0.042736589486249886 5 0.04226471771166387 2 0.04220640551964976 19 0.03937730758023166 3 0.03905244510481503 21 0.03666901222872282 23 0.027893482900047 12 0.02472471757899523 15 0.01516494022256211 24 0.01434223167629639 13 0.012800776661461908 20 0.00964213261679228 14 0.009369393829460825 __DUMMY__ 0.0019716539817818506 false 1.0 446 9 0.083347 22 0.078605 10 0.077408 0 0.076899 18 0.071563 17 0.062803 11 0.058226 4 0.043285 5 0.042265 6 0.042026 21 0.041657 8 0.041506 7 0.041067 1 0.040766 3 0.040244 2 0.040201 19 0.037792 14 0.021663 16 0.020419 15 0.014309 23 0.013837 12 0.004709 24 0.003329 13 0.002074 9 0.083347 22 0.078605 10 0.077408 0 0.076899 18 0.071563 17 0.062803 11 0.058226 4 0.043285 5 0.042265 6 0.042026 21 0.041657 8 0.041506 7 0.041067 1 0.040766 3 0.040244 2 0.040201 19 0.037792 14 0.021663 16 0.020419 15 0.014309 23 0.013837 12 0.004709 24 0.003329 13 0.002074 22 0.07079989378241715 9 0.07014453524518235 10 0.0651984171699101 0 0.06517697300163841 18 0.06493832044343052 17 0.057566043988295894 11 0.0543903639819212 21 0.04533286343213113 19 0.041819256397698866 4 0.040957849245684706 5 0.040192461997358694 6 0.03977042472603101 8 0.03890301339659989 7 0.038674480261017524 1 0.0384337782785473 3 0.037893971323243 2 0.03789051751756319 16 0.026434929227018438 14 0.02453114981713777 23 0.02385589329638873 15 0.018316186354437172 12 0.016939500030239446 24 0.015505475501383098 20 0.01255146259196453 13 0.011293329930609046 __DUMMY__ 0.002488909062151056 false 1.0 688 17 0.065031 0 0.061572 22 0.059527 9 0.059023 18 0.048125 6 0.047864 8 0.04752 4 0.047374 7 0.047158 1 0.047079 16 0.046769 5 0.046523 2 0.046375 3 0.045211 19 0.043304 11 0.042674 10 0.038863 23 0.037274 21 0.035613 24 0.029229 20 0.019669 15 0.017377 12 0.016723 14 0.004122 17 0.065031 0 0.061572 22 0.059527 9 0.059023 18 0.048125 6 0.047864 8 0.04752 4 0.047374 7 0.047158 1 0.047079 16 0.046769 5 0.046523 2 0.046375 3 0.045211 19 0.043304 11 0.042674 10 0.038863 23 0.037274 21 0.035613 24 0.029229 20 0.019669 15 0.017377 12 0.016723 14 0.004122 22 0.05976541274079753 17 0.05878092667350728 9 0.057499614931063286 0 0.056490773766737064 18 0.049471500318875095 4 0.04545561856826585 6 0.045333816013944046 5 0.04476928753020339 8 0.04465861041314953 7 0.04446049292654513 1 0.044343626161402125 11 0.04374199926800808 2 0.043719889018052564 3 0.04299050388503256 19 0.042790484341932986 10 0.041009932810624546 21 0.04075159470302543 16 0.04040164499224058 23 0.037491970482899976 24 0.030423502197020152 12 0.022048311397154078 20 0.021742528693440753 15 0.01859419583633344 14 0.012377154603311548 13 0.00790774367387087 __DUMMY__ 0.0029788640525622127 false 1.0 204 0 0.089899 17 0.082534 9 0.061906 11 0.060882 22 0.060228 16 0.059755 10 0.056292 18 0.054869 6 0.043772 8 0.040675 7 0.040347 1 0.040325 2 0.040132 4 0.039099 5 0.038889 19 0.038316 3 0.034256 21 0.031419 12 0.029227 23 0.020965 13 0.017474 15 0.013999 14 0.00436 24 3.79E-4 0 0.089899 17 0.082534 9 0.061906 11 0.060882 22 0.060228 16 0.059755 10 0.056292 18 0.054869 6 0.043772 8 0.040675 7 0.040347 1 0.040325 2 0.040132 4 0.039099 5 0.038889 19 0.038316 3 0.034256 21 0.031419 12 0.029227 23 0.020965 13 0.017474 15 0.013999 14 0.00436 24 3.79E-4 0 0.074815557674194 17 0.07191342945080319 9 0.059179316153067055 22 0.05883346149433414 11 0.053025921943217716 18 0.05270822203735083 16 0.051605797903362505 10 0.0498708466173961 6 0.04415317927003021 8 0.04191147616643129 7 0.041719978491138614 1 0.04164592382481743 4 0.04140050143708464 2 0.041248343210652794 5 0.04102897004238933 19 0.040084052789414966 3 0.0374092098342577 21 0.035424627035485504 23 0.02822146361254218 12 0.02768330441414267 15 0.016595628709797156 13 0.015461492533314773 24 0.012920514192731915 20 0.01002328870732311 14 0.009058946573621392 __DUMMY__ 0.0020565458810989216 false 1.0 447 14 0.091078 10 0.090246 13 0.089126 18 0.082465 21 0.069479 11 0.067764 22 0.06479 12 0.063759 9 0.054031 15 0.047471 0 0.047168 19 0.039592 17 0.032707 20 0.022556 23 0.01995 4 0.018999 5 0.018275 6 0.017046 8 0.012242 1 0.01175 7 0.011654 2 0.011399 3 0.00997 24 0.006481 14 0.091078 10 0.090246 13 0.089126 18 0.082465 21 0.069479 11 0.067764 22 0.06479 12 0.063759 9 0.054031 15 0.047471 0 0.047168 19 0.039592 17 0.032707 20 0.022556 23 0.01995 4 0.018999 5 0.018275 6 0.017046 8 0.012242 1 0.01175 7 0.011654 2 0.011399 3 0.00997 24 0.006481 13 0.08070408770964507 14 0.07749295944460849 18 0.07245239338997872 10 0.07204544119916807 21 0.07085899600703967 12 0.06811327575567508 11 0.06297330366247847 22 0.05994219628256271 19 0.04652425147613517 9 0.04361168270518036 15 0.04121370127001096 0 0.039804449972537806 20 0.03485665666733685 17 0.03312427912013614 23 0.03109958217365324 24 0.02281492392502647 4 0.020355588290098613 5 0.019814383335315777 6 0.018441545746950908 8 0.014181469206232379 7 0.013876508934189813 1 0.013863016991953869 2 0.013564756934142386 16 0.012793465667128488 3 0.012590205294252487 __DUMMY__ 0.002886878838562026 false 1.0 205 0 0.083365 17 0.076195 10 0.070824 18 0.065811 11 0.065633 16 0.059842 22 0.05675 9 0.055257 19 0.046995 12 0.039881 21 0.037385 13 0.037064 6 0.031399 8 0.027853 15 0.027841 7 0.027734 1 0.027663 4 0.027566 2 0.027319 5 0.027174 14 0.026961 3 0.022073 23 0.018169 20 0.013244 0 0.083365 17 0.076195 10 0.070824 18 0.065811 11 0.065633 16 0.059842 22 0.05675 9 0.055257 19 0.046995 12 0.039881 21 0.037385 13 0.037064 6 0.031399 8 0.027853 15 0.027841 7 0.027734 1 0.027663 4 0.027566 2 0.027319 5 0.027174 14 0.026961 3 0.022073 23 0.018169 20 0.013244 0 0.07113347082022818 17 0.06771068434896049 18 0.06021953882333998 10 0.05981142737970967 22 0.05780284020227717 11 0.05682563633617093 9 0.05573791453056831 16 0.050268923702579085 19 0.04518101621665131 21 0.0397639303443665 6 0.036297783246871246 4 0.034172220972742626 12 0.03399003702290238 8 0.033771676901904066 5 0.033730255367969475 7 0.033686821402864144 1 0.03359320090847848 2 0.033140381607095544 3 0.029761876433047063 13 0.027501449929514265 23 0.026067437065715075 15 0.02480647006075305 14 0.02343000752433497 20 0.01735212008213129 24 0.0121043008480529 __DUMMY__ 0.002138577920771713 false 1.0 689 17 0.086799 0 0.084286 9 0.064518 16 0.063651 22 0.058375 18 0.054547 10 0.048996 6 0.047484 11 0.046097 8 0.045188 1 0.045096 7 0.045008 2 0.044852 4 0.04307 5 0.042892 19 0.039697 3 0.039565 21 0.025454 23 0.022614 15 0.020282 12 0.016652 24 0.006566 20 0.005247 13 0.003064 17 0.086799 0 0.084286 9 0.064518 16 0.063651 22 0.058375 18 0.054547 10 0.048996 6 0.047484 11 0.046097 8 0.045188 1 0.045096 7 0.045008 2 0.044852 4 0.04307 5 0.042892 19 0.039697 3 0.039565 21 0.025454 23 0.022614 15 0.020282 12 0.016652 24 0.006566 20 0.005247 13 0.003064 17 0.07338669181342213 0 0.07132248138931724 9 0.0603494939928973 22 0.05741684056915948 16 0.05327685457192037 18 0.05178233093645433 6 0.04653157216302146 10 0.04544680438224059 11 0.04487718745411865 8 0.0447928141869411 7 0.04467143074244004 1 0.04464894142165353 2 0.044222484483749346 4 0.043956939053412615 5 0.043599838556029925 3 0.040768891079176105 19 0.040458821175751884 21 0.0320614725204045 23 0.029632526311775462 12 0.02099820575515293 15 0.019823944851949573 24 0.016622554450221212 20 0.012880789420854305 13 0.007902221818963377 14 0.006667882701888003 __DUMMY__ 0.0018999841970845919 false 1.0 206 11 0.102833 10 0.085628 21 0.081165 18 0.079196 22 0.077889 12 0.072085 13 0.065884 19 0.065302 0 0.063686 14 0.060509 17 0.050698 9 0.041676 16 0.036298 20 0.033866 15 0.022582 24 0.021012 23 0.018181 5 0.006851 4 0.006832 6 0.005129 2 7.72E-4 7 7.42E-4 8 6.24E-4 1 5.58E-4 11 0.102833 10 0.085628 21 0.081165 18 0.079196 22 0.077889 12 0.072085 13 0.065884 19 0.065302 0 0.063686 14 0.060509 17 0.050698 9 0.041676 16 0.036298 20 0.033866 15 0.022582 24 0.021012 23 0.018181 5 0.006851 4 0.006832 6 0.005129 2 7.72E-4 7 7.42E-4 8 6.24E-4 1 5.58E-4 11 0.08280287008363751 21 0.07543897452387505 18 0.07351286916948106 22 0.07310844886302834 10 0.07164200479427876 19 0.06309877328868731 12 0.06173580643003832 0 0.05371538643194813 13 0.052655377334987666 14 0.051537536206125986 17 0.047987634164447596 9 0.04347885035134684 20 0.03767235673461334 16 0.03406591368511551 24 0.0291759739882552 23 0.02772764184388588 15 0.02248343268682387 4 0.015669965706472767 5 0.015438025243140752 6 0.013398426819223028 7 0.010089770648966212 8 0.010010906283018896 1 0.009890788793507188 3 0.009875089557475212 2 0.009792106040435336 __DUMMY__ 0.003995070327184305 false 1.0 448 18 0.094312 10 0.09129 19 0.0775 11 0.076222 21 0.07533 22 0.071995 14 0.060012 12 0.059982 0 0.056005 13 0.055827 17 0.052818 20 0.052091 9 0.04605 16 0.039635 15 0.03029 24 0.022851 23 0.021786 4 0.005722 5 0.005457 6 0.003269 3 5.32E-4 7 4.78E-4 8 3.05E-4 1 2.41E-4 18 0.094312 10 0.09129 19 0.0775 11 0.076222 21 0.07533 22 0.071995 14 0.060012 12 0.059982 0 0.056005 13 0.055827 17 0.052818 20 0.052091 9 0.04605 16 0.039635 15 0.03029 24 0.022851 23 0.021786 4 0.005722 5 0.005457 6 0.003269 3 5.32E-4 7 4.78E-4 8 3.05E-4 1 2.41E-4 18 0.08557334123349446 10 0.08132583808299254 21 0.07109526062729149 11 0.07017972694429311 19 0.06941243608549576 22 0.0690493060227034 14 0.05725239214868132 12 0.05571795800211218 13 0.05226699975179047 0 0.051389037907969164 17 0.04897059657498938 20 0.04724564588799858 9 0.0464182735267187 16 0.03485300121494401 15 0.031108376496110028 23 0.02637193306232324 24 0.025906331261533758 4 0.012743366748364071 5 0.012409737436834217 6 0.010232762637337137 3 0.007780966011963766 7 0.007656388027475875 8 0.007560344837675094 1 0.007460038564171953 2 0.007173021251640587 __DUMMY__ 0.0028469196530957006 false 1.0 207 18 0.084345 21 0.084076 19 0.081619 12 0.079965 20 0.07265 11 0.065685 13 0.064321 22 0.063402 10 0.062741 14 0.057031 24 0.048095 23 0.045031 17 0.041691 16 0.040632 0 0.03241 15 0.02745 9 0.027387 4 0.007605 5 0.00688 6 0.0044 7 9.84E-4 3 9.47E-4 8 5.09E-4 2 1.42E-4 18 0.084345 21 0.084076 19 0.081619 12 0.079965 20 0.07265 11 0.065685 13 0.064321 22 0.063402 10 0.062741 14 0.057031 24 0.048095 23 0.045031 17 0.041691 16 0.040632 0 0.03241 15 0.02745 9 0.027387 4 0.007605 5 0.00688 6 0.0044 7 9.84E-4 3 9.47E-4 8 5.09E-4 2 1.42E-4 21 0.07593840669342002 18 0.07585231151368255 19 0.06970637889866231 11 0.06615804858405709 22 0.06601354139594195 12 0.06472224183628876 10 0.06221964577049217 20 0.05531614871972873 13 0.05243364711135471 14 0.05107097176674588 17 0.0429954584767034 24 0.04124265075303264 23 0.03965825982429528 0 0.039283158852024255 9 0.03715509936842797 16 0.03502830372888931 15 0.025839117986911787 4 0.016360143629856695 5 0.015823178479916548 6 0.013342207213821958 3 0.010825481143317585 7 0.010554760284208918 8 0.010335367293352452 1 0.010011468963475982 2 0.009925281393290802 __DUMMY__ 0.002188720318100083 false 1.0 449 19 0.069318 17 0.068761 18 0.06647 22 0.066454 0 0.060653 16 0.059716 9 0.054739 10 0.053263 11 0.049972 21 0.044371 20 0.037313 23 0.034395 4 0.031931 5 0.031389 24 0.030951 1 0.030845 7 0.030842 8 0.030802 3 0.030786 6 0.030742 2 0.030203 15 0.022595 12 0.020525 14 0.012964 19 0.069318 17 0.068761 18 0.06647 22 0.066454 0 0.060653 16 0.059716 9 0.054739 10 0.053263 11 0.049972 21 0.044371 20 0.037313 23 0.034395 4 0.031931 5 0.031389 24 0.030951 1 0.030845 7 0.030842 8 0.030802 3 0.030786 6 0.030742 2 0.030203 15 0.022595 12 0.020525 14 0.012964 22 0.06494795925574308 19 0.06345971866676126 18 0.06329960871805301 17 0.06168693299425245 0 0.05573858884005487 11 0.052537064293103175 10 0.05157776271816098 9 0.05154733158546586 16 0.05151722207880985 21 0.04967867816407638 20 0.036572695509503476 23 0.035955123265214044 24 0.03290287272090726 4 0.03186700042840363 5 0.03136972066342285 6 0.030589338570526307 8 0.029901171119370205 7 0.029897727820765628 1 0.02978912925874322 3 0.029632459355694172 2 0.029285179055923545 12 0.02912178267573664 15 0.022658969955519397 14 0.02018113900363308 13 0.01159337456732994 __DUMMY__ 0.0026914487148257077 false 1.0 208 21 0.099134 18 0.093331 19 0.084007 22 0.082626 12 0.072085 11 0.067444 20 0.066267 10 0.063409 23 0.061253 24 0.054601 14 0.047372 13 0.044335 17 0.037427 9 0.035506 0 0.023761 16 0.016858 15 0.015073 4 0.012624 5 0.011762 6 0.006141 3 0.002421 7 0.001277 8 0.001124 1 1.63E-4 21 0.099134 18 0.093331 19 0.084007 22 0.082626 12 0.072085 11 0.067444 20 0.066267 10 0.063409 23 0.061253 24 0.054601 14 0.047372 13 0.044335 17 0.037427 9 0.035506 0 0.023761 16 0.016858 15 0.015073 4 0.012624 5 0.011762 6 0.006141 3 0.002421 7 0.001277 8 0.001124 1 1.63E-4 21 0.08107306823569485 18 0.07491062512691289 22 0.07342479547205176 19 0.06840596311080167 11 0.061989374019874144 12 0.05813221310661829 10 0.055185402361221644 20 0.052165746649013085 23 0.05148123247259219 24 0.04845385407524616 14 0.041380562733593605 9 0.04069356850080053 17 0.039372011519818895 13 0.03781715882749472 0 0.03195110188743426 4 0.02311857793485973 16 0.02294432243699684 5 0.02246173635851143 6 0.01844687635214526 15 0.017729321745752088 3 0.016326510075455096 7 0.01532562369421313 8 0.015236340204296114 1 0.014691376851915558 2 0.014429472210500326 __DUMMY__ 0.0028531640361856335 false 1.0 209 18 0.094183 10 0.089766 19 0.077874 11 0.076548 21 0.075489 22 0.072299 12 0.060399 14 0.060244 13 0.056093 0 0.05598 17 0.053392 20 0.050833 9 0.046584 16 0.039703 15 0.03038 24 0.022493 23 0.021805 4 0.005673 5 0.00523 6 0.003229 7 6.46E-4 3 5.34E-4 8 3.4E-4 1 2.83E-4 18 0.094183 10 0.089766 19 0.077874 11 0.076548 21 0.075489 22 0.072299 12 0.060399 14 0.060244 13 0.056093 0 0.05598 17 0.053392 20 0.050833 9 0.046584 16 0.039703 15 0.03038 24 0.022493 23 0.021805 4 0.005673 5 0.00523 6 0.003229 7 6.46E-4 3 5.34E-4 8 3.4E-4 1 2.83E-4 18 0.08646282774242059 10 0.08178598153822271 11 0.06983244316946272 21 0.06981211100028711 19 0.0697754339182904 22 0.06932671730824179 14 0.056823316106419865 12 0.05360754422678456 0 0.05215030686840967 13 0.0504426565296336 17 0.049999085463168204 9 0.047651271950665035 20 0.04642051860248234 16 0.03520375978365561 15 0.03181637590550854 23 0.02570504814084049 24 0.024930146021133588 4 0.012911108856631628 5 0.012502306200594606 6 0.010396408457768977 3 0.008181116136547026 7 0.008058835267334242 8 0.007908754242968581 1 0.0078100382911944575 2 0.007498964502374824 __DUMMY__ 0.002986923768958788 false 1.0 690 20 0.112371 19 0.094476 24 0.086182 18 0.077936 23 0.075864 21 0.063926 16 0.054911 12 0.054866 15 0.047711 22 0.045302 14 0.039979 17 0.037076 13 0.030516 10 0.027071 11 0.022245 4 0.018323 3 0.016786 5 0.016578 7 0.014079 8 0.01359 6 0.013165 1 0.012921 2 0.012614 9 0.011512 20 0.112371 19 0.094476 24 0.086182 18 0.077936 23 0.075864 21 0.063926 16 0.054911 12 0.054866 15 0.047711 22 0.045302 14 0.039979 17 0.037076 13 0.030516 10 0.027071 11 0.022245 4 0.018323 3 0.016786 5 0.016578 7 0.014079 8 0.01359 6 0.013165 1 0.012921 2 0.012614 9 0.011512 20 0.08427882318623547 19 0.07835040521160694 18 0.07038168983012452 24 0.0687797048682072 21 0.06258535987341009 23 0.06091435837304109 22 0.0514051193859189 12 0.04968309752255185 16 0.04521769272256394 15 0.043002468223827875 14 0.042981803430851485 17 0.03875707944425691 10 0.03618431632840258 11 0.033557751341366016 13 0.03258553469349234 9 0.02489406701389826 4 0.023089971054171852 5 0.022029100476634974 3 0.021020419848405643 7 0.018872083683254 6 0.018816876909824722 8 0.018652336070384655 1 0.01822526074658623 2 0.017888144977416892 0 0.014557958892706453 __DUMMY__ 0.0032885758908592303 false 1.0 691 22 0.102223 11 0.101684 10 0.0976 18 0.095584 21 0.089644 19 0.070857 0 0.06904 9 0.065914 17 0.057831 14 0.055378 12 0.047125 13 0.038288 16 0.026287 20 0.02186 15 0.015422 24 0.013068 23 0.008839 4 0.007825 5 0.007744 6 0.003695 3 0.001715 7 8.71E-4 8 7.87E-4 1 7.17E-4 22 0.102223 11 0.101684 10 0.0976 18 0.095584 21 0.089644 19 0.070857 0 0.06904 9 0.065914 17 0.057831 14 0.055378 12 0.047125 13 0.038288 16 0.026287 20 0.02186 15 0.015422 24 0.013068 23 0.008839 4 0.007825 5 0.007744 6 0.003695 3 0.001715 7 8.71E-4 8 7.87E-4 1 7.17E-4 22 0.08628951040789502 11 0.08249318300343234 21 0.0797615722921667 18 0.07964006638573656 10 0.07616603638767416 19 0.06430679494764407 9 0.056657153784994044 0 0.056503482814283926 17 0.05119896311020385 14 0.04791003261655871 12 0.047610366114687934 13 0.03678899849143361 20 0.029624052173644867 16 0.027980738347637812 24 0.025748430225857547 23 0.022831312185911508 15 0.017956330532037268 4 0.01759346308769222 5 0.01729718457438817 6 0.014011297358320568 3 0.012308714974884744 7 0.011606787095495777 8 0.011531913895373168 1 0.011400751649212816 2 0.010831609411050616 __DUMMY__ 0.003951254131782008 false 1.0 450 23 0.086797 24 0.077114 20 0.069105 19 0.056471 4 0.054016 3 0.053285 5 0.052999 8 0.050291 7 0.049934 1 0.049718 21 0.049307 2 0.049109 6 0.048984 18 0.041398 22 0.038179 12 0.034555 9 0.034092 16 0.023513 17 0.019747 15 0.017231 14 0.017096 13 0.013317 10 0.012087 0 0.001655 23 0.086797 24 0.077114 20 0.069105 19 0.056471 4 0.054016 3 0.053285 5 0.052999 8 0.050291 7 0.049934 1 0.049718 21 0.049307 2 0.049109 6 0.048984 18 0.041398 22 0.038179 12 0.034555 9 0.034092 16 0.023513 17 0.019747 15 0.017231 14 0.017096 13 0.013317 10 0.012087 0 0.001655 23 0.067936868181907 24 0.06266890836070499 20 0.059451086600846005 19 0.05788971540880863 21 0.0553145361092491 18 0.050039739306015144 22 0.0478334636892312 4 0.04246653608077789 5 0.0417466839752046 12 0.041106635868897505 3 0.04036264043416457 6 0.038643129674107705 8 0.03855197398237169 7 0.0384215433248805 1 0.038200183578903375 2 0.0377156261668439 9 0.03626493605938999 17 0.0307554260041699 16 0.02958443254900136 14 0.027152853025507545 10 0.027037387696067543 13 0.0237265340245839 11 0.023593807750847403 15 0.022519643678878935 0 0.017353709588917847 __DUMMY__ 0.0036619988797218393 false 1.0 692 22 0.092818 21 0.068354 11 0.067734 9 0.067654 18 0.061088 0 0.057964 17 0.055495 19 0.050974 10 0.050866 4 0.039375 5 0.038948 6 0.035637 3 0.035564 8 0.034263 7 0.034167 1 0.033634 2 0.033528 24 0.032643 23 0.029997 16 0.024338 12 0.024227 14 0.01607 20 0.014528 15 1.33E-4 22 0.092818 21 0.068354 11 0.067734 9 0.067654 18 0.061088 0 0.057964 17 0.055495 19 0.050974 10 0.050866 4 0.039375 5 0.038948 6 0.035637 3 0.035564 8 0.034263 7 0.034167 1 0.033634 2 0.033528 24 0.032643 23 0.029997 16 0.024338 12 0.024227 14 0.01607 20 0.014528 15 1.33E-4 22 0.079359762931882 21 0.06341772079559521 9 0.060390575815171404 11 0.05951076344444846 18 0.056640113285419555 0 0.0512728999610168 17 0.05070512937071432 19 0.04918007921694427 10 0.0469483067372065 4 0.03952756275393287 5 0.03903939447436458 6 0.03648314056090391 3 0.036058811203396796 24 0.03592844490589858 8 0.035250182623482916 7 0.03521929455273997 23 0.03497309170207518 1 0.03485792657214697 2 0.03451296496831648 12 0.029477228604537276 16 0.02644333010186221 20 0.02181433338654179 14 0.021501975397847175 13 0.010261148267167595 15 0.008590570230841768 __DUMMY__ 0.0026352481355454475 false 1.0 693 22 0.093919 11 0.07447 21 0.07434 9 0.068063 18 0.064836 0 0.059364 10 0.056433 17 0.054843 19 0.052067 4 0.035489 5 0.035003 6 0.0318 12 0.030485 3 0.030429 24 0.029744 7 0.02971 8 0.029665 1 0.029177 2 0.028643 23 0.027822 14 0.021888 16 0.020892 20 0.012368 13 0.008548 22 0.093919 11 0.07447 21 0.07434 9 0.068063 18 0.064836 0 0.059364 10 0.056433 17 0.054843 19 0.052067 4 0.035489 5 0.035003 6 0.0318 12 0.030485 3 0.030429 24 0.029744 7 0.02971 8 0.029665 1 0.029177 2 0.028643 23 0.027822 14 0.021888 16 0.020892 20 0.012368 13 0.008548 22 0.08135494930072097 21 0.06797423699831671 11 0.06578941934817412 18 0.06094653454819456 9 0.06061094820390408 0 0.0531414873347919 10 0.05309184238261701 19 0.05118315693497887 17 0.05067992312983068 4 0.03540863596096339 5 0.03489852974610242 12 0.033918743677660616 24 0.03303898972034771 6 0.03229595574687645 23 0.032136408747574605 3 0.03114013984224827 7 0.030576295058610096 8 0.0305566370391482 1 0.030202717327985105 2 0.02969443733730941 14 0.02699339118284561 16 0.02476540909232283 20 0.020957469426975565 13 0.016686087993958484 15 0.00936767356078396 __DUMMY__ 0.0025899803567584158 false 1.0 451 9 0.076396 10 0.072273 22 0.071912 18 0.07074 0 0.065206 17 0.059132 11 0.048872 19 0.045729 4 0.041765 5 0.040893 3 0.040609 8 0.040384 1 0.040175 7 0.040143 21 0.039714 6 0.039698 2 0.039232 16 0.026667 15 0.026489 14 0.026076 23 0.020462 20 0.013509 24 0.012887 12 0.001037 9 0.076396 10 0.072273 22 0.071912 18 0.07074 0 0.065206 17 0.059132 11 0.048872 19 0.045729 4 0.041765 5 0.040893 3 0.040609 8 0.040384 1 0.040175 7 0.040143 21 0.039714 6 0.039698 2 0.039232 16 0.026667 15 0.026489 14 0.026076 23 0.020462 20 0.013509 24 0.012887 12 0.001037 9 0.06707166642699625 22 0.06558964663631617 18 0.06252476763317108 10 0.060636094112771266 0 0.05764904117759755 17 0.054252231527975384 11 0.046259160617541276 19 0.043553360714187646 4 0.0425963707770011 21 0.04205173858924855 5 0.04190877250595194 6 0.04098608198878138 8 0.040952398444429244 7 0.04082911421262271 3 0.04081134279162295 1 0.040763937288829585 2 0.040027676115235965 23 0.028548420079077513 16 0.028033846563229683 14 0.025854843341766128 15 0.024962864058790276 24 0.021113857574274655 20 0.019038325246497505 12 0.01284284408391265 13 0.00865491805960739 __DUMMY__ 0.002486679432564094 false 1.0 210 19 0.116553 20 0.100152 18 0.092423 23 0.070051 10 0.069187 16 0.069173 24 0.061602 21 0.06055 22 0.056723 15 0.046376 14 0.046195 11 0.045937 12 0.045397 17 0.038837 13 0.023161 0 0.020062 9 0.016845 4 0.006863 5 0.006337 3 0.005657 7 0.001116 6 3.4E-4 8 2.75E-4 1 1.87E-4 19 0.116553 20 0.100152 18 0.092423 23 0.070051 10 0.069187 16 0.069173 24 0.061602 21 0.06055 22 0.056723 15 0.046376 14 0.046195 11 0.045937 12 0.045397 17 0.038837 13 0.023161 0 0.020062 9 0.016845 4 0.006863 5 0.006337 3 0.005657 7 0.001116 6 3.4E-4 8 2.75E-4 1 1.87E-4 19 0.09054893374257217 18 0.07869648806974557 20 0.07676190491041936 21 0.06406677432699458 22 0.059900703954875824 10 0.05819137448260659 23 0.05728190720110093 24 0.05546271763812189 16 0.052459330168439344 11 0.05000980542911619 12 0.047788262339785406 14 0.04357420206880554 17 0.040963749548806744 15 0.03708451179010113 13 0.029229423462058774 9 0.027829894556110256 0 0.026969595817991642 4 0.016247180506832423 5 0.015747572240952967 3 0.01381741551084791 6 0.01131241999139812 7 0.010938101727348588 8 0.010543416084003915 1 0.0103707954572384 2 0.010142652832953984 __DUMMY__ 0.004060866140771756 false 1.0 452 0 0.089157 17 0.085288 9 0.066242 22 0.061946 16 0.059438 18 0.055578 11 0.054296 10 0.054084 6 0.046352 8 0.043869 7 0.04356 1 0.043453 2 0.043199 4 0.042056 5 0.041516 19 0.038617 3 0.037892 21 0.028832 23 0.020657 12 0.019551 15 0.014445 13 0.006294 24 0.003061 20 6.18E-4 0 0.089157 17 0.085288 9 0.066242 22 0.061946 16 0.059438 18 0.055578 11 0.054296 10 0.054084 6 0.046352 8 0.043869 7 0.04356 1 0.043453 2 0.043199 4 0.042056 5 0.041516 19 0.038617 3 0.037892 21 0.028832 23 0.020657 12 0.019551 15 0.014445 13 0.006294 24 0.003061 20 6.18E-4 0 0.07392558189441215 17 0.0726843562137048 9 0.061507824864135405 22 0.05947289275615798 18 0.052484231145795326 16 0.050885369346595544 11 0.04915516011958524 10 0.048301223080167814 6 0.04594744541282952 8 0.044094186764061606 7 0.04391390626128259 1 0.043798844471289025 4 0.04344262129864256 2 0.043367953445435585 5 0.042916738386121055 3 0.03990450900835373 19 0.0397802757450234 21 0.033866418638517845 23 0.028375025343571884 12 0.022344872372203624 15 0.016813465956368054 24 0.014588392567526476 20 0.010243860130201059 13 0.009491601621150461 14 0.006787781803834112 __DUMMY__ 0.0019054613530330976 false 1.0 694 9 0.065666 22 0.059705 0 0.053534 3 0.051526 4 0.051143 17 0.05089 8 0.050802 5 0.050515 7 0.05049 1 0.050286 2 0.05003 6 0.049612 18 0.047866 10 0.046376 19 0.03742 11 0.037006 21 0.034808 23 0.0335 24 0.029831 16 0.029824 15 0.02581 20 0.019326 14 0.018374 12 0.00566 9 0.065666 22 0.059705 0 0.053534 3 0.051526 4 0.051143 17 0.05089 8 0.050802 5 0.050515 7 0.05049 1 0.050286 2 0.05003 6 0.049612 18 0.047866 10 0.046376 19 0.03742 11 0.037006 21 0.034808 23 0.0335 24 0.029831 16 0.029824 15 0.02581 20 0.019326 14 0.018374 12 0.00566 9 0.06184252993505787 22 0.05879718032087163 0 0.05122241018831907 17 0.05022412029395114 4 0.04920995263130803 5 0.04862966330427682 18 0.04853799628703344 3 0.048366564183909895 8 0.04829141082582289 7 0.048132348163176145 1 0.047959702890762755 6 0.047934164820377836 2 0.04752911568232136 10 0.04446062565605047 21 0.03843080800988894 11 0.03842827771020728 19 0.038245375742236326 23 0.0363246221070814 24 0.03079564207082056 16 0.029953361022199185 15 0.023459424611725243 20 0.02121341226060697 14 0.01920964216878491 12 0.013761641967324614 13 0.006122553146146276 __DUMMY__ 0.002917453999738905 false 1.0 695 23 0.091809 24 0.069247 4 0.063251 5 0.06227 3 0.061231 7 0.060804 6 0.060671 8 0.060595 1 0.060527 2 0.059804 20 0.049123 21 0.041218 19 0.039137 22 0.034989 9 0.034839 12 0.033722 18 0.027619 17 0.025897 16 0.023966 15 0.011547 13 0.010349 0 0.009964 14 0.00464 11 0.002781 23 0.091809 24 0.069247 4 0.063251 5 0.06227 3 0.061231 7 0.060804 6 0.060671 8 0.060595 1 0.060527 2 0.059804 20 0.049123 21 0.041218 19 0.039137 22 0.034989 9 0.034839 12 0.033722 18 0.027619 17 0.025897 16 0.023966 15 0.011547 13 0.010349 0 0.009964 14 0.00464 11 0.002781 23 0.07098961613769696 24 0.058335425183079596 21 0.05202806494474616 4 0.04979288288759674 5 0.04907282032435726 6 0.04731681571482822 22 0.04677413978970553 3 0.04674999722231777 7 0.046489301079167 8 0.04634516608162381 1 0.04624173571257577 2 0.045678691722377256 19 0.045339710132549595 20 0.045158686668278214 12 0.04126076122561742 18 0.03961550556386161 9 0.03799775856512265 17 0.0325947053021721 16 0.02655978750716274 11 0.02505693780991382 13 0.022392490502897808 0 0.021824881511275526 14 0.018919549754337402 10 0.01834769642370428 15 0.015893291835316868 __DUMMY__ 0.003223580397717651 false 1.0 453 9 0.076867 22 0.071081 0 0.060096 10 0.055614 4 0.054785 5 0.053869 6 0.053184 8 0.052267 7 0.051775 3 0.051155 1 0.051113 2 0.050841 18 0.050578 11 0.050451 17 0.047119 21 0.046438 23 0.029238 19 0.024938 24 0.018561 12 0.015861 14 0.015536 13 0.007507 16 0.007231 15 0.003893 9 0.076867 22 0.071081 0 0.060096 10 0.055614 4 0.054785 5 0.053869 6 0.053184 8 0.052267 7 0.051775 3 0.051155 1 0.051113 2 0.050841 18 0.050578 11 0.050451 17 0.047119 21 0.046438 23 0.029238 19 0.024938 24 0.018561 12 0.015861 14 0.015536 13 0.007507 16 0.007231 15 0.003893 9 0.06629466394845403 22 0.06589524879836205 0 0.05530623759727022 18 0.0515447950902851 10 0.05136592007770145 11 0.04938522391320352 4 0.04853550598498756 21 0.04798806498297612 17 0.047920116657092074 5 0.047844036316977256 6 0.047241503008115415 8 0.04605581315814178 7 0.045824104629682096 1 0.04544601061602272 3 0.045038161485227476 2 0.045025468482481484 23 0.03325752827816022 19 0.03292657415033373 24 0.02420283478643486 12 0.024113536669957008 14 0.020649866881956434 16 0.017969496541894166 13 0.015271616633055471 20 0.011543098783951882 15 0.01133274801784011 __DUMMY__ 0.0020218245094358917 false 1.0 211 16 0.097265 17 0.095043 0 0.085439 12 0.076823 19 0.059282 18 0.058508 11 0.055597 13 0.055403 23 0.046308 10 0.042475 22 0.03631 6 0.033967 21 0.031002 9 0.028676 8 0.025168 4 0.024743 7 0.024652 1 0.024645 2 0.024543 5 0.024225 20 0.022679 15 0.015004 3 0.012037 14 2.06E-4 16 0.097265 17 0.095043 0 0.085439 12 0.076823 19 0.059282 18 0.058508 11 0.055597 13 0.055403 23 0.046308 10 0.042475 22 0.03631 6 0.033967 21 0.031002 9 0.028676 8 0.025168 4 0.024743 7 0.024652 1 0.024645 2 0.024543 5 0.024225 20 0.022679 15 0.015004 3 0.012037 14 2.06E-4 17 0.07749722310956982 16 0.07363284328653735 0 0.06897737577289048 18 0.055378367065022034 19 0.054672925981587725 12 0.0542954062504356 11 0.0495460673133034 22 0.045342364658583774 23 0.04319989702824391 10 0.04116457263709338 9 0.03825502226613629 21 0.03669876983375667 6 0.03644678213288037 13 0.03635311911277391 4 0.03163259689739639 8 0.031456265292242165 7 0.031176944804554303 5 0.03113762007844339 1 0.031110670340947066 2 0.030792556811379296 20 0.02772797573914511 3 0.02387484740886775 15 0.020315081865938344 24 0.01704076675959274 14 0.009210685882289864 __DUMMY__ 0.003063251670388972 false 1.0 212 19 0.09872 18 0.09772 20 0.087544 10 0.080641 16 0.060294 14 0.05802 21 0.055852 15 0.052962 12 0.051419 22 0.051146 23 0.050003 11 0.048298 17 0.045786 13 0.0452 24 0.043509 0 0.033222 9 0.025453 4 0.005062 5 0.004451 3 0.002504 6 0.001344 7 5.65E-4 8 2.4E-4 2 4.5E-5 19 0.09872 18 0.09772 20 0.087544 10 0.080641 16 0.060294 14 0.05802 21 0.055852 15 0.052962 12 0.051419 22 0.051146 23 0.050003 11 0.048298 17 0.045786 13 0.0452 24 0.043509 0 0.033222 9 0.025453 4 0.005062 5 0.004451 3 0.002504 6 0.001344 7 5.65E-4 8 2.4E-4 2 4.5E-5 18 0.08506660772347095 19 0.08319055995248399 20 0.0724236569859666 10 0.0681440128889179 21 0.06009872170404232 22 0.05634287927705006 14 0.052596297159138945 11 0.050284120050029725 12 0.04926106805175541 16 0.04831948024006902 23 0.046102934146281443 24 0.04468736888194224 17 0.0445817108329845 15 0.044146981323043295 13 0.04106366647092386 0 0.03370839788248049 9 0.032442063834705596 4 0.013803413188966593 5 0.013261193146048709 3 0.010860369905488353 6 0.010210034060202457 7 0.009193202115790885 8 0.009035113996757325 1 0.008796096810740341 2 0.008663100371748682 __DUMMY__ 0.003716948998970379 false 1.0 454 9 0.065438 22 0.059232 0 0.051985 3 0.051569 4 0.051169 17 0.050984 8 0.050928 1 0.050778 7 0.050745 5 0.050521 2 0.050097 6 0.049578 18 0.047687 10 0.045423 19 0.037691 11 0.03652 21 0.035389 23 0.033551 24 0.030205 16 0.029795 15 0.026057 20 0.019577 14 0.01872 12 0.006363 9 0.065438 22 0.059232 0 0.051985 3 0.051569 4 0.051169 17 0.050984 8 0.050928 1 0.050778 7 0.050745 5 0.050521 2 0.050097 6 0.049578 18 0.047687 10 0.045423 19 0.037691 11 0.03652 21 0.035389 23 0.033551 24 0.030205 16 0.029795 15 0.026057 20 0.019577 14 0.01872 12 0.006363 9 0.06184146092538488 22 0.05884022721409773 0 0.05136742546990917 17 0.05105059472776635 18 0.04887853257926704 4 0.04887406148624926 5 0.04828012068671842 8 0.0480327978245361 3 0.04795767893140295 7 0.04792924214567689 1 0.04786368383270767 6 0.047662468042933025 2 0.04723776883517753 10 0.04446837408029329 11 0.0387910270072508 21 0.0387023417830586 19 0.0386463574340903 23 0.03591392653784757 16 0.030595701329111127 24 0.03038876989273349 15 0.023359933802189304 20 0.021045254466219424 14 0.019086640069126436 12 0.014290477489043251 13 0.006175535181447699 __DUMMY__ 0.0027195982257617957 false 1.0 696 21 0.085305 23 0.081428 24 0.069084 22 0.065923 12 0.062032 11 0.048959 4 0.048018 5 0.045786 6 0.043445 19 0.041369 7 0.040591 8 0.040115 3 0.040043 1 0.039855 2 0.038471 13 0.037945 20 0.034087 9 0.031842 14 0.030283 18 0.02985 17 0.020638 0 0.01034 15 0.007668 16 0.006924 21 0.085305 23 0.081428 24 0.069084 22 0.065923 12 0.062032 11 0.048959 4 0.048018 5 0.045786 6 0.043445 19 0.041369 7 0.040591 8 0.040115 3 0.040043 1 0.039855 2 0.038471 13 0.037945 20 0.034087 9 0.031842 14 0.030283 18 0.02985 17 0.020638 0 0.01034 15 0.007668 16 0.006924 21 0.07975496987069627 23 0.06453009894482915 22 0.06443242296911411 12 0.06165775353953356 24 0.05930733280310624 11 0.05272405686163257 19 0.049987698953754135 18 0.04316585981291194 13 0.04170232324530501 20 0.040263870079872775 4 0.037939169344107994 5 0.03662084303723703 14 0.03561122891260021 9 0.03434791158279783 6 0.03419809872490624 7 0.03150624658064617 3 0.031405685099766614 8 0.031248079496160996 1 0.03102207767048359 2 0.030180140817452985 17 0.029399050470617444 0 0.02159895916834245 10 0.020489140951756395 16 0.018464910208313947 15 0.013176676682323946 __DUMMY__ 0.005265394171730144 false 1.0 213 20 0.107819 23 0.0884 19 0.085467 24 0.076954 18 0.075499 16 0.058421 15 0.055308 12 0.049406 21 0.041806 17 0.036255 14 0.033896 13 0.03225 10 0.02848 4 0.026362 5 0.025781 3 0.024371 6 0.023675 22 0.023661 7 0.023313 2 0.022614 8 0.022572 1 0.022335 11 0.008284 9 0.007073 20 0.107819 23 0.0884 19 0.085467 24 0.076954 18 0.075499 16 0.058421 15 0.055308 12 0.049406 21 0.041806 17 0.036255 14 0.033896 13 0.03225 10 0.02848 4 0.026362 5 0.025781 3 0.024371 6 0.023675 22 0.023661 7 0.023313 2 0.022614 8 0.022572 1 0.022335 11 0.008284 9 0.007073 20 0.08178062418836066 19 0.07470869134054704 18 0.07145655384959612 23 0.06673459765164746 24 0.06175010717378979 21 0.049660713600452065 16 0.047977043037296156 12 0.046289294017414204 15 0.04562935445600141 22 0.040076834726041094 17 0.03994279373163807 10 0.03960639109626266 14 0.038247928210326555 13 0.03275959733446785 4 0.02672857993860292 11 0.026581521637641457 5 0.026213596050700557 3 0.024370486858425546 6 0.023896714541582167 9 0.02334815981563516 7 0.0232341476822756 8 0.022921429834313913 1 0.022685235536730772 2 0.022675331310806658 0 0.01681617400330902 __DUMMY__ 0.003908098376135117 false 1.0 455 9 0.066074 22 0.057758 3 0.053892 4 0.053019 8 0.052288 5 0.052192 7 0.052136 1 0.052112 2 0.051254 6 0.050392 18 0.049751 10 0.048847 0 0.04636 17 0.043421 23 0.035826 19 0.035588 11 0.03451 21 0.033774 24 0.032828 15 0.029012 14 0.023586 20 0.022555 16 0.020449 12 0.002376 9 0.066074 22 0.057758 3 0.053892 4 0.053019 8 0.052288 5 0.052192 7 0.052136 1 0.052112 2 0.051254 6 0.050392 18 0.049751 10 0.048847 0 0.04636 17 0.043421 23 0.035826 19 0.035588 11 0.03451 21 0.033774 24 0.032828 15 0.029012 14 0.023586 20 0.022555 16 0.020449 12 0.002376 9 0.061391155395387954 22 0.06014890410069921 18 0.05260226958920877 10 0.04830465094300427 4 0.04729859406236061 0 0.04669865897328619 5 0.0466097911103888 3 0.04659179939635281 17 0.0456950495665455 8 0.04567025606991838 7 0.04557380967557167 1 0.045457477976253755 6 0.044989748301761535 2 0.044778175137241714 21 0.04153008394412012 19 0.04055910658854538 11 0.039834470125798056 23 0.03679222469080349 24 0.03336883854922958 15 0.025921416435885202 20 0.02539182570959006 14 0.025143740550421026 16 0.02469792970162634 12 0.013987441253450732 13 0.007966020261810227 __DUMMY__ 0.0029965618907387545 false 1.0 697 9 0.063932 22 0.056494 3 0.053981 4 0.052776 8 0.052275 7 0.052057 1 0.051955 5 0.051941 2 0.051317 6 0.050218 18 0.047587 10 0.045854 0 0.044996 17 0.043917 23 0.037375 19 0.036782 24 0.034392 21 0.033321 11 0.032518 15 0.031857 20 0.024498 16 0.024174 14 0.023589 12 0.002193 9 0.063932 22 0.056494 3 0.053981 4 0.052776 8 0.052275 7 0.052057 1 0.051955 5 0.051941 2 0.051317 6 0.050218 18 0.047587 10 0.045854 0 0.044996 17 0.043917 23 0.037375 19 0.036782 24 0.034392 21 0.033321 11 0.032518 15 0.031857 20 0.024498 16 0.024174 14 0.023589 12 0.002193 9 0.06078497027462215 22 0.05757999641058811 4 0.04951127031519477 3 0.0491211883492214 18 0.049039646193709936 5 0.04883367809034796 8 0.04834384466676108 7 0.04822889679861688 1 0.048097322827151595 6 0.04751455171942412 2 0.047500486467031734 0 0.04603765126447435 17 0.04578578465316101 10 0.044814835840514496 21 0.03860330989374193 19 0.03846486553578924 23 0.038332801130474464 11 0.03642266422718181 24 0.03369312171679739 15 0.02707651614001544 16 0.026243737958919044 20 0.0246763725074579 14 0.023215614372335075 12 0.012313644474327576 13 0.006741565086119193 __DUMMY__ 0.003021663086021295 false 1.0 214 17 0.055729 6 0.05391 8 0.053622 7 0.053152 1 0.052951 4 0.052896 2 0.052747 5 0.05255 23 0.051534 3 0.051267 9 0.050013 0 0.048678 22 0.046637 16 0.046279 19 0.040876 24 0.038977 18 0.038442 21 0.03267 20 0.029101 11 0.028567 12 0.025601 10 0.025014 15 0.012712 13 0.006075 17 0.055729 6 0.05391 8 0.053622 7 0.053152 1 0.052951 4 0.052896 2 0.052747 5 0.05255 23 0.051534 3 0.051267 9 0.050013 0 0.048678 22 0.046637 16 0.046279 19 0.040876 24 0.038977 18 0.038442 21 0.03267 20 0.029101 11 0.028567 12 0.025601 10 0.025014 15 0.012712 13 0.006075 17 0.05097398937335754 23 0.049825958755714744 4 0.04907624775030686 6 0.04903261318771078 9 0.04892158910329658 22 0.048791953694465824 5 0.048663768627185654 8 0.048547844211001334 7 0.04833324317395079 1 0.048195683539728106 2 0.04781410279692862 3 0.04713414912476456 0 0.04412090209739737 18 0.043450444893931 19 0.04256300053750792 16 0.04031742418607547 24 0.04017891394112305 21 0.03791195249353634 20 0.032532787476022666 11 0.031497067366438515 10 0.030044548627303484 12 0.02802137312024825 15 0.018382197551259406 13 0.012134212655488707 14 0.01064546680692151 __DUMMY__ 0.0028885649083347847 false 1.0 698 19 0.119545 20 0.112516 16 0.092672 18 0.083627 24 0.074495 23 0.061559 21 0.06022 17 0.059698 12 0.054971 15 0.051108 22 0.047916 10 0.040305 11 0.037421 14 0.035154 13 0.024863 0 0.021082 9 0.009924 4 0.004228 5 0.00392 3 0.003075 7 6.45E-4 8 4.42E-4 6 3.79E-4 1 2.32E-4 19 0.119545 20 0.112516 16 0.092672 18 0.083627 24 0.074495 23 0.061559 21 0.06022 17 0.059698 12 0.054971 15 0.051108 22 0.047916 10 0.040305 11 0.037421 14 0.035154 13 0.024863 0 0.021082 9 0.009924 4 0.004228 5 0.00392 3 0.003075 7 6.45E-4 8 4.42E-4 6 3.79E-4 1 2.32E-4 19 0.09544717893931114 20 0.08771912893265613 18 0.07507640619829861 16 0.06740801584162608 24 0.06430235949363615 21 0.06403035279789883 23 0.05493300068005804 12 0.05446879070023626 22 0.053588907931364324 17 0.051306159150104794 11 0.043858736718456165 10 0.04277566522214122 15 0.04144159927961377 14 0.038981679759170836 13 0.031407947722477826 0 0.025446210401392354 9 0.02149131476737398 4 0.013174035586915175 5 0.012784179120707714 3 0.010914507843305042 6 0.00955796649541082 7 0.009040283921383962 8 0.008934064419923 1 0.008719837747274856 2 0.008443937910319237 __DUMMY__ 0.004747732418943578 false 1.0 456 9 0.065338 22 0.059203 0 0.051956 3 0.051509 4 0.051129 17 0.050979 8 0.050925 1 0.050701 7 0.050687 5 0.050418 2 0.050038 6 0.049514 18 0.047845 10 0.045414 19 0.037708 11 0.036512 21 0.035337 23 0.033759 24 0.030257 16 0.029848 15 0.026074 20 0.019666 14 0.01875 12 0.006433 9 0.065338 22 0.059203 0 0.051956 3 0.051509 4 0.051129 17 0.050979 8 0.050925 1 0.050701 7 0.050687 5 0.050418 2 0.050038 6 0.049514 18 0.047845 10 0.045414 19 0.037708 11 0.036512 21 0.035337 23 0.033759 24 0.030257 16 0.029848 15 0.026074 20 0.019666 14 0.01875 12 0.006433 9 0.06179411670990327 22 0.05882611183892453 0 0.051356088116861924 17 0.05105094201480333 18 0.04895016092294344 4 0.04885546330516692 5 0.04823252916173407 8 0.04803139673131339 3 0.04792920801590368 7 0.04790249984119473 1 0.04782816070251297 6 0.04763348348318677 2 0.047210596759684 10 0.044462020781656904 11 0.038787810815992946 21 0.03867840155465913 19 0.03865370959104438 23 0.03601046255113215 16 0.03062334938085247 24 0.030411425765029743 15 0.023365446493786444 20 0.021084843236449703 14 0.019097731261133184 12 0.014326210281903734 13 0.0061772367736618525 __DUMMY__ 0.0027205939085644055 false 1.0 215 19 0.107028 18 0.079612 20 0.079293 16 0.078148 21 0.075551 22 0.066748 11 0.063167 17 0.062652 12 0.061179 24 0.055353 10 0.053235 23 0.045819 0 0.042421 14 0.032158 13 0.029072 15 0.026406 9 0.025824 5 0.005656 4 0.005527 3 0.002457 6 0.002067 2 4.54E-4 7 1.64E-4 8 9.0E-6 19 0.107028 18 0.079612 20 0.079293 16 0.078148 21 0.075551 22 0.066748 11 0.063167 17 0.062652 12 0.061179 24 0.055353 10 0.053235 23 0.045819 0 0.042421 14 0.032158 13 0.029072 15 0.026406 9 0.025824 5 0.005656 4 0.005527 3 0.002457 6 0.002067 2 4.54E-4 7 1.64E-4 8 9.0E-6 19 0.0891121377187574 21 0.07281803606562731 18 0.07223484930511102 20 0.0685144691302115 22 0.06420742524943275 16 0.06095708548669275 12 0.05896491840311559 11 0.05886896359463042 17 0.05417247397782709 24 0.053179430642282956 10 0.049027363588743614 23 0.04641899946185407 0 0.038540953537726436 14 0.03517266622626335 13 0.03354512750546729 9 0.030059149350721827 15 0.025589362240391128 4 0.013798203622222168 5 0.013619734402987568 6 0.010595681231049594 3 0.010229925656467775 7 0.008763994111446786 8 0.008676336382401418 2 0.0085960163783178 1 0.008567199423745786 __DUMMY__ 0.005769497306504474 false 1.0 457 9 0.065207 22 0.059492 0 0.052102 3 0.051634 4 0.051168 17 0.050896 8 0.050852 5 0.050657 7 0.050592 1 0.050559 2 0.05016 6 0.049591 18 0.04766 10 0.045452 19 0.037706 11 0.036589 21 0.035425 23 0.033451 24 0.03026 16 0.029853 15 0.026124 20 0.01947 14 0.018738 12 0.006359 9 0.065207 22 0.059492 0 0.052102 3 0.051634 4 0.051168 17 0.050896 8 0.050852 5 0.050657 7 0.050592 1 0.050559 2 0.05016 6 0.049591 18 0.04766 10 0.045452 19 0.037706 11 0.036589 21 0.035425 23 0.033451 24 0.03026 16 0.029853 15 0.026124 20 0.01947 14 0.018738 12 0.006359 9 0.06173377398267046 22 0.0589595044036687 0 0.05142350669158761 17 0.051012726066227164 4 0.048873521001013186 18 0.04886489107023248 5 0.04834284285232112 8 0.04799778944697037 3 0.047986934878368616 7 0.047858744124230496 1 0.04776272452132865 6 0.04766906829078287 2 0.047266938774844856 10 0.04447961111334125 11 0.03882338338247971 21 0.03871904809686302 19 0.03865284051352274 23 0.035868436824856846 16 0.03062569818048159 24 0.030412851702819856 15 0.023388543042323705 20 0.020994460695115947 14 0.019092222278175648 12 0.014292095070258387 13 0.006177245322048577 __DUMMY__ 0.002720597673466044 false 1.0 699 0 0.085163 17 0.078395 9 0.061482 22 0.058196 11 0.058131 16 0.055664 10 0.050569 18 0.050094 6 0.047199 8 0.043688 1 0.043576 7 0.043516 2 0.043016 4 0.042743 5 0.04237 3 0.037161 19 0.03608 21 0.033491 12 0.033285 23 0.025056 13 0.019447 15 0.007067 24 0.002919 14 0.001689 0 0.085163 17 0.078395 9 0.061482 22 0.058196 11 0.058131 16 0.055664 10 0.050569 18 0.050094 6 0.047199 8 0.043688 1 0.043576 7 0.043516 2 0.043016 4 0.042743 5 0.04237 3 0.037161 19 0.03608 21 0.033491 12 0.033285 23 0.025056 13 0.019447 15 0.007067 24 0.002919 14 0.001689 0 0.07149444791709811 17 0.06933914889281183 9 0.057398510580725336 22 0.05731027126987136 11 0.05198603720993671 18 0.05035807683056539 16 0.05019847557228404 10 0.04652081869467764 6 0.04490342366560622 8 0.042359947639383826 4 0.04226130424708226 7 0.042237861945902754 1 0.04220334973462407 5 0.041818918170320574 2 0.04165311748225557 19 0.03990141342081874 3 0.03778420637317107 21 0.03752755694389585 12 0.03199149049270645 23 0.03094879799434577 13 0.018562676293509165 24 0.015172988979956314 15 0.013532798865963295 20 0.011604815824857439 14 0.008792960435221781 __DUMMY__ 0.0021365845224086597 false 1.0 216 21 0.103901 19 0.094711 12 0.080462 18 0.078731 20 0.076065 22 0.075907 24 0.066861 11 0.065128 23 0.055491 13 0.045179 10 0.044582 17 0.040826 14 0.039867 16 0.038939 9 0.026983 0 0.024062 5 0.010543 4 0.009208 15 0.007089 3 0.007061 2 0.003887 6 0.003063 1 0.001168 7 2.85E-4 21 0.103901 19 0.094711 12 0.080462 18 0.078731 20 0.076065 22 0.075907 24 0.066861 11 0.065128 23 0.055491 13 0.045179 10 0.044582 17 0.040826 14 0.039867 16 0.038939 9 0.026983 0 0.024062 5 0.010543 4 0.009208 15 0.007089 3 0.007061 2 0.003887 6 0.003063 1 0.001168 7 2.85E-4 21 0.08120562014663585 19 0.07197313229508674 22 0.06740446041824404 18 0.06627848683653478 12 0.06033002256992873 20 0.058309154677472205 24 0.05587816944547127 11 0.055681951229018325 23 0.05066425345611889 10 0.04378517478699873 17 0.03912223877239029 14 0.03763710479119604 13 0.03741097875980456 9 0.036572014735646294 16 0.03199647863611491 0 0.029269908489106614 5 0.023846665397611655 4 0.023480692219906337 3 0.020947100075600383 6 0.01891624446029405 2 0.018494575693547118 1 0.01743655288919125 7 0.017117652983587566 8 0.016961776517069677 15 0.015588756386541924 __DUMMY__ 0.00369083333088199 false 1.0 458 14 0.112753 15 0.089523 18 0.08694 10 0.080627 13 0.074489 21 0.067721 20 0.066564 19 0.057306 22 0.054733 12 0.046229 11 0.043305 24 0.042363 9 0.038713 23 0.038103 5 0.01535 4 0.014786 17 0.013045 3 0.012888 2 0.007955 6 0.007791 0 0.007435 1 0.007323 8 0.007212 7 0.006843 14 0.112753 15 0.089523 18 0.08694 10 0.080627 13 0.074489 21 0.067721 20 0.066564 19 0.057306 22 0.054733 12 0.046229 11 0.043305 24 0.042363 9 0.038713 23 0.038103 5 0.01535 4 0.014786 17 0.013045 3 0.012888 2 0.007955 6 0.007791 0 0.007435 1 0.007323 8 0.007212 7 0.006843 14 0.08855964593763166 18 0.07679624063146721 10 0.06973415495829963 15 0.06821985338294408 13 0.06759832599701908 21 0.06421617237222293 20 0.05712634706009032 19 0.05538964635896575 22 0.05379794558992101 12 0.05124634147650284 11 0.04721855989531672 24 0.03901497872371843 23 0.03889185325431029 9 0.03805350483228298 17 0.02515495165922716 0 0.020748614497904303 5 0.019159932735954153 4 0.019096924660211435 3 0.015666261080777028 6 0.014664434896862706 16 0.014419352547798619 2 0.013195544555296448 8 0.013093651556528566 1 0.013040629873965016 7 0.012894805464703906 __DUMMY__ 0.0030013260000776453 false 1.0 217 21 0.104517 19 0.094561 12 0.080345 18 0.078299 22 0.075768 20 0.075125 24 0.067117 11 0.064795 23 0.055267 13 0.044616 10 0.043429 17 0.0414 14 0.039409 16 0.038236 9 0.027202 0 0.023271 5 0.011268 4 0.009532 3 0.008717 15 0.006758 2 0.005531 6 0.002992 1 0.001683 8 1.63E-4 21 0.104517 19 0.094561 12 0.080345 18 0.078299 22 0.075768 20 0.075125 24 0.067117 11 0.064795 23 0.055267 13 0.044616 10 0.043429 17 0.0414 14 0.039409 16 0.038236 9 0.027202 0 0.023271 5 0.011268 4 0.009532 3 0.008717 15 0.006758 2 0.005531 6 0.002992 1 0.001683 8 1.63E-4 21 0.08146455216324432 19 0.07191000351649733 22 0.0673459604869117 18 0.06609679452599439 12 0.0602807785983922 20 0.057913877909264146 24 0.05598575894661069 11 0.05554189287794531 23 0.05057002892358945 10 0.04330035330911833 17 0.0393635470657541 14 0.03744450473450178 13 0.037174231114301855 9 0.03666406363513027 16 0.03170087183843977 0 0.02893730394091284 5 0.024151475247054056 4 0.023616899906975432 3 0.021643356003429433 2 0.019185788223276053 6 0.018886376245755707 1 0.017653072571041626 8 0.0170302964248885 7 0.01699780890343184 15 0.015449572660315847 __DUMMY__ 0.003690830227223055 false 1.0 459 17 0.080257 0 0.073073 9 0.058707 16 0.058537 22 0.056559 18 0.055167 6 0.048489 8 0.045311 4 0.045268 7 0.045141 1 0.044643 2 0.044326 5 0.044324 19 0.042419 10 0.042018 11 0.040585 3 0.03952 23 0.035652 21 0.028636 12 0.01981 15 0.019691 24 0.015828 20 0.013127 13 0.002912 17 0.080257 0 0.073073 9 0.058707 16 0.058537 22 0.056559 18 0.055167 6 0.048489 8 0.045311 4 0.045268 7 0.045141 1 0.044643 2 0.044326 5 0.044324 19 0.042419 10 0.042018 11 0.040585 3 0.03952 23 0.035652 21 0.028636 12 0.01981 15 0.019691 24 0.015828 20 0.013127 13 0.002912 17 0.0653106130503975 0 0.05985670832727217 9 0.054759502891165435 22 0.05388526784564185 18 0.049641360406006946 6 0.048063869440298966 16 0.047801532105786866 4 0.046471957404788246 8 0.046036962925914734 7 0.04595577401413939 5 0.045806128697640065 1 0.045696325001857864 2 0.0452515670132502 3 0.042425939391743064 19 0.04098779663384598 23 0.04025765895518907 11 0.03881222664189845 10 0.038334915349308545 21 0.034331315094077525 24 0.025620508468984688 12 0.024421433148446404 15 0.020276630253640248 20 0.020176160421432894 13 0.009936779221568387 14 0.008354637041770027 __DUMMY__ 0.001526430253934464 false 1.0 218 23 0.092713 21 0.065215 24 0.065041 18 0.062581 19 0.058933 20 0.058248 22 0.057713 3 0.04971 5 0.048996 4 0.048138 2 0.045913 1 0.043991 7 0.041992 6 0.041378 8 0.040643 9 0.040254 17 0.027931 12 0.025054 15 0.021848 10 0.017468 14 0.017116 11 0.013987 16 0.01178 0 0.003357 23 0.092713 21 0.065215 24 0.065041 18 0.062581 19 0.058933 20 0.058248 22 0.057713 3 0.04971 5 0.048996 4 0.048138 2 0.045913 1 0.043991 7 0.041992 6 0.041378 8 0.040643 9 0.040254 17 0.027931 12 0.025054 15 0.021848 10 0.017468 14 0.017116 11 0.013987 16 0.01178 0 0.003357 23 0.06557740855612877 22 0.0563915920429104 18 0.05433611034127154 21 0.05280076597915126 24 0.04927448285104115 9 0.048840301687139494 5 0.04880687687788771 4 0.04864794086346262 3 0.0484431304702294 19 0.04755425038277544 2 0.046356508547860754 1 0.04573929537791818 7 0.04488311804353701 6 0.04476614278146042 8 0.04427399525993007 20 0.04112564392748669 17 0.036973449614219084 10 0.029577100677186368 11 0.02616488857374388 0 0.025114786851233126 12 0.024110266329385975 15 0.021746931579432655 16 0.019667090277789293 14 0.019578444076041233 13 0.007703274753665019 __DUMMY__ 0.001546203277112183 false 1.0 219 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.08703278165350739 10 0.08136187502884669 21 0.0701908748270127 19 0.0698526651979967 22 0.06980538627098848 11 0.06942967464886142 14 0.05632472335903883 12 0.05338368974929839 0 0.0521012861029499 13 0.05038137387677633 17 0.050351501607615444 9 0.048215758853753364 20 0.04601910179593861 16 0.0350689035390182 15 0.032249616308579726 23 0.025705513929151595 24 0.02478347811442056 4 0.01270040524071383 5 0.01256361743771979 6 0.01012121933345417 3 0.008180211621203538 1 0.007968528062395555 7 0.007869472864983853 8 0.007852447542639644 2 0.007498967907769014 __DUMMY__ 0.002986925125366442 false 1.0 460 23 0.08268 24 0.06764 20 0.060781 5 0.057586 4 0.057145 3 0.056507 2 0.053647 1 0.052734 6 0.052632 8 0.052106 7 0.052085 18 0.045636 19 0.044823 21 0.038738 9 0.035237 22 0.033221 15 0.031664 12 0.02886 14 0.026151 10 0.020281 17 0.018559 13 0.01701 16 0.013148 0 0.001127 23 0.08268 24 0.06764 20 0.060781 5 0.057586 4 0.057145 3 0.056507 2 0.053647 1 0.052734 6 0.052632 8 0.052106 7 0.052085 18 0.045636 19 0.044823 21 0.038738 9 0.035237 22 0.033221 15 0.031664 12 0.02886 14 0.026151 10 0.020281 17 0.018559 13 0.01701 16 0.013148 0 0.001127 23 0.06390586013008508 20 0.05768442069589502 18 0.05631442281065546 24 0.056183453121403826 19 0.05310109611956371 21 0.048474351143908 22 0.04437443739095303 4 0.04164004713373499 5 0.04160675677367599 3 0.039770783137505844 14 0.038138673274212366 6 0.037947021844223154 2 0.03758082932712497 1 0.03730794210895231 8 0.037136420554911516 7 0.037130619593072255 15 0.03695135278527162 9 0.03681726889250815 12 0.03671723015113818 10 0.036214115467592914 17 0.029661328633974037 13 0.028243824622907948 16 0.02412030423499427 11 0.022875132096887883 0 0.01646813350447651 __DUMMY__ 0.0036341744503708387 false 1.0 461 9 0.065432 22 0.059537 0 0.052262 3 0.051663 4 0.051234 17 0.050913 8 0.050909 5 0.050683 7 0.050618 1 0.050578 2 0.050181 6 0.04963 18 0.04762 10 0.045528 19 0.03779 11 0.036593 21 0.035395 23 0.033406 24 0.030072 16 0.029856 15 0.025945 20 0.019387 14 0.018593 12 0.006176 9 0.065432 22 0.059537 0 0.052262 3 0.051663 4 0.051234 17 0.050913 8 0.050909 5 0.050683 7 0.050618 1 0.050578 2 0.050181 6 0.04963 18 0.04762 10 0.045528 19 0.03779 11 0.036593 21 0.035395 23 0.033406 24 0.030072 16 0.029856 15 0.025945 20 0.019387 14 0.018593 12 0.006176 9 0.06183744884798596 22 0.05898015336997518 0 0.05149721715759184 17 0.051020473759283515 4 0.04890387552939707 18 0.048846349570660946 5 0.04835474702256441 8 0.04802399404030071 3 0.048000223555608165 7 0.04787064918770067 1 0.047771400777938094 6 0.04768697038885696 2 0.047276538513110936 10 0.04451458658340467 11 0.03882515688187674 21 0.03870513815205678 19 0.03869151700221967 23 0.03584761288831733 16 0.030627025522271294 24 0.030326074301671394 15 0.02330593015285945 20 0.02095613543260439 14 0.019025300952713597 12 0.014207653831225851 13 0.006177233924204869 __DUMMY__ 0.0027205926535995087 false 1.0 220 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.08703278165350739 10 0.08136187502884669 21 0.0701908748270127 19 0.0698526651979967 22 0.06980538627098848 11 0.06942967464886142 14 0.05632472335903883 12 0.05338368974929839 0 0.0521012861029499 13 0.05038137387677633 17 0.050351501607615444 9 0.048215758853753364 20 0.04601910179593861 16 0.0350689035390182 15 0.032249616308579726 23 0.025705513929151595 24 0.02478347811442056 4 0.01270040524071383 5 0.012563617437719788 6 0.010121219333454171 3 0.008180211621203538 1 0.007968528062395555 7 0.007869472864983853 8 0.007852447542639644 2 0.007498967907769014 __DUMMY__ 0.002986925125366442 false 1.0 462 9 0.066216 22 0.058199 3 0.053886 4 0.052912 5 0.05215 8 0.052115 1 0.051971 7 0.051936 2 0.05125 18 0.050404 6 0.050196 10 0.048803 0 0.046094 17 0.043534 19 0.035961 23 0.035735 11 0.034195 21 0.033974 24 0.032478 15 0.029081 14 0.023506 20 0.022642 16 0.02037 12 0.002391 9 0.066216 22 0.058199 3 0.053886 4 0.052912 5 0.05215 8 0.052115 1 0.051971 7 0.051936 2 0.05125 18 0.050404 6 0.050196 10 0.048803 0 0.046094 17 0.043534 19 0.035961 23 0.035735 11 0.034195 21 0.033974 24 0.032478 15 0.029081 14 0.023506 20 0.022642 16 0.02037 12 0.002391 9 0.06146172781814008 22 0.060342879267416244 18 0.05289215562955245 10 0.0482813551577045 4 0.047258750730760066 3 0.046600167671028175 5 0.04659976783383602 0 0.046581717970357484 17 0.045749912250855285 8 0.04560268278948233 7 0.045493690838250105 1 0.0454045909073122 6 0.044910454648004756 2 0.04478800816643773 21 0.04160553703245984 19 0.04071928693500022 11 0.03968003170587291 23 0.03674749573477701 24 0.03320289977972406 15 0.025959997338721133 20 0.025422815454656182 14 0.025102229981005912 16 0.024664184234917213 12 0.013979689150065722 13 0.007957336353201803 __DUMMY__ 0.0029906346204605755 false 1.0 221 21 0.098107 12 0.09567 11 0.084941 13 0.074996 22 0.07273 19 0.065598 18 0.065198 10 0.0557 14 0.048677 0 0.045468 20 0.044866 17 0.040744 24 0.040039 23 0.038082 9 0.033689 16 0.031126 4 0.013259 5 0.012515 6 0.011115 7 0.006252 1 0.006059 8 0.005862 2 0.005084 3 0.004224 21 0.098107 12 0.09567 11 0.084941 13 0.074996 22 0.07273 19 0.065598 18 0.065198 10 0.0557 14 0.048677 0 0.045468 20 0.044866 17 0.040744 24 0.040039 23 0.038082 9 0.033689 16 0.031126 4 0.013259 5 0.012515 6 0.011115 7 0.006252 1 0.006059 8 0.005862 2 0.005084 3 0.004224 21 0.08903504385842212 12 0.0844800831177263 11 0.07514435860602317 22 0.06839508378930523 13 0.06742661245990234 18 0.06395255357578077 19 0.06324936677465921 10 0.053055619190658314 14 0.04852987975007049 20 0.04568467336775718 24 0.04152372417341387 0 0.04130089344777593 23 0.04062823290306247 17 0.039793815588512305 9 0.034484908205052706 16 0.030579446383222558 4 0.01722740075608619 5 0.016648116676219453 6 0.014920839386320751 7 0.010646861270625998 1 0.010455151975788135 8 0.0104346086704763 2 0.00983924653208614 3 0.009395074016967098 15 0.008754468231945893 __DUMMY__ 0.004413937292138924 false 1.0 463 9 0.064012 22 0.058284 3 0.052276 4 0.051438 8 0.051082 5 0.050936 7 0.050839 1 0.0508 2 0.050547 0 0.049847 6 0.049638 17 0.049331 18 0.046788 10 0.044497 19 0.03774 23 0.034893 11 0.034789 21 0.034695 24 0.031778 16 0.030018 15 0.028702 20 0.021285 14 0.02003 12 0.005755 9 0.064012 22 0.058284 3 0.052276 4 0.051438 8 0.051082 5 0.050936 7 0.050839 1 0.0508 2 0.050547 0 0.049847 6 0.049638 17 0.049331 18 0.046788 10 0.044497 19 0.03774 23 0.034893 11 0.034789 21 0.034695 24 0.031778 16 0.030018 15 0.028702 20 0.021285 14 0.02003 12 0.005755 9 0.060894465801555005 22 0.05813283778007043 17 0.05008594974536547 0 0.05003866131830126 4 0.048924328127933354 18 0.048474608699308044 5 0.048400888715568455 3 0.04821860336762972 8 0.04802274080054683 7 0.04789270153815328 1 0.047795737670930746 6 0.04760675554347374 2 0.047371723518530286 10 0.04394294610567013 19 0.03877171391153492 21 0.03834467821768465 11 0.03776359747924493 23 0.03677255618614676 24 0.03131229861584377 16 0.030732039739110175 15 0.024859621692985168 20 0.022209087299512934 14 0.019921413598634908 12 0.014177396238504397 13 0.006428660053678728 __DUMMY__ 0.002903988234081861 false 1.0 222 21 0.098506 12 0.095631 11 0.085425 13 0.075268 22 0.073631 18 0.066182 19 0.065797 10 0.056318 14 0.048502 0 0.045988 20 0.044803 17 0.041031 24 0.03985 23 0.037969 9 0.033725 16 0.03102 4 0.012827 5 0.012024 6 0.010641 7 0.005633 1 0.005394 8 0.005254 2 0.004724 3 0.00386 21 0.098506 12 0.095631 11 0.085425 13 0.075268 22 0.073631 18 0.066182 19 0.065797 10 0.056318 14 0.048502 0 0.045988 20 0.044803 17 0.041031 24 0.03985 23 0.037969 9 0.033725 16 0.03102 4 0.012827 5 0.012024 6 0.010641 7 0.005633 1 0.005394 8 0.005254 2 0.004724 3 0.00386 21 0.08921958630299459 12 0.08446195889957704 11 0.07536824501203263 22 0.06881193022251025 13 0.06755240960147618 18 0.06440780978894363 19 0.06334138930233835 10 0.05334153037097767 14 0.04844885903124348 20 0.04565547979875451 0 0.041541469054195354 24 0.041436231873752706 23 0.04057590806849754 17 0.03992657908601589 9 0.034501534171803204 16 0.03053036988048219 4 0.017027490248541777 5 0.016420906289686014 6 0.014701496819569362 7 0.01036042841872365 8 0.01015326592289688 1 0.010147434231916087 2 0.009672658622595007 3 0.009226635642931325 15 0.008754460130230077 __DUMMY__ 0.00441393320731451 false 1.0 464 9 0.060061 22 0.058411 17 0.057005 0 0.053378 4 0.050712 1 0.05039 8 0.050383 7 0.050351 6 0.050336 5 0.049952 2 0.049425 3 0.049087 18 0.047884 23 0.041822 19 0.040149 21 0.038227 11 0.037713 10 0.036863 16 0.036271 24 0.032099 20 0.021296 12 0.016442 15 0.015442 14 0.006301 9 0.060061 22 0.058411 17 0.057005 0 0.053378 4 0.050712 1 0.05039 8 0.050383 7 0.050351 6 0.050336 5 0.049952 2 0.049425 3 0.049087 18 0.047884 23 0.041822 19 0.040149 21 0.038227 11 0.037713 10 0.036863 16 0.036271 24 0.032099 20 0.021296 12 0.016442 15 0.015442 14 0.006301 9 0.05883166977536136 22 0.05671195001822497 17 0.05623100821314684 0 0.05398478931872885 4 0.04959625266818337 6 0.04957830064237834 8 0.049154147043398724 7 0.04911590042725669 1 0.04907617886451103 5 0.048969106797612336 2 0.04830904624579049 3 0.04756336420814895 18 0.04719608524529544 23 0.04009312239594432 19 0.03866390634004454 11 0.03849489540887159 10 0.038448369932013 21 0.0377950277305149 16 0.03657743688661269 24 0.030146525300361972 20 0.020493696917482946 12 0.01958046084645851 15 0.01750910131848605 14 0.010289270362681437 13 0.005975010085638618 __DUMMY__ 0.0016153770068521103 false 1.0 223 22 0.073568 9 0.069489 0 0.060396 18 0.058713 17 0.055291 10 0.0509 11 0.050316 21 0.048717 5 0.047634 4 0.047495 6 0.045915 8 0.045356 1 0.045101 7 0.045065 3 0.045044 2 0.044376 19 0.041238 23 0.031497 24 0.027025 16 0.023797 12 0.017194 20 0.015293 14 0.008138 15 0.002442 22 0.073568 9 0.069489 0 0.060396 18 0.058713 17 0.055291 10 0.0509 11 0.050316 21 0.048717 5 0.047634 4 0.047495 6 0.045915 8 0.045356 1 0.045101 7 0.045065 3 0.045044 2 0.044376 19 0.041238 23 0.031497 24 0.027025 16 0.023797 12 0.017194 20 0.015293 14 0.008138 15 0.002442 22 0.06796370632511002 9 0.06453537282165606 18 0.057038557752381897 0 0.05621685869544183 17 0.052714393868040776 10 0.050939716721131116 11 0.048753492386150656 21 0.047782194623362036 4 0.045046111215062176 5 0.04481563911242039 6 0.04357784735738788 8 0.042876173783378685 7 0.04271886145908349 1 0.042632732142297604 3 0.04250341695871248 2 0.042014088380422206 19 0.04162773077350663 23 0.033069071424439246 24 0.027560032172175505 16 0.026154061053580535 12 0.021108324373117736 20 0.018963611286234187 14 0.017019230196739166 15 0.012062912522424113 13 0.008563909199287064 __DUMMY__ 0.0017419533964564333 false 1.0 465 10 0.102731 18 0.088649 11 0.067946 14 0.067515 0 0.066115 22 0.064904 9 0.063377 17 0.050641 19 0.050259 13 0.049504 21 0.049213 15 0.04796 12 0.03103 16 0.025165 20 0.024605 4 0.019541 5 0.019289 6 0.018417 8 0.016732 7 0.016726 1 0.01666 2 0.016245 3 0.016199 23 0.010577 10 0.102731 18 0.088649 11 0.067946 14 0.067515 0 0.066115 22 0.064904 9 0.063377 17 0.050641 19 0.050259 13 0.049504 21 0.049213 15 0.04796 12 0.03103 16 0.025165 20 0.024605 4 0.019541 5 0.019289 6 0.018417 8 0.016732 7 0.016726 1 0.01666 2 0.016245 3 0.016199 23 0.010577 10 0.08525502293500095 18 0.08121634580407382 22 0.06405198269152836 11 0.06214875886596105 14 0.05903612877748512 9 0.05633454676919072 0 0.055869578623979205 21 0.05395454478403403 19 0.05358680550144711 17 0.048109356293682216 13 0.04480860677257144 15 0.04175994203769868 12 0.03626346694681422 20 0.03235044404161336 16 0.0272518540918956 4 0.022336667141884002 5 0.021992106415091372 23 0.02165406226219678 6 0.020560955378158757 8 0.018833706050410716 7 0.01882429199460672 1 0.018709283021551445 3 0.018694810972624595 2 0.018321801195791923 24 0.014463244396588687 __DUMMY__ 0.0036116862341189575 false 1.0 466 20 0.101782 19 0.08163 24 0.08106 23 0.074845 18 0.066561 12 0.061321 21 0.060578 15 0.049147 16 0.048686 14 0.046168 13 0.042626 22 0.036118 17 0.031072 10 0.026866 4 0.023549 11 0.022517 5 0.022325 3 0.020463 6 0.019273 7 0.018715 8 0.018376 1 0.018134 2 0.017548 9 0.010642 20 0.101782 19 0.08163 24 0.08106 23 0.074845 18 0.066561 12 0.061321 21 0.060578 15 0.049147 16 0.048686 14 0.046168 13 0.042626 22 0.036118 17 0.031072 10 0.026866 4 0.023549 11 0.022517 5 0.022325 3 0.020463 6 0.019273 7 0.018715 8 0.018376 1 0.018134 2 0.017548 9 0.010642 20 0.08348055843016244 19 0.07425658907782728 24 0.06789712936654212 18 0.06617988216539056 23 0.0631949476205766 21 0.061977416467210035 12 0.056888918745096724 14 0.04846685309433348 15 0.04508173706194048 22 0.04477479976539922 13 0.042935396037112605 16 0.04266400441270832 10 0.03609978377131735 17 0.03393700861889838 11 0.03288748152932397 4 0.02395513135118698 5 0.02315389646422004 9 0.02106973561165513 3 0.020879603618032795 6 0.02006872522724155 7 0.01921723374769989 8 0.019052110517086437 1 0.01881455794201857 2 0.018410080579147965 0 0.011691505936529827 __DUMMY__ 0.002964912841341448 false 1.0 224 0 0.087016 17 0.079024 9 0.065287 22 0.062632 11 0.058851 10 0.055974 18 0.055 16 0.053903 6 0.045357 8 0.042845 7 0.042609 1 0.042551 2 0.042125 4 0.041681 5 0.041475 3 0.037372 19 0.037369 21 0.032759 12 0.024034 23 0.021336 13 0.011932 15 0.011644 14 0.00416 24 0.003063 0 0.087016 17 0.079024 9 0.065287 22 0.062632 11 0.058851 10 0.055974 18 0.055 16 0.053903 6 0.045357 8 0.042845 7 0.042609 1 0.042551 2 0.042125 4 0.041681 5 0.041475 3 0.037372 19 0.037369 21 0.032759 12 0.024034 23 0.021336 13 0.011932 15 0.011644 14 0.00416 24 0.003063 0 0.07309690961832202 17 0.06941276579812841 9 0.06147492889077246 22 0.06059443631150411 18 0.052948011671453354 11 0.052219480499603614 10 0.05027394935033625 16 0.04730747806217502 6 0.044986092884684845 8 0.04308091697952299 7 0.04293547918800491 4 0.042874308769717526 1 0.042838815519936034 5 0.04250017649653644 2 0.04232997138910993 19 0.03924758528426224 3 0.039194020347354946 21 0.036531475253702525 23 0.028144941638981763 12 0.024700724118180497 15 0.015281936492670862 24 0.014189615571375018 13 0.012665158490986808 20 0.009638307334755609 14 0.009557263219430534 __DUMMY__ 0.001975250818491187 false 1.0 225 20 0.104449 19 0.098034 21 0.092281 18 0.084993 24 0.080833 12 0.07314 22 0.066778 23 0.057493 11 0.056606 16 0.044337 14 0.044254 10 0.041424 13 0.039812 17 0.036303 15 0.02333 9 0.018692 0 0.010561 4 0.008622 5 0.007511 3 0.004898 6 0.00198 7 0.001508 8 0.00133 1 8.31E-4 20 0.104449 19 0.098034 21 0.092281 18 0.084993 24 0.080833 12 0.07314 22 0.066778 23 0.057493 11 0.056606 16 0.044337 14 0.044254 10 0.041424 13 0.039812 17 0.036303 15 0.02333 9 0.018692 0 0.010561 4 0.008622 5 0.007511 3 0.004898 6 0.00198 7 0.001508 8 0.00133 1 8.31E-4 19 0.0835902899088176 20 0.08202295416746172 21 0.0818464359481313 18 0.07521790674515312 24 0.06769049598977239 22 0.0648783558390866 12 0.06365407585602002 11 0.05535983132779141 23 0.052281154616224686 10 0.04357873305546853 14 0.04334085052197501 16 0.04024496319998765 13 0.03856767499903682 17 0.03820327912041781 9 0.027022833092758356 15 0.025230718034901692 0 0.02004224194975756 4 0.01600817030704203 5 0.015239541465701285 3 0.01237389091196773 6 0.010705173164875723 7 0.009775459906706087 8 0.009681083837554779 1 0.009323984050572416 2 0.008758981835949432 __DUMMY__ 0.005360920146868118 false 1.0 467 22 0.080177 18 0.070438 21 0.070178 11 0.063677 19 0.063635 9 0.061296 0 0.059513 17 0.05907 10 0.058551 12 0.037827 16 0.03325 24 0.03239 23 0.031117 20 0.030882 4 0.03029 5 0.02936 6 0.027663 8 0.026147 3 0.026127 7 0.025982 1 0.025597 2 0.025122 14 0.017342 13 0.014371 22 0.080177 18 0.070438 21 0.070178 11 0.063677 19 0.063635 9 0.061296 0 0.059513 17 0.05907 10 0.058551 12 0.037827 16 0.03325 24 0.03239 23 0.031117 20 0.030882 4 0.03029 5 0.02936 6 0.027663 8 0.026147 3 0.026127 7 0.025982 1 0.025597 2 0.025122 14 0.017342 13 0.014371 22 0.07259254862036216 21 0.06454251387741988 18 0.06220447226461198 11 0.057689523491772615 19 0.0565224430487698 9 0.05634536062479025 17 0.05188938026265288 10 0.051653109090569735 0 0.05152581602595951 12 0.037454795949371435 24 0.036014897236404775 23 0.03561460971268711 4 0.034109651809788075 5 0.033404590087646145 20 0.031606798213418295 6 0.03154309910909385 16 0.0311130441602326 3 0.03051766862464144 8 0.030229881284790965 7 0.030143912084535256 1 0.029836642402798343 2 0.029405559510449555 14 0.023377651586173963 13 0.01892157475996265 15 0.00923730581162841 __DUMMY__ 0.0025031503494679815 false 1.0 468 22 0.073984 18 0.069778 11 0.066378 0 0.064593 9 0.06253 10 0.062219 21 0.060839 17 0.056104 12 0.045496 19 0.042381 4 0.036623 6 0.036578 5 0.036275 13 0.033545 1 0.032636 7 0.032467 8 0.032366 23 0.031578 2 0.031346 3 0.028477 14 0.022663 16 0.018265 24 0.013219 20 0.00966 22 0.073984 18 0.069778 11 0.066378 0 0.064593 9 0.06253 10 0.062219 21 0.060839 17 0.056104 12 0.045496 19 0.042381 4 0.036623 6 0.036578 5 0.036275 13 0.033545 1 0.032636 7 0.032467 8 0.032366 23 0.031578 2 0.031346 3 0.028477 14 0.022663 16 0.018265 24 0.013219 20 0.00966 22 0.0686570708271888 21 0.06565711702145692 18 0.06524618197133149 11 0.06462669688659685 10 0.056696395662779064 12 0.05315161197464984 0 0.052605515321523307 9 0.051306092655025365 19 0.04900657847107448 17 0.04879486614316964 13 0.04180710506101203 23 0.036075293354616005 14 0.03379807065643042 4 0.03136029423211797 5 0.03094687198313297 6 0.0302541752582169 7 0.02668408693626832 1 0.026661709770829316 8 0.026650857201593558 24 0.026309535051461327 2 0.025888256566661497 20 0.025290976464821004 3 0.024480866767965206 16 0.024358326130987505 15 0.010903070880968039 __DUMMY__ 0.0027823767481218635 false 1.0 226 17 0.08353 0 0.083162 16 0.063211 22 0.059887 9 0.059535 11 0.055383 18 0.051993 10 0.047056 6 0.04448 19 0.042796 8 0.041546 1 0.041341 7 0.041286 2 0.040706 4 0.040052 5 0.039888 3 0.035143 21 0.03437 12 0.031623 23 0.025348 13 0.014337 15 0.009498 24 0.007851 20 0.005976 17 0.08353 0 0.083162 16 0.063211 22 0.059887 9 0.059535 11 0.055383 18 0.051993 10 0.047056 6 0.04448 19 0.042796 8 0.041546 1 0.041341 7 0.041286 2 0.040706 4 0.040052 5 0.039888 3 0.035143 21 0.03437 12 0.031623 23 0.025348 13 0.014337 15 0.009498 24 0.007851 20 0.005976 17 0.07295185955677537 0 0.07165880086757719 22 0.058192859992786235 9 0.057617562731139285 16 0.054440281576865396 18 0.05096394740663566 11 0.04994298808587791 10 0.04470835813358919 6 0.044594597736476484 19 0.04247732697447827 8 0.04245305670268324 7 0.04228939741144277 1 0.042254787885004384 4 0.04186377665019711 2 0.04165191901707156 5 0.04151764749075373 3 0.03789336828825386 21 0.03630451683950411 23 0.030563783280164143 12 0.028740294266042177 24 0.016816294236983487 15 0.014816761237424704 13 0.013573065530386718 20 0.013270310352826118 14 0.00640664833685673 __DUMMY__ 0.0020357894122042916 false 1.0 227 19 0.10115 23 0.086944 16 0.086233 20 0.0844 24 0.066826 18 0.062681 17 0.060637 21 0.049642 12 0.043882 22 0.043141 0 0.027888 4 0.026795 5 0.025843 7 0.025667 6 0.025447 8 0.025232 1 0.025143 3 0.024032 2 0.023388 11 0.020645 15 0.020235 10 0.019525 9 0.018878 13 0.005745 19 0.10115 23 0.086944 16 0.086233 20 0.0844 24 0.066826 18 0.062681 17 0.060637 21 0.049642 12 0.043882 22 0.043141 0 0.027888 4 0.026795 5 0.025843 7 0.025667 6 0.025447 8 0.025232 1 0.025143 3 0.024032 2 0.023388 11 0.020645 15 0.020235 10 0.019525 9 0.018878 13 0.005745 19 0.08059339388483493 23 0.0668006401860457 20 0.06558252753970092 16 0.062199826190231206 18 0.06093510490009391 21 0.05639533452539638 24 0.05582950703196903 17 0.052679758254804324 22 0.051064354659604905 12 0.04783263681202069 11 0.03635322741145962 0 0.03286771189036944 10 0.03182625747378796 9 0.028702558217031767 4 0.027914301961487434 5 0.027235847788353897 6 0.026178222012748328 7 0.025264723511320558 8 0.02503233791235666 1 0.02490053816781647 3 0.02443821029485786 2 0.023899699761696515 15 0.022170223213167015 13 0.021391375674504706 14 0.017932105515380246 __DUMMY__ 0.003979575208959535 false 1.0 469 9 0.065973 22 0.058375 3 0.054064 4 0.052995 5 0.052284 8 0.052115 7 0.051891 1 0.051737 2 0.051422 6 0.050278 18 0.050117 10 0.048924 0 0.046273 17 0.043196 19 0.035859 23 0.035724 11 0.03439 21 0.033814 24 0.032544 15 0.029221 14 0.023527 20 0.022463 16 0.02049 12 0.002324 9 0.065973 22 0.058375 3 0.054064 4 0.052995 5 0.052284 8 0.052115 7 0.051891 1 0.051737 2 0.051422 6 0.050278 18 0.050117 10 0.048924 0 0.046273 17 0.043196 19 0.035859 23 0.035724 11 0.03439 21 0.033814 24 0.032544 15 0.029221 14 0.023527 20 0.022463 16 0.02049 12 0.002324 9 0.06135380916816369 22 0.06040104496766153 18 0.052749886211720554 10 0.0483408431181473 4 0.04731166132066087 3 0.04670205516008868 5 0.046676557035307376 0 0.0466398148335322 8 0.04561936341379888 17 0.04556878371659679 7 0.0454898035728997 1 0.04531440233865602 6 0.04496110410015829 2 0.04488375367649405 21 0.04149773188996625 19 0.040646241942400414 11 0.03973719893062813 23 0.036742120141670484 24 0.0332317585512323 15 0.02607685566553989 20 0.025339514343876244 14 0.02514692345398259 16 0.024697567128445928 12 0.013910648674820947 13 0.007955687741344577 __DUMMY__ 0.0030048689022062376 false 1.0 228 18 0.094765 10 0.088199 19 0.077464 11 0.075848 21 0.075822 22 0.071771 12 0.059759 14 0.059156 0 0.055842 13 0.055528 17 0.053067 20 0.050575 9 0.046703 16 0.040383 15 0.030193 23 0.025407 24 0.022001 4 0.005735 5 0.005215 6 0.003393 7 0.001094 1 7.88E-4 8 7.63E-4 3 5.29E-4 18 0.094765 10 0.088199 19 0.077464 11 0.075848 21 0.075822 22 0.071771 12 0.059759 14 0.059156 0 0.055842 13 0.055528 17 0.053067 20 0.050575 9 0.046703 16 0.040383 15 0.030193 23 0.025407 24 0.022001 4 0.005735 5 0.005215 6 0.003393 7 0.001094 1 7.88E-4 8 7.63E-4 3 5.29E-4 18 0.08660774520285341 10 0.08090756389437924 21 0.07015154093041553 11 0.06960224507813088 19 0.06959441278756837 22 0.0691015532423388 14 0.056287947739069054 12 0.05360180819024897 0 0.05203083481650405 13 0.050356374367152824 17 0.04979623052463949 9 0.04759631296430042 20 0.04632765874298277 16 0.03550751950220271 15 0.0315432969219817 23 0.02743008069259149 24 0.024817907285083977 4 0.012922401093075929 5 0.012476957273958684 6 0.010456060245561383 7 0.008230610328899228 3 0.008135308579254678 8 0.008067644172126721 1 0.00800728894456891 2 0.0074651564662645145 __DUMMY__ 0.0029775400138462352 false 1.0 229 19 0.069591 17 0.068475 22 0.066679 18 0.06625 0 0.060649 16 0.059592 9 0.055121 10 0.053091 11 0.049829 21 0.043902 20 0.037066 23 0.033628 5 0.032233 4 0.032206 6 0.031074 24 0.03105 3 0.031003 8 0.030877 7 0.030766 1 0.030644 2 0.030422 15 0.022597 12 0.020129 14 0.013127 19 0.069591 17 0.068475 22 0.066679 18 0.06625 0 0.060649 16 0.059592 9 0.055121 10 0.053091 11 0.049829 21 0.043902 20 0.037066 23 0.033628 5 0.032233 4 0.032206 6 0.031074 24 0.03105 3 0.031003 8 0.030877 7 0.030766 1 0.030644 2 0.030422 15 0.022597 12 0.020129 14 0.013127 22 0.06572121622524665 18 0.06316136349495642 19 0.06278157874701872 17 0.06054709765973113 0 0.05528139531577332 11 0.05263299948910662 9 0.05248112465217087 10 0.051882697385188706 21 0.049993262414528526 16 0.04953669474213496 20 0.035777737380611144 23 0.035374171750486155 24 0.032977487049404786 4 0.03242269044514598 5 0.03217896350130157 6 0.030994891525472447 8 0.03023051818863208 3 0.030190816007506845 7 0.03016036049180455 1 0.0299911302600089 2 0.029678078665633326 12 0.02839220930209136 15 0.022406358580978877 14 0.02090984262534831 13 0.01145864021422592 __DUMMY__ 0.002836673885491753 false 1.0 470 0 0.087532 17 0.079611 9 0.066028 22 0.062974 11 0.059824 10 0.057522 18 0.054974 16 0.053645 6 0.045303 8 0.042609 7 0.042446 1 0.042276 2 0.041889 4 0.041583 5 0.041047 19 0.037701 3 0.037024 21 0.032691 12 0.02395 23 0.0203 13 0.011304 15 0.011238 14 0.003344 24 0.003184 0 0.087532 17 0.079611 9 0.066028 22 0.062974 11 0.059824 10 0.057522 18 0.054974 16 0.053645 6 0.045303 8 0.042609 7 0.042446 1 0.042276 2 0.041889 4 0.041583 5 0.041047 19 0.037701 3 0.037024 21 0.032691 12 0.02395 23 0.0203 13 0.011304 15 0.011238 14 0.003344 24 0.003184 0 0.07321184068234755 17 0.0696612223553147 9 0.061650924788988336 22 0.0606922498890331 18 0.0529740437626356 11 0.052659794365016936 10 0.05095974359799015 16 0.047381435300043545 6 0.04483090347095793 8 0.04285541269540913 7 0.042743277872474575 4 0.042713591553112655 1 0.042595054966572655 5 0.04218690456242035 2 0.042106064913911584 19 0.03964084326104704 3 0.03893841557501363 21 0.0365444824601136 23 0.027750470627278558 12 0.02473370490991472 15 0.015217362628504259 24 0.014412973404244519 13 0.012399261866817349 20 0.009922994085621426 14 0.009245260483517622 __DUMMY__ 0.0019717659216984206 false 1.0 471 11 0.077924 22 0.072055 21 0.067628 17 0.059488 0 0.058294 19 0.057149 18 0.054268 12 0.053347 23 0.04929 16 0.045566 10 0.04258 9 0.041148 24 0.035752 4 0.031131 5 0.030747 6 0.030704 1 0.027221 7 0.027109 2 0.027026 8 0.026891 3 0.024907 13 0.024446 20 0.023262 14 0.012066 11 0.077924 22 0.072055 21 0.067628 17 0.059488 0 0.058294 19 0.057149 18 0.054268 12 0.053347 23 0.04929 16 0.045566 10 0.04258 9 0.041148 24 0.035752 4 0.031131 5 0.030747 6 0.030704 1 0.027221 7 0.027109 2 0.027026 8 0.026891 3 0.024907 13 0.024446 20 0.023262 14 0.012066 22 0.06572097783442452 11 0.06448407978365715 21 0.06366504341895844 18 0.055733615571526486 19 0.05522602413502435 17 0.05197534913745133 12 0.05014967393269477 0 0.04967880550361486 23 0.04662492959637585 10 0.044239871929716665 9 0.0424698730724044 16 0.039547951004314304 24 0.03769136404625428 4 0.03207254114819451 5 0.03165510999673835 20 0.0311683289717504 6 0.030956556276670665 13 0.029756361786302497 7 0.0281926642027217 1 0.028144330777925237 8 0.028057019737808823 2 0.027832293804534756 3 0.026874264757090757 14 0.02336844339166512 15 0.011318786986265273 __DUMMY__ 0.003395739195914629 false 1.0 230 11 0.106265 22 0.097962 21 0.089449 10 0.083984 18 0.080182 0 0.071848 19 0.068301 9 0.058836 12 0.058461 17 0.056399 14 0.037012 13 0.035674 16 0.030986 23 0.020546 20 0.018464 24 0.017008 4 0.013679 5 0.013012 6 0.010011 7 0.006861 1 0.006586 3 0.006565 8 0.00639 2 0.005517 11 0.106265 22 0.097962 21 0.089449 10 0.083984 18 0.080182 0 0.071848 19 0.068301 9 0.058836 12 0.058461 17 0.056399 14 0.037012 13 0.035674 16 0.030986 23 0.020546 20 0.018464 24 0.017008 4 0.013679 5 0.013012 6 0.010011 7 0.006861 1 0.006586 3 0.006565 8 0.00639 2 0.005517 11 0.08221517907228106 22 0.08034433240958873 21 0.07457403149730626 18 0.07219372591761998 10 0.07078296307135162 0 0.06074477896991371 19 0.060464929014684594 9 0.053609433440756575 17 0.052633388376215666 12 0.05262910364082942 14 0.038281873476105566 13 0.03754762231180986 16 0.03195618524431115 23 0.02747901635868228 20 0.026131794753899082 24 0.023377554869047166 4 0.02136029811207813 5 0.02080492547353729 6 0.01887081492945444 7 0.01607765136294425 8 0.015869287304895112 1 0.015862807701263776 3 0.015472633864883189 2 0.015157115024352219 15 0.012164056721494738 __DUMMY__ 0.0033944970806942484 false 1.0 472 4 0.056215 3 0.055676 5 0.055222 8 0.054859 7 0.054763 23 0.054734 1 0.054313 6 0.054185 2 0.054154 9 0.052964 22 0.050658 24 0.045304 17 0.042746 18 0.04047 19 0.038163 0 0.036146 21 0.035312 20 0.031536 16 0.029612 10 0.02766 11 0.025742 15 0.023267 12 0.014119 14 0.012181 4 0.056215 3 0.055676 5 0.055222 8 0.054859 7 0.054763 23 0.054734 1 0.054313 6 0.054185 2 0.054154 9 0.052964 22 0.050658 24 0.045304 17 0.042746 18 0.04047 19 0.038163 0 0.036146 21 0.035312 20 0.031536 16 0.029612 10 0.02766 11 0.025742 15 0.023267 12 0.014119 14 0.012181 9 0.05546922193723203 4 0.053853765787875804 5 0.05312865020062926 3 0.05265023511980528 8 0.05253660575909423 7 0.05249891256006543 22 0.0524891293432701 6 0.05238752544258669 1 0.052241367265922704 2 0.05184212296911473 23 0.04854037194329583 17 0.04456881562980021 18 0.0428872414753304 0 0.04100187953983556 24 0.03914954658908122 21 0.0371958466179076 19 0.03626750655429423 10 0.033205204182874745 11 0.03021006874502044 16 0.028058842468810172 20 0.026796518763934782 15 0.02202291580894305 12 0.017399631638719704 14 0.015489819375523696 13 0.006097891395568119 __DUMMY__ 0.002010362885463831 false 1.0 231 22 0.073533 9 0.068976 0 0.059971 18 0.058655 17 0.054937 10 0.050826 11 0.049641 21 0.0491 4 0.047376 5 0.047081 6 0.045746 8 0.045223 7 0.045184 3 0.045184 1 0.044874 2 0.044524 19 0.041697 23 0.034239 24 0.025581 16 0.023711 12 0.017063 20 0.016195 14 0.008473 15 0.002209 22 0.073533 9 0.068976 0 0.059971 18 0.058655 17 0.054937 10 0.050826 11 0.049641 21 0.0491 4 0.047376 5 0.047081 6 0.045746 8 0.045223 7 0.045184 3 0.045184 1 0.044874 2 0.044524 19 0.041697 23 0.034239 24 0.025581 16 0.023711 12 0.017063 20 0.016195 14 0.008473 15 0.002209 22 0.06805001093727996 9 0.06426250374846344 18 0.057110434815686936 0 0.05615950587327119 17 0.052643807726436204 10 0.051033547817668674 11 0.04869472288235002 21 0.04809552574832661 4 0.044849510320605454 5 0.044422223322686444 6 0.04336528473315868 8 0.04266126979307275 7 0.04261984174917481 3 0.04239885166310091 1 0.04237652582645465 19 0.04194729823930595 2 0.041927386437671924 23 0.03424552953660169 24 0.026816605723946993 16 0.026217568828141805 12 0.0212352853811937 20 0.019350146498176967 14 0.017201023742154545 15 0.011883724924189711 13 0.008693829552146815 __DUMMY__ 0.0017380341787330003 false 1.0 473 23 0.094554 24 0.067661 20 0.059 4 0.056569 5 0.054247 6 0.05234 8 0.051276 1 0.05048 3 0.05023 7 0.050126 18 0.049905 2 0.049155 21 0.046017 19 0.044009 22 0.040563 12 0.037313 9 0.033726 15 0.027502 17 0.026749 13 0.017451 14 0.016973 16 0.011636 11 0.006549 10 0.005969 23 0.094554 24 0.067661 20 0.059 4 0.056569 5 0.054247 6 0.05234 8 0.051276 1 0.05048 3 0.05023 7 0.050126 18 0.049905 2 0.049155 21 0.046017 19 0.044009 22 0.040563 12 0.037313 9 0.033726 15 0.027502 17 0.026749 13 0.017451 14 0.016973 16 0.011636 11 0.006549 10 0.005969 23 0.06871770929642053 4 0.052073435392814615 24 0.05154085621727394 5 0.05076554652406313 6 0.04985455042491014 8 0.048965378500699215 1 0.048553246219115144 7 0.04843749945662697 3 0.04794349135559891 2 0.04766162059203747 18 0.04724179073558196 22 0.046108028724948326 20 0.04323786861364898 21 0.04298657113193147 9 0.04281071090731696 19 0.041853262736595204 17 0.03823527571009764 12 0.032367156302911385 15 0.024234780188537034 16 0.023953311436662163 0 0.02340765053523277 11 0.02154797801406083 10 0.021103934434329688 14 0.01729512374097847 13 0.016728985541499458 __DUMMY__ 0.002374237266107681 false 1.0 474 23 0.06747 6 0.065223 7 0.064832 4 0.064722 8 0.064673 1 0.063692 2 0.063442 5 0.063426 3 0.062351 9 0.048093 17 0.044112 24 0.043832 22 0.037755 0 0.034204 18 0.033701 16 0.031365 20 0.029417 19 0.028521 21 0.023675 15 0.019334 12 0.016667 10 0.014545 11 0.013628 13 0.00132 23 0.06747 6 0.065223 7 0.064832 4 0.064722 8 0.064673 1 0.063692 2 0.063442 5 0.063426 3 0.062351 9 0.048093 17 0.044112 24 0.043832 22 0.037755 0 0.034204 18 0.033701 16 0.031365 20 0.029417 19 0.028521 21 0.023675 15 0.019334 12 0.016667 10 0.014545 11 0.013628 13 0.00132 4 0.05812225305337955 6 0.057957804351384194 7 0.057538144984594794 8 0.057453610916283517 5 0.057273289856853926 1 0.05698467553320602 2 0.05653585289696256 3 0.05597321734156093 23 0.05588986051869598 9 0.05185496487938397 22 0.045161980869825126 17 0.04489666109778107 24 0.039470677374493224 0 0.03912599284573519 18 0.03877641250928685 19 0.03170484679444943 21 0.031548296032526894 16 0.029505763543581923 20 0.026775388336453813 10 0.025358442182726898 11 0.02357704500067621 12 0.0200016929307147 15 0.01992221503606699 14 0.009230121728004295 13 0.0076446108437481395 __DUMMY__ 0.0017161785416235763 false 1.0 232 18 0.094915 10 0.088499 19 0.076946 11 0.076115 21 0.075506 22 0.071513 12 0.05976 14 0.058984 0 0.055985 13 0.055704 17 0.053184 20 0.050259 9 0.047064 16 0.040647 15 0.030521 23 0.024295 24 0.021978 4 0.0058 5 0.005322 6 0.003451 7 0.001147 1 9.72E-4 8 9.02E-4 3 5.3E-4 18 0.094915 10 0.088499 19 0.076946 11 0.076115 21 0.075506 22 0.071513 12 0.05976 14 0.058984 0 0.055985 13 0.055704 17 0.053184 20 0.050259 9 0.047064 16 0.040647 15 0.030521 23 0.024295 24 0.021978 4 0.0058 5 0.005322 6 0.003451 7 0.001147 1 9.72E-4 8 9.02E-4 3 5.3E-4 18 0.08664153681718811 10 0.0810262678991517 21 0.07005257227393155 11 0.06980948325139164 19 0.06934849959772207 22 0.06904880416786299 14 0.05613631392998814 12 0.05362332030125228 0 0.05215306997805961 13 0.050397145280534336 17 0.049876511753898414 9 0.04778520374877307 20 0.0461059340768186 16 0.03563096938197433 15 0.031594790142576344 23 0.02691654634119915 24 0.02478889717531608 4 0.01296204477468085 5 0.012534855568627648 6 0.010492929787921833 7 0.008262206343068344 3 0.008138897731669299 8 0.00813740765954021 1 0.008098113989246094 2 0.007470561631666756 __DUMMY__ 0.0029671163959406636 false 1.0 233 21 0.102453 19 0.088277 12 0.081161 22 0.076485 18 0.076321 20 0.072658 11 0.069589 24 0.061807 23 0.055692 13 0.047801 10 0.047164 17 0.039567 14 0.037168 16 0.036094 9 0.030314 0 0.029719 4 0.011246 5 0.010467 6 0.006231 3 0.005443 7 0.004395 1 0.003719 8 0.003686 2 0.002542 21 0.102453 19 0.088277 12 0.081161 22 0.076485 18 0.076321 20 0.072658 11 0.069589 24 0.061807 23 0.055692 13 0.047801 10 0.047164 17 0.039567 14 0.037168 16 0.036094 9 0.030314 0 0.029719 4 0.011246 5 0.010467 6 0.006231 3 0.005443 7 0.004395 1 0.003719 8 0.003686 2 0.002542 21 0.08555578661682338 19 0.07104597250008639 22 0.06971438165023502 12 0.06841567481309623 18 0.0679139683428418 11 0.06407779497536878 20 0.05663559112920168 24 0.05143702641863905 10 0.04874796464244525 23 0.048447282970823825 13 0.04620292899242984 14 0.03993455239472311 17 0.039104230987270214 9 0.03663204609205424 0 0.03401464851372125 16 0.03107325076159441 4 0.02034823434557796 5 0.019787513274058127 6 0.016432000849955157 3 0.015165396653897259 7 0.014323027312461538 8 0.013991983432353876 1 0.013951403461712631 2 0.013287493842014822 15 0.010429156577181475 __DUMMY__ 0.0033306884494326105 false 1.0 475 17 0.087891 0 0.084265 16 0.072204 22 0.059676 9 0.056747 11 0.055609 18 0.053645 19 0.048267 10 0.046448 6 0.041319 8 0.038268 7 0.037823 1 0.03766 2 0.037441 4 0.036749 5 0.036176 21 0.03365 12 0.032085 3 0.031634 23 0.024886 15 0.013915 13 0.013005 20 0.010978 24 0.00966 17 0.087891 0 0.084265 16 0.072204 22 0.059676 9 0.056747 11 0.055609 18 0.053645 19 0.048267 10 0.046448 6 0.041319 8 0.038268 7 0.037823 1 0.03766 2 0.037441 4 0.036749 5 0.036176 21 0.03365 12 0.032085 3 0.031634 23 0.024886 15 0.013915 13 0.013005 20 0.010978 24 0.00966 17 0.07601044917810791 0 0.07260860093060091 16 0.060470555642351986 22 0.05788300407631592 9 0.05550414078873849 18 0.05216116944569781 11 0.050485150582476594 19 0.0460716030482178 10 0.04443300146781321 6 0.04238913330397852 8 0.040130881074075114 7 0.03987715761892496 1 0.03974487513332742 4 0.03946973495279336 2 0.03934147597392261 5 0.03894175918609103 21 0.0359352039777035 3 0.035338530270599106 23 0.030291270182146834 12 0.029644120960880288 24 0.017667583788425537 15 0.017478682454419747 20 0.016352687487265562 13 0.013318997548245039 14 0.0063742856921713675 __DUMMY__ 0.002075945234709352 false 1.0 476 6 0.062237 8 0.061571 7 0.061516 1 0.061159 4 0.061106 2 0.060427 5 0.06014 3 0.058573 23 0.057754 9 0.050816 17 0.050403 0 0.04277 22 0.039863 24 0.037803 16 0.037649 18 0.034702 19 0.030598 20 0.025222 21 0.025041 10 0.020168 12 0.0199 11 0.01898 15 0.016809 13 0.004794 6 0.062237 8 0.061571 7 0.061516 1 0.061159 4 0.061106 2 0.060427 5 0.06014 3 0.058573 23 0.057754 9 0.050816 17 0.050403 0 0.04277 22 0.039863 24 0.037803 16 0.037649 18 0.034702 19 0.030598 20 0.025222 21 0.025041 10 0.020168 12 0.0199 11 0.01898 15 0.016809 13 0.004794 6 0.05462060951066817 4 0.054156593708472825 8 0.05386336293754021 7 0.05382924754679381 1 0.05362795909981253 5 0.05346371787686853 2 0.05298505653497891 3 0.051703720755015566 9 0.05130468968484534 23 0.05085342745789444 17 0.05042816371341362 22 0.04578502725617779 0 0.044640257950735875 18 0.04046145768532215 16 0.03671848165224452 24 0.03635296709965152 19 0.03524392682390925 21 0.03245345165279983 10 0.02820908085248821 11 0.027513945516503123 20 0.026516725667795792 12 0.0238454675410597 15 0.019281371713634983 13 0.010609811695250614 14 0.00884359573337797 __DUMMY__ 0.0026878823327447085 false 1.0 234 20 0.104342 19 0.09779 21 0.082983 12 0.079734 18 0.078652 24 0.07678 23 0.058402 16 0.056724 22 0.053529 13 0.052205 14 0.049594 11 0.047776 10 0.041725 17 0.039309 15 0.033357 0 0.013654 9 0.012637 4 0.006837 5 0.006238 3 0.003522 6 0.002206 7 8.7E-4 8 7.22E-4 2 4.13E-4 20 0.104342 19 0.09779 21 0.082983 12 0.079734 18 0.078652 24 0.07678 23 0.058402 16 0.056724 22 0.053529 13 0.052205 14 0.049594 11 0.047776 10 0.041725 17 0.039309 15 0.033357 0 0.013654 9 0.012637 4 0.006837 5 0.006238 3 0.003522 6 0.002206 7 8.7E-4 8 7.22E-4 2 4.13E-4 19 0.08639683177854433 20 0.08575124069102917 21 0.07758853075478692 18 0.07353363130322059 12 0.06876151044149045 24 0.06694422348447629 22 0.05694099621762908 23 0.05387845704014417 11 0.04972588368140716 16 0.04911053515892881 14 0.047196467753715325 13 0.04636814406019727 10 0.04355035557799402 17 0.04015749278606038 15 0.03208617632763542 9 0.021809781688701582 0 0.020338524368627733 4 0.013292304721439338 5 0.012761891759281585 3 0.009855316895888212 6 0.009018355832097568 7 0.007665410375324299 8 0.007578592958124079 2 0.0071614533899844466 1 0.007124821042281559 __DUMMY__ 0.005403069910990188 false 1.0 477 23 0.064947 8 0.060042 4 0.059907 7 0.059862 3 0.05982 1 0.059436 2 0.058976 6 0.05896 5 0.058902 24 0.057099 20 0.048904 9 0.04342 17 0.042356 19 0.040923 16 0.037863 18 0.036282 22 0.035736 0 0.026425 21 0.025317 15 0.021375 12 0.018478 10 0.013478 11 0.010283 14 0.001208 23 0.064947 8 0.060042 4 0.059907 7 0.059862 3 0.05982 1 0.059436 2 0.058976 6 0.05896 5 0.058902 24 0.057099 20 0.048904 9 0.04342 17 0.042356 19 0.040923 16 0.037863 18 0.036282 22 0.035736 0 0.026425 21 0.025317 15 0.021375 12 0.018478 10 0.013478 11 0.010283 14 0.001208 23 0.05715618670651792 24 0.052015791461470125 4 0.04846848664817955 20 0.04800644635577955 5 0.0477453162081419 19 0.04737807759806512 3 0.04714469537803203 8 0.04711322692030287 7 0.04702047164297459 6 0.04699488419375278 1 0.04674932892302658 2 0.046308478478014094 18 0.0456861724506978 22 0.04414869991589529 17 0.04301341801590874 9 0.042532209574254604 21 0.03844060536564335 16 0.03704913994154794 0 0.030395267536809704 12 0.028914874824345918 10 0.025971511807574992 15 0.02478920743464873 11 0.024400209019315618 14 0.015754678527507088 13 0.013260470727917915 __DUMMY__ 0.00354214434367512 false 1.0 235 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.0891746740754909 12 0.08483799978175795 11 0.0754251942626437 22 0.06850124652983572 13 0.06755808398574363 18 0.06390413699193058 19 0.06322923803303926 10 0.05322586875457684 14 0.048551077047346826 20 0.04562179598936158 24 0.0415792309182889 0 0.041309078586415464 23 0.04049445945108817 17 0.03978292857683762 9 0.03439070637064821 16 0.030608053277196304 4 0.017201380501530483 5 0.0166260982613707 6 0.014844837604238713 7 0.01038288214733985 8 0.01027842311676855 1 0.01013883709140981 2 0.009813451447119833 3 0.009360587280068175 15 0.008715762207352602 __DUMMY__ 0.00444396771059946 false 1.0 478 0 0.085372 17 0.078665 9 0.065241 22 0.062413 11 0.058311 10 0.055199 18 0.054772 16 0.052783 6 0.045473 8 0.043 1 0.042865 7 0.042743 2 0.042605 5 0.041903 4 0.041887 3 0.037923 19 0.037539 21 0.033107 12 0.024417 23 0.021412 13 0.012242 15 0.012022 14 0.004506 24 0.0036 0 0.085372 17 0.078665 9 0.065241 22 0.062413 11 0.058311 10 0.055199 18 0.054772 16 0.052783 6 0.045473 8 0.043 1 0.042865 7 0.042743 2 0.042605 5 0.041903 4 0.041887 3 0.037923 19 0.037539 21 0.033107 12 0.024417 23 0.021412 13 0.012242 15 0.012022 14 0.004506 24 0.0036 0 0.07221109961240099 17 0.06922036950580164 9 0.06128801985344717 22 0.06043332943593523 18 0.0528804836864718 11 0.0519599107640203 10 0.04988700932760259 16 0.04697846002503922 6 0.04490993247396365 8 0.043036752225583036 7 0.0428812492882523 1 0.04286789535290423 4 0.04285508133449886 5 0.042583353287845765 2 0.04243751877993582 19 0.03956475957086393 3 0.0393549925644141 21 0.03673762897698065 23 0.02826507299685715 12 0.024948286060935694 15 0.015579769919006638 24 0.014606776134721463 13 0.01283250282502445 20 0.009923537728139729 14 0.009784028494909398 __DUMMY__ 0.0019721797744442692 false 1.0 236 21 0.106972 19 0.090403 12 0.087965 20 0.079403 22 0.077513 18 0.075442 24 0.071219 11 0.06256 23 0.06052 13 0.052376 14 0.045349 10 0.039266 17 0.034798 16 0.034561 9 0.023992 0 0.01783 4 0.011455 5 0.010159 15 0.005902 6 0.005351 3 0.003478 7 0.001564 8 0.001409 2 5.14E-4 21 0.106972 19 0.090403 12 0.087965 20 0.079403 22 0.077513 18 0.075442 24 0.071219 11 0.06256 23 0.06052 13 0.052376 14 0.045349 10 0.039266 17 0.034798 16 0.034561 9 0.023992 0 0.01783 4 0.011455 5 0.010159 15 0.005902 6 0.005351 3 0.003478 7 0.001564 8 0.001409 2 5.14E-4 21 0.0898078705845602 19 0.07688349892527702 12 0.07364056051935637 22 0.06977754706464318 18 0.06703283061600386 20 0.06501263385737234 24 0.06098312630218704 11 0.0590026813673595 23 0.054572190195307964 13 0.04716743608810168 14 0.04216942983179336 10 0.04020803717035977 17 0.03767957510711386 16 0.034866007762719996 9 0.02978600509524239 0 0.025376746732815335 4 0.01884169605751417 5 0.01797359787320479 6 0.014297327313457753 15 0.013230016662732238 3 0.01253530120380832 7 0.011324766008223856 8 0.011210870714590348 2 0.010503765119206369 1 0.010463086513704364 __DUMMY__ 0.005653395313343714 false 1.0 237 20 0.10477 19 0.09794 21 0.083767 18 0.080563 12 0.078166 24 0.07609 23 0.059935 16 0.055863 22 0.053492 13 0.051821 14 0.048948 11 0.046816 10 0.040825 17 0.039657 15 0.032805 0 0.013706 9 0.013354 4 0.006537 5 0.005881 3 0.003093 6 0.002121 7 0.001585 1 0.001288 8 9.78E-4 20 0.10477 19 0.09794 21 0.083767 18 0.080563 12 0.078166 24 0.07609 23 0.059935 16 0.055863 22 0.053492 13 0.051821 14 0.048948 11 0.046816 10 0.040825 17 0.039657 15 0.032805 0 0.013706 9 0.013354 4 0.006537 5 0.005881 3 0.003093 6 0.002121 7 0.001585 1 0.001288 8 9.78E-4 19 0.08646723324209639 20 0.08593716128013815 21 0.07799098994886056 18 0.0744058710263261 12 0.06807848212614717 24 0.06663450500337295 22 0.05694855931433661 23 0.05459389265265672 11 0.04930414685389107 16 0.04869663677928707 14 0.04689271546518343 13 0.046206896942282874 10 0.04312483404018668 17 0.04030912390635744 15 0.031788427620762456 9 0.02213841565875704 0 0.02036011897134671 4 0.013154127612333819 5 0.012596554146313712 3 0.009651016923199938 6 0.008977387799383842 7 0.007987611440263788 1 0.0077084821414015485 8 0.007689916256139781 2 0.006965231095152735 __DUMMY__ 0.005391661753821418 false 1.0 479 0 0.087511 17 0.085207 16 0.065664 9 0.059516 22 0.058937 11 0.058253 18 0.052484 10 0.049543 6 0.04399 19 0.041937 8 0.040668 1 0.040197 7 0.04019 2 0.03983 4 0.039093 5 0.038662 3 0.033586 12 0.032868 21 0.032856 23 0.023677 13 0.016894 15 0.010613 24 0.004248 20 0.003576 0 0.087511 17 0.085207 16 0.065664 9 0.059516 22 0.058937 11 0.058253 18 0.052484 10 0.049543 6 0.04399 19 0.041937 8 0.040668 1 0.040197 7 0.04019 2 0.03983 4 0.039093 5 0.038662 3 0.033586 12 0.032868 21 0.032856 23 0.023677 13 0.016894 15 0.010613 24 0.004248 20 0.003576 17 0.07392227570305263 0 0.07359938027581699 22 0.05750947387146084 9 0.057091375783228863 16 0.056239620930342564 18 0.05138362120623389 11 0.051350524722180796 10 0.045849172016241654 6 0.043987856058598805 19 0.04257927042461654 8 0.04163392620025975 7 0.041368466684661834 1 0.041311609145034234 4 0.04100472959586558 2 0.04083705080109795 5 0.04053644688815758 3 0.036719297640932375 21 0.03568056337688936 23 0.029929753858080957 12 0.02985739568119727 15 0.015685472658951267 24 0.015272650729800726 13 0.015241889512312064 20 0.012719029356313255 14 0.00663219398717373 __DUMMY__ 0.00205695289149834 false 1.0 238 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.0891746740754909 12 0.08483799978175795 11 0.0754251942626437 22 0.06850124652983572 13 0.06755808398574363 18 0.06390413699193058 19 0.06322923803303926 10 0.05322586875457684 14 0.048551077047346826 20 0.04562179598936158 24 0.0415792309182889 0 0.041309078586415464 23 0.04049445945108817 17 0.03978292857683762 9 0.03439070637064821 16 0.030608053277196304 4 0.017201380501530483 5 0.0166260982613707 6 0.014844837604238713 7 0.01038288214733985 8 0.01027842311676855 1 0.01013883709140981 2 0.009813451447119833 3 0.009360587280068175 15 0.008715762207352602 __DUMMY__ 0.00444396771059946 false 1.0 239 21 0.115891 12 0.107304 13 0.079485 23 0.079233 11 0.076062 22 0.075763 24 0.069723 19 0.050603 14 0.049631 18 0.035531 20 0.032962 4 0.031634 5 0.029279 6 0.026818 17 0.019792 8 0.018163 7 0.017902 1 0.017006 2 0.016615 3 0.015505 9 0.014801 0 0.011536 16 0.007549 10 0.001211 21 0.115891 12 0.107304 13 0.079485 23 0.079233 11 0.076062 22 0.075763 24 0.069723 19 0.050603 14 0.049631 18 0.035531 20 0.032962 4 0.031634 5 0.029279 6 0.026818 17 0.019792 8 0.018163 7 0.017902 1 0.017006 2 0.016615 3 0.015505 9 0.014801 0 0.011536 16 0.007549 10 0.001211 21 0.0963618017009387 12 0.08583384701624666 22 0.069858091558262 11 0.06766821465210768 13 0.06377947735954058 23 0.06353193836081883 24 0.059134984435064694 19 0.054626410116045625 18 0.045934522751091646 14 0.045391012023482245 20 0.03918948093845394 4 0.029218148457424927 17 0.02884911857892387 5 0.027826978798478258 9 0.025694222493251304 6 0.025444983663450865 0 0.022642373682771506 10 0.021409081453029086 8 0.019710894519296033 7 0.019660305355649048 1 0.01908499993571254 2 0.018673377477847482 16 0.018551157524625748 3 0.018453231599384046 15 0.008114866327071691 __DUMMY__ 0.00535647922103076 false 1.0 480 12 0.102267 20 0.091398 13 0.090094 19 0.079318 23 0.078138 21 0.071372 18 0.06931 24 0.062731 14 0.057899 16 0.04589 15 0.037984 11 0.03445 10 0.033015 17 0.028839 22 0.028647 4 0.015623 5 0.015446 6 0.014199 8 0.008272 1 0.008013 7 0.007949 2 0.007404 0 0.00644 3 0.005302 12 0.102267 20 0.091398 13 0.090094 19 0.079318 23 0.078138 21 0.071372 18 0.06931 24 0.062731 14 0.057899 16 0.04589 15 0.037984 11 0.03445 10 0.033015 17 0.028839 22 0.028647 4 0.015623 5 0.015446 6 0.014199 8 0.008272 1 0.008013 7 0.007949 2 0.007404 0 0.00644 3 0.005302 12 0.07662160280886686 20 0.06783434805516203 19 0.06680255379841142 21 0.0649913508633506 13 0.06452450150462993 23 0.06306623077517583 18 0.06211640802650413 24 0.053094568697389856 14 0.04671645177420674 22 0.041540119268751195 16 0.04127879725038329 11 0.0406114800699478 10 0.03696252022292868 17 0.03617752183545172 15 0.0317585648818022 4 0.024119849772638983 5 0.023791084038925277 6 0.022669349348771132 0 0.021734831192542697 9 0.019442036775727672 8 0.018704324058455207 7 0.01855859052971911 1 0.018492994125112433 2 0.018019437907223646 3 0.01691795568427793 __DUMMY__ 0.0034525267336436016 false 1.0 481 6 0.069267 8 0.069237 4 0.069094 7 0.068601 5 0.068127 2 0.067922 1 0.067842 3 0.066998 23 0.066592 9 0.049171 24 0.045463 17 0.041315 22 0.03475 0 0.031004 18 0.02974 20 0.02904 16 0.027527 19 0.023871 15 0.021375 21 0.019064 12 0.013845 10 0.011972 11 0.007161 13 0.001019 6 0.069267 8 0.069237 4 0.069094 7 0.068601 5 0.068127 2 0.067922 1 0.067842 3 0.066998 23 0.066592 9 0.049171 24 0.045463 17 0.041315 22 0.03475 0 0.031004 18 0.02974 20 0.02904 16 0.027527 19 0.023871 15 0.021375 21 0.019064 12 0.013845 10 0.011972 11 0.007161 13 0.001019 4 0.06000334152393525 6 0.0597752268154662 8 0.059473107751010626 5 0.05930365418093079 7 0.059194550455296424 1 0.05881834645559804 2 0.05851600499304041 3 0.05794177272570584 23 0.055564317342302785 9 0.05199518320735549 17 0.04383482588928656 22 0.04334312042655394 24 0.040173418649280694 0 0.037712266471382934 18 0.03688489878289961 19 0.029635749940583572 21 0.029226107906421266 16 0.028257931372829566 20 0.026849329128170545 10 0.023951188919704425 15 0.020956186034149924 11 0.02043594814618945 12 0.019151090597974364 14 0.009145517945472205 13 0.007930769377727298 __DUMMY__ 0.0019261449607317037 false 1.0 240 21 0.081765 22 0.068755 12 0.061507 11 0.060644 18 0.055381 9 0.051272 10 0.050783 13 0.049981 23 0.044852 14 0.04349 19 0.041982 24 0.041774 4 0.036809 5 0.03566 0 0.034007 6 0.032536 20 0.030692 3 0.030079 7 0.030076 1 0.029784 8 0.029619 2 0.028248 17 0.025446 15 0.004859 21 0.081765 22 0.068755 12 0.061507 11 0.060644 18 0.055381 9 0.051272 10 0.050783 13 0.049981 23 0.044852 14 0.04349 19 0.041982 24 0.041774 4 0.036809 5 0.03566 0 0.034007 6 0.032536 20 0.030692 3 0.030079 7 0.030076 1 0.029784 8 0.029619 2 0.028248 17 0.025446 15 0.004859 21 0.07453155743371692 22 0.06504171635491703 12 0.05960052328057232 11 0.05908693262728056 18 0.05591912609180608 10 0.049551720213760884 13 0.04844967359340859 9 0.04742795465490845 19 0.04568981105928365 23 0.043306482762008165 14 0.04168959739997377 24 0.03972386979340337 0 0.0374883464313125 4 0.03421523301384774 5 0.033457105874511846 20 0.03316991421023183 17 0.032676475614522874 6 0.031125441788977436 7 0.028474662514178815 1 0.02827975318385134 8 0.02824000643581263 3 0.028202141821547493 2 0.027363554792271826 16 0.012880085568681782 15 0.010980562636784964 __DUMMY__ 0.003427750848427089 false 1.0 482 10 0.090123 18 0.084961 0 0.07688 22 0.076216 9 0.075244 11 0.065537 17 0.064887 19 0.049927 21 0.046473 14 0.03483 4 0.03003 5 0.029642 6 0.029202 16 0.028898 8 0.027487 7 0.027447 1 0.027271 2 0.027098 3 0.02651 15 0.022921 13 0.018518 12 0.017977 20 0.011703 23 0.010216 10 0.090123 18 0.084961 0 0.07688 22 0.076216 9 0.075244 11 0.065537 17 0.064887 19 0.049927 21 0.046473 14 0.03483 4 0.03003 5 0.029642 6 0.029202 16 0.028898 8 0.027487 7 0.027447 1 0.027271 2 0.027098 3 0.02651 15 0.022921 13 0.018518 12 0.017977 20 0.011703 23 0.010216 10 0.07490457437000889 18 0.07425909054343731 22 0.07015554691422256 9 0.06593878954450448 0 0.06549650321545401 11 0.05971424731379363 17 0.05830629038926666 19 0.04913259739358445 21 0.048966084905481926 14 0.03421557555421024 4 0.03236159628209359 5 0.03190532744332119 6 0.03128898394216587 16 0.030204290148121024 8 0.02973461384634712 7 0.029698855352750183 1 0.02952437981916053 2 0.02916938390567708 3 0.028898459693956352 12 0.024924944871136855 15 0.02399951255756228 13 0.022198370219662145 23 0.020815165856452055 20 0.01934192263053652 24 0.01267355717058712 __DUMMY__ 0.0021713361165060538 false 1.0 241 21 0.081937 12 0.070845 22 0.064103 11 0.058806 18 0.056681 24 0.055659 20 0.052062 13 0.052047 19 0.051413 23 0.04789 10 0.043727 9 0.041344 14 0.040452 4 0.034254 5 0.034159 3 0.029552 6 0.029056 8 0.026725 2 0.026624 7 0.02654 1 0.026293 0 0.023557 17 0.020591 16 0.005681 21 0.081937 12 0.070845 22 0.064103 11 0.058806 18 0.056681 24 0.055659 20 0.052062 13 0.052047 19 0.051413 23 0.04789 10 0.043727 9 0.041344 14 0.040452 4 0.034254 5 0.034159 3 0.029552 6 0.029056 8 0.026725 2 0.026624 7 0.02654 1 0.026293 0 0.023557 17 0.020591 16 0.005681 21 0.07990132261387949 12 0.07061589697184316 22 0.06390043463168497 11 0.06137400691368589 18 0.05898943735284627 19 0.055164918368919236 13 0.05469637797957659 24 0.0491303109955904 20 0.048403376825199115 10 0.04655076915751635 23 0.04554433985863835 14 0.04377046734286763 9 0.03889405074289129 0 0.030517960044614902 17 0.02988710025271077 4 0.028617850385617455 5 0.028335818123441252 6 0.02483339083271299 3 0.023047927140393425 8 0.02189628406043509 7 0.02183198999118762 1 0.02162024627336448 2 0.021603829131433657 16 0.017656006797386863 15 0.009086247274199422 __DUMMY__ 0.004129639937363138 false 1.0 483 15 0.184303 14 0.164313 10 0.094224 18 0.093434 13 0.076308 20 0.071678 19 0.044836 9 0.035413 22 0.032149 24 0.029734 23 0.025055 21 0.025033 17 0.018804 16 0.015238 11 0.014991 3 0.012144 5 0.01084 4 0.010678 2 0.007504 1 0.007367 8 0.007293 7 0.007149 12 0.005931 6 0.005581 15 0.184303 14 0.164313 10 0.094224 18 0.093434 13 0.076308 20 0.071678 19 0.044836 9 0.035413 22 0.032149 24 0.029734 23 0.025055 21 0.025033 17 0.018804 16 0.015238 11 0.014991 3 0.012144 5 0.01084 4 0.010678 2 0.007504 1 0.007367 8 0.007293 7 0.007149 12 0.005931 6 0.005581 15 0.11950612883695803 14 0.1147643002802378 18 0.08170663893839746 10 0.07699630300458893 13 0.06518196729097264 20 0.06196415224647733 19 0.050962358167821735 22 0.04236263973163978 21 0.04101978884594129 9 0.03650151850263109 24 0.03368426538755985 23 0.03216311985048602 11 0.03132478335544057 17 0.029221941833042466 12 0.027406587046227456 16 0.023982998696480004 4 0.016463926895543303 0 0.01638902618549533 5 0.01634392560569236 3 0.015223995444479154 6 0.012821409452369027 8 0.012769617229343402 1 0.01267532383467596 7 0.012664609588507701 2 0.012597733406587746 __DUMMY__ 0.0033009403424033973 false 1.0 242 21 0.068718 12 0.060564 22 0.056434 11 0.051456 13 0.051269 24 0.049017 23 0.047452 18 0.046685 9 0.045141 4 0.043261 5 0.043081 14 0.042324 10 0.041956 20 0.039892 3 0.039327 6 0.039163 8 0.03728 7 0.037118 2 0.037079 1 0.036898 19 0.035264 0 0.024857 17 0.017351 15 0.008415 21 0.068718 12 0.060564 22 0.056434 11 0.051456 13 0.051269 24 0.049017 23 0.047452 18 0.046685 9 0.045141 4 0.043261 5 0.043081 14 0.042324 10 0.041956 20 0.039892 3 0.039327 6 0.039163 8 0.03728 7 0.037118 2 0.037079 1 0.036898 19 0.035264 0 0.024857 17 0.017351 15 0.008415 21 0.07064752768340325 12 0.06405875105672854 22 0.05849112904531355 11 0.05610265008380177 13 0.054672621300617945 18 0.05335093625265155 10 0.046137335343462677 23 0.04496090650512594 14 0.04482189823030234 19 0.04452802980434781 24 0.04377684356247669 9 0.04172370322585385 20 0.0403794124349769 4 0.03453707556390643 5 0.03422650119343341 0 0.0318713188879346 6 0.03158097932595359 3 0.029359771917469975 8 0.02884968793540199 7 0.028781329664873782 1 0.028610124635367013 2 0.028517066736958138 17 0.028214646144602167 15 0.014333212727953105 16 0.013825899848467545 __DUMMY__ 0.0036406408886153143 false 1.0 484 18 0.110715 19 0.104105 21 0.098438 22 0.09525 20 0.08516 24 0.081553 10 0.061691 23 0.061021 11 0.053363 9 0.044387 12 0.043685 17 0.040208 14 0.035734 16 0.018256 0 0.013883 4 0.013771 5 0.011336 3 0.00764 15 0.00762 13 0.004146 6 0.002701 8 0.002551 7 0.001601 1 0.001186 18 0.110715 19 0.104105 21 0.098438 22 0.09525 20 0.08516 24 0.081553 10 0.061691 23 0.061021 11 0.053363 9 0.044387 12 0.043685 17 0.040208 14 0.035734 16 0.018256 0 0.013883 4 0.013771 5 0.011336 3 0.00764 15 0.00762 13 0.004146 6 0.002701 8 0.002551 7 0.001601 1 0.001186 18 0.08981532734964909 19 0.08056306792227509 21 0.07743025886795642 22 0.07733691919396224 20 0.06425540260143578 10 0.06176134111947799 24 0.05733349809191443 11 0.05294147995131981 23 0.04810822166356332 9 0.045587151927073105 17 0.042553864816097846 12 0.042365422242867205 14 0.04157959526786647 0 0.028563681597783625 16 0.025520312998659374 15 0.021763721612696324 13 0.021159851326290002 4 0.020359151442052387 5 0.0189906560975983 3 0.01577997398513582 6 0.013698104714715744 8 0.012949566184464599 7 0.012501733871128795 1 0.012216678909515756 2 0.011482376279687392 __DUMMY__ 0.003382639964812904 false 1.0 243 12 0.12297 13 0.100359 21 0.093796 19 0.068545 11 0.068207 20 0.061903 18 0.059905 23 0.055473 22 0.050881 14 0.050451 24 0.048835 16 0.042406 10 0.039096 17 0.037948 0 0.031914 9 0.013115 4 0.011539 6 0.011499 5 0.011213 15 0.004486 8 0.00395 2 0.003867 7 0.003845 1 0.003796 12 0.12297 13 0.100359 21 0.093796 19 0.068545 11 0.068207 20 0.061903 18 0.059905 23 0.055473 22 0.050881 14 0.050451 24 0.048835 16 0.042406 10 0.039096 17 0.037948 0 0.031914 9 0.013115 4 0.011539 6 0.011499 5 0.011213 15 0.004486 8 0.00395 2 0.003867 7 0.003845 1 0.003796 12 0.09981263945767752 21 0.08579594857405945 13 0.0831962924651922 11 0.065037378917425 19 0.06273392166849778 18 0.059753195950396396 22 0.055138242130434785 20 0.05405049659879684 14 0.050561827155591675 23 0.05026406765147033 24 0.0457790900900002 10 0.0432645268061736 17 0.037398037408364684 16 0.03557787967834281 0 0.033528395352929855 9 0.023092710185473098 4 0.017131424402775708 5 0.0167487392394082 6 0.01615933960883402 15 0.012088290943870738 8 0.010374448025150817 7 0.010320020876016911 1 0.010218504009543062 2 0.010113957064217404 3 0.007843474652828582 __DUMMY__ 0.004017151086528358 false 1.0 485 17 0.079132 16 0.074056 0 0.064212 19 0.059052 22 0.055822 18 0.052654 11 0.051367 9 0.042398 21 0.039849 6 0.037885 23 0.037241 4 0.035596 24 0.03554 8 0.035364 5 0.035252 12 0.03503 7 0.035005 20 0.034959 1 0.034832 2 0.034597 10 0.031693 3 0.031132 15 0.020173 13 0.007158 17 0.079132 16 0.074056 0 0.064212 19 0.059052 22 0.055822 18 0.052654 11 0.051367 9 0.042398 21 0.039849 6 0.037885 23 0.037241 4 0.035596 24 0.03554 8 0.035364 5 0.035252 12 0.03503 7 0.035005 20 0.034959 1 0.034832 2 0.034597 10 0.031693 3 0.031132 15 0.020173 13 0.007158 17 0.07433001426936778 16 0.06790336850886895 0 0.06236923277530548 19 0.056581987172916216 22 0.055226034499273643 18 0.05379064760612546 11 0.04936745888315853 9 0.044587267377221344 21 0.04007213834650234 10 0.036929127627712326 23 0.03692624109061045 6 0.03689325222236126 4 0.03492146102481787 8 0.03478587583156037 7 0.03454861701138382 5 0.03450179680968093 1 0.03439384916417826 12 0.034378370598415094 2 0.03402943360837939 20 0.03333753047125758 24 0.03231835935269676 3 0.030988826785032238 15 0.02408626820028055 13 0.012575213026484684 14 0.007971863280908922 __DUMMY__ 0.0021857644555000654 false 1.0 244 12 0.103837 13 0.090238 21 0.086727 11 0.076274 22 0.057116 18 0.050193 14 0.04779 19 0.047314 23 0.046253 10 0.044928 0 0.04145 24 0.037024 20 0.036898 17 0.032809 9 0.027764 16 0.024644 4 0.023125 6 0.023033 5 0.022815 7 0.016701 8 0.016694 1 0.016636 2 0.016455 3 0.013284 12 0.103837 13 0.090238 21 0.086727 11 0.076274 22 0.057116 18 0.050193 14 0.04779 19 0.047314 23 0.046253 10 0.044928 0 0.04145 24 0.037024 20 0.036898 17 0.032809 9 0.027764 16 0.024644 4 0.023125 6 0.023033 5 0.022815 7 0.016701 8 0.016694 1 0.016636 2 0.016455 3 0.013284 12 0.08975747539983556 21 0.08139218821592088 13 0.07753767211544618 11 0.06955384197237245 22 0.05825334393879497 18 0.05525075245193695 19 0.05192991528631113 14 0.048266673589309146 10 0.04696375813853766 23 0.045321268143558045 20 0.040538458407145234 0 0.03962181945456359 24 0.03855546333494256 17 0.035814399621161015 9 0.030872247107973864 16 0.02733718147353433 4 0.023049067626339837 5 0.022675711512892053 6 0.022215764534791196 7 0.01697014062385583 8 0.01695989336060614 1 0.016859600600028016 2 0.01662844218696466 3 0.014529407317045934 15 0.009385024414293936 __DUMMY__ 0.0037604891718387677 false 1.0 486 22 0.087274 19 0.084469 18 0.08225 21 0.072498 17 0.069709 11 0.066942 0 0.061617 10 0.059606 9 0.056963 16 0.051132 20 0.040661 12 0.037392 24 0.035134 23 0.031169 5 0.022969 4 0.022843 6 0.019076 3 0.017969 8 0.016633 2 0.016488 7 0.015959 1 0.015948 14 0.012179 13 0.003121 22 0.087274 19 0.084469 18 0.08225 21 0.072498 17 0.069709 11 0.066942 0 0.061617 10 0.059606 9 0.056963 16 0.051132 20 0.040661 12 0.037392 24 0.035134 23 0.031169 5 0.022969 4 0.022843 6 0.019076 3 0.017969 8 0.016633 2 0.016488 7 0.015959 1 0.015948 14 0.012179 13 0.003121 22 0.07563601460422631 19 0.07025567714395521 18 0.0699176049166282 21 0.06616544636466147 11 0.060688877428755485 17 0.0587173259363996 10 0.053417086077524975 0 0.05308582046958741 9 0.05210206581785361 16 0.04375761042420454 20 0.039337379799446015 12 0.03905618676875142 24 0.03759716712008142 23 0.03572906513618672 4 0.027794711864483335 5 0.02758683293363981 6 0.024801476047342858 3 0.023808415373818993 8 0.02298343319575967 7 0.0226758707658389 2 0.0225848671389324 1 0.022540048279439402 14 0.021703853748648666 13 0.014803897000899563 15 0.010882723602321176 __DUMMY__ 0.002370542040612896 false 1.0 487 19 0.102903 20 0.092331 18 0.085464 21 0.07041 16 0.0687 12 0.063133 24 0.061175 22 0.056325 10 0.052737 17 0.052736 11 0.050783 23 0.049487 14 0.045744 15 0.040927 13 0.039961 0 0.027998 9 0.019813 5 0.006596 4 0.006118 3 0.003214 6 0.002052 2 7.97E-4 8 4.41E-4 1 1.52E-4 19 0.102903 20 0.092331 18 0.085464 21 0.07041 16 0.0687 12 0.063133 24 0.061175 22 0.056325 10 0.052737 17 0.052736 11 0.050783 23 0.049487 14 0.045744 15 0.040927 13 0.039961 0 0.027998 9 0.019813 5 0.006596 4 0.006118 3 0.003214 6 0.002052 2 7.97E-4 8 4.41E-4 1 1.52E-4 19 0.08855232091218856 20 0.08001243317435429 18 0.0771262296069544 21 0.06967826231087942 12 0.059379821480094 24 0.05853465884948268 22 0.05730380969796416 16 0.05564146450712691 11 0.05022497485667356 10 0.04970801540259997 23 0.049268047055630794 17 0.04701742602260806 14 0.046298847006771573 13 0.04038758819138279 15 0.03810500179147534 0 0.02753868995546388 9 0.025374997436515334 4 0.01298802852128824 5 0.012962113932251267 3 0.00989907411193549 6 0.009116944929043915 8 0.007709615549510225 2 0.00760088987290618 7 0.007520098782890393 1 0.00745737487755778 __DUMMY__ 0.004593271164451034 false 1.0 245 12 0.129113 13 0.125235 21 0.084668 14 0.070148 20 0.062671 23 0.062635 18 0.059617 19 0.055559 11 0.054467 24 0.043558 10 0.038985 22 0.034931 16 0.031789 17 0.028322 15 0.022995 0 0.021298 6 0.015324 4 0.013795 5 0.013217 8 0.006773 7 0.0065 1 0.006489 9 0.006068 2 0.005845 12 0.129113 13 0.125235 21 0.084668 14 0.070148 20 0.062671 23 0.062635 18 0.059617 19 0.055559 11 0.054467 24 0.043558 10 0.038985 22 0.034931 16 0.031789 17 0.028322 15 0.022995 0 0.021298 6 0.015324 4 0.013795 5 0.013217 8 0.006773 7 0.0065 1 0.006489 9 0.006068 2 0.005845 12 0.10284815843814454 13 0.09702812064729854 21 0.08069928466446503 14 0.0624800952329955 18 0.059980412040175006 11 0.05785109353076258 19 0.055856951737753915 20 0.05472183859478937 23 0.05345337193994442 22 0.04651711059626901 10 0.044081340555049045 24 0.04271523923064426 17 0.03202610169682986 16 0.0298572076782346 0 0.027781418061362 15 0.023478305465903675 9 0.019365997257969406 4 0.01794300784823295 6 0.017757939280780774 5 0.01745464249814935 8 0.011475296798250602 7 0.011331789950808318 1 0.011258299606189192 2 0.010834767650765152 3 0.0075795213901055595 __DUMMY__ 0.0036226876081274896 false 1.0 488 19 0.103636 20 0.093361 21 0.088341 18 0.088259 24 0.071832 12 0.070045 22 0.068962 23 0.052957 16 0.052374 11 0.051669 17 0.04887 10 0.044219 14 0.036203 13 0.034009 9 0.024885 0 0.021997 15 0.018764 5 0.009916 4 0.009411 3 0.004581 6 0.003452 2 0.001119 8 0.001 7 1.39E-4 19 0.103636 20 0.093361 21 0.088341 18 0.088259 24 0.071832 12 0.070045 22 0.068962 23 0.052957 16 0.052374 11 0.051669 17 0.04887 10 0.044219 14 0.036203 13 0.034009 9 0.024885 0 0.021997 15 0.018764 5 0.009916 4 0.009411 3 0.004581 6 0.003452 2 0.001119 8 0.001 7 1.39E-4 19 0.08849746879834129 20 0.08144176684805682 21 0.07967666462217075 18 0.07799569702919713 24 0.06523861715462262 12 0.06379051034011146 22 0.06348594902651154 23 0.05163115832561712 11 0.05042727413188447 16 0.04593923075507315 10 0.044646323057472626 17 0.043466224106110916 14 0.04240064393461308 13 0.038412280628652186 9 0.02742338441555004 15 0.026853306418036675 0 0.022884567392773274 4 0.014800485365182074 5 0.014777375171076973 3 0.010784631132722286 6 0.009806768935801468 8 0.008021183142674087 2 0.007790617717189096 7 0.007642825791388228 1 0.007433501726874263 __DUMMY__ 0.0047315440322963625 false 1.0 246 12 0.111537 13 0.101407 21 0.085875 19 0.067752 18 0.065495 20 0.063345 11 0.062498 14 0.062033 23 0.049107 10 0.048717 22 0.047334 24 0.043144 16 0.041606 17 0.038098 0 0.032391 15 0.020673 9 0.016429 6 0.009774 4 0.009766 5 0.009615 2 0.003453 1 0.003412 8 0.003278 7 0.00326 12 0.111537 13 0.101407 21 0.085875 19 0.067752 18 0.065495 20 0.063345 11 0.062498 14 0.062033 23 0.049107 10 0.048717 22 0.047334 24 0.043144 16 0.041606 17 0.038098 0 0.032391 15 0.020673 9 0.016429 6 0.009774 4 0.009766 5 0.009615 2 0.003453 1 0.003412 8 0.003278 7 0.00326 12 0.09354835455146135 13 0.08346807465608116 21 0.08173072900442256 18 0.06304914183178757 19 0.06277629736422964 11 0.06181883646220436 14 0.05716569163415144 20 0.05560432761472252 22 0.053323652255280185 10 0.04834856942776319 23 0.0471644069480183 24 0.04339469569820448 17 0.037146487549371145 16 0.03509964541055509 0 0.03308355695041392 9 0.024588630290011713 15 0.021348950894920005 4 0.015984991574325525 5 0.015686411127354805 6 0.014922446932548442 8 0.009746587158417626 7 0.009732704103155475 1 0.00972451037401925 2 0.00960357913852453 3 0.007678958924715146 __DUMMY__ 0.004259762123340473 false 1.0 489 20 0.10482 19 0.104471 18 0.079421 21 0.078621 24 0.07732 12 0.07445 16 0.064891 23 0.059316 22 0.052409 14 0.046007 13 0.045647 11 0.045 17 0.044264 10 0.038506 15 0.037708 0 0.013904 9 0.01117 5 0.007531 4 0.007035 3 0.004021 6 0.002047 2 8.32E-4 8 4.44E-4 1 1.63E-4 20 0.10482 19 0.104471 18 0.079421 21 0.078621 24 0.07732 12 0.07445 16 0.064891 23 0.059316 22 0.052409 14 0.046007 13 0.045647 11 0.045 17 0.044264 10 0.038506 15 0.037708 0 0.013904 9 0.01117 5 0.007531 4 0.007035 3 0.004021 6 0.002047 2 8.32E-4 8 4.44E-4 1 1.63E-4 19 0.08933257483927423 20 0.08620122196195072 21 0.07500003875021523 18 0.07408520555694403 24 0.06700617996156202 12 0.06601330969507968 22 0.055957567440160394 23 0.05424327482113149 16 0.052934257332364766 11 0.047955525685100635 14 0.046375579944347586 13 0.0437182473476463 17 0.042360135226011335 10 0.042360129824964766 15 0.035324534921648144 9 0.021030199676471628 0 0.02023368399538751 4 0.013316104449402708 5 0.01329208228249903 3 0.010052385486535786 6 0.008903669885316753 8 0.007429902776418144 2 0.007335341444306329 7 0.007240903562721115 1 0.007176389752259548 __DUMMY__ 0.00512155338028018 false 1.0 247 12 0.108269 13 0.098944 21 0.082715 11 0.073431 18 0.064008 19 0.062454 14 0.057747 10 0.052631 22 0.051573 20 0.051045 17 0.044059 16 0.043697 23 0.043656 0 0.043421 24 0.033392 9 0.020125 15 0.017491 6 0.011747 4 0.010554 5 0.010339 8 0.004783 7 0.004726 2 0.004608 1 0.004585 12 0.108269 13 0.098944 21 0.082715 11 0.073431 18 0.064008 19 0.062454 14 0.057747 10 0.052631 22 0.051573 20 0.051045 17 0.044059 16 0.043697 23 0.043656 0 0.043421 24 0.033392 9 0.020125 15 0.017491 6 0.011747 4 0.010554 5 0.010339 8 0.004783 7 0.004726 2 0.004608 1 0.004585 12 0.09419672337822235 13 0.08510138818785587 21 0.08019247350661987 11 0.06766880865666905 18 0.06209674813300386 19 0.05923264927651764 14 0.0556055354814831 22 0.05449151864645549 10 0.05075460977057929 20 0.04877153186714505 23 0.04443248584905531 17 0.03993157687635813 0 0.039113835993503786 24 0.037309119461522246 16 0.03586531866658449 9 0.025955285855583658 15 0.019190740113916832 4 0.016255953613070348 6 0.016026204817488385 5 0.015941044818335307 8 0.010359198363783096 7 0.010323735851215167 1 0.010194002805984358 2 0.010075576611106871 3 0.0072451136673374154 __DUMMY__ 0.0036688197306032253 false 1.0 248 12 0.116335 13 0.10319 21 0.075802 19 0.072838 20 0.069802 18 0.064012 23 0.063398 16 0.055 14 0.054107 11 0.047996 24 0.044168 17 0.041809 10 0.039148 22 0.035141 0 0.027928 15 0.022734 6 0.013378 4 0.011661 5 0.011569 9 0.007747 7 0.005632 1 0.005588 8 0.005564 2 0.005455 12 0.116335 13 0.10319 21 0.075802 19 0.072838 20 0.069802 18 0.064012 23 0.063398 16 0.055 14 0.054107 11 0.047996 24 0.044168 17 0.041809 10 0.039148 22 0.035141 0 0.027928 15 0.022734 6 0.013378 4 0.011661 5 0.011569 9 0.007747 7 0.005632 1 0.005588 8 0.005564 2 0.005455 12 0.09555674977350322 13 0.08488096528667834 21 0.07453926603730197 19 0.06278746941293976 18 0.060717679667994254 20 0.05714913563252616 23 0.05461983697280748 11 0.05334047914947554 14 0.05235455543275146 22 0.045452498821296226 10 0.04281779049895201 24 0.042664066882742005 16 0.0413123794459617 17 0.03891638609541265 0 0.03141408906911597 15 0.022301647758087642 9 0.020466143996652395 6 0.018628470302903016 4 0.018499452314459975 5 0.018243907366353274 7 0.012779465966593238 8 0.01274723241728331 1 0.012698551483672483 2 0.012486880439004743 3 0.00924610463321174 __DUMMY__ 0.0033787951423192627 false 1.0 249 12 0.10587 13 0.0961 11 0.069663 21 0.069327 18 0.065768 0 0.062745 17 0.062233 16 0.057327 19 0.056969 10 0.055572 22 0.047212 14 0.044074 23 0.038852 20 0.036056 9 0.025484 6 0.01743 24 0.014979 15 0.014175 4 0.012747 5 0.012453 8 0.008926 7 0.00878 1 0.008772 2 0.008485 12 0.10587 13 0.0961 11 0.069663 21 0.069327 18 0.065768 0 0.062745 17 0.062233 16 0.057327 19 0.056969 10 0.055572 22 0.047212 14 0.044074 23 0.038852 20 0.036056 9 0.025484 6 0.01743 24 0.014979 15 0.014175 4 0.012747 5 0.012453 8 0.008926 7 0.00878 1 0.008772 2 0.008485 12 0.08790640594903779 13 0.07865370153655399 21 0.06999030345586404 11 0.06352009921676059 18 0.061287249761031504 19 0.05453681285129586 22 0.05192669053522943 10 0.05092064129237442 17 0.050232130220537824 0 0.049883751568880155 14 0.045754577797015 16 0.0430928111949216 23 0.04158402591308195 20 0.03912435303600727 9 0.030706936152524608 24 0.027475887635977216 6 0.021517624280681914 4 0.01987026557792823 5 0.019509082489746633 15 0.017806147631181303 8 0.01543700641907226 7 0.015353541596335424 1 0.015293246703714704 2 0.014993593282294198 3 0.010278297413007675 __DUMMY__ 0.0033448164889445338 false 1.0 490 18 0.090226 19 0.087579 20 0.07556 21 0.073405 10 0.069722 12 0.065425 22 0.06084 11 0.059954 14 0.058899 13 0.05425 16 0.048121 17 0.047513 24 0.045299 15 0.039111 23 0.036745 0 0.035653 9 0.030508 5 0.007367 4 0.006911 6 0.003113 3 0.002452 2 7.76E-4 8 4.22E-4 1 1.51E-4 18 0.090226 19 0.087579 20 0.07556 21 0.073405 10 0.069722 12 0.065425 22 0.06084 11 0.059954 14 0.058899 13 0.05425 16 0.048121 17 0.047513 24 0.045299 15 0.039111 23 0.036745 0 0.035653 9 0.030508 5 0.007367 4 0.006911 6 0.003113 3 0.002452 2 7.76E-4 8 4.22E-4 1 1.51E-4 18 0.08410784229837674 19 0.07809972953080344 21 0.07031450294648584 10 0.0678140863551627 20 0.0661653101715561 22 0.06169274214325452 11 0.058616972031167884 12 0.05835427577194565 14 0.058278909562736785 13 0.05061850441021475 17 0.044960413965956195 24 0.04268296214719536 16 0.041318412659594045 15 0.039579080783691774 23 0.036887031785787366 0 0.03623706040870673 9 0.03529659804985082 4 0.012145357316783451 5 0.012142394812688861 6 0.008557944789523143 3 0.008063753361916734 8 0.006423876619379327 2 0.00634152255930533 7 0.006243227591383312 1 0.0062006668767561075 __DUMMY__ 0.002856821049777003 false 1.0 491 18 0.094639 10 0.084895 19 0.081473 21 0.068308 11 0.065854 22 0.064009 20 0.063652 14 0.063135 12 0.058071 13 0.055237 17 0.051387 0 0.047176 16 0.044407 15 0.042057 9 0.039607 24 0.030067 23 0.026564 5 0.006104 4 0.005969 6 0.003053 3 0.002293 2 0.001341 8 6.97E-4 7 5.0E-6 18 0.094639 10 0.084895 19 0.081473 21 0.068308 11 0.065854 22 0.064009 20 0.063652 14 0.063135 12 0.058071 13 0.055237 17 0.051387 0 0.047176 16 0.044407 15 0.042057 9 0.039607 24 0.030067 23 0.026564 5 0.006104 4 0.005969 6 0.003053 3 0.002293 2 0.001341 8 6.97E-4 7 5.0E-6 18 0.08744964863150645 10 0.08017272991779134 19 0.07136195370079765 21 0.065464638650321 22 0.06453246122110232 11 0.06336380030317762 14 0.060789434397981575 20 0.05368242898783897 12 0.05149851835999661 13 0.050733458678283494 17 0.048164535966424456 0 0.046550898150860186 9 0.0440199719883868 15 0.04069405703224935 16 0.03685040280629116 24 0.028761643885384575 23 0.028145830099830623 4 0.012825775978856601 5 0.012667906665434093 6 0.00998803203804854 3 0.008899867494047614 2 0.007888175292582225 8 0.007857875811802001 7 0.007551268288930215 1 0.007456065675985439 __DUMMY__ 0.0026286199760890993 false 1.0 492 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.08486911982293603 10 0.08016498149047166 21 0.07094026260439013 11 0.0702755499971741 22 0.06944670456840311 19 0.06938813460713018 14 0.0575942453132814 12 0.05606146744544788 13 0.052377627588008534 0 0.05139620704853687 17 0.04912749274958468 9 0.04640206822522641 20 0.046120406593652324 16 0.034928722132314474 15 0.03141181464048148 24 0.025882183697370557 23 0.025654524752313917 4 0.013111647427923529 5 0.013021115765136872 6 0.010432226033318717 3 0.008342626152150753 2 0.007727489829759523 8 0.007687075327272743 7 0.007450146686313229 1 0.007340998742750065 __DUMMY__ 0.002845160758650811 false 1.0 250 12 0.10755 13 0.083541 21 0.081772 11 0.062207 23 0.058646 19 0.054865 20 0.050907 24 0.050898 22 0.04839 18 0.045288 16 0.037673 14 0.036335 17 0.035696 0 0.032228 10 0.027924 6 0.025459 4 0.025291 5 0.025127 8 0.019443 2 0.019096 7 0.019073 1 0.018959 9 0.017937 3 0.015696 12 0.10755 13 0.083541 21 0.081772 11 0.062207 23 0.058646 19 0.054865 20 0.050907 24 0.050898 22 0.04839 18 0.045288 16 0.037673 14 0.036335 17 0.035696 0 0.032228 10 0.027924 6 0.025459 4 0.025291 5 0.025127 8 0.019443 2 0.019096 7 0.019073 1 0.018959 9 0.017937 3 0.015696 12 0.09108132817125505 21 0.07763339549868885 13 0.07326347455914055 11 0.06099945507861591 19 0.05588574413879669 22 0.052831643378668205 18 0.05222391768385705 23 0.05185948318135732 20 0.04819738142409174 24 0.04587691342483549 14 0.041274863530864805 17 0.03827948692003604 10 0.03715418325454661 16 0.035611685713160014 0 0.035149323702577964 9 0.02561530185946281 4 0.02449022100894905 5 0.024182268450469523 6 0.023965414620599902 8 0.018932727706465414 7 0.01874724391219866 1 0.018620009900674424 2 0.018541924054261118 3 0.016206644462888442 15 0.009836686891436757 __DUMMY__ 0.003539277472101627 false 1.0 493 19 0.097845 20 0.096297 18 0.094072 21 0.068525 10 0.06361 24 0.059749 12 0.05955 14 0.056132 22 0.054731 16 0.052798 17 0.046086 15 0.045876 23 0.044967 13 0.044862 11 0.044404 9 0.025914 0 0.023842 5 0.006317 4 0.00607 3 0.004907 2 0.001405 6 0.001177 8 7.7E-4 7 9.3E-5 19 0.097845 20 0.096297 18 0.094072 21 0.068525 10 0.06361 24 0.059749 12 0.05955 14 0.056132 22 0.054731 16 0.052798 17 0.046086 15 0.045876 23 0.044967 13 0.044862 11 0.044404 9 0.025914 0 0.023842 5 0.006317 4 0.00607 3 0.004907 2 0.001405 6 0.001177 8 7.7E-4 7 9.3E-5 18 0.08281919550629777 19 0.0815750466852331 20 0.07803703447294755 21 0.06444442228868598 10 0.059476749177282684 22 0.05540003764450138 14 0.05503277229662698 24 0.05306295162442183 12 0.05296920190293873 11 0.04551732768498552 15 0.045312159595222806 23 0.04433677542434078 16 0.044218644432692494 17 0.04331448265326554 13 0.04327623065870321 9 0.031529679671481674 0 0.027053321880959148 4 0.014371464205162854 5 0.014244246173643865 3 0.0122573781272056 6 0.010296496558814339 2 0.009577156570357332 8 0.009558267768171796 7 0.009237289651884712 1 0.009082377497019655 __DUMMY__ 0.003999289847152487 false 1.0 251 11 0.095569 19 0.081797 22 0.076798 18 0.075252 17 0.07433 21 0.072533 0 0.072433 16 0.071694 10 0.068788 12 0.063793 13 0.042094 9 0.037941 20 0.037746 14 0.034248 24 0.023994 23 0.022949 15 0.019935 6 0.006352 4 0.006201 5 0.006125 1 0.002494 7 0.00235 8 0.002294 2 0.002288 11 0.095569 19 0.081797 22 0.076798 18 0.075252 17 0.07433 21 0.072533 0 0.072433 16 0.071694 10 0.068788 12 0.063793 13 0.042094 9 0.037941 20 0.037746 14 0.034248 24 0.023994 23 0.022949 15 0.019935 6 0.006352 4 0.006201 5 0.006125 1 0.002494 7 0.00235 8 0.002294 2 0.002288 11 0.07539262011342901 19 0.07209949842843004 22 0.06904631563951398 18 0.06853812715389695 21 0.06703102292728334 17 0.06258095655719004 0 0.05838767084289386 10 0.058216050925666396 16 0.057735945287880494 12 0.05651500690157739 20 0.04107122238723125 9 0.03942833338165181 13 0.03770595699390019 14 0.0334129840395461 23 0.03275127366917229 24 0.03219927413991011 15 0.02155160054136182 4 0.016719214847290102 5 0.016453373670357766 6 0.015966409579930535 7 0.012946433003470767 8 0.01291653775507971 1 0.012913105482262335 2 0.012623456641132224 3 0.0115054604147881 __DUMMY__ 0.004292148675153572 false 1.0 494 18 0.086381 21 0.082176 19 0.081304 10 0.076184 11 0.07469 22 0.072732 12 0.068304 20 0.056637 13 0.055639 14 0.055633 17 0.050339 0 0.048868 16 0.041807 9 0.040139 24 0.034679 23 0.027688 15 0.02456 5 0.007337 4 0.007046 6 0.00365 3 0.002323 2 0.001259 8 5.88E-4 7 3.6E-5 18 0.086381 21 0.082176 19 0.081304 10 0.076184 11 0.07469 22 0.072732 12 0.068304 20 0.056637 13 0.055639 14 0.055633 17 0.050339 0 0.048868 16 0.041807 9 0.040139 24 0.034679 23 0.027688 15 0.02456 5 0.007337 4 0.007046 6 0.00365 3 0.002323 2 0.001259 8 5.88E-4 7 3.6E-5 18 0.07889717226246716 21 0.07848095403336054 19 0.07313527668817764 11 0.06964056613319045 22 0.06933186700506722 10 0.068408935306898 12 0.06504641940436869 13 0.05375165162304423 14 0.05326010639909867 20 0.052611844208107564 17 0.046330297533716244 0 0.04471551516904799 9 0.040084788188021414 16 0.036948029039449236 24 0.036793202501993694 23 0.032786200066822965 15 0.024790760023411424 4 0.013015974584642487 5 0.012924603714285566 6 0.009876494430042525 3 0.00798066081132708 2 0.007041804006206443 8 0.006973197778999532 7 0.006748193720908598 1 0.006622887186133338 __DUMMY__ 0.003802598181211361 false 1.0 252 12 0.088079 19 0.085914 21 0.077805 18 0.074207 11 0.067218 20 0.066949 13 0.066217 23 0.057988 16 0.057816 22 0.055642 17 0.05039 10 0.049658 24 0.046547 14 0.043468 0 0.036141 15 0.022793 9 0.016467 4 0.009268 5 0.008766 6 0.008166 1 0.002913 7 0.002868 8 0.002531 2 0.00219 12 0.088079 19 0.085914 21 0.077805 18 0.074207 11 0.067218 20 0.066949 13 0.066217 23 0.057988 16 0.057816 22 0.055642 17 0.05039 10 0.049658 24 0.046547 14 0.043468 0 0.036141 15 0.022793 9 0.016467 4 0.009268 5 0.008766 6 0.008166 1 0.002913 7 0.002868 8 0.002531 2 0.00219 19 0.07296347344144183 21 0.06881911919086843 12 0.06846661101974336 18 0.06560297483115299 20 0.05761195731672107 11 0.05693866121838981 22 0.05602123370879809 23 0.05400189841324595 13 0.0495292383131802 16 0.049114802030511905 17 0.0478180374877095 24 0.046685548020415905 10 0.044778369501834454 14 0.03757076688044858 0 0.03629048211497184 9 0.02725572121027128 15 0.02335667875426685 4 0.02031995538592328 5 0.019832603182145674 6 0.018791100008137544 7 0.015297575393075967 1 0.015192522397121653 8 0.015121566465209837 2 0.014663907772303744 3 0.013797392389978432 __DUMMY__ 0.004157803552131989 false 1.0 495 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.08488517346469507 10 0.08011956192964165 21 0.0709387662712637 11 0.07021709144425031 19 0.06945747376040341 22 0.06941338403151365 14 0.057593465958272694 12 0.05607423926844597 13 0.052362148366703255 0 0.051329618065534294 17 0.049120966771687855 9 0.04634857544405344 20 0.04623910054907986 16 0.034976927333718016 15 0.03144970361071052 24 0.02596630848734149 23 0.025700669858319713 4 0.013093049608530858 5 0.013003641845460306 6 0.010408387821103607 3 0.00833233558323844 2 0.0077106374372550345 8 0.007668222477684063 7 0.007429940277198697 1 0.0073208512680662035 __DUMMY__ 0.002839759065828047 false 1.0 253 12 0.096608 23 0.080935 21 0.079829 20 0.068865 13 0.068668 24 0.067951 19 0.063445 18 0.048507 22 0.040988 11 0.037894 4 0.032201 5 0.03151 16 0.030512 6 0.030125 14 0.02957 17 0.026417 7 0.025003 8 0.024993 1 0.02491 2 0.024066 3 0.022825 10 0.016964 9 0.014732 0 0.012482 12 0.096608 23 0.080935 21 0.079829 20 0.068865 13 0.068668 24 0.067951 19 0.063445 18 0.048507 22 0.040988 11 0.037894 4 0.032201 5 0.03151 16 0.030512 6 0.030125 14 0.02957 17 0.026417 7 0.025003 8 0.024993 1 0.02491 2 0.024066 3 0.022825 10 0.016964 9 0.014732 0 0.012482 12 0.07949716650714501 21 0.07381389959446086 23 0.06673799690632522 19 0.06000917353156318 13 0.05783216484445791 20 0.057332318384933245 24 0.057319190175986724 18 0.05151453609259382 22 0.048830311009440255 11 0.04509168098930549 17 0.03328191896480385 14 0.03310381894013815 16 0.032386572089326944 4 0.031184387887428635 5 0.03061324533588678 6 0.029287322718236784 10 0.02781732849713706 7 0.025291177963409652 8 0.025232590255397414 1 0.025118828576230167 9 0.02457389602578306 2 0.024554885715199024 3 0.0237678505324957 0 0.023445833342753554 15 0.009385147238789547 __DUMMY__ 0.0029767578807719177 false 1.0 254 11 0.100289 12 0.08793 13 0.079644 21 0.077763 10 0.069671 18 0.069528 22 0.068799 0 0.066231 17 0.057428 19 0.056477 14 0.051525 16 0.04386 9 0.033075 23 0.026919 20 0.024632 15 0.017593 24 0.015088 6 0.012049 5 0.010547 4 0.010495 1 0.005218 2 0.005135 8 0.005117 7 0.004984 11 0.100289 12 0.08793 13 0.079644 21 0.077763 10 0.069671 18 0.069528 22 0.068799 0 0.066231 17 0.057428 19 0.056477 14 0.051525 16 0.04386 9 0.033075 23 0.026919 20 0.024632 15 0.017593 24 0.015088 6 0.012049 5 0.010547 4 0.010495 1 0.005218 2 0.005135 8 0.005117 7 0.004984 11 0.07932064838443259 21 0.07389457808574484 12 0.07243322939185619 22 0.06623469019201947 18 0.06489639014494096 13 0.061237728206263546 10 0.05845502051119766 19 0.0574285729272937 0 0.05228195763369804 17 0.04974453818840095 14 0.045834406033923115 16 0.03798692135081185 9 0.03662126945802266 23 0.035480854492386256 20 0.03409565789912448 24 0.029201257623238816 15 0.018971799697714908 4 0.018960813671521512 5 0.018731936253737008 6 0.018475499908942025 8 0.013729137446866085 7 0.013686688414474076 1 0.013678207014537416 2 0.013444300473223125 3 0.011152955955421245 __DUMMY__ 0.0040209406402076245 false 1.0 496 18 0.089204 19 0.087329 20 0.075896 21 0.07338 10 0.07008 12 0.065347 22 0.061013 11 0.059821 14 0.058908 13 0.05441 16 0.048311 17 0.047536 24 0.045311 15 0.039415 23 0.036358 0 0.035814 9 0.030748 5 0.006765 4 0.006494 3 0.002989 6 0.002835 2 0.001313 8 6.62E-4 7 6.1E-5 18 0.089204 19 0.087329 20 0.075896 21 0.07338 10 0.07008 12 0.065347 22 0.061013 11 0.059821 14 0.058908 13 0.05441 16 0.048311 17 0.047536 24 0.045311 15 0.039415 23 0.036358 0 0.035814 9 0.030748 5 0.006765 4 0.006494 3 0.002989 6 0.002835 2 0.001313 8 6.62E-4 7 6.1E-5 18 0.08365667130030117 19 0.07802156749622753 21 0.07031499604771822 10 0.06797095578453402 20 0.06635368314538556 22 0.06176931492450388 11 0.05855307850786725 12 0.05834416748640239 14 0.058266958860377346 13 0.05069263667375771 17 0.04498246835288045 24 0.04270702660384331 16 0.04142996684779514 15 0.03969933869303957 23 0.03671632439304995 0 0.03630745140833653 9 0.03539093265894666 4 0.01194191904285578 5 0.0118562220379081 6 0.008416846346501283 3 0.008295984677746959 2 0.0065733692454506285 8 0.006518156881303868 7 0.006254584513405593 1 0.006115898447149957 __DUMMY__ 0.0028494796227111377 false 1.0 497 20 0.115754 19 0.10942 24 0.089732 18 0.078108 21 0.073202 23 0.069909 16 0.062913 12 0.058342 22 0.052082 15 0.048411 14 0.047262 11 0.037436 10 0.035514 17 0.0351 13 0.029563 3 0.010258 4 0.010096 5 0.009783 9 0.008939 8 0.004232 2 0.003984 7 0.003815 1 0.003329 6 0.002815 20 0.115754 19 0.10942 24 0.089732 18 0.078108 21 0.073202 23 0.069909 16 0.062913 12 0.058342 22 0.052082 15 0.048411 14 0.047262 11 0.037436 10 0.035514 17 0.0351 13 0.029563 3 0.010258 4 0.010096 5 0.009783 9 0.008939 8 0.004232 2 0.003984 7 0.003815 1 0.003329 6 0.002815 20 0.09017206901216099 19 0.08992824613352651 18 0.07393849335226484 24 0.07200340741137902 21 0.07087969612128539 23 0.058683178375387085 22 0.056108010450759756 12 0.0552679448606535 16 0.04979206840895382 14 0.04888795564223241 11 0.043883773985852886 15 0.043026103445555616 10 0.042591729249759264 17 0.03698180778155218 13 0.03496649562762004 9 0.021349967914609337 4 0.015742119041676408 5 0.015343637452466778 3 0.014199807219553063 0 0.013225482388293602 8 0.010181946177847139 6 0.010066245831093452 7 0.010004925581312017 2 0.009800929116716333 1 0.009628556066588268 __DUMMY__ 0.0033454033509005268 false 1.0 255 12 0.136774 13 0.130285 21 0.083677 23 0.071949 20 0.065311 14 0.062903 19 0.05737 18 0.056967 11 0.04638 24 0.04257 16 0.037468 10 0.034245 17 0.029129 22 0.027384 0 0.021373 6 0.017733 15 0.014897 4 0.014865 5 0.014277 7 0.008267 8 0.008257 1 0.007941 2 0.007357 9 0.002623 12 0.136774 13 0.130285 21 0.083677 23 0.071949 20 0.065311 14 0.062903 19 0.05737 18 0.056967 11 0.04638 24 0.04257 16 0.037468 10 0.034245 17 0.029129 22 0.027384 0 0.021373 6 0.017733 15 0.014897 4 0.014865 5 0.014277 7 0.008267 8 0.008257 1 0.007941 2 0.007357 9 0.002623 12 0.10448533670237942 13 0.09752821527164852 21 0.07827427680231312 23 0.058130003119443364 18 0.05778442391873488 14 0.05743503353424408 19 0.0553619869754041 20 0.05488798931253217 11 0.05267949103832065 22 0.042165723686415885 24 0.04174404003371448 10 0.0412140778800403 17 0.0326145948577779 16 0.03236987443008063 0 0.02817135436000374 6 0.02048550454000639 4 0.019921556834864865 15 0.019438625394746497 5 0.019434712418483036 9 0.018493371965221488 7 0.013882276336786048 8 0.013881571153462266 1 0.013669324387338476 2 0.013255408306859088 3 0.009238125030239073 __DUMMY__ 0.003453101708939603 false 1.0 256 19 0.095345 20 0.092496 21 0.088517 12 0.080661 18 0.077765 24 0.070473 22 0.060199 11 0.056482 23 0.053949 13 0.053734 16 0.052794 14 0.047155 10 0.043993 17 0.041977 15 0.025575 0 0.021644 9 0.018551 4 0.006544 5 0.006195 3 0.002779 6 0.001963 8 5.2E-4 1 3.48E-4 7 3.39E-4 19 0.095345 20 0.092496 21 0.088517 12 0.080661 18 0.077765 24 0.070473 22 0.060199 11 0.056482 23 0.053949 13 0.053734 16 0.052794 14 0.047155 10 0.043993 17 0.041977 15 0.025575 0 0.021644 9 0.018551 4 0.006544 5 0.006195 3 0.002779 6 0.001963 8 5.2E-4 1 3.48E-4 7 3.39E-4 19 0.08448765706787728 21 0.08204399450601753 20 0.07805437206571005 18 0.07205646319528937 12 0.071049737665234 24 0.06333744658463683 22 0.06127976097839602 11 0.05572052926092981 23 0.051482018398472544 13 0.04813476456642108 16 0.04645951295667761 14 0.04533896490307001 10 0.04424014151926407 17 0.04137519762569328 15 0.025686520167502894 0 0.025113846232348518 9 0.024981950930810147 4 0.013269634721146046 5 0.012857093686233795 3 0.009301406394945927 6 0.009077916428577259 8 0.007423800076890039 7 0.007369453032215458 1 0.007236445652263386 2 0.0069165436547622226 __DUMMY__ 0.005704827728614861 false 1.0 498 19 0.097901 18 0.086036 20 0.078805 16 0.075257 21 0.070476 17 0.068284 12 0.064589 22 0.061627 11 0.058649 10 0.054818 24 0.051442 0 0.044272 23 0.04093 13 0.037137 14 0.035826 15 0.034547 9 0.025968 5 0.004757 4 0.004629 6 0.00291 2 4.26E-4 3 3.16E-4 8 3.0E-4 1 9.7E-5 19 0.097901 18 0.086036 20 0.078805 16 0.075257 21 0.070476 17 0.068284 12 0.064589 22 0.061627 11 0.058649 10 0.054818 24 0.051442 0 0.044272 23 0.04093 13 0.037137 14 0.035826 15 0.034547 9 0.025968 5 0.004757 4 0.004629 6 0.00291 2 4.26E-4 3 3.16E-4 8 3.0E-4 1 9.7E-5 19 0.08429808860034167 18 0.07865644275048585 20 0.0718899102840301 21 0.06870246805960646 12 0.059760368651480975 22 0.059400188362503374 16 0.057820832092706345 17 0.05456887817569689 11 0.05450164733114917 10 0.053895345125981695 24 0.050984213830682516 14 0.046568216761700414 23 0.04278373465405863 13 0.04240136513782742 15 0.039897394008625534 0 0.03639029474622004 9 0.029083723107252747 4 0.011439271151121195 5 0.011286114984137802 6 0.008879296569935902 3 0.007545168275165476 8 0.006863752579975256 7 0.006705289773136146 2 0.006680999877897324 1 0.006631751836727125 __DUMMY__ 0.002365243271553836 false 1.0 499 18 0.125146 10 0.101639 19 0.092167 22 0.085705 17 0.071829 9 0.064195 21 0.06415 11 0.064086 0 0.063036 20 0.055713 14 0.040701 16 0.039915 12 0.028154 15 0.026922 23 0.018458 24 0.016626 13 0.016117 4 0.008014 5 0.006253 6 0.003842 8 0.002132 7 0.002003 1 0.001675 3 0.001522 18 0.125146 10 0.101639 19 0.092167 22 0.085705 17 0.071829 9 0.064195 21 0.06415 11 0.064086 0 0.063036 20 0.055713 14 0.040701 16 0.039915 12 0.028154 15 0.026922 23 0.018458 24 0.016626 13 0.016117 4 0.008014 5 0.006253 6 0.003842 8 0.002132 7 0.002003 1 0.001675 3 0.001522 18 0.09731194094507419 10 0.08354932849582744 22 0.0749714127402179 19 0.07325433575688267 21 0.060744933437964395 11 0.06020518343332959 17 0.05850037018020033 9 0.05789450385575505 0 0.0547389592464028 20 0.04632923870560908 14 0.04427541556837235 16 0.03440177369000277 12 0.032584674013120325 15 0.03066953493994215 13 0.025606503296254163 23 0.025270955600653757 24 0.02329142106035284 4 0.018102232676572776 5 0.01702812252414271 6 0.014749987528066671 3 0.013299170129541392 8 0.013255213362466734 7 0.013185214821291837 1 0.012921758838681196 2 0.011938039038653566 __DUMMY__ 0.0019197761146213838 false 1.0 257 19 0.112591 20 0.098641 21 0.079603 16 0.078289 12 0.07739 18 0.075312 24 0.074187 23 0.065844 22 0.055482 17 0.052626 11 0.051049 13 0.039111 10 0.03539 14 0.03042 15 0.024454 0 0.022624 9 0.009717 5 0.006077 4 0.006039 6 0.002225 3 0.002004 1 3.61E-4 7 3.49E-4 8 2.15E-4 19 0.112591 20 0.098641 21 0.079603 16 0.078289 12 0.07739 18 0.075312 24 0.074187 23 0.065844 22 0.055482 17 0.052626 11 0.051049 13 0.039111 10 0.03539 14 0.03042 15 0.024454 0 0.022624 9 0.009717 5 0.006077 4 0.006039 6 0.002225 3 0.002004 1 3.61E-4 7 3.49E-4 8 2.15E-4 19 0.0917389059362674 20 0.07905732126146921 21 0.0755936161894651 18 0.06994065050885782 12 0.06845112558973653 24 0.06331595163084784 16 0.060220200567829126 22 0.05815262751790994 23 0.056878716308956016 11 0.05272219458488179 17 0.0480885920404026 13 0.040168512582895784 10 0.039859455867051134 14 0.0353774954807542 0 0.027584491486245897 15 0.02475275258268881 9 0.02129221375639352 4 0.0138648927588334 5 0.01364551904770612 6 0.010416161665854441 3 0.009761864961068224 7 0.00853044439054253 8 0.0084497983994353 1 0.00841634960411179 2 0.008090936076105162 __DUMMY__ 0.005629209203690433 false 1.0 258 12 0.095334 21 0.094808 11 0.085937 13 0.077745 22 0.071845 18 0.060559 19 0.058986 10 0.055726 14 0.049109 0 0.047969 17 0.03973 20 0.037547 23 0.036507 24 0.036018 9 0.034801 16 0.028598 4 0.016299 5 0.01569 6 0.01463 7 0.008993 8 0.008825 1 0.008602 2 0.008597 3 0.007148 12 0.095334 21 0.094808 11 0.085937 13 0.077745 22 0.071845 18 0.060559 19 0.058986 10 0.055726 14 0.049109 0 0.047969 17 0.03973 20 0.037547 23 0.036507 24 0.036018 9 0.034801 16 0.028598 4 0.016299 5 0.01569 6 0.01463 7 0.008993 8 0.008825 1 0.008602 2 0.008597 3 0.007148 21 0.08671585213319775 12 0.08405793829559366 11 0.07535469069273473 13 0.06917162934362636 22 0.06751394387989673 18 0.06128106158085916 19 0.058898783848942995 10 0.053123598485692 14 0.04893226764921549 0 0.042753793105393796 20 0.041183049674556216 23 0.03972323669267776 17 0.03917532801970387 24 0.03883717270216874 9 0.03530979464377221 16 0.02881115554853327 4 0.019203774202840043 5 0.01868870561932356 6 0.017237042180615104 7 0.012554544174540485 8 0.012450758723417832 1 0.012277270028271363 2 0.012110446196803192 3 0.011266899334649059 15 0.009049631756342713 __DUMMY__ 0.004317631486632077 false 1.0 259 13 0.103997 14 0.09685 12 0.089758 21 0.083109 18 0.076046 10 0.074241 11 0.066693 19 0.059423 20 0.057547 22 0.053052 15 0.051846 23 0.03557 24 0.033765 0 0.027469 9 0.027143 17 0.024303 16 0.019232 4 0.007323 5 0.007153 6 0.004738 2 2.79E-4 7 2.55E-4 1 1.25E-4 3 8.2E-5 13 0.103997 14 0.09685 12 0.089758 21 0.083109 18 0.076046 10 0.074241 11 0.066693 19 0.059423 20 0.057547 22 0.053052 15 0.051846 23 0.03557 24 0.033765 0 0.027469 9 0.027143 17 0.024303 16 0.019232 4 0.007323 5 0.007153 6 0.004738 2 2.79E-4 7 2.55E-4 1 1.25E-4 3 8.2E-5 13 0.08156278760712384 21 0.07932683312385037 12 0.07893122766208394 14 0.07545220664763187 18 0.07023045648240467 11 0.06316395555734833 10 0.06267874291986907 19 0.060307707749709956 22 0.05699125510598315 20 0.054097584006372997 15 0.03984698813216379 23 0.039543786060566216 24 0.039089759781179616 17 0.03090658724528738 9 0.030811918352063143 0 0.030361233619464436 16 0.02472087898074803 4 0.01416266147599751 5 0.013858853017547256 6 0.011514790055122829 7 0.007707429397274428 3 0.007600128270109028 8 0.0075871808115449205 1 0.007556189680766955 2 0.007479583450296863 __DUMMY__ 0.004509274807489669 false 1.0 260 12 0.140224 13 0.127715 21 0.104031 23 0.075141 11 0.06707 14 0.062806 24 0.061043 20 0.050964 22 0.042596 19 0.04232 18 0.037509 4 0.025362 6 0.024849 5 0.024737 10 0.017334 8 0.015198 7 0.014914 1 0.01457 2 0.014441 3 0.009913 0 0.009396 17 0.008771 16 0.00652 9 0.002576 12 0.140224 13 0.127715 21 0.104031 23 0.075141 11 0.06707 14 0.062806 24 0.061043 20 0.050964 22 0.042596 19 0.04232 18 0.037509 4 0.025362 6 0.024849 5 0.024737 10 0.017334 8 0.015198 7 0.014914 1 0.01457 2 0.014441 3 0.009913 0 0.009396 17 0.008771 16 0.00652 9 0.002576 12 0.10534059516082953 13 0.09343346026915735 21 0.09057246623016098 11 0.06398980458002887 23 0.05993312816153987 14 0.05625833429086963 24 0.05249281579920452 22 0.052208715286729365 19 0.050246204309888506 18 0.04884080796355175 20 0.04853709687438081 10 0.03240480104360715 4 0.02435903410988867 5 0.023817608667183604 17 0.02310276399351482 6 0.022898992007947164 0 0.022053993775853813 9 0.018876279827566473 16 0.017724361681385355 8 0.01634695932478527 7 0.01623114953510785 1 0.01597056641441831 2 0.0157441811600319 3 0.013493543020307686 15 0.010653813913395118 __DUMMY__ 0.0044685225986658104 false 1.0 261 12 0.104412 13 0.088228 21 0.075915 11 0.064912 23 0.051032 19 0.04665 22 0.045385 18 0.0446 20 0.041473 0 0.040889 24 0.038585 14 0.038368 17 0.036726 10 0.036421 16 0.034615 6 0.028608 4 0.027194 5 0.027079 9 0.023108 2 0.02215 8 0.022024 7 0.021999 1 0.021957 3 0.01767 12 0.104412 13 0.088228 21 0.075915 11 0.064912 23 0.051032 19 0.04665 22 0.045385 18 0.0446 20 0.041473 0 0.040889 24 0.038585 14 0.038368 17 0.036726 10 0.036421 16 0.034615 6 0.028608 4 0.027194 5 0.027079 9 0.023108 2 0.02215 8 0.022024 7 0.021999 1 0.021957 3 0.01767 12 0.09062377615652789 13 0.0785736267553882 21 0.0767244469284418 11 0.06367890539045173 18 0.052934694368823275 22 0.05238076603069405 19 0.05117715610417071 23 0.04722015226624451 14 0.04637941598980845 10 0.043557874017233295 20 0.04322951903664034 24 0.03940369001595331 0 0.03826429202059773 17 0.03646305600912683 16 0.030723928766496544 9 0.02855463232965209 4 0.0246134282904271 6 0.024382965312420464 5 0.02433576674110352 8 0.01902117834015313 7 0.018999117268130212 1 0.018911111075911872 2 0.01886013678496675 3 0.01623525171438636 15 0.011058342203479319 __DUMMY__ 0.0036927700827705367 false 1.0 262 12 0.139438 13 0.127186 21 0.103535 23 0.074405 11 0.066698 14 0.062511 24 0.058651 20 0.050917 22 0.043039 19 0.042819 18 0.038373 4 0.025159 5 0.024701 6 0.024462 10 0.017423 8 0.015265 1 0.015048 7 0.015007 2 0.014596 3 0.010105 0 0.009952 17 0.009834 16 0.00739 9 0.003487 12 0.139438 13 0.127186 21 0.103535 23 0.074405 11 0.066698 14 0.062511 24 0.058651 20 0.050917 22 0.043039 19 0.042819 18 0.038373 4 0.025159 5 0.024701 6 0.024462 10 0.017423 8 0.015265 1 0.015048 7 0.015007 2 0.014596 3 0.010105 0 0.009952 17 0.009834 16 0.00739 9 0.003487 12 0.10497812754401456 13 0.09318992146058458 21 0.09034256913796712 11 0.06381777111809861 23 0.059592384087534804 14 0.056121320081072595 22 0.052413008983682834 24 0.05138477996633928 19 0.05047663991458727 18 0.04924025523314056 20 0.04851500424129133 10 0.03244581167375919 4 0.024265144934237495 5 0.023801056800390234 17 0.023595001363671222 6 0.02272011177152236 0 0.02231191252716022 9 0.01929762598944867 16 0.018127471232271503 8 0.01637813405215064 7 0.016274356964427687 1 0.01619203306904957 2 0.01581612865676419 3 0.013582396073000496 15 0.010652959935579498 __DUMMY__ 0.004468073188253499 false 1.0 263 12 0.14445 13 0.132629 21 0.086043 23 0.061873 11 0.061299 20 0.056926 14 0.054185 19 0.053228 18 0.05319 16 0.038788 24 0.037468 10 0.034697 17 0.033675 22 0.032317 0 0.031954 6 0.018498 5 0.014974 4 0.01491 8 0.008464 1 0.008324 7 0.008297 2 0.008222 9 0.004048 15 0.001541 12 0.14445 13 0.132629 21 0.086043 23 0.061873 11 0.061299 20 0.056926 14 0.054185 19 0.053228 18 0.05319 16 0.038788 24 0.037468 10 0.034697 17 0.033675 22 0.032317 0 0.031954 6 0.018498 5 0.014974 4 0.01491 8 0.008464 1 0.008324 7 0.008297 2 0.008222 9 0.004048 15 0.001541 12 0.10810899308811775 13 0.09867596341405799 21 0.08034617902667479 11 0.060940290455434816 18 0.05690878298255286 19 0.05410933662831864 14 0.05407809820298966 23 0.05229888340382512 20 0.05070985008563203 22 0.045712059188148135 10 0.04257279023108052 24 0.03893594865608158 17 0.03521005742993571 0 0.03383219988420961 16 0.03305881930155353 6 0.01991708442664483 9 0.019677924380354372 4 0.019106243394141575 5 0.01891061806603659 15 0.013270248080507661 8 0.013042616635606463 7 0.012946168361791705 1 0.01289199074243334 2 0.012705529335932894 3 0.008356287271027812 __DUMMY__ 0.003677037326910063 false 1.0 264 13 0.127685 12 0.106898 14 0.096374 21 0.075638 18 0.067622 10 0.066076 11 0.060258 20 0.053579 15 0.049959 19 0.04859 23 0.040665 22 0.038003 0 0.028905 24 0.026937 17 0.024156 16 0.02231 9 0.019014 6 0.010834 4 0.010221 5 0.009937 8 0.00416 7 0.004154 1 0.004135 2 0.003891 13 0.127685 12 0.106898 14 0.096374 21 0.075638 18 0.067622 10 0.066076 11 0.060258 20 0.053579 15 0.049959 19 0.04859 23 0.040665 22 0.038003 0 0.028905 24 0.026937 17 0.024156 16 0.02231 9 0.019014 6 0.010834 4 0.010221 5 0.009937 8 0.00416 7 0.004154 1 0.004135 2 0.003891 13 0.09657341387711489 12 0.08880492466771295 14 0.07691138548123251 21 0.07472441809601682 18 0.06488123280333867 11 0.059551193799003775 10 0.05863255292163669 19 0.05209146159981273 20 0.0501855653902288 22 0.04809459055020595 23 0.041939846160663194 15 0.039844341830695906 24 0.034079572738516466 0 0.03118270486961001 17 0.029978893903326042 9 0.026719238613398862 16 0.024649742826909758 4 0.016368497582695457 5 0.016017915337713705 6 0.01559947905758401 8 0.010470194379152819 7 0.0104447169606341 1 0.010367032874267268 2 0.010116065038207148 3 0.00803233310667969 __DUMMY__ 0.003738685533641854 false 1.0 265 13 0.127776 12 0.107116 14 0.096765 21 0.075743 18 0.067484 10 0.066541 11 0.060318 20 0.054032 15 0.050092 19 0.048613 23 0.04056 22 0.037914 0 0.028402 24 0.026932 17 0.024102 16 0.0221 9 0.018774 6 0.010708 4 0.010121 5 0.009809 8 0.004152 7 0.004021 1 0.004015 2 0.00391 13 0.127776 12 0.107116 14 0.096765 21 0.075743 18 0.067484 10 0.066541 11 0.060318 20 0.054032 15 0.050092 19 0.048613 23 0.04056 22 0.037914 0 0.028402 24 0.026932 17 0.024102 16 0.0221 9 0.018774 6 0.010708 4 0.010121 5 0.009809 8 0.004152 7 0.004021 1 0.004015 2 0.00391 13 0.0966154791852721 12 0.08890563068157267 14 0.07709197153594452 21 0.07477293804025335 18 0.06481753904341774 11 0.059578927262887986 10 0.058847301226170864 19 0.052102106273862046 20 0.0503947686011981 22 0.048053515576999016 23 0.04189138008802735 15 0.03990577511890532 24 0.034077279644877174 0 0.030950450927446273 17 0.029953972377916253 9 0.02660842709078693 16 0.02455278333125613 4 0.016322328532508285 5 0.01595881667523035 6 0.01554130373405306 8 0.010466505085245157 7 0.010383306894206532 1 0.010311625731086375 2 0.01012484326509771 3 0.008032336815738709 __DUMMY__ 0.0037386872600400395 false 1.0 266 12 0.136505 13 0.12954 21 0.082567 14 0.060729 11 0.059581 23 0.05793 20 0.057542 18 0.055745 19 0.053724 10 0.03964 16 0.039192 24 0.03608 17 0.033687 22 0.032548 0 0.031914 6 0.017135 5 0.013953 4 0.013818 15 0.011362 8 0.007818 7 0.007624 1 0.007555 2 0.007517 9 0.006294 12 0.136505 13 0.12954 21 0.082567 14 0.060729 11 0.059581 23 0.05793 20 0.057542 18 0.055745 19 0.053724 10 0.03964 16 0.039192 24 0.03608 17 0.033687 22 0.032548 0 0.031914 6 0.017135 5 0.013953 4 0.013818 15 0.011362 8 0.007818 7 0.007624 1 0.007555 2 0.007517 9 0.006294 12 0.10427816988757636 13 0.09720885441169987 21 0.07857758661218547 11 0.05998260121063411 18 0.05813065727842327 14 0.057211697585508044 19 0.054333381671182526 20 0.05107253418325399 23 0.05048707202922759 22 0.0457199277060125 10 0.044868765835169994 24 0.03829498050984123 17 0.0352231212107431 0 0.03374921042531263 16 0.03328638539368434 9 0.020700484697106673 6 0.019297284092761713 4 0.018609635872269055 5 0.01844611440851008 15 0.018082951362775143 8 0.012766998209562744 7 0.012656736534624121 1 0.012558466960181053 2 0.012401343432733669 3 0.008381349933589272 __DUMMY__ 0.0036736885454315563 false 1.0 267 12 0.106538 21 0.09736 13 0.089123 11 0.081115 19 0.066814 18 0.066252 22 0.065851 10 0.054822 14 0.054769 20 0.050086 0 0.041982 23 0.041285 24 0.040312 17 0.03966 16 0.033718 9 0.026991 4 0.010215 5 0.009648 6 0.00892 15 0.004544 7 0.002775 8 0.002639 1 0.002471 2 0.002111 12 0.106538 21 0.09736 13 0.089123 11 0.081115 19 0.066814 18 0.066252 22 0.065851 10 0.054822 14 0.054769 20 0.050086 0 0.041982 23 0.041285 24 0.040312 17 0.03966 16 0.033718 9 0.026991 4 0.010215 5 0.009648 6 0.00892 15 0.004544 7 0.002775 8 0.002639 1 0.002471 2 0.002111 12 0.09321201712307768 21 0.08852280496067604 13 0.07889889262935272 11 0.07222318357344418 18 0.06319462982924924 22 0.06264309895661767 19 0.062302952923758634 14 0.05308928428280556 10 0.05137993174297353 20 0.04858495836458253 23 0.04334586300567609 24 0.04158169987890946 0 0.0384023491850517 17 0.037954987385395204 16 0.031201257448065574 9 0.029462200357650563 4 0.015904964745497987 5 0.01541564588155349 6 0.014297500016091357 15 0.011495978873288386 7 0.00909847265544674 8 0.009026361088920035 1 0.008876533389996206 2 0.008567930990818415 3 0.007130090081307309 __DUMMY__ 0.004186410629794097 false 1.0 268 13 0.125811 12 0.106454 14 0.096089 21 0.0757 18 0.068572 10 0.066499 11 0.060208 20 0.054408 15 0.049512 19 0.048858 23 0.041552 22 0.038219 0 0.028258 24 0.027471 17 0.024314 16 0.022224 9 0.018937 6 0.010757 4 0.010197 5 0.009568 7 0.004323 1 0.004183 8 0.004024 2 0.003862 13 0.125811 12 0.106454 14 0.096089 21 0.0757 18 0.068572 10 0.066499 11 0.060208 20 0.054408 15 0.049512 19 0.048858 23 0.041552 22 0.038219 0 0.028258 24 0.027471 17 0.024314 16 0.022224 9 0.018937 6 0.010757 4 0.010197 5 0.009568 7 0.004323 1 0.004183 8 0.004024 2 0.003862 13 0.09570676919906253 12 0.0885855636740266 14 0.07678791464996297 21 0.07473529748545381 18 0.06531718138139084 11 0.05951062769960302 10 0.058825922062836704 19 0.0522052448463354 20 0.05056813401800362 22 0.04818199818317419 23 0.04235211634337619 15 0.03965896237895196 24 0.034323627780254544 0 0.030877139993870973 17 0.03004802996970375 9 0.026683819669996233 16 0.024606677552831517 4 0.01636400652548211 5 0.015854327433335594 6 0.015571115419729449 7 0.010530639263197458 8 0.010415463077394178 1 0.010397220573130113 2 0.0101108080340028 3 0.008040275466126418 __DUMMY__ 0.0037411173187670817 false 1.0 269 21 0.082259 23 0.078622 12 0.077777 19 0.076773 20 0.073848 24 0.07341 18 0.056913 22 0.051826 13 0.042465 16 0.040459 17 0.03525 11 0.034473 4 0.028614 5 0.028547 6 0.025443 3 0.023406 1 0.023397 7 0.023309 9 0.023067 8 0.023012 2 0.02245 10 0.01965 14 0.018839 0 0.016193 21 0.082259 23 0.078622 12 0.077777 19 0.076773 20 0.073848 24 0.07341 18 0.056913 22 0.051826 13 0.042465 16 0.040459 17 0.03525 11 0.034473 4 0.028614 5 0.028547 6 0.025443 3 0.023406 1 0.023397 7 0.023309 9 0.023067 8 0.023012 2 0.02245 10 0.01965 14 0.018839 0 0.016193 21 0.07472350725320319 19 0.06825199465504443 12 0.06790955913647466 23 0.06582176197900377 20 0.06175797868911998 24 0.06166924047452814 18 0.05628198862238975 22 0.05449672596779677 11 0.04218165354690148 13 0.042174011135992576 16 0.03771696923691826 17 0.037408555924323766 4 0.029310744485370993 5 0.029019977005171633 10 0.028947263464155795 9 0.028779401512164484 14 0.0277681736103709 6 0.026519638003945106 3 0.024319469666142176 7 0.024300779660702748 1 0.02420135342856661 8 0.02410646185395039 0 0.023985828090001538 2 0.023573643390887324 15 0.01057046408628477 __DUMMY__ 0.004202855120588871 false 1.0 270 13 0.117572 14 0.104264 12 0.090261 10 0.083604 11 0.074156 18 0.073742 21 0.072939 15 0.058059 22 0.048158 19 0.045027 20 0.040839 0 0.038602 9 0.029882 17 0.026735 23 0.026619 16 0.016632 24 0.016021 4 0.008744 6 0.0085 5 0.008465 7 0.002891 1 0.002806 8 0.002797 2 0.002685 13 0.117572 14 0.104264 12 0.090261 10 0.083604 11 0.074156 18 0.073742 21 0.072939 15 0.058059 22 0.048158 19 0.045027 20 0.040839 0 0.038602 9 0.029882 17 0.026735 23 0.026619 16 0.016632 24 0.016021 4 0.008744 6 0.0085 5 0.008465 7 0.002891 1 0.002806 8 0.002797 2 0.002685 13 0.08953438497078044 14 0.08171252245506276 12 0.07729495533052369 21 0.07193128675256186 18 0.06893617961368935 10 0.0688021972117998 11 0.06575964119264786 22 0.053561058118537286 19 0.05021839517793802 15 0.04623962773070939 20 0.04345929187570059 0 0.03636363967901092 23 0.03389773990776743 9 0.03339978130170789 17 0.03169200693641351 24 0.02784939426905185 16 0.021687190081665052 4 0.015756653729648556 5 0.015404940248595253 6 0.014459489683833667 7 0.010060653767773434 8 0.010040534810084547 1 0.009946965311816998 2 0.00973670643927454 3 0.008445159062277741 __DUMMY__ 0.0038096043411274746 false 1.0 271 21 0.09845 12 0.096381 11 0.085832 13 0.075412 22 0.073694 19 0.065533 18 0.064966 10 0.055812 14 0.048694 0 0.045869 20 0.043913 24 0.040823 17 0.040815 23 0.037439 9 0.033311 16 0.030966 4 0.012908 5 0.0125 6 0.010579 2 0.005467 1 0.005426 7 0.005418 8 0.005196 3 0.004596 21 0.09845 12 0.096381 11 0.085832 13 0.075412 22 0.073694 19 0.065533 18 0.064966 10 0.055812 14 0.048694 0 0.045869 20 0.043913 24 0.040823 17 0.040815 23 0.037439 9 0.033311 16 0.030966 4 0.012908 5 0.0125 6 0.010579 2 0.005467 1 0.005426 7 0.005418 8 0.005196 3 0.004596 21 0.08915228881051439 12 0.08534627708689217 11 0.07553707051504374 22 0.06850787451118902 13 0.06844345304518659 18 0.06373200479196714 19 0.06296494038353 10 0.05311035112224807 14 0.048933904476459004 20 0.0452242724270113 24 0.041726777824659236 0 0.041411957066792085 23 0.04035044949280582 17 0.039669705890229355 9 0.03407259639527442 16 0.03042356943383498 4 0.017013359759883946 5 0.016593908529519405 6 0.014674429733578423 7 0.010207531622986541 1 0.010111822604039077 8 0.010076693810348798 2 0.009971861667805844 3 0.009453595750481303 15 0.008943048134936358 __DUMMY__ 0.004346255112783102 false 1.0 272 12 0.138185 13 0.122362 21 0.101637 23 0.06715 11 0.065357 20 0.063495 14 0.061992 24 0.056401 19 0.055786 18 0.053769 22 0.043748 10 0.033576 5 0.018053 4 0.017194 6 0.015906 17 0.01512 16 0.014398 0 0.013308 2 0.008971 1 0.00803 7 0.007254 8 0.007242 9 0.005647 3 0.005421 12 0.138185 13 0.122362 21 0.101637 23 0.06715 11 0.065357 20 0.063495 14 0.061992 24 0.056401 19 0.055786 18 0.053769 22 0.043748 10 0.033576 5 0.018053 4 0.017194 6 0.015906 17 0.01512 16 0.014398 0 0.013308 2 0.008971 1 0.00803 7 0.007254 8 0.007242 9 0.005647 3 0.005421 12 0.10529485262036077 13 0.0923465360394069 21 0.08944147514807757 11 0.06353119938683216 18 0.05710371798916821 14 0.056745835623857745 19 0.056690196268734866 23 0.05557069759838176 20 0.054731232225406906 22 0.05238057508078544 24 0.0496427418032626 10 0.041063653522273945 17 0.026158731403852428 0 0.024243133267484715 16 0.021595849992365464 9 0.020156124998288512 5 0.020102750680906608 4 0.019939714756288085 6 0.0181869724984377 2 0.012602683399524446 1 0.012317630492194184 7 0.012044550046659538 8 0.012032206942081184 15 0.011045427767198138 3 0.010722512356398387 __DUMMY__ 0.0043089980917716516 false 1.0 273 13 0.112275 14 0.095569 12 0.090189 10 0.083066 11 0.07879 18 0.072954 21 0.072701 22 0.051446 15 0.051439 19 0.046186 0 0.045158 20 0.036295 17 0.033031 9 0.031399 23 0.024042 16 0.021634 24 0.013803 5 0.009091 6 0.009079 4 0.00878 1 0.003368 8 0.003317 2 0.003282 7 0.003108 13 0.112275 14 0.095569 12 0.090189 10 0.083066 11 0.07879 18 0.072954 21 0.072701 22 0.051446 15 0.051439 19 0.046186 0 0.045158 20 0.036295 17 0.033031 9 0.031399 23 0.024042 16 0.021634 24 0.013803 5 0.009091 6 0.009079 4 0.00878 1 0.003368 8 0.003317 2 0.003282 7 0.003108 13 0.08625045367733178 12 0.07692394490308027 14 0.07657085453958541 21 0.07183562316870364 10 0.06882107879118807 18 0.06856946276044844 11 0.06853141760131219 22 0.055663479576224154 19 0.050685243389083624 15 0.04193974571491374 20 0.04047586395012271 0 0.040394954685115884 17 0.03520731010463776 9 0.03473145209416884 23 0.032270604961565266 24 0.026244239044921448 16 0.024155620083866847 4 0.01596380111993417 5 0.015882017307730017 6 0.014958785051233905 8 0.010500824434220832 1 0.01042855242024824 7 0.010382978554109001 2 0.010228506614220518 3 0.008621301804722111 __DUMMY__ 0.003761883647311246 false 1.0 274 12 0.131928 13 0.111574 21 0.10519 11 0.069263 20 0.068063 19 0.065722 23 0.062991 14 0.059821 18 0.059717 24 0.059579 22 0.050595 10 0.037306 16 0.021514 17 0.020517 0 0.016888 4 0.012758 5 0.012312 6 0.010771 9 0.008969 2 0.003516 7 0.003412 8 0.003354 1 0.00311 3 0.001128 12 0.131928 13 0.111574 21 0.10519 11 0.069263 20 0.068063 19 0.065722 23 0.062991 14 0.059821 18 0.059717 24 0.059579 22 0.050595 10 0.037306 16 0.021514 17 0.020517 0 0.016888 4 0.012758 5 0.012312 6 0.010771 9 0.008969 2 0.003516 7 0.003412 8 0.003354 1 0.00311 3 0.001128 12 0.10220542183420085 21 0.09130436951462978 13 0.08648395824515107 11 0.06521714763853237 19 0.06251428416110344 18 0.06030718491559947 20 0.05802254376076468 22 0.05571312508007356 14 0.05527847852167328 23 0.05387430123888539 24 0.051890282094110285 10 0.04262525339217634 17 0.028967428711741662 16 0.025776303219584983 0 0.025634465709554646 9 0.021368152333761846 4 0.017469313396890243 5 0.01702876445151368 6 0.015307363282152741 15 0.01102118713580994 7 0.009847921874106193 8 0.00981108556331061 2 0.009658370468077923 1 0.009618790860262618 3 0.008429008413517155 __DUMMY__ 0.004625494182815354 false 1.0 275 12 0.066692 13 0.065576 21 0.063189 11 0.050119 23 0.048915 22 0.048013 14 0.047444 4 0.045345 5 0.044897 6 0.043747 9 0.042427 24 0.041375 10 0.041193 8 0.040058 1 0.039774 7 0.039761 2 0.039659 18 0.039351 3 0.038996 0 0.030303 20 0.026071 19 0.023364 17 0.019035 15 0.014696 12 0.066692 13 0.065576 21 0.063189 11 0.050119 23 0.048915 22 0.048013 14 0.047444 4 0.045345 5 0.044897 6 0.043747 9 0.042427 24 0.041375 10 0.041193 8 0.040058 1 0.039774 7 0.039761 2 0.039659 18 0.039351 3 0.038996 0 0.030303 20 0.026071 19 0.023364 17 0.019035 15 0.014696 21 0.06743713985037932 12 0.06740314693816549 13 0.06292898849643276 11 0.05455910331348094 22 0.05347192794003534 18 0.049435095744585704 14 0.048276772142010434 23 0.04583401609061992 10 0.04565125484695169 9 0.04020418218845398 24 0.039695162938411695 19 0.03793323955861857 4 0.035792685877079476 5 0.03536432738349869 6 0.03412911086779632 0 0.034036448901893765 20 0.033603956445808464 8 0.030490108276095787 7 0.030355730132144886 1 0.03030123570876738 2 0.03007313533586711 3 0.029417964920532183 17 0.028462171259091326 15 0.0182348653270917 16 0.013325256204974763 __DUMMY__ 0.003582973311212046 false 1.0 276 12 0.120852 13 0.115975 21 0.086622 11 0.070322 14 0.065364 18 0.060625 19 0.054422 10 0.051288 20 0.04884 22 0.047086 23 0.046153 0 0.037978 17 0.035532 16 0.03363 24 0.032629 9 0.017925 15 0.014555 6 0.013723 4 0.012292 5 0.011688 7 0.005827 1 0.005685 8 0.005564 2 0.005421 12 0.120852 13 0.115975 21 0.086622 11 0.070322 14 0.065364 18 0.060625 19 0.054422 10 0.051288 20 0.04884 22 0.047086 23 0.046153 0 0.037978 17 0.035532 16 0.03363 24 0.032629 9 0.017925 15 0.014555 6 0.013723 4 0.012292 5 0.011688 7 0.005827 1 0.005685 8 0.005564 2 0.005421 12 0.09754605932623853 13 0.09132016653565142 21 0.08103166651521473 11 0.06560125988819357 18 0.06046366266575578 14 0.05940709222609092 19 0.05462402522955948 22 0.05282250275718883 10 0.05053709198058614 20 0.04673733382491254 23 0.044902125027340846 0 0.0367383151366538 24 0.03652335270032471 17 0.035928199538912936 16 0.03033019797742329 9 0.02617374159007533 15 0.018919366035208558 4 0.01777214862488766 6 0.017565896084292848 5 0.017268272936854286 7 0.011624866519030337 8 0.011520367596499178 1 0.011492609205223778 2 0.011230361265847751 3 0.008175242303389115 __DUMMY__ 0.0037440765086433703 false 1.0 277 13 0.127286 12 0.107504 14 0.096766 21 0.075639 18 0.067395 10 0.066254 11 0.060459 20 0.053617 15 0.049998 19 0.048593 23 0.040532 22 0.0378 0 0.027975 24 0.027444 17 0.024362 16 0.021952 9 0.018938 6 0.010866 4 0.01028 5 0.010149 8 0.004141 1 0.004124 7 0.004017 2 0.003909 13 0.127286 12 0.107504 14 0.096766 21 0.075639 18 0.067395 10 0.066254 11 0.060459 20 0.053617 15 0.049998 19 0.048593 23 0.040532 22 0.0378 0 0.027975 24 0.027444 17 0.024362 16 0.021952 9 0.018938 6 0.010866 4 0.01028 5 0.010149 8 0.004141 1 0.004124 7 0.004017 2 0.003909 13 0.09634718002069644 12 0.08901877980369016 14 0.07709910020447397 21 0.07467539394176652 18 0.06477340066601632 11 0.05959192283636803 10 0.05870483686570426 19 0.05208033543333411 20 0.050206360802957366 22 0.04798169269684218 23 0.041882719414568274 15 0.03992108272506974 24 0.03431397582053646 0 0.030738915098947505 17 0.030077356415355985 9 0.026694138139692944 16 0.0244893913081269 4 0.016413392084787048 5 0.016133278380954044 6 0.015631830717774714 8 0.010483780123481126 7 0.010403399071863086 1 0.010383791712143244 2 0.010145691136795332 3 0.008055778367584998 __DUMMY__ 0.003752476210469226 false 1.0 278 18 0.067188 22 0.066778 0 0.063063 21 0.062258 12 0.059405 11 0.058366 17 0.058311 10 0.057807 9 0.056907 13 0.048352 19 0.045267 6 0.034207 4 0.033242 5 0.032397 23 0.031946 8 0.029154 7 0.028718 1 0.028692 2 0.028463 16 0.027286 14 0.026364 3 0.024409 20 0.017486 24 0.013932 18 0.067188 22 0.066778 0 0.063063 21 0.062258 12 0.059405 11 0.058366 17 0.058311 10 0.057807 9 0.056907 13 0.048352 19 0.045267 6 0.034207 4 0.033242 5 0.032397 23 0.031946 8 0.029154 7 0.028718 1 0.028692 2 0.028463 16 0.027286 14 0.026364 3 0.024409 20 0.017486 24 0.013932 21 0.06239116286278082 22 0.06109208499481592 18 0.060145917170798854 12 0.05926629596252334 11 0.055388860771435004 0 0.0516011427087715 10 0.05093898523332726 13 0.049640090324202815 17 0.049527196524400095 9 0.04888503000291717 19 0.046068824402397526 23 0.037719155384200405 14 0.03354088519987736 4 0.03310283709832032 6 0.03309711529507221 5 0.03247324881647005 8 0.029064838940370943 7 0.028836624508899445 1 0.02877049951790246 2 0.028454762744944163 16 0.0282045347580506 20 0.026905720903636122 3 0.025931400111525265 24 0.025744793240256615 15 0.010798595178558171 __DUMMY__ 0.0024093973435455216 false 1.0 279 12 0.130465 13 0.111798 21 0.104732 11 0.069382 20 0.068007 19 0.065905 23 0.062943 18 0.059913 14 0.059863 24 0.059468 22 0.050216 10 0.03849 16 0.021519 17 0.020609 0 0.017833 4 0.013017 5 0.011986 6 0.011087 9 0.009383 7 0.00348 8 0.003381 1 0.003203 2 0.002351 15 9.7E-4 12 0.130465 13 0.111798 21 0.104732 11 0.069382 20 0.068007 19 0.065905 23 0.062943 18 0.059913 14 0.059863 24 0.059468 22 0.050216 10 0.03849 16 0.021519 17 0.020609 0 0.017833 4 0.013017 5 0.011986 6 0.011087 9 0.009383 7 0.00348 8 0.003381 1 0.003203 2 0.002351 15 9.7E-4 12 0.10158205020303006 21 0.0911121895373483 13 0.08666510359815789 11 0.06528161899271685 19 0.06260159525352493 18 0.060398226261002226 20 0.05802569501357299 22 0.05551537744098606 14 0.055357415562366404 23 0.0538603368549929 24 0.0518502889844697 10 0.04318148608795575 17 0.02897958179213616 0 0.026043979540701444 16 0.025771182181689622 9 0.02152529529260168 4 0.017567420696047036 5 0.01685600068358414 6 0.015431719972844201 15 0.011503168355933407 7 0.009854818705528585 8 0.009798627307847268 1 0.009637327181621599 2 0.009093662509414749 3 0.00788077080937231 __DUMMY__ 0.004625061180553743 false 1.0 280 12 0.134675 13 0.12902 21 0.088477 14 0.068669 23 0.061014 20 0.060325 11 0.059608 18 0.059273 19 0.054511 24 0.04285 10 0.042467 22 0.037159 16 0.026204 17 0.024786 0 0.022773 6 0.015241 4 0.014142 15 0.013882 5 0.013691 9 0.00757 8 0.006195 7 0.005923 1 0.005821 2 0.005725 12 0.134675 13 0.12902 21 0.088477 14 0.068669 23 0.061014 20 0.060325 11 0.059608 18 0.059273 19 0.054511 24 0.04285 10 0.042467 22 0.037159 16 0.026204 17 0.024786 0 0.022773 6 0.015241 4 0.014142 15 0.013882 5 0.013691 9 0.00757 8 0.006195 7 0.005923 1 0.005821 2 0.005725 12 0.10239257358290427 13 0.09532453067720684 21 0.079484206006299 14 0.0584574657347027 18 0.05837678333488597 11 0.05812088786078559 19 0.05364952153964555 23 0.0531039112336786 20 0.052051058422529724 22 0.04650070878026508 10 0.04446996420779039 24 0.04169054921728557 17 0.0312274430477434 0 0.02936441269476166 16 0.027587940885646887 9 0.021337707942746094 4 0.020371960435714032 6 0.020190703967335306 5 0.019944410924928924 15 0.018291068798482947 8 0.013855458629469852 7 0.013717888177211673 1 0.013610824260216656 2 0.013417730895289023 3 0.01012018002800906 __DUMMY__ 0.00334010871446509 false 1.0 281 12 0.106791 21 0.103498 13 0.079413 19 0.076211 20 0.068391 11 0.067781 18 0.067056 22 0.063669 24 0.060861 23 0.05979 14 0.048714 10 0.042485 17 0.027482 16 0.024899 0 0.021093 9 0.020835 4 0.014294 5 0.013879 6 0.010191 3 0.004888 7 0.00466 1 0.004508 2 0.00434 8 0.004272 12 0.106791 21 0.103498 13 0.079413 19 0.076211 20 0.068391 11 0.067781 18 0.067056 22 0.063669 24 0.060861 23 0.05979 14 0.048714 10 0.042485 17 0.027482 16 0.024899 0 0.021093 9 0.020835 4 0.014294 5 0.013879 6 0.010191 3 0.004888 7 0.00466 1 0.004508 2 0.00434 8 0.004272 12 0.08694033748554636 21 0.08530165578065325 13 0.0677609772234716 19 0.06348468618149304 18 0.0604386648354686 11 0.06007846439750903 22 0.05881676775631862 20 0.05566659869885774 23 0.05394295386540562 24 0.05162811059112958 14 0.04510754177700072 10 0.04195061631377635 17 0.03276705742377352 9 0.028246623149118643 0 0.028229411343971236 16 0.027235194421384737 4 0.02249213760739295 5 0.022076946125012934 6 0.019805263819796987 7 0.015353089386744576 1 0.015218174485780752 8 0.015172364246616228 2 0.01497220918035272 3 0.014773710617557527 15 0.009542661960472775 __DUMMY__ 0.0029977813253939186 false 1.0 282 12 0.094607 21 0.093945 19 0.077907 11 0.070973 22 0.065223 20 0.063671 13 0.062511 18 0.061541 24 0.058991 23 0.050696 16 0.04428 17 0.042679 10 0.039155 14 0.035967 0 0.034576 9 0.02405 4 0.014978 5 0.0144 6 0.011983 7 0.007715 1 0.007601 8 0.007568 3 0.007525 2 0.007461 12 0.094607 21 0.093945 19 0.077907 11 0.070973 22 0.065223 20 0.063671 13 0.062511 18 0.061541 24 0.058991 23 0.050696 16 0.04428 17 0.042679 10 0.039155 14 0.035967 0 0.034576 9 0.02405 4 0.014978 5 0.0144 6 0.011983 7 0.007715 1 0.007601 8 0.007568 3 0.007525 2 0.007461 21 0.0871334159838798 12 0.08319588127974085 19 0.07070040293244173 11 0.06714823906049708 22 0.06478276363514164 18 0.06154348256782953 13 0.058940632281116366 20 0.056620858659627744 24 0.05306592396281285 23 0.048044969202541 10 0.04273438130414665 17 0.041088379837381346 14 0.04063403025899657 16 0.03850067867120862 0 0.03484093525471234 9 0.029070473694779792 4 0.0182675330018791 5 0.01775887078195347 6 0.015416336349025195 7 0.011618830113213977 8 0.011520199062456486 1 0.011449812792334283 3 0.011427145896667011 2 0.011221085933017164 15 0.008502895325472725 __DUMMY__ 0.004771842157126865 false 1.0 283 13 0.111758 12 0.102981 14 0.086053 21 0.081242 18 0.070019 10 0.063702 11 0.063249 20 0.057745 19 0.05754 22 0.045216 23 0.042205 15 0.041531 24 0.033449 0 0.029063 17 0.028296 16 0.027064 9 0.020563 4 0.009072 5 0.009057 6 0.008844 7 0.003159 1 0.002873 8 0.002681 2 0.002639 13 0.111758 12 0.102981 14 0.086053 21 0.081242 18 0.070019 10 0.063702 11 0.063249 20 0.057745 19 0.05754 22 0.045216 23 0.042205 15 0.041531 24 0.033449 0 0.029063 17 0.028296 16 0.027064 9 0.020563 4 0.009072 5 0.009057 6 0.008844 7 0.003159 1 0.002873 8 0.002681 2 0.002639 13 0.08973925707804507 12 0.08876007767169593 21 0.07879329049942144 14 0.07121700404501959 18 0.06568497354731583 11 0.06181755326409862 19 0.05691871381681012 10 0.056817380102858035 20 0.05248427916356201 22 0.05188659915435958 23 0.04315546920958995 24 0.037814522047049985 15 0.03387283389563043 17 0.03178104469785564 0 0.03117680637272045 16 0.02703299369935154 9 0.02688130400200681 4 0.015536082331220558 5 0.015307095878192793 6 0.014347592238887886 7 0.009559245654963393 1 0.009354577583910468 8 0.009352610835335028 2 0.00910910517383833 3 0.007586044652459136 __DUMMY__ 0.00401354338380145 false 1.0 284 13 0.117137 12 0.10043 14 0.08741 21 0.074311 11 0.072084 10 0.07154 18 0.068415 19 0.049107 22 0.045138 20 0.04344 15 0.043296 0 0.041062 17 0.033156 23 0.032549 16 0.027405 9 0.024776 24 0.020186 6 0.01103 4 0.010059 5 0.009859 8 0.004554 1 0.004462 7 0.004349 2 0.004246 13 0.117137 12 0.10043 14 0.08741 21 0.074311 11 0.072084 10 0.07154 18 0.068415 19 0.049107 22 0.045138 20 0.04344 15 0.043296 0 0.041062 17 0.033156 23 0.032549 16 0.027405 9 0.024776 24 0.020186 6 0.01103 4 0.010059 5 0.009859 8 0.004554 1 0.004462 7 0.004349 2 0.004246 13 0.09101037355854691 12 0.08494703489218026 21 0.07380167816039408 14 0.07244254722604822 11 0.06552616533804317 18 0.06540329245076595 10 0.06189296131239884 22 0.05193535756475253 19 0.05192137634364067 20 0.04438038517583827 0 0.03776051547127545 23 0.03741481689170465 15 0.03644152383266586 17 0.03457729018988809 9 0.03025041298375377 24 0.030040032634587314 16 0.02679832031089936 4 0.01648573741252327 5 0.016171198477722252 6 0.015907258083187506 8 0.010889830150195344 7 0.01076990278421263 1 0.010754826753669029 2 0.010508926658187501 3 0.008248253063420342 __DUMMY__ 0.003719982279498554 false 1.0 285 12 0.111935 13 0.101805 21 0.086301 19 0.068717 18 0.06491 20 0.063601 11 0.062375 14 0.062182 10 0.048414 23 0.048277 22 0.046346 24 0.043813 16 0.041777 17 0.037939 0 0.031721 15 0.020433 9 0.01644 6 0.009798 5 0.009699 4 0.009684 1 0.00367 2 0.003478 7 0.0034 8 0.003286 12 0.111935 13 0.101805 21 0.086301 19 0.068717 18 0.06491 20 0.063601 11 0.062375 14 0.062182 10 0.048414 23 0.048277 22 0.046346 24 0.043813 16 0.041777 17 0.037939 0 0.031721 15 0.020433 9 0.01644 6 0.009798 5 0.009699 4 0.009684 1 0.00367 2 0.003478 7 0.0034 8 0.003286 12 0.09409400180592217 13 0.08428248124365764 21 0.08193249912544072 19 0.0630058628109202 18 0.06274569234856904 11 0.06179871324193979 14 0.057606550138143565 20 0.0556497232289862 22 0.05267282879272715 10 0.04831083513112537 23 0.04675418500026176 24 0.043528518949187106 17 0.03692164941389716 16 0.03502462306622156 0 0.03273499421566032 9 0.024472134526702796 15 0.021395644580742088 4 0.01589596991158743 5 0.015676603940839806 6 0.014914737019980539 1 0.009787865703660146 7 0.00974019108599419 8 0.009694217294521522 2 0.009561281533660879 3 0.007580595124806944 __DUMMY__ 0.004217600764843974 false 1.0 286 12 0.141585 13 0.128367 21 0.104478 23 0.074976 11 0.067685 14 0.063178 24 0.060005 20 0.050251 22 0.042818 19 0.042485 18 0.037287 4 0.025054 6 0.024274 5 0.0238 10 0.017605 8 0.014767 7 0.014435 2 0.014244 1 0.014152 3 0.009679 0 0.009377 17 0.009054 16 0.00707 9 0.003372 12 0.141585 13 0.128367 21 0.104478 23 0.074976 11 0.067685 14 0.063178 24 0.060005 20 0.050251 22 0.042818 19 0.042485 18 0.037287 4 0.025054 6 0.024274 5 0.0238 10 0.017605 8 0.014767 7 0.014435 2 0.014244 1 0.014152 3 0.009679 0 0.009377 17 0.009054 16 0.00707 9 0.003372 12 0.1060192931868672 13 0.09389654204936038 21 0.09075571180390542 11 0.06427557708263743 23 0.05983328444930153 14 0.05658645551155459 22 0.052254491075058224 24 0.05196287463536097 19 0.05025849326730407 18 0.048732436467262975 20 0.048192723667963316 10 0.03257320645831287 4 0.024195477549122366 5 0.02336370393554259 17 0.023182682442371278 6 0.022618003278609553 0 0.02201799173306407 9 0.0192107417734977 16 0.01793727608929573 8 0.016127191347677254 7 0.01598858492024586 1 0.01575627273455981 2 0.01563272974700286 3 0.013357579979438854 15 0.010779996181423843 __DUMMY__ 0.004490678633259155 false 1.0 287 12 0.10662 13 0.08375 21 0.082074 11 0.062083 19 0.061806 20 0.056828 23 0.055497 18 0.052014 24 0.048753 22 0.046932 16 0.041383 17 0.039001 14 0.036731 0 0.035088 10 0.034501 6 0.021593 4 0.021303 5 0.0209 9 0.018705 7 0.015727 1 0.015695 8 0.01561 2 0.015393 3 0.012013 12 0.10662 13 0.08375 21 0.082074 11 0.062083 19 0.061806 20 0.056828 23 0.055497 18 0.052014 24 0.048753 22 0.046932 16 0.041383 17 0.039001 14 0.036731 0 0.035088 10 0.034501 6 0.021593 4 0.021303 5 0.0209 9 0.018705 7 0.015727 1 0.015695 8 0.01561 2 0.015393 3 0.012013 12 0.09323631628301315 21 0.08111898478383332 13 0.07664460993040317 11 0.06267632026572456 19 0.06001828648522166 18 0.05652811866546604 22 0.05333421606285405 20 0.05233280225684796 23 0.050276690995751355 24 0.045899191716727995 14 0.04510770686389064 10 0.04165838823795205 17 0.03738031982685792 16 0.03482592559323966 0 0.03461014930519153 9 0.025281872571330646 4 0.02109516555358485 5 0.020687062992997926 6 0.020215806291594845 7 0.015172697365486473 8 0.015114659841169347 1 0.015078612470610705 2 0.01480492097137652 3 0.012798181325353767 15 0.010090697725450704 __DUMMY__ 0.004012295618069084 false 1.0 288 13 0.125483 12 0.11559 14 0.083435 21 0.07643 18 0.063432 11 0.058626 10 0.056384 20 0.055496 19 0.051633 23 0.046845 15 0.038687 22 0.03583 16 0.030837 24 0.030749 0 0.029915 17 0.029297 9 0.0148 6 0.012952 4 0.011475 5 0.011062 8 0.00543 1 0.005244 7 0.005239 2 0.005127 13 0.125483 12 0.11559 14 0.083435 21 0.07643 18 0.063432 11 0.058626 10 0.056384 20 0.055496 19 0.051633 23 0.046845 15 0.038687 22 0.03583 16 0.030837 24 0.030749 0 0.029915 17 0.029297 9 0.0148 6 0.012952 4 0.011475 5 0.011062 8 0.00543 1 0.005244 7 0.005239 2 0.005127 13 0.09523693379593635 12 0.09325567136784307 21 0.07511769986636119 14 0.06951393996433401 18 0.06236698890919773 11 0.05899733060999449 10 0.053495029469756684 19 0.05331202561228393 20 0.05051351593360681 22 0.04712242992054529 23 0.04496698112719049 24 0.03571902302212478 15 0.03317005915490915 17 0.03281992634089702 0 0.03224693670604243 16 0.02899873448176211 9 0.024824192012920715 4 0.017290019847162687 6 0.017023366870388364 5 0.01687740493423419 8 0.011442530567399412 7 0.011329582016997297 1 0.011264099360197826 2 0.011070546146894964 3 0.008298865675477003 __DUMMY__ 0.003726166285542153 false 1.0 289 12 0.106581 13 0.084342 21 0.083009 19 0.062163 11 0.061829 20 0.056844 23 0.056444 18 0.052083 24 0.048325 22 0.046689 16 0.041466 17 0.038661 14 0.036346 0 0.035476 10 0.034275 6 0.021173 4 0.020609 5 0.020561 9 0.018664 1 0.015772 7 0.01568 8 0.015617 2 0.015395 3 0.011997 12 0.106581 13 0.084342 21 0.083009 19 0.062163 11 0.061829 20 0.056844 23 0.056444 18 0.052083 24 0.048325 22 0.046689 16 0.041466 17 0.038661 14 0.036346 0 0.035476 10 0.034275 6 0.021173 4 0.020609 5 0.020561 9 0.018664 1 0.015772 7 0.01568 8 0.015617 2 0.015395 3 0.011997 12 0.09325227474563959 21 0.08153359286405756 13 0.07699033831408578 11 0.06254697283988529 19 0.0601670163605993 18 0.056565816354726545 22 0.05318767384918032 20 0.05234609454563078 23 0.05070969454407568 24 0.045679149466316064 14 0.044982145194579035 10 0.041571578068987466 17 0.037214399089498224 16 0.034863316699196026 0 0.03478278576669907 9 0.025244983989160644 4 0.020765078788483007 5 0.020520284459889293 6 0.020016554132795177 7 0.015141012925395662 8 0.0151081773123445 1 0.015104213544933381 2 0.01479618765027629 3 0.01277541073557687 15 0.010133965449716094 __DUMMY__ 0.004001282308272173 false 1.0 290 21 0.104224 12 0.09771 11 0.085539 22 0.076398 19 0.075637 13 0.072605 18 0.070113 10 0.05589 20 0.052211 14 0.048438 24 0.044963 0 0.04248 17 0.041866 23 0.039655 16 0.035034 9 0.031769 5 0.008638 4 0.008615 6 0.00572 7 8.22E-4 2 5.59E-4 3 4.94E-4 1 3.52E-4 8 2.67E-4 21 0.104224 12 0.09771 11 0.085539 22 0.076398 19 0.075637 13 0.072605 18 0.070113 10 0.05589 20 0.052211 14 0.048438 24 0.044963 0 0.04248 17 0.041866 23 0.039655 16 0.035034 9 0.031769 5 0.008638 4 0.008615 6 0.00572 7 8.22E-4 2 5.59E-4 3 4.94E-4 1 3.52E-4 8 2.67E-4 21 0.09192461019461645 12 0.08497854608696384 11 0.0748758558720427 22 0.07010342142026217 19 0.06886541668700587 18 0.06638792634407023 13 0.06537494261441819 10 0.05262531012238424 20 0.050234239721970844 14 0.048112091188053055 24 0.04479897560249106 23 0.0417476099994072 17 0.04041179986163851 0 0.03931551180088701 9 0.033272448387510624 16 0.033068578270287634 4 0.0149036547700462 5 0.014680321734032414 6 0.012152480628431982 15 0.009051340433476609 7 0.00796643128198361 8 0.0076774522943512105 1 0.007642420269355675 3 0.007631475946981091 2 0.007574450569180711 __DUMMY__ 0.004622687898151001 false 1.0 291 12 0.110399 13 0.100792 21 0.085326 19 0.06879 18 0.065344 20 0.063424 11 0.062185 14 0.062015 23 0.049161 10 0.048709 22 0.046933 24 0.043231 16 0.042187 17 0.037801 0 0.032431 15 0.021237 9 0.016537 6 0.010109 4 0.009811 5 0.009678 7 0.003628 8 0.003536 2 0.003404 1 0.003331 12 0.110399 13 0.100792 21 0.085326 19 0.06879 18 0.065344 20 0.063424 11 0.062185 14 0.062015 23 0.049161 10 0.048709 22 0.046933 24 0.043231 16 0.042187 17 0.037801 0 0.032431 15 0.021237 9 0.016537 6 0.010109 4 0.009811 5 0.009678 7 0.003628 8 0.003536 2 0.003404 1 0.003331 12 0.09341629021820938 13 0.08388714231353028 21 0.08146758085628923 19 0.0630107132694181 18 0.06293984262958607 11 0.06169335864692602 14 0.05758117952746797 20 0.055566477186153464 22 0.052907988009052304 10 0.04845032050612671 23 0.04717000179531294 24 0.04324470536694188 17 0.03683620693717183 16 0.03519629098856339 0 0.03304515827855258 9 0.024497844250053538 15 0.021808406228249144 4 0.015954330154213773 5 0.015666069469750608 6 0.01506178057005256 7 0.009844487959307145 8 0.00980934008395656 1 0.0096305631986177 2 0.009526425225972015 3 0.007574654838556502 __DUMMY__ 0.0042128414919682475 false 1.0 292 12 0.103174 13 0.091873 0 0.078249 17 0.075664 11 0.069965 16 0.066748 18 0.057441 21 0.056618 10 0.05124 19 0.046869 22 0.044089 23 0.036026 9 0.029882 6 0.027339 14 0.027008 4 0.019513 5 0.019315 8 0.017965 1 0.017581 7 0.017448 20 0.017444 2 0.017252 15 0.005791 3 0.005504 12 0.103174 13 0.091873 0 0.078249 17 0.075664 11 0.069965 16 0.066748 18 0.057441 21 0.056618 10 0.05124 19 0.046869 22 0.044089 23 0.036026 9 0.029882 6 0.027339 14 0.027008 4 0.019513 5 0.019315 8 0.017965 1 0.017581 7 0.017448 20 0.017444 2 0.017252 15 0.005791 3 0.005504 12 0.0814287489199191 13 0.0704401021532582 11 0.06168472070767415 17 0.06062681251131523 0 0.0601804470603472 21 0.05932742633377472 18 0.05652771385673564 16 0.05185356359760095 22 0.049686936577385016 19 0.04954605624936693 10 0.04768456564486579 23 0.03957847784174943 9 0.03422187152804198 14 0.03282929610582875 20 0.028786698109563802 6 0.02820886449027423 4 0.024629247925397273 5 0.02430334896916841 8 0.021997457545657982 1 0.021730766424547333 7 0.021727053696592735 2 0.02138757068540795 24 0.019072812940732833 3 0.014882658213072305 15 0.0144881391350119 __DUMMY__ 0.0031686427767100706 false 1.0 293 12 0.107242 21 0.102822 13 0.078991 19 0.075941 11 0.06725 20 0.067212 18 0.067076 22 0.06531 24 0.061416 23 0.059534 14 0.048458 10 0.041244 17 0.028723 16 0.024876 0 0.020786 9 0.020756 5 0.014427 4 0.014207 6 0.009981 8 0.005273 3 0.005118 2 0.004571 1 0.004403 7 0.004384 12 0.107242 21 0.102822 13 0.078991 19 0.075941 11 0.06725 20 0.067212 18 0.067076 22 0.06531 24 0.061416 23 0.059534 14 0.048458 10 0.041244 17 0.028723 16 0.024876 0 0.020786 9 0.020756 5 0.014427 4 0.014207 6 0.009981 8 0.005273 3 0.005118 2 0.004571 1 0.004403 7 0.004384 12 0.08780223110897263 21 0.08525714829709771 13 0.06840558102209633 19 0.06347455440325947 18 0.06061821632942947 11 0.060099200625292205 22 0.059479602919088256 20 0.05526603415273998 23 0.053749122521175564 24 0.05174585817719455 14 0.0454944491211163 10 0.04161254649118892 17 0.03328831522093464 0 0.028093546838446826 9 0.027956933464349538 16 0.027287639807652954 4 0.022127145938650276 5 0.022002894248021244 6 0.019411670768136012 8 0.01527541086700828 7 0.014872815482641613 1 0.014816334950747613 2 0.014726512316533224 3 0.014479900481216742 15 0.009706681082596208 __DUMMY__ 0.0029496533644134486 false 1.0 294 21 0.095089 12 0.094922 11 0.085857 13 0.077782 22 0.072072 18 0.061696 19 0.059365 10 0.055616 14 0.048452 0 0.047972 17 0.040449 20 0.037756 23 0.037199 24 0.035787 9 0.035256 16 0.028385 4 0.015776 5 0.015001 6 0.014136 7 0.00899 1 0.008723 8 0.008719 2 0.008221 3 0.006779 21 0.095089 12 0.094922 11 0.085857 13 0.077782 22 0.072072 18 0.061696 19 0.059365 10 0.055616 14 0.048452 0 0.047972 17 0.040449 20 0.037756 23 0.037199 24 0.035787 9 0.035256 16 0.028385 4 0.015776 5 0.015001 6 0.014136 7 0.00899 1 0.008723 8 0.008719 2 0.008221 3 0.006779 21 0.08681571289997392 12 0.084362164336116 11 0.0752482559623083 13 0.06999531243626779 22 0.06727668011381512 18 0.061755715709390716 19 0.05888097270242596 10 0.053099600850337325 14 0.049086560113433514 0 0.04260959526508503 20 0.04134742756293518 23 0.040110588331616945 17 0.03931332255180441 24 0.038619869425413685 9 0.03526483192207212 16 0.028613497900152225 4 0.018886984764873146 5 0.018297089147655567 6 0.01697522162174034 7 0.012473039391488309 8 0.012323771460284627 1 0.012255484873656476 2 0.011861336156932672 3 0.010964853325069149 15 0.009318269539760388 __DUMMY__ 0.004243841635391156 false 1.0 295 21 0.098551 12 0.096606 11 0.086468 13 0.075805 22 0.073454 19 0.0661 18 0.063682 10 0.055673 14 0.048921 0 0.045867 20 0.043307 17 0.040873 24 0.040306 23 0.037766 9 0.033267 16 0.031333 4 0.013461 5 0.012705 6 0.011176 7 0.005554 8 0.00528 1 0.005032 2 0.00484 3 0.003974 21 0.098551 12 0.096606 11 0.086468 13 0.075805 22 0.073454 19 0.0661 18 0.063682 10 0.055673 14 0.048921 0 0.045867 20 0.043307 17 0.040873 24 0.040306 23 0.037766 9 0.033267 16 0.031333 4 0.013461 5 0.012705 6 0.011176 7 0.005554 8 0.00528 1 0.005032 2 0.00484 3 0.003974 21 0.0891547714693177 12 0.08577723371708171 11 0.07576490496373921 13 0.06916248999418126 22 0.06815041072275828 18 0.0630873313631526 19 0.06306974888102962 10 0.05305368851334555 14 0.04932013348416498 20 0.04496267940175823 24 0.04139998019235554 0 0.04132598713672579 23 0.040551241431817604 17 0.03957302529747177 9 0.03389279402371439 16 0.030519951308675936 4 0.01724187270008393 5 0.016662369204431787 6 0.014955330371191152 7 0.01024251814115361 8 0.010089012438469158 1 0.009903980584049935 2 0.009658211038732111 15 0.009105317720147846 3 0.009099937139598994 __DUMMY__ 0.004275078760851293 false 1.0 296 0 0.095487 17 0.089997 16 0.075489 11 0.072708 22 0.059386 18 0.056955 10 0.055174 12 0.054866 9 0.050257 19 0.049354 21 0.042437 13 0.034814 6 0.034522 8 0.02897 7 0.028612 1 0.028502 4 0.028462 2 0.02835 5 0.028115 23 0.02371 3 0.020114 20 0.005776 15 0.005242 14 0.002699 0 0.095487 17 0.089997 16 0.075489 11 0.072708 22 0.059386 18 0.056955 10 0.055174 12 0.054866 9 0.050257 19 0.049354 21 0.042437 13 0.034814 6 0.034522 8 0.02897 7 0.028612 1 0.028502 4 0.028462 2 0.02835 5 0.028115 23 0.02371 3 0.020114 20 0.005776 15 0.005242 14 0.002699 0 0.07592436147823821 17 0.07517304001047898 16 0.06138000916085063 11 0.05943967106235538 22 0.05699629660615679 18 0.05416555355238936 9 0.050032151375577545 10 0.04857106820379898 19 0.047563048192658594 12 0.045065348482144156 21 0.0425486734141575 6 0.03751054137296256 4 0.03396183876384015 8 0.03379204573816688 7 0.03358441078715301 5 0.03355321070836804 1 0.03348589153792992 2 0.033139954741158585 23 0.03089580219714565 13 0.028564559573669525 3 0.027920698691380495 20 0.01613939416672518 24 0.014236457226735317 15 0.013592212453278208 14 0.010453334392553932 __DUMMY__ 0.002310426110126621 false 1.0 297 0 0.082367 17 0.075362 9 0.066619 22 0.062842 11 0.056352 10 0.052197 18 0.051508 16 0.048388 6 0.048241 8 0.045723 7 0.04541 4 0.045105 1 0.045002 2 0.044692 5 0.044248 3 0.040283 19 0.036227 21 0.034773 12 0.025495 23 0.023924 13 0.01151 15 0.005876 24 0.005788 14 0.002068 0 0.082367 17 0.075362 9 0.066619 22 0.062842 11 0.056352 10 0.052197 18 0.051508 16 0.048388 6 0.048241 8 0.045723 7 0.04541 4 0.045105 1 0.045002 2 0.044692 5 0.044248 3 0.040283 19 0.036227 21 0.034773 12 0.025495 23 0.023924 13 0.01151 15 0.005876 24 0.005788 14 0.002068 0 0.07063128862084826 17 0.06764921635720755 9 0.06178844999224169 22 0.0604643349092024 18 0.05093374655237894 11 0.05076962142996684 10 0.047850784682719104 6 0.04645323815700263 16 0.04497251981328907 4 0.04458102800184812 8 0.04455093186899344 7 0.04436678391285663 1 0.04411016318478531 5 0.04390536767342027 2 0.0436564190619657 3 0.04067300443459856 19 0.038755813262194676 21 0.03747537241706074 23 0.029700420255926084 12 0.025613162474365993 24 0.015895686032058733 15 0.012509201805711466 13 0.01246223141366365 20 0.00990870436595545 14 0.008323411686850435 __DUMMY__ 0.001999097632888391 false 1.0 298 13 0.12671 12 0.10678 14 0.09632 21 0.075692 18 0.067672 10 0.066276 11 0.060339 20 0.053706 15 0.050008 19 0.048794 23 0.040775 22 0.038113 0 0.028522 24 0.027349 17 0.024359 16 0.022344 9 0.019094 6 0.010755 4 0.010213 5 0.009832 8 0.004218 7 0.00414 1 0.004117 2 0.003872 13 0.12671 12 0.10678 14 0.09632 21 0.075692 18 0.067672 10 0.066276 11 0.060339 20 0.053706 15 0.050008 19 0.048794 23 0.040775 22 0.038113 0 0.028522 24 0.027349 17 0.024359 16 0.022344 9 0.019094 6 0.010755 4 0.010213 5 0.009832 8 0.004218 7 0.00414 1 0.004117 2 0.003872 13 0.09602580229423185 12 0.08839462034156034 14 0.07715321258291029 21 0.07453306001342942 18 0.06493717343134738 11 0.05942497742235808 10 0.05882853698171626 19 0.052064370318934704 20 0.05021394533998299 22 0.04808843387157909 23 0.04191376307584566 15 0.04031475697063647 24 0.03421430319349504 0 0.030922568336105093 17 0.030005910600472394 9 0.026834525339028376 16 0.024567127681911348 4 0.016405989597371103 5 0.01601013526477383 6 0.015592563176056486 8 0.010553579038476474 7 0.010493430338544949 1 0.010414015086239969 2 0.010161628720051875 3 0.008108625236110046 __DUMMY__ 0.003822945746830529 false 1.0 299 21 0.10236 12 0.09733 19 0.087795 11 0.074779 22 0.071581 18 0.069732 20 0.069555 13 0.062077 24 0.060629 23 0.050905 16 0.046419 17 0.04357 10 0.043545 14 0.039351 0 0.033726 9 0.024147 4 0.008433 5 0.007996 6 0.004511 3 9.82E-4 7 3.62E-4 8 1.53E-4 15 4.4E-5 2 1.6E-5 21 0.10236 12 0.09733 19 0.087795 11 0.074779 22 0.071581 18 0.069732 20 0.069555 13 0.062077 24 0.060629 23 0.050905 16 0.046419 17 0.04357 10 0.043545 14 0.039351 0 0.033726 9 0.024147 4 0.008433 5 0.007996 6 0.004511 3 9.82E-4 7 3.62E-4 8 1.53E-4 15 4.4E-5 2 1.6E-5 21 0.09064452680568545 12 0.0829116712469993 19 0.07652922448523634 11 0.06851513308962179 22 0.06801210946888513 18 0.06651491209767467 20 0.06051397575610107 13 0.057246509219308 24 0.05416698211169839 23 0.04788435146318884 10 0.045611063730679705 14 0.042427416578727624 17 0.04182022309826735 16 0.040076082831682514 0 0.03425520426207831 9 0.029345643772243735 4 0.014775512541749173 5 0.01433305563560715 6 0.011344885058086241 15 0.00963759634433313 3 0.008179611134009923 7 0.0077855979930029845 8 0.007655666109989906 1 0.007497825605240962 2 0.0073409147319995266 __DUMMY__ 0.004974304827903117 false 1.0 900 21 0.07990431322320118 12 0.07848701294634391 13 0.06719288335421099 11 0.06490390914445594 22 0.06077835718432893 18 0.06024444700810337 19 0.057439937662959344 14 0.051067528106712314 10 0.04906509652564574 20 0.04548473378623928 23 0.04371300630634363 24 0.04180001468676373 17 0.03637629287666724 0 0.03581130668710384 9 0.03287237427257415 16 0.028021000968138057 4 0.021142029708402597 5 0.02072086951547943 6 0.019121463862791656 15 0.01762289160234038 __DUMMY__ 0.015097988088768282 7 0.014959241954494192 8 0.014931043740222798 1 0.014804268651075689 2 0.014533891065827772 3 0.013904097070805687 false 0.0 901 21 0.07990431322320117 12 0.0784870129463439 13 0.06719288335421096 11 0.06490390914445592 22 0.06077835718432892 18 0.06024444700810336 19 0.05743993766295933 14 0.0510675281067123 10 0.04906509652564572 20 0.04548473378623927 23 0.04371300630634362 24 0.04180001468676372 17 0.03637629287666723 0 0.03581130668710383 9 0.03287237427257413 16 0.02802100096813805 4 0.021142029708402583 5 0.02072086951547943 6 0.019121463862791652 15 0.017622891602340374 __DUMMY__ 0.015097988088768279 7 0.014959241954494187 8 0.014931043740222794 1 0.014804268651075685 2 0.014533891065827769 3 0.013904097070805687 false 0.0 902 21 0.08144285703802912 12 0.07728183176774778 11 0.06528741394437891 13 0.06400369728158127 22 0.06262185359759948 18 0.06053893428800201 19 0.05957778696080144 14 0.04963903348587991 10 0.04809248740213932 20 0.04675832917666398 23 0.04405648953896187 24 0.04391337613982631 17 0.03681490466436389 0 0.03521992727684153 9 0.033067495865262336 16 0.028876389315689477 4 0.020783139595295423 5 0.02034757588686448 6 0.018424414525561077 15 0.016613487922174812 __DUMMY__ 0.015599832827864413 7 0.01449289418524945 8 0.01444104866434697 1 0.014310418930375525 2 0.014014459262140866 3 0.013779920456358428 false 0.0 903 21 0.07449580691141151 19 0.07205100465592598 18 0.06532574952701299 20 0.06506182100540028 12 0.060759623415782615 22 0.060462581580951066 24 0.057938257532011754 11 0.05239037595476481 23 0.049585587332024346 14 0.04558996920281847 13 0.04341289198274038 10 0.043075528306331996 17 0.03848309938320755 16 0.03818753642153451 9 0.030428535755127096 15 0.02834484615155404 0 0.02566051447360826 4 0.020402665585443246 5 0.019914485948842917 __DUMMY__ 0.01685078823459095 3 0.0165060186427827 6 0.016459822772339115 7 0.014863338412718228 8 0.014827442384877949 1 0.014617475430302451 2 0.014304232995894867 false 0.0 904 21 0.07990373750226323 12 0.0784880294218167 13 0.06719500999357464 11 0.06490394596194743 22 0.06077752720195586 18 0.06024451699018086 19 0.057438922875012316 14 0.05106856472598925 10 0.049065859621934826 20 0.04548417439707003 23 0.0437129814896711 24 0.04179895146877615 17 0.03637618325095538 0 0.03581179463807816 9 0.03287239240439809 16 0.02802061513067444 4 0.02114232346295227 5 0.020721169970099165 6 0.019121946453656072 15 0.017623550093757448 __DUMMY__ 0.015093747940046946 7 0.014959573506601874 8 0.014931388950906678 1 0.014804615598443318 2 0.014534251827784292 3 0.013904225121453333 false 0.0 905 21 0.07990373750226323 12 0.0784880294218167 13 0.06719500999357464 11 0.06490394596194743 22 0.06077752720195586 18 0.06024451699018086 19 0.057438922875012316 14 0.05106856472598925 10 0.049065859621934826 20 0.04548417439707003 23 0.0437129814896711 24 0.04179895146877615 17 0.03637618325095538 0 0.03581179463807816 9 0.03287239240439809 16 0.02802061513067444 4 0.02114232346295227 5 0.020721169970099165 6 0.019121946453656072 15 0.017623550093757448 __DUMMY__ 0.015093747940046946 7 0.014959573506601874 8 0.014931388950906678 1 0.014804615598443318 2 0.014534251827784292 3 0.013904225121453333 false 0.0 906 21 0.08054955811238725 22 0.07006092155560684 11 0.06532712472412458 19 0.06297679682536257 12 0.06246758995710414 18 0.061247886029184864 24 0.04816825862198469 10 0.04664775480277033 20 0.04615290793909104 13 0.04382113938844427 23 0.04304402247974811 14 0.041262824397436434 17 0.03971179522666251 9 0.03895186113544099 0 0.03602303935212678 16 0.029738406029914753 4 0.023645862327133955 5 0.023146039547068235 6 0.020059345512262832 3 0.01829929494897656 7 0.01751999142518981 8 0.017418768779701443 1 0.01724523909766326 2 0.016853730589192165 __DUMMY__ 0.015128359354201922 15 0.014531481841219857 false 0.0 907 21 0.08145625350682423 12 0.07511175822011906 11 0.06302902281593172 22 0.0628986384023759 19 0.061561696471207975 18 0.059565826340031464 13 0.05925485379524317 20 0.04944063210562247 24 0.048000706728219614 14 0.0467557137929929 23 0.04624233436292458 10 0.04461360932146977 17 0.036880209206218775 0 0.03303262850641474 9 0.03244086965491532 16 0.030291332207742185 4 0.02164464753990445 5 0.021189224903039903 6 0.01893929221661694 15 0.016065688224484946 __DUMMY__ 0.01572528606527022 7 0.015377335385519745 8 0.01532881156697477 1 0.01517604981593353 3 0.015102598396625316 2 0.014874980447376424 false 0.0 908 12 0.07951029945624438 21 0.07592801469697728 13 0.0757019298009662 18 0.0611917549716586 11 0.06103398374266703 14 0.06008791227058154 22 0.0556004830516596 19 0.054126092161730165 10 0.0516564304462367 20 0.04620026597159047 23 0.04302915380712053 24 0.038843083160977475 17 0.03414988480830719 0 0.03370509908504159 9 0.031308830495352 15 0.027210291819454873 16 0.02629159890469572 4 0.02052246129179819 5 0.02013255926042292 6 0.01896660156545782 8 0.014592483635425613 7 0.014551368711456129 1 0.01444007180056047 2 0.014197967590172092 __DUMMY__ 0.01394901271077291 3 0.013072364782672574 false 0.0 909 12 0.07941230506214716 13 0.07608033373181036 21 0.0758160324050737 18 0.061288601651096064 14 0.06109157939573176 11 0.060261510554627556 22 0.05511010150022276 19 0.05424712330711274 10 0.05147089290990129 20 0.04711070538300254 23 0.04349021534196633 24 0.03948620383877205 17 0.03348048214092456 0 0.03263621979712839 9 0.030854561052085373 15 0.028428622677844045 16 0.02598850060167524 4 0.020437847101545656 5 0.020048785881070265 6 0.018799967340455904 8 0.01447703433670214 7 0.014436772755346014 1 0.014322518105571584 __DUMMY__ 0.014088990902045647 2 0.014082847471919234 3 0.013051244754221585 false 0.0 910 12 0.08088261964673887 21 0.0777656996678674 13 0.07135660060038249 11 0.06444900093275562 18 0.05965640433590308 22 0.058071077073494175 19 0.05534783994422538 14 0.051799044275418184 10 0.04941125903915188 20 0.04418601309394728 23 0.04380209729148599 24 0.03921358074247834 0 0.03703837667908259 17 0.036903645841201906 9 0.03190012951309613 16 0.028705977477193254 4 0.02140358389426349 5 0.020996237289631528 6 0.020013787305976694 15 0.018434381031180266 8 0.015445869763328708 7 0.015445436343255323 1 0.015313906125913025 2 0.015067451529976881 3 0.013715135832590812 __DUMMY__ 0.013674844729460619 false 0.0 911 12 0.07881398159005251 21 0.07634682483941185 13 0.07452032525311478 11 0.0619934289230697 18 0.06135946884310048 14 0.05940889048001769 22 0.05651361897860325 19 0.05407250359147756 10 0.05237173385431353 20 0.04553522477018943 23 0.04267553303175845 24 0.03859958785203245 0 0.03420165128431499 17 0.03403685433420907 9 0.03207453052781123 15 0.02614095583591939 16 0.025628137287909296 4 0.020710144895628408 5 0.0203214788182548 6 0.019032835008595525 8 0.014714300137682441 7 0.01469619607362639 1 0.01457623103625703 2 0.014329941408549355 __DUMMY__ 0.013984657281354 3 0.013340964062746496 false 0.0 912 12 0.08412539621903543 21 0.07769496469667271 13 0.07740706387677748 11 0.06104100469821183 18 0.05982640325828697 14 0.05725651789497505 19 0.055291441391111404 22 0.05451534495122298 10 0.04857772751109183 20 0.04821853739503718 23 0.04566313023224623 24 0.041074038720539406 17 0.03390616754687012 0 0.032693492321857705 9 0.028890016121324337 16 0.027653919576079457 15 0.023217857184941616 4 0.020466059170394558 5 0.020078825310934193 6 0.019054402850573724 8 0.01440243449562113 7 0.0143733370744024 1 0.014256197280120038 2 0.014034439212546919 __DUMMY__ 0.013622530064144852 3 0.01265875094498016 false 0.0 913 21 0.07899020465667865 12 0.07872064855959565 13 0.06850559800891824 11 0.06477196035972398 18 0.060114922001994885 22 0.060006225428203754 19 0.05622930453643203 14 0.05174122211365894 10 0.049726332777890174 20 0.044540557018014126 23 0.043329662892455836 24 0.040512100305733864 0 0.03632259896555116 17 0.036290768303277425 9 0.03304132678952179 16 0.02757427872327642 4 0.02140457692201274 5 0.020989934318907125 6 0.019561544613829227 15 0.018187430784162736 7 0.015298724937689875 8 0.015279704293243417 1 0.015152623259753374 2 0.014887542934708281 __DUMMY__ 0.014758077935249898 3 0.014062128559516258 false 0.0 914 12 0.08027353914829176 21 0.07855704087096413 13 0.07132551595823604 11 0.061416342773299604 18 0.05867761116505007 22 0.05726671886302738 19 0.05572206126607447 14 0.054099332787956964 20 0.04693041830650112 10 0.046686404158003285 23 0.04611467798316285 24 0.042895058224355805 17 0.03420048609110479 0 0.03259110317382885 9 0.030490620296915988 16 0.02710354947404528 4 0.021762675154318747 5 0.02133878200128043 15 0.021173799234310856 6 0.01993967466197549 7 0.01561857405704164 8 0.015613774351905146 1 0.015469802721103558 2 0.015209901886344574 __DUMMY__ 0.01518724583215494 3 0.01433528955874613 false 0.0 915 12 0.07928638936220368 21 0.07504872415986731 13 0.07169723681182336 11 0.058893680834814804 18 0.05829086298876508 22 0.05458227278453897 19 0.053895180332956434 14 0.05349904982019014 10 0.047030695624010785 20 0.04655708159591778 23 0.04590918495009344 24 0.04124890758605845 17 0.03466134703360185 0 0.03327550546473597 9 0.030893027149174884 16 0.0275687046831176 4 0.02303920636186791 5 0.02265133108464064 15 0.02228065354819571 6 0.021599906687516806 8 0.01731790447944288 7 0.017304085614545606 1 0.01719636431724296 2 0.01694006871189319 3 0.015751469834311527 __DUMMY__ 0.01358115817847196 false 0.0 916 12 0.08304507025206294 21 0.07860481191206355 13 0.07576594220355157 11 0.06185780342509175 18 0.060063783138149 14 0.056941374027107854 22 0.056106404478296436 19 0.05585621883139936 10 0.048782229774968044 20 0.047757626514219206 23 0.04501411868382344 24 0.041391991485465296 17 0.03419337576219271 0 0.03303267663810282 9 0.029736466966442842 16 0.0274395984301817 15 0.02268579845085558 4 0.020324938489154076 5 0.019924884192005218 6 0.018721289341830198 8 0.014172295180376032 7 0.014146824595089513 1 0.014022219342263524 __DUMMY__ 0.01399604535488753 2 0.013789910057462053 3 0.012626302472957826 false 0.0 917 21 0.0816352548631115 12 0.07398321404770726 11 0.06434309865834625 22 0.0640134464604597 19 0.06212031614169416 18 0.061146719639342935 13 0.05891660266013467 20 0.04893880481561218 14 0.04795201307839593 10 0.04702976083645029 24 0.04657149666542218 23 0.04459163935565853 17 0.03736125814728771 0 0.03409818952682276 9 0.0333794064427144 16 0.03015291793096796 4 0.02070661785183654 5 0.020259492177005695 6 0.01791708790958253 15 0.016973932621086967 __DUMMY__ 0.016739173742809792 7 0.014425990162385624 8 0.014361296640226803 3 0.014248411098042707 1 0.01422101814594538 2 0.013912840380949426 false 0.0 918 12 0.07964004858719131 13 0.07637184222718124 21 0.07585064085952885 18 0.06129411668293951 14 0.06121668265581525 11 0.06026889546029573 22 0.05502362135100259 19 0.05422335669869432 10 0.05148260194435784 20 0.04714746204039147 23 0.04351790940767084 24 0.0394544179827152 17 0.033452377083005774 0 0.032619945541190645 9 0.030771002798399897 15 0.02846425190674829 16 0.025992087942401123 4 0.020398752264313116 5 0.020010096822131347 6 0.018776958711455672 8 0.014434182428158686 7 0.01439258650790946 1 0.014279198422133132 2 0.014040649097082102 __DUMMY__ 0.013890506853653933 3 0.012985807723632739 false 0.0 919 21 0.07385265748061087 19 0.07067779157769635 18 0.06351344715568102 22 0.06335719583459257 12 0.059761580138958645 11 0.05711478207043619 20 0.05667448989146548 24 0.05198460325555504 23 0.04677431879959188 10 0.04407235519611703 17 0.04363656999893875 16 0.041277200481106814 13 0.040246911971112666 14 0.0393043559499984 9 0.033704665595049664 0 0.033600463659482195 15 0.0221540242077447 4 0.021367704527312504 5 0.020905732751156425 6 0.018151781652501933 __DUMMY__ 0.017060613928581415 3 0.01699703603669797 7 0.016172396244918768 8 0.01611500655457005 1 0.01593550387173438 2 0.015586811168388141 false 0.0 920 12 0.08309750635973444 21 0.07737304432579174 13 0.07707030128552046 11 0.061407249977320645 18 0.05998989078458286 14 0.05768000674329232 22 0.05511758951459152 19 0.054654504700639595 10 0.049368143812002545 20 0.04688949484290487 23 0.04464932964374928 24 0.04002652823357123 17 0.03428447930639938 0 0.03354408961598098 9 0.0298625008488908 16 0.027231708117859257 15 0.023643353805863698 4 0.020603442016994225 5 0.020208653627197964 6 0.0192149857197645 8 0.01457771502044072 7 0.01453833857999029 1 0.014425086210744379 2 0.014193787028793507 __DUMMY__ 0.013547154212166918 3 0.01280111566521164 false 0.0 921 21 0.07422401094019833 19 0.07204689904205805 20 0.06592866079180133 18 0.06528527938324954 12 0.06120249330895667 22 0.05968259590512265 24 0.0584821821623695 11 0.05166453068576222 23 0.05012677004350071 14 0.04625668854547631 13 0.04423557375391088 10 0.04281870315329883 16 0.03820217399773016 17 0.038077074805070464 9 0.02991797228183877 15 0.029193359854744062 0 0.024957695906542145 4 0.020485782348024735 5 0.02000635268185451 3 0.01661911605873286 6 0.016553130514403543 __DUMMY__ 0.014991077535953412 7 0.014960783216962181 8 0.014932367064819334 1 0.014725307285306799 2 0.014423418732311883 false 0.0 922 18 0.07431954081498048 10 0.06835945735972784 14 0.0670888034270213 15 0.055970729530236255 22 0.05574701129993358 19 0.055361703015997944 21 0.054585950844650066 13 0.04940338549326445 11 0.049144765007702575 20 0.047311164249138865 9 0.043807906282932435 12 0.040754064629663314 17 0.03981585428528769 0 0.036495040825279476 23 0.03367398620087471 24 0.03141023935005435 16 0.028086001943504843 4 0.022381966955647373 5 0.022016750657469546 6 0.01977403008996473 3 0.019057413561947824 8 0.01839467867382921 7 0.018348355811178173 1 0.0181933342311702 2 0.017893150538968828 __DUMMY__ 0.012604714919573939 false 0.0 923 21 0.07467225609609875 19 0.06996425715111441 22 0.06553414650332871 18 0.06488923746581392 20 0.05933134762395495 24 0.05616433242745982 11 0.05574571659636755 12 0.05484624136615477 23 0.04716433931189374 10 0.044670952598787644 14 0.04321362871825448 17 0.039530033450176666 13 0.03667494541282713 16 0.03582852975674405 9 0.0350206339690657 0 0.0284889937913077 15 0.026197736524737596 4 0.022407359001028755 5 0.021900709651505104 3 0.01872802824999385 6 0.01812634303670817 7 0.016781192016553658 8 0.016717722602402365 1 0.016484700838349017 2 0.016131671378709734 __DUMMY__ 0.014784944460661928 false 0.0 924 21 0.07241090298873004 22 0.06737853646057004 19 0.06347493610389561 18 0.0628499254499797 11 0.05860944634260105 12 0.05159059726737428 20 0.050172876849037734 24 0.050159482986088154 10 0.046478834317951245 23 0.043795805261794794 14 0.04091304097530431 17 0.04056279000112135 9 0.03977251133341539 13 0.034985502252499086 0 0.03346667560227482 16 0.03191469440052981 4 0.02569625758955418 5 0.025186690793966193 15 0.023277007615771266 6 0.021847735633480123 3 0.021720564503006905 7 0.02027005523031422 8 0.020215898008559965 1 0.0199802950474573 2 0.019603094624976204 __DUMMY__ 0.013665842359746105 false 0.0 925 18 0.057937363286480546 19 0.054657434981715554 17 0.0518566972265525 22 0.05068497775904967 16 0.04655042591285239 20 0.04566881542790302 21 0.0446676023755424 15 0.04327024522190457 10 0.043150353373240184 23 0.04217289470068068 9 0.04125133150432125 0 0.040528686884127946 24 0.04003317113346706 11 0.039396860815760035 14 0.0363993956758691 12 0.03456181436690868 4 0.03236749933153651 5 0.0319225268324938 6 0.031552608312754006 8 0.030710953804795407 7 0.030613247846944896 1 0.03042366649966194 2 0.03008134307776497 3 0.029977190393256525 13 0.027450400236178046 __DUMMY__ 0.012112493018238305 false 0.0 926 19 0.07366088733861063 21 0.07122305235494833 20 0.06899959601917005 18 0.06670334715974165 24 0.05977162780469137 22 0.058413325089324675 12 0.05723670041738978 23 0.05075217158342262 11 0.04869649102736549 14 0.04569165014528649 10 0.04283888270535417 13 0.04045801485027203 16 0.03999517355598346 17 0.03866735762691973 15 0.032434897500436724 9 0.02962555636458343 0 0.023650501591740175 4 0.020570677399961802 5 0.020085037547025213 3 0.017293468859226988 6 0.016490572929775956 __DUMMY__ 0.016272365200250993 7 0.01531939145604852 8 0.01530181595150839 1 0.015070581890375743 2 0.014776855630585497 false 0.0 927 19 0.07366088733861063 21 0.07122305235494833 20 0.06899959601917005 18 0.06670334715974165 24 0.05977162780469137 22 0.058413325089324675 12 0.05723670041738978 23 0.05075217158342262 11 0.04869649102736549 14 0.04569165014528649 10 0.04283888270535417 13 0.04045801485027203 16 0.03999517355598346 17 0.03866735762691973 15 0.032434897500436724 9 0.02962555636458343 0 0.023650501591740175 4 0.020570677399961802 5 0.020085037547025213 3 0.017293468859226988 6 0.016490572929775956 __DUMMY__ 0.016272365200250993 7 0.01531939145604852 8 0.01530181595150839 1 0.015070581890375743 2 0.014776855630585497 false 0.0 928 18 0.0779092460647726 10 0.07350344141187486 22 0.06472418582126445 21 0.06194470568609804 11 0.06098973713952246 19 0.05989717548129277 14 0.05433628182470363 9 0.04876079129858354 0 0.047414517000231526 17 0.04572212966349062 12 0.04512225398480421 13 0.04472407964292022 20 0.04134902087839665 15 0.035234594979032904 16 0.02965951437430325 23 0.029381551360928265 24 0.026584275660966272 4 0.02071533832468542 5 0.0203323644033962 6 0.018207817776683243 3 0.016564849755884993 7 0.016241576064211363 8 0.016228421769439363 1 0.016092837369184026 2 0.01574711066671868 __DUMMY__ 0.012612181596610473 false 0.0 929 21 0.07452874094449247 19 0.07201289284962457 18 0.06531049177002284 20 0.06499621583636837 12 0.06081808327352063 22 0.0604790471559193 24 0.05789089367496559 11 0.05244248520406929 23 0.049564720425032 14 0.04559939946111372 13 0.043479125712835784 10 0.04309309367163577 17 0.03848014955470491 16 0.03815610862479128 9 0.03044054669043025 15 0.02829531064247152 0 0.025697226404383895 4 0.02040212543232195 5 0.019914063933513745 __DUMMY__ 0.016843394862763393 3 0.016494423414096303 6 0.016464113339392322 7 0.014859523236870564 8 0.014823484874685211 1 0.014613800228833383 2 0.014300538781140959 false 0.0 930 17 0.06367979861330436 16 0.056868523121219185 19 0.05537672258024463 18 0.05519123619390076 22 0.05422811601219628 0 0.05364479975014339 11 0.045684800763144656 9 0.04432299796567955 21 0.04338820620241369 10 0.04060484769000437 23 0.03914113201662206 20 0.03671540296013545 12 0.035248424760417785 24 0.03442335772136372 6 0.03430010024639091 4 0.03359976073913684 5 0.0331313382567354 8 0.03281382027417975 7 0.0326989697367227 1 0.03255641569991187 2 0.03210740344186955 3 0.030403261232688904 15 0.028528248047740862 13 0.01949752326032595 14 0.01935829323139204 __DUMMY__ 0.012486499482115436 false 0.0 931 18 0.0624590314775928 19 0.05890020888962942 21 0.054792012992663 20 0.05304948328672744 22 0.05213714073324038 14 0.04925677221886492 10 0.047371511420311284 15 0.04509006557369258 23 0.044911933150815354 24 0.04453334966668567 12 0.04437417737673816 11 0.04273241708961484 17 0.042278922734888966 13 0.039953841031814374 16 0.03827049625863597 9 0.03680947031087725 0 0.03178292383592231 4 0.027185415487703767 5 0.026760861924050732 6 0.024946087141506663 3 0.024140331443209227 8 0.023752424900957473 7 0.023700851433947127 1 0.02351763274066268 2 0.023203029056807052 __DUMMY__ 0.014089607822440555 false 0.0 932 18 0.06256781314760798 19 0.06221140580471325 21 0.05627531184540862 20 0.0548076624725108 22 0.05318424677858697 24 0.04631995359351259 23 0.046023486279466765 10 0.045805412821028096 12 0.04555580846778204 14 0.0453988666734952 17 0.044055626770581294 11 0.04400113830093323 16 0.04162614770729146 15 0.04161122220911122 13 0.03759401620089635 9 0.03569562344276345 0 0.03248192003241115 4 0.0263337462822097 5 0.0259023917914755 6 0.024066903171068826 3 0.023283100693372857 8 0.022863816240485002 7 0.022834967832588184 1 0.02264145770466519 2 0.022318080620644276 __DUMMY__ 0.01453987311539006 false 0.0 933 17 0.05794142025010167 22 0.05452020078191873 18 0.05243958017570493 0 0.05162961998072969 19 0.05057414022406967 16 0.048124710778072385 9 0.0475693359819281 11 0.04409825574164441 21 0.04343344105810315 10 0.040814390746633934 23 0.04012654033109174 6 0.03800323666871965 4 0.037847898743542316 5 0.03738045746848402 8 0.03676050393321958 7 0.03670149435246508 1 0.03657325231698241 2 0.03609476140314552 3 0.034961280879173544 24 0.03341468897526101 12 0.03276634184523752 20 0.032700420499764404 15 0.02398243826052454 14 0.0188052372529056 13 0.018491648388216837 __DUMMY__ 0.014244702962359546 false 0.0 934 17 0.05670756297946146 19 0.05528456805637604 22 0.05515236677828627 18 0.054807151765513075 16 0.04935051077241685 0 0.048878234969953076 21 0.04721270023855221 11 0.045546701403711774 9 0.044554547339130744 23 0.041512097094297304 10 0.04134101127746528 20 0.037957745225329215 12 0.03661721809008035 24 0.03655598584230729 4 0.03459158507737987 6 0.034295449738218256 5 0.03413400734557488 8 0.03299157069835899 7 0.03294609558898878 1 0.03280443048730695 2 0.03235131828892557 3 0.03158312029487408 15 0.024916137787651907 14 0.02167549797125784 13 0.021277513151118376 __DUMMY__ 0.014954871737463616 false 0.0 935 17 0.05791626299319407 22 0.05436160010449665 18 0.05254551974663078 0 0.05126665091388815 19 0.05110854356467433 16 0.04857107109637455 9 0.04681730427302147 11 0.044291895073596786 21 0.04398890007726718 10 0.04049278443672599 23 0.04044191791770012 6 0.03748953934429013 4 0.03732121639167842 5 0.03685392787966086 8 0.03617704985405018 7 0.03611907599764809 1 0.03598961631356212 2 0.03551393065583387 3 0.034336976329819476 24 0.03388053069135803 12 0.03387313784628386 20 0.0334400346701904 15 0.023966799789190536 13 0.019307273937244 14 0.01904834583394947 __DUMMY__ 0.014880094267670368 false 0.0 936 17 0.06018886370008607 0 0.05418190057723417 22 0.0537477179835901 18 0.0517241760940522 16 0.050463005301353815 19 0.049667144862812464 9 0.046846679752315074 11 0.04543118106462699 21 0.04299775681169142 10 0.04039660158640818 23 0.03961648391996589 6 0.03825914686610676 4 0.037474037949847765 5 0.037013283711342534 8 0.03657258293716883 7 0.03650183577221418 1 0.03638368898893512 2 0.03591294943601071 12 0.03554292180327408 3 0.034032611339175046 24 0.03128454479498202 20 0.030830256006157967 15 0.022868026192430838 13 0.020904794353237416 14 0.017590497327230798 __DUMMY__ 0.013567310867749604 false 0.0 937 17 0.05670764386789079 19 0.05527346931458315 22 0.05514978244017112 18 0.054800727290716 16 0.04934562421197365 0 0.048881080049415805 21 0.04720393124302497 11 0.045541308426315305 9 0.04455993448953572 23 0.04150919828951501 10 0.041338016633832644 20 0.03794715919837718 12 0.03660737246595784 24 0.03655048252074797 4 0.03459831869937401 6 0.03430286674201717 5 0.034140716220847016 8 0.032999351896556395 7 0.032953855648489905 1 0.03281221571120351 2 0.03235904482770319 3 0.03159042046127775 15 0.02491414018968112 14 0.0216692909989243 13 0.021270147405673595 __DUMMY__ 0.014973900756194656 false 0.0 938 17 0.05670764386789079 19 0.05527346931458315 22 0.05514978244017112 18 0.054800727290716 16 0.04934562421197365 0 0.048881080049415805 21 0.04720393124302497 11 0.045541308426315305 9 0.04455993448953572 23 0.04150919828951501 10 0.041338016633832644 20 0.03794715919837718 12 0.03660737246595784 24 0.03655048252074797 4 0.03459831869937401 6 0.03430286674201717 5 0.034140716220847016 8 0.032999351896556395 7 0.032953855648489905 1 0.03281221571120351 2 0.03235904482770319 3 0.03159042046127775 15 0.02491414018968112 14 0.0216692909989243 13 0.021270147405673595 __DUMMY__ 0.014973900756194656 false 0.0 939 17 0.06366080245460337 0 0.05857020177583995 22 0.05406678515964869 16 0.051889588137882386 18 0.05111639641235443 9 0.04950431436560026 19 0.047148310330741496 11 0.04559611686764558 10 0.041020358556725006 6 0.040274349183574996 21 0.03999240812162581 4 0.03891327947279508 8 0.03852437012892679 5 0.038440248467670614 7 0.038435943839925026 1 0.038328693277365794 2 0.037819426604521304 23 0.03728570991652343 3 0.03541232573868593 12 0.032631641473527706 24 0.02761056124364811 20 0.026293749678653288 15 0.022087987087085512 13 0.018237543990531763 14 0.014560255399481368 __DUMMY__ 0.012578632314416239 false 0.0 940 17 0.056714473405725926 19 0.05526463586101728 22 0.055148269781177726 18 0.05479651314238927 16 0.049347922296415846 0 0.048890808378559664 21 0.0471961040799288 11 0.04554104586718236 9 0.04456476124751305 23 0.041504516974367814 10 0.041337396408291247 20 0.03793477989474957 12 0.03660298307297862 24 0.03654093353332913 4 0.03460256110520335 6 0.034308833080915674 5 0.03414494580025528 8 0.033004863307081696 7 0.03295932275489139 1 0.03281771955718686 2 0.032364493544864495 3 0.031594171468126826 15 0.024911027760255434 14 0.021661749523305206 13 0.021266845950063704 __DUMMY__ 0.014978322204223937 false 0.0 941 17 0.05880497098623581 22 0.05525429639365325 18 0.05410752955270112 0 0.05305411029891363 19 0.052578191161426875 16 0.05006572147245996 11 0.049780801771573124 21 0.0482394571956419 9 0.04425916391393875 10 0.042513080094910005 12 0.04207379327552546 23 0.03957086246005487 6 0.03429053422370966 4 0.03375535377772362 20 0.033439519965261344 5 0.03331014526554196 24 0.03223493550830782 8 0.032163030888448456 7 0.032100611338898646 1 0.03197796545014294 2 0.03154527830684464 3 0.02967866175480682 13 0.027259544730941436 15 0.02263866364731301 14 0.021983268259630522 __DUMMY__ 0.013320508305394272 false 0.0 942 17 0.062009424866324596 0 0.05664953399874828 22 0.054187174398539796 18 0.05111858333498256 16 0.050556315957217504 9 0.04943518821597722 19 0.0476596404318797 11 0.044684507360066496 10 0.040716117823586515 21 0.04040860117471494 6 0.04018648790322442 4 0.03918207197600172 5 0.03870506638606716 8 0.03865804495271802 7 0.038578487777584186 1 0.03846120782347483 23 0.038067127198613604 2 0.03795790462436202 3 0.0359613622186658 12 0.031616633690818415 24 0.029200284859645428 20 0.027654199679522894 15 0.022559532812251728 13 0.01729314105627437 14 0.015238897804305727 __DUMMY__ 0.013254461674432056 false 0.0 700 0 0.08507 17 0.078732 9 0.061128 11 0.058337 22 0.058316 16 0.055872 10 0.05053 18 0.049478 6 0.04695 8 0.043814 7 0.043324 1 0.043242 2 0.042861 4 0.04243 5 0.041969 3 0.03703 19 0.036255 12 0.033582 21 0.033448 23 0.024669 13 0.019646 15 0.007674 24 0.003562 14 0.002081 0 0.08507 17 0.078732 9 0.061128 11 0.058337 22 0.058316 16 0.055872 10 0.05053 18 0.049478 6 0.04695 8 0.043814 7 0.043324 1 0.043242 2 0.042861 4 0.04243 5 0.041969 3 0.03703 19 0.036255 12 0.033582 21 0.033448 23 0.024669 13 0.019646 15 0.007674 24 0.003562 14 0.002081 0 0.07145144709398374 17 0.06949451458222623 22 0.05736554922048991 9 0.05723512721597584 11 0.05208099523487953 16 0.05029435869215845 18 0.05007383984931209 10 0.04650276320220935 6 0.04478849519930227 8 0.04241801414343345 7 0.04214923186900812 4 0.042116855563096654 1 0.04204921360962356 5 0.041633874771549985 2 0.041581556704375806 19 0.039982087543491494 3 0.037723722402422485 21 0.037507668655349574 12 0.032128455447354244 23 0.030770227986558006 13 0.018654451400357437 24 0.015469590655122344 15 0.01381279563180601 20 0.01160479976458607 14 0.008973781995805508 __DUMMY__ 0.0021365815655218163 false 1.0 943 17 0.06375714200695091 0 0.05805825639093791 22 0.05428209702799594 18 0.05358579244509466 16 0.052188236285522 9 0.04970527499167538 19 0.04820054252131088 11 0.045358060292570314 10 0.04380260598561048 21 0.03921856297042292 6 0.038424784663901104 4 0.03725999779093191 8 0.036884470498955206 5 0.03678304340290751 7 0.0367700323595107 1 0.036625501200484245 2 0.036165587122981645 23 0.03567057890600292 3 0.03404220196994137 12 0.03038496889272029 15 0.028196443356339425 20 0.02782087785625967 24 0.027158450670241262 14 0.019105048681373367 13 0.018590822245552106 __DUMMY__ 0.011960619463805814 false 0.0 701 0 0.085152 17 0.078901 9 0.061625 11 0.058468 22 0.057856 16 0.055903 10 0.050639 18 0.049657 6 0.047193 8 0.043928 7 0.043711 1 0.04356 4 0.042759 2 0.042757 5 0.041762 3 0.036886 19 0.036261 21 0.033375 12 0.033323 23 0.024937 13 0.019484 15 0.007089 24 0.003084 14 0.00169 0 0.085152 17 0.078901 9 0.061625 11 0.058468 22 0.057856 16 0.055903 10 0.050639 18 0.049657 6 0.047193 8 0.043928 7 0.043711 1 0.04356 4 0.042759 2 0.042757 5 0.041762 3 0.036886 19 0.036261 21 0.033375 12 0.033323 23 0.024937 13 0.019484 15 0.007089 24 0.003084 14 0.00169 0 0.07148927455779507 17 0.06957247606252034 9 0.05746439855151527 22 0.057153346374719 11 0.0521414269148708 16 0.050308659318721284 18 0.050156414434949025 10 0.04655304605044636 6 0.04490059365913342 8 0.04247060354434189 7 0.04232775904577625 4 0.04226862672887628 1 0.042195910359526065 5 0.041538383490953075 2 0.0415335804088102 19 0.03998485540669721 3 0.0376572936854855 21 0.0374739929863468 12 0.03200897601897453 23 0.030893859209746275 13 0.01857971909380333 24 0.01524908421973431 15 0.013542928969249524 20 0.011604799764586069 14 0.008793409576900233 __DUMMY__ 0.002136581565521816 false 1.0 944 21 0.07884645080726028 12 0.06976293041230758 22 0.06191222315567766 11 0.05885539550667733 19 0.058314930565654864 18 0.055700161986621116 13 0.05490066797380638 24 0.05016927882869367 23 0.04990591066092563 20 0.047335831197886515 14 0.04567834617112389 10 0.03942821318808708 17 0.03503720399425394 9 0.03257841793432306 0 0.029931821491020028 16 0.027934154238225425 4 0.02535992021243732 5 0.024825784194837917 6 0.02253411955193128 7 0.019303034110583914 8 0.019220295602968267 3 0.019118220950279773 1 0.019043492592346816 2 0.018670926318465574 15 0.01854157770270222 __DUMMY__ 0.017090690650902393 false 0.0 702 17 0.087465 0 0.08736 16 0.070635 11 0.057287 9 0.056184 22 0.054715 18 0.050577 10 0.047335 6 0.043815 19 0.042159 8 0.040118 1 0.040015 7 0.03994 2 0.039141 4 0.038107 5 0.037413 12 0.036671 3 0.032088 21 0.031363 23 0.025143 13 0.020504 15 0.012718 20 0.005127 24 0.004122 17 0.087465 0 0.08736 16 0.070635 11 0.057287 9 0.056184 22 0.054715 18 0.050577 10 0.047335 6 0.043815 19 0.042159 8 0.040118 1 0.040015 7 0.03994 2 0.039141 4 0.038107 5 0.037413 12 0.036671 3 0.032088 21 0.031363 23 0.025143 13 0.020504 15 0.012718 20 0.005127 24 0.004122 17 0.0757209009358311 0 0.07355311739476181 16 0.06051951313735485 22 0.055003523707865355 9 0.0540991855159706 11 0.05133655201485548 18 0.05078271386202377 10 0.044493727770288524 19 0.04390263312894138 6 0.04296845131532284 8 0.040326509779517544 7 0.040194606424664346 1 0.04017437567436105 2 0.039481533810288676 4 0.039472525874252366 5 0.03889326675847521 21 0.03526438216806524 3 0.0348197952026818 12 0.033233604961219645 23 0.030961544649312566 13 0.018105390780089128 15 0.017232367700597374 24 0.015573415588137803 20 0.014696247044845973 14 0.006830886287973085 __DUMMY__ 0.002359228512302475 false 1.0 703 21 0.078775 22 0.077441 18 0.064239 11 0.063231 9 0.057038 10 0.05413 19 0.052864 12 0.05123 0 0.046424 17 0.041819 23 0.037153 24 0.03687 4 0.033742 5 0.033245 13 0.031943 14 0.030698 6 0.02975 20 0.029207 3 0.028114 7 0.02711 1 0.027055 8 0.027001 2 0.026579 16 0.014342 21 0.078775 22 0.077441 18 0.064239 11 0.063231 9 0.057038 10 0.05413 19 0.052864 12 0.05123 0 0.046424 17 0.041819 23 0.037153 24 0.03687 4 0.033742 5 0.033245 13 0.031943 14 0.030698 6 0.02975 20 0.029207 3 0.028114 7 0.02711 1 0.027055 8 0.027001 2 0.026579 16 0.014342 21 0.0765383275928887 22 0.06988310940137714 11 0.062077527365290305 18 0.06045201478482808 12 0.05875358729231024 19 0.05288273201423687 10 0.050491933674874985 9 0.048170091060218544 13 0.0431110421614994 0 0.04199558519682632 23 0.04035394421139062 17 0.03970149982762904 24 0.03935283050513054 14 0.03754494355280111 20 0.034674817660215254 4 0.03089589803061979 5 0.03043677660451495 6 0.027793689165183835 3 0.025092354995914154 7 0.024874164845986497 8 0.024785618142100715 1 0.024769191618845523 2 0.02434596401475069 16 0.020249048222667446 15 0.00837708818681913 __DUMMY__ 0.0023962198710802142 false 1.0 945 17 0.06274977371843696 0 0.05633263862603718 22 0.0536147271609068 16 0.052686140462783665 18 0.05144243681049606 19 0.049119640336989526 9 0.047943597624070196 11 0.04480035364251035 21 0.04064879218446678 10 0.04016503428425616 6 0.03924173074936202 23 0.03860898867858245 4 0.03813882410037296 5 0.0376769220086982 8 0.037634061608017036 7 0.037555058699075175 1 0.03744563165371643 2 0.03694700573019007 3 0.034830707514288094 12 0.03298302468975417 24 0.029933577804098166 20 0.029286405812010776 15 0.023392499707990306 13 0.018136188933012328 14 0.015436082850722012 __DUMMY__ 0.013250154609156194 false 0.0 946 18 0.07355881943811057 14 0.06748630402113143 19 0.061924827702718885 10 0.061395471132727336 21 0.059382274361645816 20 0.05819862231119209 15 0.056530370697478495 22 0.054776287440996475 13 0.0501719225254108 11 0.04710739695708718 12 0.046068477423836525 24 0.042068246276797935 23 0.03974472335193529 17 0.03705442829250911 9 0.037006999285273505 16 0.03124121198522752 0 0.028410799763821413 4 0.02008744803946708 5 0.01969233224774614 3 0.016964505506001756 6 0.0167269627875718 8 0.01554780975350132 7 0.015513894820478021 1 0.015321028154121803 2 0.015066114690246003 __DUMMY__ 0.012952721032965655 false 0.0 704 10 0.08239 18 0.070616 22 0.066437 9 0.065063 11 0.0636 21 0.059465 14 0.056224 0 0.05352 13 0.050158 12 0.040271 4 0.034925 17 0.03477 5 0.034326 6 0.032591 19 0.032278 1 0.029997 8 0.029975 7 0.029935 3 0.029755 2 0.029501 15 0.025013 23 0.024115 20 0.013851 24 0.011225 10 0.08239 18 0.070616 22 0.066437 9 0.065063 11 0.0636 21 0.059465 14 0.056224 0 0.05352 13 0.050158 12 0.040271 4 0.034925 17 0.03477 5 0.034326 6 0.032591 19 0.032278 1 0.029997 8 0.029975 7 0.029935 3 0.029755 2 0.029501 15 0.025013 23 0.024115 20 0.013851 24 0.011225 10 0.06885081790739131 18 0.06541561617943316 22 0.06377417734997672 21 0.059154751458829445 11 0.05901353510062521 9 0.05731773857512379 0 0.04926942814267251 14 0.048794141891328684 13 0.044981505669462574 12 0.04265474852622176 19 0.03967952622686285 17 0.03877780561418364 4 0.034107371025059535 5 0.03359900560874061 6 0.032054925042280975 23 0.030559685622286274 8 0.029679449129308876 7 0.02967224151261683 1 0.029639754669323545 3 0.029332535735812022 2 0.029169050571758674 15 0.024822001165701907 20 0.02282911256982086 24 0.021219879833728108 16 0.012730047041603697 __DUMMY__ 0.0029011478298463997 false 1.0 705 22 0.056322 3 0.056009 4 0.055587 9 0.055566 5 0.05488 7 0.053694 8 0.053474 23 0.053462 1 0.053313 2 0.052761 6 0.052064 24 0.050738 21 0.045127 19 0.040046 18 0.038888 17 0.036609 20 0.033953 0 0.031417 11 0.026585 10 0.025777 16 0.022928 15 0.019335 12 0.016125 14 0.01534 22 0.056322 3 0.056009 4 0.055587 9 0.055566 5 0.05488 7 0.053694 8 0.053474 23 0.053462 1 0.053313 2 0.052761 6 0.052064 24 0.050738 21 0.045127 19 0.040046 18 0.038888 17 0.036609 20 0.033953 0 0.031417 11 0.026585 10 0.025777 16 0.022928 15 0.019335 12 0.016125 14 0.01534 22 0.0570600285252345 9 0.05374417235262669 4 0.04916788013673521 5 0.04856909376490742 3 0.04821159678175874 23 0.04783024405332457 7 0.04700422169551447 8 0.04692008736160808 21 0.04679558451911321 1 0.0467490303956981 6 0.046537105127852404 2 0.046233924495062674 18 0.04504402424633055 24 0.04465531503057299 19 0.042169457365776285 17 0.04112529283365484 0 0.03680139414947928 11 0.03384935946229757 10 0.0334326365256644 20 0.03282836305882291 16 0.026387131045765542 12 0.022782968556671196 15 0.0219559132981897 14 0.021183734330751883 13 0.00972906921483718 __DUMMY__ 0.0032323716717498844 false 1.0 947 13 0.06432362410498063 21 0.06404022982748768 12 0.06212474474203991 14 0.06103022740450938 18 0.06087193605613047 10 0.05318376825493962 22 0.05259657492972869 11 0.05170227092573073 19 0.049133025611856944 20 0.04372355982535249 23 0.0413708914351772 15 0.03878226833075612 9 0.03668892317245631 24 0.0365130799525234 17 0.03458028356750191 0 0.033046834990092096 4 0.02574451834312784 5 0.02537864238257356 16 0.02478818704419358 6 0.02407373734252204 8 0.020991158025470105 7 0.020948796680098983 1 0.02085862764130084 2 0.020553660033756162 3 0.0201109557121686 __DUMMY__ 0.012839473663524725 false 0.0 706 9 0.063578 22 0.063448 17 0.059714 0 0.058609 18 0.055261 10 0.046606 4 0.046182 8 0.045753 7 0.045611 6 0.045532 5 0.045472 1 0.045144 3 0.044961 2 0.044816 19 0.04369 11 0.042728 21 0.038724 16 0.037755 23 0.034401 24 0.027323 20 0.021429 15 0.017823 12 0.01378 14 0.011658 9 0.063578 22 0.063448 17 0.059714 0 0.058609 18 0.055261 10 0.046606 4 0.046182 8 0.045753 7 0.045611 6 0.045532 5 0.045472 1 0.045144 3 0.044961 2 0.044816 19 0.04369 11 0.042728 21 0.038724 16 0.037755 23 0.034401 24 0.027323 20 0.021429 15 0.017823 12 0.01378 14 0.011658 22 0.060439632584116415 9 0.060210770927633314 17 0.05626644287153271 0 0.05510365974501985 18 0.05338235230606182 10 0.045563425149682056 4 0.045549632756082696 5 0.044945432576078075 6 0.044900612418076954 8 0.04471362320793808 7 0.04462360023472727 1 0.04433283642938781 2 0.04388230648528435 3 0.043869051215663105 19 0.04293167047922299 11 0.042137504742865296 21 0.0400553687040522 16 0.036324498485285336 23 0.03620457257985347 24 0.028990503815218373 20 0.02318894070726238 15 0.020021495449351265 12 0.018550037953561735 14 0.01567480155299439 13 0.0066343099337897015 __DUMMY__ 0.001502916689258547 false 1.0 948 18 0.07334973441453135 21 0.07086131864554954 22 0.0669055403333465 10 0.06532138225684289 11 0.06433416187152542 19 0.06282705071569526 12 0.054875412037431855 14 0.051471103495343326 13 0.04788095411948983 20 0.044398373778986026 9 0.044027889457749984 17 0.04370957766288668 0 0.04364038927617377 24 0.03404834393841788 23 0.03376435946890857 16 0.030600738550514022 15 0.027514645818027497 4 0.01955693995407504 5 0.019152148706483768 6 0.01670019454779464 3 0.014702433517041463 7 0.014311098635533504 8 0.014256109525953346 1 0.01412574460091819 __DUMMY__ 0.013881267123851253 2 0.013783087546928231 false 0.0 707 9 0.0673 22 0.066237 0 0.055448 18 0.054219 17 0.053746 4 0.049928 5 0.049112 8 0.048447 7 0.048408 1 0.048403 6 0.048344 3 0.04802 2 0.047337 10 0.046508 21 0.043224 11 0.042526 19 0.039681 23 0.035397 24 0.028281 16 0.025533 20 0.017365 12 0.014301 14 0.011254 15 0.01098 9 0.0673 22 0.066237 0 0.055448 18 0.054219 17 0.053746 4 0.049928 5 0.049112 8 0.048447 7 0.048408 1 0.048403 6 0.048344 3 0.04802 2 0.047337 10 0.046508 21 0.043224 11 0.042526 19 0.039681 23 0.035397 24 0.028281 16 0.025533 20 0.017365 12 0.014301 14 0.011254 15 0.01098 22 0.06384670274120897 9 0.06133026871001105 18 0.05366990939833296 17 0.050002453178128944 0 0.04988233218636204 4 0.04644794621989033 21 0.0463228904022187 5 0.04579158767946755 10 0.04540422004875207 6 0.044573914102561195 3 0.04448992468198862 8 0.04444040700108995 7 0.04439631323827144 1 0.04430623426152461 2 0.04353960247063026 11 0.04304549516607198 19 0.042415891891746695 23 0.03772196019243696 24 0.03288003043344882 16 0.026949896576598388 20 0.0236771790540647 12 0.020218835294344956 14 0.01851239415595931 15 0.01661628761398881 13 0.007713859776559816 __DUMMY__ 0.0018034635243410057 false 1.0 949 18 0.06240930255089444 21 0.05961730148281034 14 0.055645665721285716 19 0.05485692610313013 22 0.05358853739581878 20 0.04996999919739556 10 0.04943429532327964 12 0.04858105221381244 13 0.047266909147085784 23 0.04656996503106166 11 0.04488791634061813 15 0.044113597825957904 24 0.043790140174070596 9 0.037060833718804496 17 0.036075725917634645 16 0.028797972601004845 0 0.02870851591987109 4 0.027601274500951928 5 0.02718267867032234 6 0.024918471079858298 3 0.02371737752598036 7 0.0231914716802617 8 0.02318057816450322 1 0.02297977477745618 2 0.02267822418841437 __DUMMY__ 0.013175492747715581 false 0.0 708 9 0.066106 22 0.062773 0 0.057615 17 0.055794 18 0.050984 4 0.050501 8 0.049784 7 0.049586 5 0.049518 6 0.049489 1 0.049411 3 0.049192 2 0.048749 10 0.045428 11 0.040847 19 0.038179 21 0.037493 23 0.034444 16 0.030265 24 0.027339 15 0.017634 20 0.016885 14 0.011749 12 0.010233 9 0.066106 22 0.062773 0 0.057615 17 0.055794 18 0.050984 4 0.050501 8 0.049784 7 0.049586 5 0.049518 6 0.049489 1 0.049411 3 0.049192 2 0.048749 10 0.045428 11 0.040847 19 0.038179 21 0.037493 23 0.034444 16 0.030265 24 0.027339 15 0.017634 20 0.016885 14 0.011749 12 0.010233 22 0.06297361796104561 9 0.060540710839375095 0 0.052689716085099064 17 0.05238036782222003 18 0.05160853387942577 4 0.04595981800319494 5 0.045196820504798084 10 0.044666548536137926 6 0.044608965767545854 21 0.04453787518324698 8 0.044318908908592414 7 0.04418578186043093 11 0.04413205285170355 1 0.04400056749038815 3 0.043945458263950826 2 0.04343124800661813 19 0.04168280297426122 23 0.036388540054513106 24 0.031320280330748816 16 0.030571485250600168 20 0.021859940035197038 12 0.019870791020063564 15 0.01909929902099805 14 0.018521550840213962 13 0.008912297834617009 __DUMMY__ 0.002596020675013694 false 1.0 709 9 0.070307 22 0.068167 0 0.065485 17 0.062052 18 0.054495 6 0.051101 4 0.051046 5 0.050341 7 0.049909 8 0.04978 1 0.049668 2 0.048721 3 0.047453 10 0.047106 11 0.045875 21 0.040064 19 0.034566 23 0.031586 16 0.028865 24 0.018984 12 0.01532 20 0.007583 15 0.006556 14 0.00497 9 0.070307 22 0.068167 0 0.065485 17 0.062052 18 0.054495 6 0.051101 4 0.051046 5 0.050341 7 0.049909 8 0.04978 1 0.049668 2 0.048721 3 0.047453 10 0.047106 11 0.045875 21 0.040064 19 0.034566 23 0.031586 16 0.028865 24 0.018984 12 0.01532 20 0.007583 15 0.006556 14 0.00497 22 0.06448944345410759 9 0.06379631341225069 0 0.06030136455266967 17 0.0588062580903724 18 0.052811607030227546 4 0.047243892929649825 6 0.047075162290356416 5 0.04662350620635322 11 0.0461424958549856 7 0.045922477576212435 8 0.04591075580834971 1 0.045728564453376766 10 0.045663539013024126 2 0.04500184860363098 3 0.04407608317401245 21 0.04239887861243968 19 0.038604912809505086 23 0.033736629846486975 16 0.03271429125720239 24 0.024220354006182814 12 0.02082867685354057 20 0.014751807877022396 15 0.01265672946822373 14 0.011639033148371766 13 0.007135941469665508 __DUMMY__ 0.0017194322017796786 false 1.0 950 14 0.07126423298827084 18 0.0701007933219168 15 0.06461927922489007 10 0.059646336604611 19 0.05611977684157924 13 0.05450013281092359 20 0.0541437470632386 21 0.05385697087139403 22 0.05012678988541481 12 0.04533533844547606 11 0.0438197843436913 23 0.03886088981132623 17 0.03843893812740473 24 0.03834329374561369 9 0.03629360395523255 16 0.03275667309902042 0 0.02945977737275282 4 0.021480218993963643 5 0.021128834072903373 6 0.019153831215391503 3 0.018043633648842317 8 0.017668803047031938 7 0.017580440023771512 1 0.01742642207970845 2 0.017170784177616975 __DUMMY__ 0.012660674228013546 false 0.0 951 17 0.0654507063772513 0 0.05789979359364243 16 0.0552098072850648 22 0.05422553714251061 18 0.053062951964050226 19 0.05031080341187143 9 0.04824498832431734 11 0.04506975635522657 10 0.04090888557193094 21 0.03984118801592093 6 0.03835117794614113 23 0.037317573181941004 4 0.037101391434418235 8 0.036800331916912205 7 0.036687436084304234 5 0.03662095211637135 1 0.03657300066945475 2 0.03606531613129287 3 0.033844114532691885 12 0.03168035108892237 20 0.02986333816478 24 0.02982695306263367 15 0.025405408695966407 13 0.016616247159947774 14 0.015267587991600646 __DUMMY__ 0.011754401780834861 false 0.0 710 9 0.067187 22 0.065277 0 0.061619 17 0.059673 18 0.054849 10 0.049229 4 0.047447 8 0.046907 6 0.046885 7 0.046801 5 0.046724 1 0.046434 3 0.045965 2 0.045941 11 0.044801 19 0.040863 21 0.038902 16 0.034248 23 0.031263 24 0.023879 20 0.016314 15 0.014936 12 0.012736 14 0.011118 9 0.067187 22 0.065277 0 0.061619 17 0.059673 18 0.054849 10 0.049229 4 0.047447 8 0.046907 6 0.046885 7 0.046801 5 0.046724 1 0.046434 3 0.045965 2 0.045941 11 0.044801 19 0.040863 21 0.038902 16 0.034248 23 0.031263 24 0.023879 20 0.016314 15 0.014936 12 0.012736 14 0.011118 9 0.06301928798687755 22 0.06275978551133317 0 0.05778936503642825 17 0.056726391134872184 18 0.05321302171002671 10 0.047382968838407626 4 0.04619499866505153 6 0.04559495586030476 5 0.045566720981626334 8 0.04521797897356991 7 0.04513538739679469 1 0.04488241210328768 11 0.044539256213171646 2 0.04434954803732184 3 0.044224639643350536 19 0.040984685995848945 21 0.04097223277712374 16 0.03393124514836758 23 0.03366592660438829 24 0.026359499268401317 20 0.01887558216183607 12 0.017977689577258583 15 0.01748061629228724 14 0.01517244558964279 13 0.006420446024717775 __DUMMY__ 0.001562912467703417 false 1.0 952 22 0.06059887043214611 18 0.05954627636299805 21 0.05867340802326984 10 0.055599472316958685 11 0.05434407859886311 9 0.0497918512597182 12 0.04526744942771045 19 0.045251626208468544 0 0.04478625874142817 14 0.041775511931379676 17 0.04154052181612954 13 0.04083940624390416 23 0.03650508545199796 4 0.03353628560095061 5 0.0331069999227047 6 0.03178810175133869 20 0.030313931230268144 24 0.030145209193429064 7 0.0295944393115775 8 0.029574983584186122 1 0.02948419238757133 3 0.029052241740102472 2 0.029038961163584547 15 0.023953647514596856 16 0.023382223751109103 __DUMMY__ 0.012508966033608042 false 0.0 953 18 0.07248809721177828 19 0.06901023811767068 21 0.06361687779673979 20 0.06172515374377533 22 0.05923790333245774 10 0.05433332515774953 14 0.049096966903341546 24 0.04905934410812235 11 0.048612735148278005 12 0.04682272967053224 23 0.04364258815449022 17 0.0412864881669213 15 0.03820600509893331 9 0.037475328756420255 13 0.03737955921731945 16 0.03640960617859665 0 0.030397479305049168 4 0.02185581763261898 5 0.02137312078147521 3 0.018992563650182027 6 0.018115672179858638 7 0.017214918531305225 8 0.017211456006449504 1 0.01697662397956151 2 0.01664826739885191 __DUMMY__ 0.012811133771521056 false 0.0 711 9 0.067925 22 0.06189 0 0.057161 17 0.053732 4 0.050707 3 0.050317 8 0.050253 7 0.050044 1 0.049947 5 0.049861 18 0.049674 6 0.049434 2 0.049304 10 0.048132 11 0.040207 19 0.037268 21 0.036133 23 0.031329 16 0.029438 24 0.026696 15 0.021269 20 0.0162 14 0.015943 12 0.007136 9 0.067925 22 0.06189 0 0.057161 17 0.053732 4 0.050707 3 0.050317 8 0.050253 7 0.050044 1 0.049947 5 0.049861 18 0.049674 6 0.049434 2 0.049304 10 0.048132 11 0.040207 19 0.037268 21 0.036133 23 0.031329 16 0.029438 24 0.026696 15 0.021269 20 0.0162 14 0.015943 12 0.007136 9 0.06338399298985928 22 0.060608309786815945 0 0.0540897680023889 17 0.052291657057915726 18 0.0498235757865805 4 0.048658994979560555 5 0.04797498914830438 8 0.047669186794149325 6 0.04756728333514255 7 0.047553653151088775 1 0.04742443169798394 3 0.04734014080377784 2 0.04681711328151303 10 0.046033049590845275 11 0.04107386361401751 21 0.039464552591957885 19 0.03826335661454021 23 0.03451428838263218 16 0.02999152183221034 24 0.02850319572449457 15 0.020717431512617956 20 0.018912047623808582 14 0.01787815427137004 12 0.014692173454226631 13 0.00621130356915161 __DUMMY__ 0.002541964403046701 false 1.0 712 21 0.087877 22 0.079538 19 0.068072 11 0.067262 18 0.066142 12 0.064369 23 0.048309 24 0.047651 17 0.047622 9 0.043808 10 0.04236 20 0.041877 0 0.041522 13 0.035019 16 0.028904 14 0.02777 4 0.025774 5 0.02447 6 0.021961 7 0.018388 8 0.018287 3 0.018032 1 0.017795 2 0.01719 21 0.087877 22 0.079538 19 0.068072 11 0.067262 18 0.066142 12 0.064369 23 0.048309 24 0.047651 17 0.047622 9 0.043808 10 0.04236 20 0.041877 0 0.041522 13 0.035019 16 0.028904 14 0.02777 4 0.025774 5 0.02447 6 0.021961 7 0.018388 8 0.018287 3 0.018032 1 0.017795 2 0.01719 21 0.08398687288601585 22 0.07295406681699497 12 0.06538756332301274 11 0.06466165232739876 19 0.06342917536276722 18 0.061623572906547415 24 0.048393842029969845 23 0.04699394902671252 20 0.04349790302278778 13 0.043142278571879085 10 0.04262976483282365 17 0.042267454603342136 9 0.04044845512510794 0 0.03744711681846736 14 0.03668653459832763 16 0.028292488976636897 4 0.02574766714190005 5 0.024860936114218246 6 0.022263318998379588 7 0.01903051049790125 3 0.019021068855681274 8 0.01895195074207998 1 0.01862095984306989 2 0.0181352271350697 15 0.00887572314752741 __DUMMY__ 0.002649946295380841 false 1.0 954 14 0.07239181239038338 13 0.0704313174683567 21 0.06660485817047687 18 0.06654267382767967 12 0.06410647994777084 10 0.05813875836456383 19 0.053792747174107376 11 0.053128393351060704 22 0.05281044767895764 20 0.05025032530699596 15 0.049414797052195945 23 0.040162128159893354 24 0.03801812177542709 9 0.033502504337911396 17 0.03283095302152115 0 0.02935994662108074 16 0.025401271438004726 4 0.01998004958950037 5 0.0196203766729393 6 0.01774326748136162 8 0.01471478354559742 7 0.014645568346353837 1 0.014519293103918042 3 0.014365810311086687 2 0.014284717927714427 __DUMMY__ 0.013238596935140786 false 0.0 955 9 0.058323037607709384 22 0.05699493684876167 17 0.0488191551275541 0 0.048358894825859824 18 0.048085342333254066 4 0.04803352793892523 5 0.04750073041228436 6 0.04697465857231377 8 0.046704081458506116 7 0.046679203107827166 1 0.04653958223465692 3 0.04627611567076982 2 0.04595877609726492 10 0.041901410559759426 21 0.04046240684487633 23 0.038925911091032765 11 0.03824716921853394 19 0.037971306017907054 24 0.0316695712185693 16 0.02938633771866681 20 0.02257610433848002 15 0.021569187117642212 12 0.01974583361036788 14 0.01953469517122847 __DUMMY__ 0.012014027577964971 13 0.010747997279283694 false 0.0 713 17 0.09424 0 0.091465 16 0.083558 11 0.06215 18 0.053734 22 0.053602 19 0.049324 9 0.048684 12 0.048011 10 0.047606 6 0.038005 21 0.034525 7 0.032604 8 0.032594 1 0.032149 2 0.03192 4 0.031155 5 0.030503 13 0.027863 23 0.026624 3 0.023305 15 0.013788 20 0.009872 24 0.002722 17 0.09424 0 0.091465 16 0.083558 11 0.06215 18 0.053734 22 0.053602 19 0.049324 9 0.048684 12 0.048011 10 0.047606 6 0.038005 21 0.034525 7 0.032604 8 0.032594 1 0.032149 2 0.03192 4 0.031155 5 0.030503 13 0.027863 23 0.026624 3 0.023305 15 0.013788 20 0.009872 24 0.002722 17 0.07858615040720236 0 0.07494694259246293 16 0.0666906692655871 22 0.05412281543877592 11 0.05354446737833413 18 0.0522167424393621 9 0.049934776823680624 19 0.04750717582560713 10 0.04431800309423023 6 0.039988417116556096 12 0.03953907315140831 21 0.03711370496732449 8 0.03649173698463201 7 0.03644730028522227 1 0.03618537114861468 4 0.035952442587810066 2 0.03579533570129321 5 0.03539748522541678 23 0.03207907117390207 3 0.03037190491260414 13 0.022510355328189104 15 0.01783446579779535 20 0.017571995766250844 24 0.015347531500269785 14 0.007243577189771081 __DUMMY__ 0.0022624878976971927 false 1.0 714 9 0.070457 22 0.055659 4 0.055496 8 0.055238 3 0.055215 7 0.05487 1 0.054613 5 0.054557 2 0.054297 6 0.054268 0 0.052635 10 0.049947 18 0.049235 17 0.048956 23 0.032798 15 0.031993 19 0.029139 11 0.028878 21 0.028152 14 0.023094 24 0.022455 16 0.021874 20 0.013625 13 0.002548 9 0.070457 22 0.055659 4 0.055496 8 0.055238 3 0.055215 7 0.05487 1 0.054613 5 0.054557 2 0.054297 6 0.054268 0 0.052635 10 0.049947 18 0.049235 17 0.048956 23 0.032798 15 0.031993 19 0.029139 11 0.028878 21 0.028152 14 0.023094 24 0.022455 16 0.021874 20 0.013625 13 0.002548 9 0.06441360341022788 22 0.05571480090835574 4 0.05257678876123337 5 0.05186244832460758 8 0.051841269496161316 7 0.051664418419642893 3 0.05153202058337567 6 0.051522654946397524 1 0.05148373776910653 2 0.05100840169606481 0 0.05029872310680654 17 0.04868418447157408 18 0.048133374846893714 10 0.04538305248517908 23 0.03653903152226319 21 0.033832392684471 11 0.032915828845930306 19 0.032772157858429886 24 0.027181754904571632 15 0.026723100691234777 16 0.025360679274199546 14 0.021075783676195496 20 0.017923473590225756 12 0.010089332572120876 13 0.006958374448227361 __DUMMY__ 0.002508610706503344 false 1.0 956 9 0.058323037607709384 22 0.05699493684876167 17 0.0488191551275541 0 0.048358894825859824 18 0.048085342333254066 4 0.04803352793892523 5 0.04750073041228436 6 0.04697465857231377 8 0.046704081458506116 7 0.046679203107827166 1 0.04653958223465692 3 0.04627611567076982 2 0.04595877609726492 10 0.041901410559759426 21 0.04046240684487633 23 0.038925911091032765 11 0.03824716921853394 19 0.037971306017907054 24 0.0316695712185693 16 0.02938633771866681 20 0.02257610433848002 15 0.021569187117642212 12 0.01974583361036788 14 0.01953469517122847 __DUMMY__ 0.012014027577964971 13 0.010747997279283694 false 0.0 715 9 0.065482 22 0.059825 0 0.05326 3 0.051535 4 0.051109 17 0.050935 8 0.050917 7 0.050697 5 0.050486 1 0.050459 2 0.050038 6 0.049633 18 0.048072 10 0.046171 19 0.037386 11 0.03681 21 0.034917 23 0.033781 16 0.029724 24 0.029549 15 0.025808 20 0.019601 14 0.018288 12 0.005518 9 0.065482 22 0.059825 0 0.05326 3 0.051535 4 0.051109 17 0.050935 8 0.050917 7 0.050697 5 0.050486 1 0.050459 2 0.050038 6 0.049633 18 0.048072 10 0.046171 19 0.037386 11 0.03681 21 0.034917 23 0.033781 16 0.029724 24 0.029549 15 0.025808 20 0.019601 14 0.018288 12 0.005518 9 0.06170826524393609 22 0.05878651696291407 0 0.050897008664781244 17 0.0500708769582778 4 0.04923331056129882 5 0.04865697278091925 18 0.04857191672597149 3 0.04842466209176347 8 0.04837329461373421 7 0.04825788922667836 1 0.04807019101568308 6 0.04796255002849875 2 0.047563990865658 10 0.044300754747504514 21 0.03849192779668483 11 0.038220276187578776 19 0.03819639111184564 23 0.03654405755119813 24 0.030794415598011188 16 0.02978133492899028 15 0.02355570374873074 20 0.02143572155147902 14 0.019285083478925047 12 0.013673145059987155 13 0.006155193143516319 __DUMMY__ 0.0029885493554338513 false 1.0 957 17 0.0627079494197263 0 0.0605373438182468 22 0.05576572265370327 9 0.05390811425126648 18 0.05061374989031695 16 0.04683942985158953 11 0.04583099571925307 10 0.04319077461700807 19 0.04295803843444871 6 0.04289233512945734 4 0.04163776149742645 8 0.04125645239265521 7 0.04118493074299628 5 0.04114555756046045 1 0.041079439362622136 2 0.04052232470512773 21 0.03884702401453222 3 0.038248558138450406 23 0.035285803459328906 12 0.028701153139400394 24 0.024498645231054793 20 0.02091155434798016 15 0.020054261837551123 13 0.015867695704026564 14 0.01382322571495538 __DUMMY__ 0.011691158366415415 false 0.0 958 9 0.058323037607709384 22 0.05699493684876167 17 0.0488191551275541 0 0.048358894825859824 18 0.048085342333254066 4 0.04803352793892523 5 0.04750073041228436 6 0.04697465857231377 8 0.046704081458506116 7 0.046679203107827166 1 0.04653958223465692 3 0.04627611567076982 2 0.04595877609726492 10 0.041901410559759426 21 0.04046240684487633 23 0.038925911091032765 11 0.03824716921853394 19 0.037971306017907054 24 0.0316695712185693 16 0.02938633771866681 20 0.02257610433848002 15 0.021569187117642212 12 0.01974583361036788 14 0.01953469517122847 __DUMMY__ 0.012014027577964971 13 0.010747997279283694 false 0.0 716 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.07414403467960223 20 0.062251804027643055 23 0.06190176586854262 21 0.06160206627401497 19 0.05936260591475271 22 0.052989310274947965 18 0.0471169107881601 12 0.04380964639026896 4 0.039011389162361625 5 0.03833841410793378 3 0.03733778564284998 8 0.03478499458926393 6 0.034648127931322534 7 0.03461616524737752 1 0.03447789171389161 2 0.034110153531051186 17 0.03322291730171956 9 0.0330287577142992 11 0.032696326159227206 16 0.03261082453359763 14 0.028829198304144515 15 0.02501257131661593 13 0.021591154431739958 10 0.021015442914823424 0 0.015773093394898945 __DUMMY__ 0.005716647784948849 false 1.0 959 9 0.058323037607709384 22 0.05699493684876166 17 0.0488191551275541 0 0.04835889482585981 18 0.048085342333254066 4 0.04803352793892523 5 0.04750073041228436 6 0.04697465857231377 8 0.046704081458506116 7 0.046679203107827166 1 0.04653958223465692 3 0.04627611567076982 2 0.04595877609726492 10 0.041901410559759426 21 0.04046240684487633 23 0.038925911091032765 11 0.03824716921853394 19 0.037971306017907054 24 0.0316695712185693 16 0.02938633771866681 20 0.02257610433848002 15 0.021569187117642212 12 0.01974583361036788 14 0.01953469517122847 __DUMMY__ 0.012014027577964971 13 0.010747997279283694 false 0.0 717 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07456712979727485 20 0.06233906592109833 23 0.06201613391813458 21 0.06158963353403219 19 0.05941311524361339 22 0.05290475197889643 18 0.047096215077309184 12 0.043809166839431826 4 0.039040314929525755 5 0.03828740046926441 3 0.03722934450770466 8 0.034752359529099795 6 0.034649030860452165 7 0.034568369284343856 1 0.034389207109577984 2 0.03399252540576626 17 0.03312917961382628 9 0.03296304495822734 11 0.032722498285783594 16 0.032671912896797994 14 0.02883607641407162 15 0.02501164097795012 13 0.02155393119664295 10 0.020978219944221912 0 0.01577308614836681 __DUMMY__ 0.00571664515858566 false 1.0 718 24 0.094962 23 0.075706 20 0.070914 21 0.057678 19 0.055927 4 0.049822 3 0.049736 5 0.048965 22 0.046973 8 0.045624 7 0.045427 1 0.045227 2 0.04488 6 0.044253 12 0.037325 18 0.034503 9 0.028924 16 0.028558 17 0.024777 15 0.023399 14 0.020034 11 0.016458 13 0.00893 10 9.96E-4 24 0.094962 23 0.075706 20 0.070914 21 0.057678 19 0.055927 4 0.049822 3 0.049736 5 0.048965 22 0.046973 8 0.045624 7 0.045427 1 0.045227 2 0.04488 6 0.044253 12 0.037325 18 0.034503 9 0.028924 16 0.028558 17 0.024777 15 0.023399 14 0.020034 11 0.016458 13 0.00893 10 9.96E-4 24 0.07353808839265386 20 0.06232855644758542 23 0.06185860844496909 21 0.06153134326845341 19 0.05938101015022871 22 0.05327096157543239 18 0.04728783818945585 12 0.043779803952818004 4 0.03902748692764052 5 0.03835864638067656 3 0.03729048211734782 8 0.03471931292808222 6 0.03469132971224138 7 0.0346239913600951 1 0.03442415493748227 2 0.03406744276341361 17 0.03327392863708033 9 0.033041636762511664 11 0.032707367358426026 16 0.03259797564178929 14 0.028922934059588214 15 0.025016258200566462 13 0.021620567491821455 10 0.02115052324688806 0 0.015773100641437734 __DUMMY__ 0.005716650411314451 false 1.0 719 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.07414403467960223 20 0.062251804027643055 23 0.06190176586854262 21 0.06160206627401497 19 0.05936260591475271 22 0.052989310274947965 18 0.0471169107881601 12 0.04380964639026896 4 0.039011389162361625 5 0.03833841410793378 3 0.03733778564284998 8 0.03478499458926393 6 0.034648127931322534 7 0.03461616524737752 1 0.03447789171389161 2 0.034110153531051186 17 0.03322291730171955 9 0.0330287577142992 11 0.032696326159227206 16 0.03261082453359763 14 0.028829198304144515 15 0.02501257131661593 13 0.021591154431739958 10 0.021015442914823424 0 0.015773093394898945 __DUMMY__ 0.005716647784948849 false 1.0 960 18 0.07329636258782107 21 0.07081402988911167 22 0.0668802595062357 10 0.06528342552517973 11 0.0642952329405119 19 0.06275991430177341 12 0.05483815985472529 14 0.051433616300028934 13 0.04785344692157265 20 0.044344732167190065 9 0.044048173502440814 17 0.04370032758422588 0 0.043643485878846644 24 0.03403289528463208 23 0.03377366025745068 16 0.030573035858052947 15 0.027500646547824553 4 0.01960847461630749 5 0.019203603009445045 6 0.01675593413849941 3 0.014755478006329087 7 0.014367630109285075 8 0.01431277480154044 1 0.01418256074655947 __DUMMY__ 0.01390260876780317 2 0.013839530896606951 false 0.0 961 18 0.0650219803702895 22 0.05889627548636637 10 0.05721201153390342 21 0.054166733554982194 19 0.052506575078255215 11 0.04886379848292045 9 0.04885398074047282 17 0.0444722241588566 0 0.042925403346131735 14 0.04131353124217333 20 0.03904902419704736 12 0.038030158300683535 23 0.03709258930614144 24 0.03350100527890611 13 0.033310392068724826 4 0.03148449763823563 5 0.03107957526810995 15 0.03077991482130584 16 0.029729254315461622 6 0.029363123395842256 3 0.028380603475540125 7 0.02813196629257735 8 0.02812338397010596 1 0.028027800462499957 2 0.027593031352122724 __DUMMY__ 0.012091165862343817 false 0.0 962 18 0.0733165385083487 21 0.07085339878888962 22 0.06689966599425635 10 0.06530300735780843 11 0.06433170497801052 19 0.06278446774888696 12 0.05487764295315269 14 0.051457682918214315 13 0.04788761597378945 20 0.04435760406266026 9 0.044037837474947474 17 0.04369925190265818 0 0.04364583177370016 24 0.034034660130182914 23 0.03376657563094487 16 0.030575461906670338 15 0.027493552918008136 4 0.019581508289736795 5 0.01917663033857535 6 0.01672724280178943 3 0.014724416546038125 7 0.014336242692605479 8 0.014281280220391782 1 0.01415098454106556 __DUMMY__ 0.013891033606419896 2 0.013808159942248316 false 0.0 720 24 0.087795 23 0.076355 20 0.065249 21 0.062624 19 0.050559 22 0.0489 4 0.048058 5 0.047304 3 0.045572 12 0.043802 8 0.042591 6 0.042472 7 0.042126 1 0.04198 2 0.041591 18 0.039084 9 0.028887 14 0.027699 15 0.025423 11 0.024084 17 0.021234 13 0.020351 16 0.019149 10 0.007108 24 0.087795 23 0.076355 20 0.065249 21 0.062624 19 0.050559 22 0.0489 4 0.048058 5 0.047304 3 0.045572 12 0.043802 8 0.042591 6 0.042472 7 0.042126 1 0.04198 2 0.041591 18 0.039084 9 0.028887 14 0.027699 15 0.025423 11 0.024084 17 0.021234 13 0.020351 16 0.019149 10 0.007108 24 0.07036329717267394 21 0.06933353841614247 23 0.061029250230339824 20 0.058926446523041014 19 0.058368905860514415 22 0.058049658330095275 12 0.05056530656929928 18 0.05048848783749002 11 0.04179472145814134 4 0.03610092977688505 5 0.03548328287690063 14 0.03449361374487959 9 0.03299031890715842 3 0.032756397392872505 6 0.03142135363503361 17 0.03094221488771161 8 0.030544105513507145 7 0.030357108678478604 1 0.030152064046089975 2 0.029784816482598876 13 0.029588119081144552 16 0.026800641273055627 10 0.025720897140917538 15 0.023416608843755238 0 0.01634822521027117 __DUMMY__ 0.004179690111002355 false 1.0 721 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08876984145839532 19 0.07864860925855974 24 0.0724399180015512 18 0.06437504656945436 21 0.06262396256104645 23 0.061674865113105846 12 0.06100415649302087 16 0.05140881892830189 14 0.044157067790785993 22 0.04373216114675089 13 0.04278100934947695 15 0.04240143369070327 17 0.037266344455892275 11 0.03560141092935125 10 0.03226932660505082 4 0.02105565826301954 5 0.020417428623320463 3 0.01895847164159371 6 0.017592738107594603 7 0.017109633915836073 8 0.01708512337338235 9 0.01699124893939805 1 0.016778752388078577 2 0.016629106095094687 0 0.013041901794999079 __DUMMY__ 0.005185964506235551 false 1.0 963 18 0.05762709998743342 22 0.0552138726269791 9 0.04950327820379756 10 0.048431980681269284 21 0.04838002022519037 19 0.047355447478972766 17 0.04414058038934682 11 0.04167633463567129 23 0.04120868594716552 0 0.041135726910389095 4 0.038199801646112586 5 0.03777773791320723 20 0.0366290567589869 6 0.03642894945415027 24 0.036196282751673116 3 0.03568810626052243 7 0.03560615795661497 8 0.03559825066381538 1 0.0355195377574264 2 0.03503482170002732 14 0.033563468964115876 12 0.032878777125785234 16 0.029683103163068398 15 0.028665868060435994 13 0.02629981289260388 __DUMMY__ 0.011557239845238808 false 0.0 722 20 0.086652 23 0.084587 24 0.082497 12 0.071309 19 0.065587 16 0.053278 21 0.052774 13 0.048437 18 0.040362 15 0.03871 5 0.034226 4 0.033632 6 0.032103 3 0.031897 2 0.03177 1 0.031076 7 0.030579 8 0.03056 14 0.030417 17 0.029538 11 0.028079 22 0.023592 10 0.005474 0 0.002863 20 0.086652 23 0.084587 24 0.082497 12 0.071309 19 0.065587 16 0.053278 21 0.052774 13 0.048437 18 0.040362 15 0.03871 5 0.034226 4 0.033632 6 0.032103 3 0.031897 2 0.03177 1 0.031076 7 0.030579 8 0.03056 14 0.030417 17 0.029538 11 0.028079 22 0.023592 10 0.005474 0 0.002863 20 0.07280590170851822 23 0.0695742678819528 24 0.06861994137263289 12 0.06669306694256498 19 0.0637134048248741 21 0.05989599553516092 18 0.04947047513290982 13 0.04831445555598306 16 0.04406991387694496 22 0.038151542666466094 14 0.03665490572063434 11 0.036492753544716636 17 0.03313760510277053 15 0.033093137413162395 5 0.030682539873472317 4 0.03066704746253242 6 0.028588377425372822 3 0.027478105850906438 2 0.027028750586957435 1 0.02684791157329932 7 0.026726213465157255 8 0.026716866837176136 10 0.021790350507494876 9 0.015288718943410884 0 0.014281129575146616 __DUMMY__ 0.003216620619781862 false 1.0 965 21 0.07893293607535713 12 0.06985768169094193 22 0.061950499666924175 11 0.05891826369143161 19 0.05833181746664929 18 0.05567250213808643 13 0.0549357150293288 24 0.050198695572798574 23 0.04992200952991224 20 0.047325741087491796 14 0.04563613319270445 10 0.0393856417464254 17 0.035033720946987014 9 0.03255979811682279 0 0.02993807659972009 16 0.02793122057572335 4 0.02535088385223253 5 0.024816226354460343 6 0.02252437235125848 7 0.01928661086883558 8 0.01920355563410919 3 0.01909868367348365 1 0.019026852248761862 2 0.018653964113989195 15 0.01843029466614805 __DUMMY__ 0.017078103109416105 false 0.0 723 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.074520342554407 20 0.062297592882176796 23 0.06196934576418213 21 0.06159013842539477 19 0.05941159455124632 22 0.05293819703297858 18 0.04711742780220153 12 0.04377997778874793 4 0.03903266830744244 5 0.03827926894277225 3 0.03722168536591018 8 0.03474570810853235 6 0.03464195950721137 7 0.034561954762619855 1 0.034382417642240155 2 0.03398493746592158 17 0.033154712135678215 9 0.03300362405239814 11 0.032747061998465346 16 0.032669882906580794 14 0.028836305831285672 15 0.02500165920143801 13 0.02153357501732816 10 0.021021622116414052 0 0.015818235890682892 __DUMMY__ 0.005738103945743455 false 1.0 966 21 0.06713992547650496 19 0.06555831173705634 20 0.06131305007018899 18 0.06085835939930205 24 0.056563611506974615 22 0.05591336823539449 12 0.05578228587602191 23 0.05199829309305037 11 0.0459781971756971 14 0.040588359700691724 13 0.039641267040565774 10 0.039403663059586265 17 0.03763900271759699 16 0.03580112970820644 9 0.032271980547009305 15 0.02751564102046912 4 0.026466750450305727 5 0.025982312802172565 0 0.025472703764929393 6 0.023037290201547697 3 0.02295744596646058 8 0.021639029803467137 7 0.0216356993753142 1 0.021424739227039497 2 0.021120040689950565 __DUMMY__ 0.01629754135449598 false 0.0 724 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.074520342554407 20 0.062297592882176796 23 0.06196934576418213 21 0.06159013842539477 19 0.05941159455124632 22 0.05293819703297858 18 0.04711742780220153 12 0.04377997778874793 4 0.03903266830744244 5 0.03827926894277225 3 0.03722168536591018 8 0.03474570810853235 6 0.03464195950721137 7 0.034561954762619855 1 0.034382417642240155 2 0.03398493746592158 17 0.033154712135678215 9 0.03300362405239814 11 0.032747061998465346 16 0.032669882906580794 14 0.028836305831285672 15 0.02500165920143801 13 0.02153357501732816 10 0.021021622116414052 0 0.015818235890682892 __DUMMY__ 0.005738103945743455 false 1.0 967 18 0.07338374820915104 21 0.07094865224852429 22 0.06695009096262643 10 0.06537487579252085 11 0.06442751859878293 19 0.06285028459750108 12 0.054970454170664096 14 0.051533379974750916 13 0.047978515406160195 20 0.04439095660717947 9 0.04401649599532953 17 0.04369872354756769 0 0.04365753449633026 24 0.03402671406585389 23 0.03373673579594363 16 0.03058007056601048 15 0.02748951248059339 4 0.019504924803348974 5 0.01910010602926578 6 0.016646083979837387 3 0.014637967623603785 7 0.014248513016650114 8 0.01419335388096179 1 0.01406284053040718 __DUMMY__ 0.013871352802829202 2 0.013720593817605462 false 0.0 725 21 0.118806 12 0.105273 19 0.080944 11 0.080485 22 0.076876 13 0.072447 24 0.068431 18 0.060451 20 0.060427 23 0.060081 14 0.048438 17 0.034488 16 0.032445 10 0.028254 0 0.02363 9 0.018677 4 0.010484 5 0.010002 6 0.00581 15 0.00152 3 7.08E-4 1 5.88E-4 7 4.35E-4 8 3.01E-4 21 0.118806 12 0.105273 19 0.080944 11 0.080485 22 0.076876 13 0.072447 24 0.068431 18 0.060451 20 0.060427 23 0.060081 14 0.048438 17 0.034488 16 0.032445 10 0.028254 0 0.02363 9 0.018677 4 0.010484 5 0.010002 6 0.00581 15 0.00152 3 7.08E-4 1 5.88E-4 7 4.35E-4 8 3.01E-4 21 0.09854345846242907 12 0.08649138579916678 19 0.0711152874282552 11 0.07034474926719017 22 0.07020813127857681 13 0.062422779109588634 18 0.05984667098143527 24 0.058797050765063655 20 0.05481389139303109 23 0.05360902553047827 14 0.046977314361130944 10 0.03604725822203439 17 0.03587753727022157 16 0.03138034322382345 0 0.027953799742142318 9 0.026541138495485464 4 0.017208395722526897 5 0.016712124157990015 6 0.013382604687109393 15 0.010301631934574437 3 0.009430943586818254 7 0.00922838329017246 1 0.009162668124471033 8 0.009117659528423836 2 0.008699048964635688 __DUMMY__ 0.005786718673224775 false 1.0 968 18 0.07338374820915104 21 0.07094865224852429 22 0.06695009096262643 10 0.06537487579252085 11 0.06442751859878293 19 0.06285028459750108 12 0.054970454170664096 14 0.051533379974750916 13 0.047978515406160195 20 0.04439095660717947 9 0.04401649599532953 17 0.04369872354756769 0 0.04365753449633026 24 0.03402671406585389 23 0.03373673579594363 16 0.03058007056601048 15 0.02748951248059339 4 0.019504924803348974 5 0.01910010602926578 6 0.016646083979837387 3 0.014637967623603785 7 0.014248513016650114 8 0.01419335388096179 1 0.01406284053040718 __DUMMY__ 0.013871352802829202 2 0.013720593817605462 false 0.0 726 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.074520342554407 20 0.062297592882176796 23 0.06196934576418213 21 0.06159013842539477 19 0.05941159455124632 22 0.05293819703297858 18 0.04711742780220153 12 0.04377997778874793 4 0.03903266830744244 5 0.03827926894277225 3 0.03722168536591018 8 0.03474570810853235 6 0.03464195950721137 7 0.034561954762619855 1 0.034382417642240155 2 0.03398493746592158 17 0.033154712135678215 9 0.03300362405239814 11 0.032747061998465346 16 0.032669882906580794 14 0.028836305831285672 15 0.02500165920143801 13 0.02153357501732816 10 0.021021622116414052 0 0.015818235890682892 __DUMMY__ 0.005738103945743455 false 1.0 969 18 0.05680918430226827 17 0.05600733788724557 22 0.054804240712428655 19 0.05477782712062216 16 0.047827143503596584 0 0.04720471813660795 21 0.047069582905104726 11 0.04445151370193621 9 0.044324698682192055 10 0.04230294751518616 23 0.04137850928380061 20 0.04003763841882476 24 0.037555478226477645 12 0.036387943936670435 4 0.03414581615040143 6 0.033731240361559806 5 0.03366434364333984 8 0.03245888037962724 7 0.03242466275024286 1 0.03227233051972688 2 0.0317959169860061 3 0.031122496567274352 15 0.028267075099416773 14 0.0246033180299967 13 0.022467479691205994 __DUMMY__ 0.01210767548824028 false 0.0 727 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.074520342554407 20 0.062297592882176796 23 0.06196934576418213 21 0.06159013842539477 19 0.05941159455124632 22 0.05293819703297858 18 0.04711742780220153 12 0.04377997778874793 4 0.03903266830744244 5 0.03827926894277225 3 0.03722168536591018 8 0.03474570810853235 6 0.03464195950721137 7 0.034561954762619855 1 0.034382417642240155 2 0.03398493746592158 17 0.033154712135678215 9 0.03300362405239814 11 0.032747061998465346 16 0.032669882906580794 14 0.028836305831285672 15 0.02500165920143801 13 0.02153357501732816 10 0.021021622116414052 0 0.015818235890682892 __DUMMY__ 0.005738103945743455 false 1.0 728 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.08881078645696834 19 0.07871729416007751 24 0.07257621437015561 18 0.064660245662099 21 0.06266797874700981 23 0.06186621530072958 12 0.06082455297677017 16 0.051248412795509096 14 0.0441157111507595 22 0.04391024899787842 13 0.04275069881208152 15 0.04238005487336332 17 0.037281147634001546 11 0.035468215175895934 10 0.03225204408149008 4 0.02104707946716792 5 0.02034082579972328 3 0.01889445056147204 6 0.017560706032776777 7 0.01714608228483085 8 0.016960577283152586 9 0.01687887731444508 1 0.01685581265896259 2 0.016559843211770408 0 0.013039282928979948 __DUMMY__ 0.00518664126192891 false 1.0 729 16 0.115809 17 0.096155 19 0.087725 20 0.075418 18 0.064461 0 0.054793 24 0.051973 23 0.050876 12 0.045769 15 0.043946 22 0.039009 21 0.032891 11 0.032156 6 0.023024 10 0.021102 8 0.020954 7 0.020943 1 0.020656 2 0.020078 9 0.019444 4 0.018766 5 0.01777 3 0.015051 13 0.011232 16 0.115809 17 0.096155 19 0.087725 20 0.075418 18 0.064461 0 0.054793 24 0.051973 23 0.050876 12 0.045769 15 0.043946 22 0.039009 21 0.032891 11 0.032156 6 0.023024 10 0.021102 8 0.020954 7 0.020943 1 0.020656 2 0.020078 9 0.019444 4 0.018766 5 0.01777 3 0.015051 13 0.011232 16 0.08398483707435687 17 0.07506602910245104 19 0.07497778284594103 20 0.0640548519194587 18 0.0627806756059702 24 0.04865169085056015 23 0.047689803884744926 0 0.047113193676970276 22 0.045700432531062915 12 0.04293271559007524 15 0.04272826669542595 21 0.041187188774965564 11 0.037323893170603736 10 0.03168351420328385 9 0.028383065975466373 6 0.025214051687394632 8 0.0236738851419111 4 0.0236275282997802 7 0.023611605960875578 1 0.023384184044068352 5 0.022915639613603073 2 0.022915100904610474 3 0.020416950574583013 13 0.019754949936165226 14 0.017696256494956514 __DUMMY__ 0.002531905440715041 false 1.0 970 17 0.0627043158050039 0 0.06032470267238648 22 0.05595364838150214 9 0.05431116731223109 18 0.0500830445727767 16 0.04675059236536406 11 0.04525751022864698 6 0.04341760102307339 19 0.042793984469430266 10 0.042442827902572214 4 0.042217166042367554 8 0.04187599073047677 7 0.04180209269578794 5 0.041720799197309415 1 0.041689448873137115 2 0.04112915860140448 3 0.038948798281275177 21 0.038643404509304466 23 0.03544030198957082 12 0.027812821975333173 24 0.02499897170483496 20 0.020770442062113276 15 0.019753408272989905 13 0.014625470200000008 14 0.013084801768644851 __DUMMY__ 0.011447528362462583 false 0.0 971 17 0.06344096769986514 0 0.060301042641607606 22 0.056694391470633695 9 0.0539002089236647 18 0.05067791601928578 16 0.04806635305725114 11 0.04588982226649367 19 0.04427979410475867 6 0.042445846253841055 10 0.04234651255156898 4 0.04132836335320782 8 0.040961385949534274 7 0.040878758956623296 5 0.04083399379715263 1 0.04076111568504579 2 0.040209701964934376 21 0.039334723332673995 3 0.03813170719849641 23 0.03520333603650951 12 0.027782520703019127 24 0.025860100052023167 20 0.02183879809416109 15 0.020230041919161813 13 0.013931982155492474 14 0.01313782305588364 __DUMMY__ 0.011532792757109844 false 0.0 730 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08876491000036382 19 0.07863139845795558 24 0.07247657083256821 18 0.06436861272958823 21 0.06267518444946468 23 0.061681163077126136 12 0.06099700435854872 16 0.05130515595031535 14 0.0441934280183763 22 0.04376722681112812 13 0.04278063952418982 15 0.04237058346513986 17 0.03719096591797889 11 0.035607076655369 10 0.0322775904948804 4 0.02107184977861969 5 0.020433131977138627 3 0.01897727339171863 6 0.017595251600055588 7 0.017115778513359266 8 0.017091435409838738 9 0.017015139608131183 1 0.01678458779661673 2 0.01663464199454079 0 0.012992064890563263 __DUMMY__ 0.0052013342964242456 false 1.0 972 21 0.08098752768638383 12 0.0683421180596846 19 0.06659122976288086 22 0.06542233582924768 18 0.06196481477569021 11 0.061749303067667 20 0.05323566067219728 24 0.051333609333279816 13 0.049885301673393015 23 0.04629321694287478 10 0.0446361442626281 14 0.044018514685449345 17 0.038647504541672345 9 0.03355720716929445 16 0.033208094262796126 0 0.03217105428543907 4 0.020994241631360384 5 0.02052889436652617 6 0.017580256362768824 15 0.01745141136167672 __DUMMY__ 0.017382205628790764 3 0.01550128489692337 7 0.01484619821917948 8 0.014769666119698077 1 0.014613299535871864 2 0.014288904866625875 false 0.0 973 18 0.0734250294079324 19 0.06672118815804857 21 0.06231948299623962 22 0.05872174243325833 20 0.05839584380144172 10 0.058352094115211584 14 0.0517889439265686 11 0.0497767459999133 12 0.04670314962462346 24 0.04471317392610106 23 0.041314063982643624 17 0.04130817999507518 13 0.04037000823847039 15 0.039587498426361487 9 0.03891092283812235 16 0.03486069556341554 0 0.03282680653680505 4 0.021563144167252458 5 0.021104714084071666 3 0.018522045708595065 6 0.018119533865344064 8 0.017028140308911255 7 0.017023860463574233 1 0.0168197050800422 2 0.016512412199179555 __DUMMY__ 0.013210874152797283 false 0.0 731 16 0.105991 17 0.096778 19 0.079123 0 0.076846 18 0.061741 11 0.054192 22 0.05224 20 0.042535 10 0.041759 12 0.038745 9 0.035881 23 0.035662 21 0.034079 15 0.030098 24 0.026077 6 0.025664 8 0.023321 7 0.023082 1 0.022962 2 0.022798 4 0.021383 5 0.021059 3 0.017586 13 0.0104 16 0.105991 17 0.096778 19 0.079123 0 0.076846 18 0.061741 11 0.054192 22 0.05224 20 0.042535 10 0.041759 12 0.038745 9 0.035881 23 0.035662 21 0.034079 15 0.030098 24 0.026077 6 0.025664 8 0.023321 7 0.023082 1 0.022962 2 0.022798 4 0.021383 5 0.021059 3 0.017586 13 0.0104 16 0.08224074444412686 17 0.08092410150180375 19 0.06828172953632873 0 0.06610734571575216 18 0.05950776545109792 22 0.05386554952011386 11 0.05135888185375463 10 0.04229823177675296 9 0.03997964089014289 20 0.03981528681678591 21 0.03964446189277265 12 0.038236826684989685 23 0.03719469665694602 24 0.029664613112214425 6 0.029208307222835923 15 0.029097963843743278 8 0.027153867962698686 7 0.02698818100154595 1 0.026857951382203735 4 0.0266707816225515 2 0.026536136495357576 5 0.02627188409304061 3 0.02297703449494492 13 0.01600212486133608 14 0.010131380875611452 __DUMMY__ 0.0029845102905478385 false 1.0 974 0 0.05897918302021867 17 0.058895945447539726 22 0.05850716440227785 9 0.0575339583495994 18 0.05056593225833772 11 0.045855452258306256 10 0.04485183304805235 6 0.04419585898561826 4 0.04371759832221434 5 0.04320216791523851 8 0.042918046772012164 7 0.04285713641675496 1 0.04272770281523488 2 0.04215843604750046 3 0.040711197189830024 19 0.040606423295390326 21 0.04037441649184098 16 0.03971179826969691 23 0.034409866309757606 12 0.02522612791806 24 0.024737803092461232 20 0.01858551353235735 15 0.01844765206917821 14 0.015256397901396466 13 0.013617961910042593 __DUMMY__ 0.011348425961082735 false 0.0 732 23 0.087809 24 0.084971 20 0.083019 12 0.074097 19 0.059565 21 0.056728 13 0.050055 16 0.044647 18 0.038137 4 0.038038 5 0.037181 6 0.03631 2 0.034687 3 0.034284 1 0.033796 8 0.033789 7 0.033769 15 0.032747 14 0.028343 17 0.027704 22 0.024496 11 0.023184 9 0.002414 10 2.3E-4 23 0.087809 24 0.084971 20 0.083019 12 0.074097 19 0.059565 21 0.056728 13 0.050055 16 0.044647 18 0.038137 4 0.038038 5 0.037181 6 0.03631 2 0.034687 3 0.034284 1 0.033796 8 0.033789 7 0.033769 15 0.032747 14 0.028343 17 0.027704 22 0.024496 11 0.023184 9 0.002414 10 2.3E-4 23 0.07070682548254108 24 0.06952811116095066 20 0.06949371417811781 12 0.06366250701870664 21 0.06030593843585207 19 0.06010995317401696 18 0.04828826034748178 13 0.04500851692183226 22 0.0396160715255801 16 0.03931221359843739 14 0.03480965033669381 4 0.03395795443227782 11 0.033422030891761365 5 0.03329793177165597 17 0.03271256802065862 6 0.03162571648228982 15 0.031359959774093504 3 0.030178861040526885 2 0.029715784965614694 8 0.029577185856971888 7 0.02957060710442342 1 0.029462560030622358 10 0.019390322080221567 9 0.018247066912394295 0 0.01332736502901059 __DUMMY__ 0.0033123234272666607 false 1.0 733 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08876409219902077 19 0.07864218754772397 24 0.07246773957151187 18 0.06438421589292725 21 0.06268073196457617 23 0.06166425771995981 12 0.06098771410591689 16 0.05130732354293915 14 0.04420070028031361 22 0.043782152259432994 13 0.042773309669214186 15 0.0423731136826182 17 0.03719779643458621 11 0.0356176402731433 10 0.03229735199883097 4 0.021062168260339287 5 0.020423601561552988 3 0.018968385830522048 6 0.017584305389993726 7 0.017105835006492667 8 0.01708148613082975 9 0.01702615678176802 1 0.01677452397871236 2 0.016624076090179858 0 0.013001978109491816 __DUMMY__ 0.005207155717402038 false 1.0 975 19 0.07098901069689074 21 0.07056984924809614 18 0.06495210603646885 20 0.06452783840839289 22 0.05963143160857982 24 0.05768873324434309 12 0.05499641826227791 23 0.04973091419545168 11 0.04945791343201521 14 0.04436995790504827 10 0.04306304493692358 17 0.038712478272217625 13 0.03862860903125176 16 0.03818717520983794 9 0.03200671720750184 15 0.030741086057079522 0 0.025472736893468257 4 0.022367361453003293 5 0.02187273597751386 3 0.019099662348345835 6 0.01834391073482216 7 0.01719225759565811 8 0.017169362139543464 1 0.016943735205622205 __DUMMY__ 0.01666105866449587 2 0.01662389523514997 false 0.0 734 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.0888192728108709 19 0.07872171693122873 24 0.07259045898068893 18 0.06468108153464751 21 0.06272533212472516 23 0.06185865393729585 12 0.06083702660834568 16 0.051163524075352546 14 0.0441745291736532 22 0.04394621335628404 13 0.04277884330597549 15 0.0423648621792702 17 0.03721619346854582 11 0.03549451103049987 10 0.03229093385984783 4 0.02103690551863851 5 0.020331251739495234 3 0.018885684809148668 6 0.017538363615890288 7 0.017126060802387974 8 0.016940427927764762 9 0.016893829025551838 1 0.016835644992489563 2 0.016539535997436933 0 0.013001984083881783 __DUMMY__ 0.00520715811008249 false 1.0 976 18 0.07514090337941796 10 0.07150452405463416 22 0.06341524795723029 21 0.05821813152878322 11 0.0582056138249214 19 0.056359315679455804 14 0.05219398425439757 9 0.05030423608307087 0 0.047729714361788085 17 0.04577471830312672 13 0.041523117605988175 12 0.041087824123865614 20 0.03831117270881069 15 0.03593575613434853 23 0.029971919088918865 16 0.028733140843624886 24 0.025677851239213307 4 0.02383829104133593 5 0.02343296949386303 6 0.021531014533039586 3 0.01992758064035636 8 0.01973599681589403 7 0.019733662373361445 1 0.01958064143472145 2 0.01921472560856974 __DUMMY__ 0.012917946887262433 false 0.0 735 20 0.114497 19 0.089348 24 0.08727 23 0.07164 12 0.06869 18 0.0672 16 0.062245 21 0.059805 15 0.052949 13 0.048999 14 0.047429 17 0.034364 22 0.031419 10 0.024681 11 0.024475 4 0.016568 5 0.015599 3 0.015451 7 0.01338 1 0.013024 6 0.013004 8 0.012976 2 0.01272 9 0.002268 20 0.114497 19 0.089348 24 0.08727 23 0.07164 12 0.06869 18 0.0672 16 0.062245 21 0.059805 15 0.052949 13 0.048999 14 0.047429 17 0.034364 22 0.031419 10 0.024681 11 0.024475 4 0.016568 5 0.015599 3 0.015451 7 0.01338 1 0.013024 6 0.013004 8 0.012976 2 0.01272 9 0.002268 20 0.09046344812363531 19 0.08038794211615855 24 0.0728271658934393 18 0.06663052195492705 21 0.06376591060044194 23 0.06123738693925496 12 0.06085352046454066 16 0.0510375016635605 14 0.045655242235778895 22 0.0446941534341981 15 0.04325742024061597 13 0.043013235861536034 17 0.03717672934194943 11 0.035598225884705965 10 0.03374203632476018 4 0.01985120554125925 5 0.019138158112515524 3 0.017765240704759943 9 0.017095621256098613 6 0.01613116264827704 7 0.015793227886033327 8 0.015605837183836879 1 0.015496078942455105 2 0.01520083597275129 0 0.012550036883618774 __DUMMY__ 0.005032153788891519 false 1.0 977 21 0.06328284890389631 19 0.06173523395370812 22 0.06147512346698284 18 0.061036435016482 20 0.05317219442882445 24 0.052782761546272 23 0.046455319845287564 11 0.04642585603934128 12 0.04290452528656308 10 0.042005038352855524 9 0.04114269560773913 17 0.04101874160376591 14 0.03656865622322409 16 0.03307178040004199 0 0.030778982539898848 4 0.030512126448237857 5 0.02996868041603564 3 0.02786440194606696 13 0.0275123652546209 15 0.02709573225466519 6 0.02682150926149306 8 0.0261578383369399 7 0.02610862658155752 1 0.025874869451358466 2 0.025484960828564836 __DUMMY__ 0.01274269600557658 false 0.0 736 16 0.096063 17 0.087494 19 0.073023 0 0.060377 18 0.05842 20 0.056802 23 0.04435 24 0.043085 22 0.041612 12 0.040404 11 0.038906 15 0.033217 6 0.031164 21 0.030861 9 0.0303 8 0.02935 7 0.029132 1 0.028759 10 0.02852 2 0.028444 4 0.027431 5 0.026726 3 0.024153 13 0.011408 16 0.096063 17 0.087494 19 0.073023 0 0.060377 18 0.05842 20 0.056802 23 0.04435 24 0.043085 22 0.041612 12 0.040404 11 0.038906 15 0.033217 6 0.031164 21 0.030861 9 0.0303 8 0.02935 7 0.029132 1 0.028759 10 0.02852 2 0.028444 4 0.027431 5 0.026726 3 0.024153 13 0.011408 16 0.07441433457444027 17 0.07226632670474349 19 0.06586183181655687 18 0.05850654718111609 0 0.0524429400922434 20 0.051590767719644326 22 0.04692819234798701 23 0.04376662124358095 24 0.0420433949952745 11 0.040340531510544134 12 0.03864970968226441 21 0.03835001577996702 9 0.035551519220509 10 0.035008549639125516 15 0.03459518519224808 6 0.0312374208220714 8 0.02980698755242855 7 0.029644002674473893 4 0.02958140943528639 1 0.029392475972788257 2 0.02902678560437678 5 0.02900423623840421 3 0.026594753828543136 13 0.017672525926053506 14 0.014156520846678263 __DUMMY__ 0.0035664133986505757 false 1.0 978 18 0.07355806400538631 10 0.07027569447600615 22 0.06231518624234146 21 0.056546226264941435 11 0.05649708231442845 19 0.054401670090332435 14 0.052263707698889904 9 0.050555396080143436 0 0.04695528313584188 17 0.044995834605264094 13 0.0409546906052394 12 0.03959908835928464 20 0.03734497219411187 15 0.03716913269631804 23 0.03060542018601438 16 0.02776229234322716 24 0.02571363959597457 4 0.02531902543942634 5 0.024918571040035184 6 0.023059022133367822 3 0.021534874145496766 8 0.021351568230109162 7 0.021339338427253194 1 0.02119080609736743 2 0.020829941528920495 __DUMMY__ 0.012943472064278136 false 0.0 737 20 0.117982 19 0.093783 24 0.089009 18 0.077092 23 0.067941 15 0.054975 16 0.052778 21 0.045349 14 0.039689 12 0.038074 17 0.035928 10 0.033201 22 0.031879 3 0.027554 4 0.023409 5 0.023123 8 0.021513 1 0.021278 7 0.021117 2 0.021048 9 0.02062 13 0.020497 6 0.017374 11 0.004788 20 0.117982 19 0.093783 24 0.089009 18 0.077092 23 0.067941 15 0.054975 16 0.052778 21 0.045349 14 0.039689 12 0.038074 17 0.035928 10 0.033201 22 0.031879 3 0.027554 4 0.023409 5 0.023123 8 0.021513 1 0.021278 7 0.021117 2 0.021048 9 0.02062 13 0.020497 6 0.017374 11 0.004788 20 0.08524465589853068 19 0.0774879690149377 18 0.07029585273590139 24 0.06771680452337994 23 0.05659637023535038 21 0.05291568111276477 15 0.04499212001635752 16 0.044957560893108976 22 0.04445068467546387 12 0.04269036809780767 14 0.04164642131445654 10 0.04022510357730223 17 0.039388508319489576 9 0.0292234594978948 13 0.02889159128433165 11 0.026271431750778573 3 0.025491273114777446 4 0.025160465466017846 5 0.024784453156384747 8 0.022181262525325086 7 0.021982617769898224 1 0.02195453161147297 2 0.0216775561546213 6 0.020838883709463032 0 0.016701603787964755 __DUMMY__ 0.006232769756218302 false 1.0 979 21 0.07671484010915651 19 0.0710748871062765 18 0.06418873253931029 22 0.06393013110527827 12 0.061998335160261805 20 0.058743114631292045 11 0.05752817406239054 24 0.054102443184566314 23 0.04731005618727714 10 0.04426410714481863 13 0.04285226859895382 14 0.042303909137289465 17 0.04096330292209444 16 0.03849033415403153 9 0.03286527862774212 0 0.03089611292548473 15 0.02245357352594427 4 0.02053483448897096 5 0.020067741858312605 __DUMMY__ 0.016921888097208772 6 0.016898916026770162 3 0.016104186818105944 7 0.014920773550400092 8 0.014854702283519993 1 0.014676533135311701 2 0.014340822619231397 false 0.0 738 19 0.113917 16 0.089703 18 0.082213 20 0.081639 17 0.06921 21 0.068783 22 0.065422 11 0.060341 24 0.055092 12 0.05313 10 0.052811 23 0.046646 0 0.044804 15 0.031155 14 0.027573 9 0.025176 13 0.020192 4 0.004219 5 0.004142 3 0.001959 6 0.001271 7 3.66E-4 1 1.67E-4 8 7.0E-5 19 0.113917 16 0.089703 18 0.082213 20 0.081639 17 0.06921 21 0.068783 22 0.065422 11 0.060341 24 0.055092 12 0.05313 10 0.052811 23 0.046646 0 0.044804 15 0.031155 14 0.027573 9 0.025176 13 0.020192 4 0.004219 5 0.004142 3 0.001959 6 0.001271 7 3.66E-4 1 1.67E-4 8 7.0E-5 19 0.09112084655866638 18 0.072542960763425 20 0.06812585356190731 21 0.06760013157659227 16 0.06710943086161145 22 0.06289812048469981 17 0.0581831779594325 11 0.05687714441193032 12 0.05358925138494751 24 0.051985857064487453 10 0.048457099825016246 23 0.04669610922431513 0 0.04080676309159566 14 0.031760025526192885 9 0.030367943365768226 15 0.028146093989003508 13 0.028140863026688945 4 0.01426696544528573 5 0.013996012934895647 6 0.011543759361455604 3 0.011178579331473275 7 0.010218480921789619 8 0.010066825653010142 1 0.010012462536062321 2 0.009751241650846166 __DUMMY__ 0.0045579994889010005 false 1.0 739 16 0.105061 17 0.091318 19 0.079843 0 0.062781 18 0.056437 20 0.05322 22 0.05025 11 0.046636 23 0.043598 24 0.042145 12 0.040706 21 0.037848 15 0.032807 9 0.029473 10 0.027784 6 0.02665 8 0.024949 1 0.024798 7 0.024654 2 0.024417 4 0.023352 5 0.023184 3 0.02034 13 0.00775 16 0.105061 17 0.091318 19 0.079843 0 0.062781 18 0.056437 20 0.05322 22 0.05025 11 0.046636 23 0.043598 24 0.042145 12 0.040706 21 0.037848 15 0.032807 9 0.029473 10 0.027784 6 0.02665 8 0.024949 1 0.024798 7 0.024654 2 0.024417 4 0.023352 5 0.023184 3 0.02034 13 0.00775 16 0.08092711338320312 17 0.07736760928809272 19 0.06787566484318855 0 0.05781084243917847 18 0.05661557562962751 22 0.05224489685607075 11 0.04645943698861123 20 0.04570885535754232 23 0.04168741135021836 21 0.041148840199737864 12 0.03890146969919549 24 0.03856539305546818 9 0.03646302894208778 10 0.03479226034285163 15 0.0321877492578708 6 0.029985468425558794 8 0.02828681721040344 7 0.028086205497786766 1 0.028071702518186598 4 0.027999444568573117 5 0.027663824188675284 2 0.027660233009873806 3 0.024728599667694022 13 0.0151093943329458 14 0.011391773603685396 __DUMMY__ 0.0022603893436724098 false 1.0 980 19 0.06478146329950171 18 0.06429922662856687 20 0.06198318326635177 21 0.05759206147144182 24 0.053271979784149534 22 0.05243538919540987 23 0.0493016182403294 12 0.04542792907768171 10 0.04367298627202463 14 0.04352813546329676 17 0.04080728497277449 11 0.04035992316449545 15 0.03926894376330808 16 0.03883512209734127 13 0.03475336062723954 9 0.03428797489306568 0 0.026935027850534136 4 0.02670654290043147 5 0.02625538556777543 3 0.024287109653429607 6 0.023609548903067375 8 0.022932402211871657 7 0.02288263807582544 1 0.022697603351883668 2 0.022407228388138977 __DUMMY__ 0.016679930880063802 false 0.0 981 0 0.05897918302021867 17 0.058895945447539726 22 0.05850716440227785 9 0.0575339583495994 18 0.05056593225833772 11 0.04585545225830625 10 0.04485183304805236 6 0.04419585898561826 4 0.04371759832221434 5 0.04320216791523851 8 0.042918046772012164 7 0.04285713641675496 1 0.04272770281523487 2 0.04215843604750046 3 0.040711197189830024 19 0.040606423295390326 21 0.04037441649184098 16 0.03971179826969691 23 0.034409866309757606 12 0.02522612791806 24 0.024737803092461232 20 0.01858551353235735 15 0.01844765206917821 14 0.015256397901396466 13 0.013617961910042593 __DUMMY__ 0.011348425961082735 false 0.0 740 20 0.102876 24 0.086679 23 0.079553 19 0.078412 12 0.069663 16 0.061838 21 0.05405 18 0.05229 13 0.046557 15 0.045118 14 0.035195 17 0.033965 22 0.026999 4 0.025439 5 0.025348 3 0.024243 11 0.024058 6 0.023353 8 0.023278 2 0.023038 7 0.022763 1 0.022602 10 0.011267 0 0.001418 20 0.102876 24 0.086679 23 0.079553 19 0.078412 12 0.069663 16 0.061838 21 0.05405 18 0.05229 13 0.046557 15 0.045118 14 0.035195 17 0.033965 22 0.026999 4 0.025439 5 0.025348 3 0.024243 11 0.024058 6 0.023353 8 0.023278 2 0.023038 7 0.022763 1 0.022602 10 0.011267 0 0.001418 20 0.08217591980990888 19 0.07314530194494177 24 0.07108657516166565 23 0.06467715245770747 12 0.060461562652293126 21 0.059477721099238795 18 0.05785417828718045 16 0.050969070185383075 22 0.04207674943205142 13 0.0409795689308308 15 0.03823722871159112 17 0.03787833259507286 14 0.03780531213585134 11 0.03503095484073356 10 0.026517158227120675 4 0.02546058588147108 5 0.025154878890202802 3 0.023277241035839197 6 0.02275292154749085 8 0.022133129240273764 7 0.021888344814957127 2 0.02173588127951426 1 0.02169711029922298 9 0.01693905944990249 0 0.014853346377069634 __DUMMY__ 0.005734714712484717 false 1.0 982 19 0.06561789346700378 18 0.06556191572782936 20 0.06344983237936412 21 0.057380990243968984 24 0.05334137503826874 22 0.05208068930635413 23 0.048995750744593614 14 0.04567107030726942 12 0.04527760707380248 10 0.044849934812553505 15 0.041804685948359795 17 0.04063273233501153 11 0.040082733337257107 16 0.03922786227323339 13 0.03563112460751259 9 0.033789379162775864 0 0.026283493643597142 4 0.0257435277769746 5 0.02529259767779167 3 0.023392241838401558 6 0.022575800737519258 8 0.021949851480733376 7 0.02189993873473617 1 0.021709161970976942 2 0.021423917650698385 __DUMMY__ 0.016333891723412475 false 0.0 983 19 0.07290206974197341 20 0.06853162014543573 18 0.06757079567869959 21 0.0663739358964616 24 0.05837787382006433 22 0.05734480863893158 12 0.05146058849076061 23 0.050205706240961746 11 0.04583390798217313 14 0.043834169390939065 10 0.04383049899056129 16 0.041080383575762915 17 0.040354764838447674 13 0.035695413751651923 15 0.03482971102809506 9 0.03156755978227788 0 0.024812398839670614 4 0.02224922227294443 5 0.02175636726895328 3 0.019496280195638774 6 0.018306050635931707 7 0.01749708735953507 8 0.01749425021646408 1 0.01723950873426692 2 0.016928482768760588 __DUMMY__ 0.014426543714636992 false 0.0 741 23 0.081055 12 0.069557 24 0.067324 21 0.064185 13 0.049211 4 0.048203 5 0.047798 6 0.047147 20 0.045366 1 0.0441 7 0.043949 8 0.04388 2 0.043751 3 0.04253 19 0.042493 22 0.03929 11 0.028989 16 0.028041 17 0.026467 18 0.024676 14 0.024228 9 0.02172 0 0.014601 15 0.011438 23 0.081055 12 0.069557 24 0.067324 21 0.064185 13 0.049211 4 0.048203 5 0.047798 6 0.047147 20 0.045366 1 0.0441 7 0.043949 8 0.04388 2 0.043751 3 0.04253 19 0.042493 22 0.03929 11 0.028989 16 0.028041 17 0.026467 18 0.024676 14 0.024228 9 0.02172 0 0.014601 15 0.011438 21 0.06933055116970983 23 0.0667598246356862 12 0.06668795399455411 24 0.059129800329117584 19 0.05069465051460167 22 0.0501638019288562 13 0.04824997956297088 20 0.04671189006669385 11 0.04197364726607365 18 0.0402646694906225 4 0.038279892645030886 5 0.03780313917780174 6 0.03636378053308 7 0.033387798790822966 1 0.03330442592994348 8 0.033293298274635855 2 0.03293248285661428 3 0.03262651913374307 14 0.03222067926346485 17 0.03173203347860332 16 0.029063265534559825 9 0.02800357689478972 0 0.02256239656980809 10 0.019137031491425996 15 0.014842565361113247 __DUMMY__ 0.004480345105676322 false 1.0 984 19 0.06529428312879611 21 0.06471885449751753 18 0.06425316527079915 22 0.06180322459035119 20 0.05641856229640001 24 0.052913444628858636 11 0.047768654257564484 23 0.04609090517772145 12 0.04467325180105303 10 0.044541328427148794 17 0.041667059987623184 9 0.03963580804231416 14 0.03882964189290457 16 0.03518701900759056 0 0.030612138584460994 13 0.029306011582868465 15 0.02885337904657079 4 0.02757028749070923 5 0.027022852065197066 3 0.02480451125603277 6 0.02377671225641054 8 0.023026750814993946 7 0.022999533371946594 1 0.022741178646585192 2 0.022362711029444458 __DUMMY__ 0.013128730848137196 false 0.0 500 18 0.095989 10 0.089638 19 0.076946 11 0.075366 21 0.075166 22 0.072077 14 0.059803 12 0.059647 0 0.055699 13 0.055375 17 0.052917 20 0.052124 9 0.046384 16 0.039616 15 0.030572 24 0.022718 23 0.022434 4 0.005765 5 0.005497 6 0.003459 7 0.001011 1 7.34E-4 8 5.4E-4 3 5.24E-4 18 0.095989 10 0.089638 19 0.076946 11 0.075366 21 0.075166 22 0.072077 14 0.059803 12 0.059647 0 0.055699 13 0.055375 17 0.052917 20 0.052124 9 0.046384 16 0.039616 15 0.030572 24 0.022718 23 0.022434 4 0.005765 5 0.005497 6 0.003459 7 0.001011 1 7.34E-4 8 5.4E-4 3 5.24E-4 18 0.0863941849777657 10 0.08057261706123882 21 0.07100711144801354 11 0.06971219000568558 19 0.06922694065189947 22 0.06905307994892966 14 0.05720727622904843 12 0.05553710197583177 13 0.05204102269784146 0 0.05115755786388602 17 0.048981490634677695 20 0.047394341367608145 9 0.04652962575679207 16 0.03485094072095821 15 0.031325295099310306 23 0.02671797669433237 24 0.025931281425101083 4 0.012740369447276585 5 0.012404706826796317 6 0.010285764267873228 7 0.007873483942065548 3 0.0077650611449910385 1 0.007658899001497381 8 0.007643128221599062 2 0.007147864418040349 __DUMMY__ 0.0028406881709401462 false 1.0 742 22 0.057372750983513805 9 0.05616838372813397 18 0.05533241410471838 10 0.05061054070598891 0 0.047019246788522165 17 0.04632857185047257 21 0.04418547192165565 11 0.04225110573009182 4 0.0421139601072644 5 0.04163297486218057 19 0.041157652479419535 6 0.040714819665843074 8 0.03999491532221599 7 0.03998874201382794 1 0.039862871281323854 3 0.03972591981727068 2 0.039331663195631195 23 0.03700065294122435 14 0.03031821588825799 24 0.029284109974823586 15 0.02710981195955381 16 0.02704679740305163 20 0.02641259248555267 12 0.025218352796904354 13 0.020672284331364872 __DUMMY__ 0.013145177661192343 false 0.0 985 19 0.06756754473750384 18 0.06228799370989523 21 0.06159614157429771 22 0.05904286511347239 11 0.05220733976283419 20 0.05195471905740575 17 0.05015143203047306 12 0.04985207121904003 16 0.0478338127339957 24 0.04561396575757808 23 0.04522674842312929 10 0.044600151385290956 0 0.03984773777345263 9 0.03655985605280576 14 0.03297367312890053 13 0.03237003621258981 15 0.02610367383112342 4 0.024975880139693627 5 0.02454300841550808 6 0.022983840963548434 7 0.02132009613619828 8 0.02130515380581167 3 0.02129536918855349 1 0.02111724420058499 2 0.020764408057049672 __DUMMY__ 0.015905236589263395 false 0.0 743 22 0.07269932896852606 21 0.06832280690857337 11 0.061411336072068286 18 0.06064897870142767 19 0.05707564977279681 10 0.05058925707002996 9 0.050047304616251245 17 0.04502550442338451 0 0.04350519015915018 12 0.04103364448588904 24 0.04097040864542691 23 0.03770023689941657 20 0.0354305972910428 14 0.03398620449895288 4 0.030833457422654174 5 0.030305476951225055 16 0.029328580006273194 6 0.027360894039266857 3 0.02718853949393481 7 0.02601225636032408 8 0.025968374706801283 1 0.025731556957627917 2 0.025288480449383668 13 0.02503306868998298 15 0.01734060759413465 __DUMMY__ 0.011162258815454915 false 0.0 501 21 0.081885 22 0.069299 12 0.061897 11 0.061225 18 0.054969 10 0.050804 9 0.050797 13 0.049658 23 0.044322 14 0.043891 24 0.042414 19 0.041832 4 0.036915 5 0.035893 0 0.033933 6 0.032399 3 0.030622 20 0.030536 8 0.029426 7 0.029409 1 0.029167 2 0.028789 17 0.025361 15 0.004556 21 0.081885 22 0.069299 12 0.061897 11 0.061225 18 0.054969 10 0.050804 9 0.050797 13 0.049658 23 0.044322 14 0.043891 24 0.042414 19 0.041832 4 0.036915 5 0.035893 0 0.033933 6 0.032399 3 0.030622 20 0.030536 8 0.029426 7 0.029409 1 0.029167 2 0.028789 17 0.025361 15 0.004556 21 0.0757682046370664 22 0.06398670253395489 12 0.06374866615460047 11 0.059781032766121574 18 0.056125525795599915 13 0.053230901447745935 10 0.04976001789459171 19 0.04608531708283478 9 0.045119290331782365 14 0.044617269735349956 23 0.04359007372601714 24 0.04015531744859268 0 0.036432468177054464 20 0.034671266161791746 4 0.03282339994093585 5 0.03213130064818705 17 0.0317700946227281 6 0.029766763516207245 3 0.026625464323648738 7 0.026571731033725222 8 0.02656245754915743 1 0.026403075284647123 2 0.026039567828627833 16 0.0131168393154235 15 0.011942539119046166 __DUMMY__ 0.0031747129245617537 false 1.0 986 19 0.06692732511608535 18 0.06602987741992561 20 0.06513617453446373 21 0.05848895681788859 24 0.05458414587018292 22 0.0522590295933721 23 0.049494022159281 12 0.046436305582364924 14 0.04591960502247402 10 0.04455649588744501 15 0.04161460828234058 11 0.04041151140055385 17 0.040389456439527495 16 0.0397447934478546 13 0.03610305347966439 9 0.032901464594233716 0 0.025473364965274154 4 0.025028710260610015 5 0.024575408225422864 3 0.022657395171300335 6 0.021747260733462496 8 0.02111223251800945 7 0.021069575314349293 1 0.020872483383229373 2 0.02059094041192445 __DUMMY__ 0.01587580336875975 false 0.0 744 21 0.08062673058793329 12 0.0693814144086541 22 0.06577127910514578 11 0.06432519509120348 18 0.06085814953242093 19 0.06045752905792825 13 0.05446435534342482 10 0.0479469230210314 14 0.04669427613195598 20 0.046429039093714534 24 0.04600940943785867 23 0.043593906844076664 17 0.03722818020740788 9 0.03640569239978354 0 0.034948756835414437 16 0.027965889535959947 4 0.02263366534321763 5 0.022184418800094915 6 0.019574508497259353 15 0.016608480346020374 3 0.016584665725136366 7 0.01641910055581025 8 0.016341209905286643 1 0.016213076353546716 2 0.015875893831911715 __DUMMY__ 0.014458254007802297 false 0.0 502 16 0.112164 17 0.094698 19 0.080653 0 0.068545 18 0.058443 20 0.052662 22 0.047498 11 0.045755 23 0.041333 12 0.039779 24 0.035899 15 0.035104 21 0.033088 10 0.031409 9 0.030385 6 0.026059 7 0.02412 8 0.024006 1 0.023772 2 0.023526 4 0.021751 5 0.021384 3 0.018792 13 0.009177 16 0.112164 17 0.094698 19 0.080653 0 0.068545 18 0.058443 20 0.052662 22 0.047498 11 0.045755 23 0.041333 12 0.039779 24 0.035899 15 0.035104 21 0.033088 10 0.031409 9 0.030385 6 0.026059 7 0.02412 8 0.024006 1 0.023772 2 0.023526 4 0.021751 5 0.021384 3 0.018792 13 0.009177 16 0.08631609429411558 17 0.08131152217657567 19 0.06784290882416001 0 0.06330568712461307 18 0.0572922764731628 22 0.05076551308031544 11 0.04651128046731189 20 0.04340131162902236 23 0.03945523705777166 9 0.03769686233945547 12 0.03761489411503186 21 0.03726681934349775 10 0.03689247584748299 24 0.03324193548466452 15 0.032401738139064384 6 0.030337555200161754 8 0.028398147512491135 7 0.028380354538034763 1 0.028150240060703425 2 0.027782967922778047 4 0.027472732668565397 5 0.02705045765798293 3 0.02416326342799942 13 0.01472550060580432 14 0.009253925307844406 __DUMMY__ 0.0029682987013888236 false 1.0 987 18 0.07178220849418719 10 0.06160843349625917 19 0.058614869625553755 14 0.05556120024362374 22 0.055511916194620696 21 0.05431502372113151 20 0.05028827841064554 15 0.047157007190493684 11 0.04687403550111897 9 0.04260780372516412 17 0.04191792027474507 13 0.0414338319451127 12 0.040378904583333694 23 0.03807877220731186 24 0.03663321667540708 0 0.03613704042486105 16 0.03212474519381542 4 0.024551040873387758 5 0.02417097022632866 6 0.02189555081746625 3 0.02161443541358268 8 0.020798645584714306 7 0.020750821405518365 1 0.020590677562989646 2 0.020293385085095365 __DUMMY__ 0.01430926512353161 false 0.0 503 10 0.101153 18 0.100001 11 0.077802 19 0.07372 22 0.071728 21 0.068695 14 0.064231 0 0.062919 13 0.056313 17 0.055928 12 0.052718 9 0.052448 20 0.043798 16 0.038227 15 0.036499 23 0.015622 24 0.010972 4 0.005656 5 0.005052 6 0.003743 7 0.001051 1 8.54E-4 8 8.53E-4 3 1.8E-5 10 0.101153 18 0.100001 11 0.077802 19 0.07372 22 0.071728 21 0.068695 14 0.064231 0 0.062919 13 0.056313 17 0.055928 12 0.052718 9 0.052448 20 0.043798 16 0.038227 15 0.036499 23 0.015622 24 0.010972 4 0.005656 5 0.005052 6 0.003743 7 0.001051 1 8.54E-4 8 8.53E-4 3 1.8E-5 18 0.08898223462192598 10 0.08734391190961616 11 0.06954436709389938 22 0.06864631054625926 19 0.06669030668238511 21 0.06548098260498454 14 0.05932617600793298 0 0.055278869298132964 9 0.05096401981694364 17 0.050904221197841944 13 0.05029133972049161 12 0.048726212573446843 20 0.04234818080226475 15 0.035912103168165545 16 0.03372929187952804 23 0.02263565215828218 24 0.018914270894113523 4 0.013547886705386513 5 0.013055463617157025 6 0.01130721134046727 7 0.00896640395446175 8 0.008867774833270432 1 0.008791342736509897 3 0.008643145335443957 2 0.008208365689908044 __DUMMY__ 0.0028939548111806177 false 1.0 745 9 0.055955875958622614 22 0.0525315750423656 4 0.050699624352599386 6 0.05026395011832658 5 0.0502249329787998 7 0.049646031240573166 8 0.0496314723244808 1 0.04957935719465431 2 0.048956277915962784 3 0.04854078489703098 17 0.04772395663588502 0 0.046568416205620654 18 0.043978826011346124 23 0.0424773068415918 21 0.038213831481207744 10 0.036781030450085565 11 0.034509250991536365 19 0.034267793088603 24 0.03243439003715891 16 0.02917702074986042 12 0.02284061777359673 20 0.022017450990999186 15 0.019878313315980754 14 0.017037249290529008 13 0.013430867325708713 __DUMMY__ 0.012633796786874133 false 0.0 746 9 0.059403104033308486 22 0.05640741975206881 0 0.05189042704734564 17 0.05142972780683162 4 0.04880555319541936 6 0.04838469329568944 5 0.04828880569936752 8 0.0478290231197396 7 0.04780760447755791 1 0.0476918956348773 18 0.04758879817588505 2 0.047081043487104006 3 0.046714448259096916 10 0.042377001074546415 11 0.03877373017032358 21 0.038415838718809145 23 0.03771583829293625 19 0.035957487935852864 16 0.030813225503256915 24 0.028355819945958642 15 0.020249525212776537 12 0.019772360410806815 20 0.019214359377274406 14 0.017298148207652752 13 0.010902476744385728 __DUMMY__ 0.010831644421128458 false 0.0 504 0 0.086362 17 0.079153 9 0.065464 22 0.062634 11 0.058844 10 0.055953 18 0.054683 16 0.05331 6 0.045879 8 0.042952 7 0.042872 1 0.042483 4 0.042216 2 0.041926 5 0.041447 19 0.037658 3 0.037161 21 0.033118 12 0.024042 23 0.021657 13 0.011864 15 0.011129 14 0.004095 24 0.003097 0 0.086362 17 0.079153 9 0.065464 22 0.062634 11 0.058844 10 0.055953 18 0.054683 16 0.05331 6 0.045879 8 0.042952 7 0.042872 1 0.042483 4 0.042216 2 0.041926 5 0.041447 19 0.037658 3 0.037161 21 0.033118 12 0.024042 23 0.021657 13 0.011864 15 0.011129 14 0.004095 24 0.003097 0 0.0726665801963065 17 0.06944616568763964 9 0.061388697166889536 22 0.060532113130666046 18 0.05283264125306309 11 0.05220205727521446 10 0.050226571232429386 16 0.047224862480961145 6 0.045101341054284 8 0.04301856082836333 4 0.04301047171019034 7 0.04294480701785223 1 0.04269544502642978 5 0.042376150253073515 2 0.042127822242565935 19 0.03961741049738059 3 0.039006621634907895 21 0.036740203549111214 23 0.0283823213207514 12 0.02477509186689363 15 0.015165858174812656 24 0.01437812793097276 13 0.012655261084904054 20 0.009923503588369088 14 0.009588634742229657 __DUMMY__ 0.0019726790537381404 false 1.0 988 21 0.08103004473952195 12 0.0683972331302016 19 0.06657098464572232 22 0.0654447474851199 18 0.06195350084838793 11 0.06179641139577919 20 0.05319275780512175 24 0.0513109781293946 13 0.04993525153836005 23 0.04628271974643462 10 0.044643136099821595 14 0.04402291940139513 17 0.038643569258658125 9 0.03356444251756436 16 0.03318317919567211 0 0.0321943901839957 4 0.020992066468588737 5 0.020526790627712604 6 0.017580209441656034 15 0.01740256713378236 __DUMMY__ 0.017349542953014194 3 0.0154901245917507 7 0.014839803424224456 8 0.014763090493949272 1 0.014606966588113727 2 0.014282572156056987 false 0.0 989 19 0.06845574292870213 18 0.06431621279834651 21 0.05892477031357868 20 0.05843144034251139 22 0.055827066948557914 24 0.049404596871097835 17 0.047188443167002395 12 0.04673296925749246 23 0.04668577475642133 16 0.046581668736108583 11 0.04641853549534519 10 0.04483144752819468 14 0.03830938680174274 9 0.03498668445208951 15 0.03451548636111966 0 0.03411754002077354 13 0.032362738051988305 4 0.024693351584447607 5 0.024253848893621897 6 0.022187345765956195 3 0.02180787738447301 8 0.021114800288360328 7 0.021095677385897498 1 0.02089627252758862 2 0.02057078490162513 __DUMMY__ 0.015289536436956673 false 0.0 505 19 0.106709 18 0.080558 20 0.078883 16 0.078527 21 0.075543 22 0.06684 17 0.063312 11 0.062692 12 0.060501 24 0.055003 10 0.052279 23 0.046877 0 0.043172 14 0.031829 13 0.029375 9 0.026785 15 0.026602 4 0.004682 5 0.004352 3 0.001981 6 0.00149 8 7.15E-4 1 6.57E-4 7 6.34E-4 19 0.106709 18 0.080558 20 0.078883 16 0.078527 21 0.075543 22 0.06684 17 0.063312 11 0.062692 12 0.060501 24 0.055003 10 0.052279 23 0.046877 0 0.043172 14 0.031829 13 0.029375 9 0.026785 15 0.026602 4 0.004682 5 0.004352 3 0.001981 6 0.00149 8 7.15E-4 1 6.57E-4 7 6.34E-4 19 0.08847151204099933 21 0.07315021068741949 18 0.0723225373230589 20 0.06797322317234546 22 0.06404693423511151 16 0.06076690206292464 12 0.0596575860739143 11 0.0589573820798624 17 0.054175543734335654 24 0.052796508614457636 10 0.04849139541013669 23 0.0469809501928797 0 0.03888434061878005 14 0.035403622429921004 13 0.034889706341223604 9 0.030264220886656673 15 0.02542413997897633 4 0.013407387027691366 5 0.013011377916495315 6 0.010392234130510996 3 0.009877118173407477 8 0.008963897477904508 7 0.008947502125673456 1 0.008833342278685099 2 0.008352632398506827 __DUMMY__ 0.0055577925881216475 false 1.0 747 21 0.0744721180238597 22 0.07327644037580387 11 0.06200580316001674 18 0.05777839445000286 19 0.057681288350373325 12 0.048569633915562724 9 0.04760331024905733 10 0.04547640556709855 24 0.04493774297916704 17 0.043277032165579626 0 0.04108047032354228 23 0.03968075999900028 20 0.03678745461252392 14 0.034408218930783295 13 0.030201850024505414 4 0.030038555204960286 5 0.029484980072663758 16 0.028353735725072174 6 0.026501371376403043 3 0.025765525015671614 7 0.024743045674639034 8 0.02469078157631174 1 0.0244558321277492 2 0.023986407632185108 15 0.013373807992812448 __DUMMY__ 0.011369034474654352 false 0.0 506 19 0.102055 20 0.098746 21 0.096955 18 0.081026 12 0.080755 24 0.079612 23 0.065465 22 0.064879 11 0.051068 16 0.04603 13 0.04503 14 0.041853 10 0.037901 17 0.037124 15 0.018742 9 0.018033 0 0.011051 4 0.008429 5 0.00787 3 0.004057 6 0.001961 1 5.47E-4 7 5.14E-4 8 2.96E-4 19 0.102055 20 0.098746 21 0.096955 18 0.081026 12 0.080755 24 0.079612 23 0.065465 22 0.064879 11 0.051068 16 0.04603 13 0.04503 14 0.041853 10 0.037901 17 0.037124 15 0.018742 9 0.018033 0 0.011051 4 0.008429 5 0.00787 3 0.004057 6 0.001961 1 5.47E-4 7 5.14E-4 8 2.96E-4 19 0.08668566265977574 21 0.08319323687567864 20 0.08255506010607416 18 0.07355834477178906 12 0.06907702374276836 24 0.06817652810234388 22 0.06110809552256099 23 0.0577626203073239 11 0.050123970650371434 14 0.04432348474432235 13 0.0439007315548949 16 0.04275282479462399 10 0.041289821088044645 17 0.037908608149487856 15 0.025967206692111357 9 0.024288803526797534 0 0.018318154515983565 4 0.015033103549062662 5 0.014527557985021783 3 0.01113808671943716 6 0.009942469920152871 7 0.008539597576007913 8 0.008422773772752006 1 0.008419707555320706 2 0.008032916941449508 __DUMMY__ 0.004953608175843123 false 1.0 748 9 0.05593545184786011 22 0.05250811764153362 4 0.05071472040557717 6 0.050278926237320644 5 0.050240288098065994 7 0.04966070453182667 8 0.0496459039848199 1 0.049594355695929106 2 0.04897116489520708 3 0.048555324648489495 17 0.047701409517480295 0 0.04653499031353362 18 0.04395674230511898 23 0.042511214478774276 21 0.038214296377791064 10 0.03674530431723107 11 0.03448233367216208 19 0.03425810737695716 24 0.03246324665412274 16 0.029167451103258687 12 0.02286225207166411 20 0.022037270342862247 15 0.0198767728974891 14 0.017036312486764318 13 0.013448438591374106 __DUMMY__ 0.012598899506786389 false 0.0 507 19 0.106503 18 0.080179 20 0.078844 16 0.078748 21 0.075148 22 0.067286 17 0.063327 11 0.063066 12 0.060626 24 0.055008 10 0.052747 23 0.046046 0 0.043885 14 0.03221 13 0.029751 15 0.026985 9 0.026312 4 0.004759 5 0.004324 3 0.001976 6 0.001432 8 4.43E-4 7 3.02E-4 1 9.4E-5 19 0.106503 18 0.080179 20 0.078844 16 0.078748 21 0.075148 22 0.067286 17 0.063327 11 0.063066 12 0.060626 24 0.055008 10 0.052747 23 0.046046 0 0.043885 14 0.03221 13 0.029751 15 0.026985 9 0.026312 4 0.004759 5 0.004324 3 0.001976 6 0.001432 8 4.43E-4 7 3.02E-4 1 9.4E-5 19 0.08833936764243806 21 0.07293757013763254 18 0.07212665954721786 20 0.06789173038094277 22 0.06425205074059707 16 0.060873699173312194 12 0.05968807154356246 11 0.05914280245150634 17 0.05420362456938956 24 0.05275333970462794 10 0.048715435930079605 23 0.046572782810763096 0 0.039254274620833585 14 0.03556283964853523 13 0.03505091572496904 9 0.030071547803890767 15 0.025595140465010692 4 0.013458653026806097 5 0.013014746328766934 6 0.01038759285745303 3 0.009889902682631522 8 0.008860084142020004 7 0.008816044305400967 1 0.008595911897676504 2 0.008372905407684537 __DUMMY__ 0.00557230645625157 false 1.0 749 21 0.0744721180238597 22 0.07327644037580387 11 0.06200580316001674 18 0.05777839445000286 19 0.057681288350373325 12 0.048569633915562724 9 0.04760331024905733 10 0.04547640556709855 24 0.04493774297916704 17 0.043277032165579626 0 0.04108047032354228 23 0.03968075999900028 20 0.03678745461252392 14 0.034408218930783295 13 0.030201850024505414 4 0.030038555204960286 5 0.029484980072663758 16 0.028353735725072174 6 0.026501371376403043 3 0.025765525015671614 7 0.024743045674639034 8 0.02469078157631174 1 0.0244558321277492 2 0.023986407632185108 15 0.013373807992812448 __DUMMY__ 0.011369034474654352 false 0.0 508 20 0.117789 19 0.093035 24 0.088143 18 0.077732 23 0.067783 15 0.05492 16 0.052727 21 0.045051 14 0.040071 12 0.037572 17 0.035714 10 0.033246 22 0.032821 3 0.027845 5 0.023437 4 0.023229 8 0.021602 7 0.02152 1 0.021496 2 0.021358 9 0.020732 13 0.020028 6 0.017477 11 0.00467 20 0.117789 19 0.093035 24 0.088143 18 0.077732 23 0.067783 15 0.05492 16 0.052727 21 0.045051 14 0.040071 12 0.037572 17 0.035714 10 0.033246 22 0.032821 3 0.027845 5 0.023437 4 0.023229 8 0.021602 7 0.02152 1 0.021496 2 0.021358 9 0.020732 13 0.020028 6 0.017477 11 0.00467 20 0.08581427825451292 19 0.07835739840111722 18 0.07146201612666803 24 0.06738021154459983 23 0.05644771268637907 21 0.05294536891580801 16 0.046225636973339645 22 0.045297520812796394 15 0.0444205165288632 12 0.04251803005407443 14 0.04086869741586878 10 0.04051856712127946 17 0.0403937416409308 9 0.02926109357046276 13 0.02792094309709076 11 0.026591438621388474 3 0.025140788425720078 4 0.024621022546696018 5 0.02445471476936036 8 0.021788189320384857 7 0.021737527330686974 1 0.02161961607983183 2 0.021371735386732055 6 0.02046207102082723 0 0.01739017222444575 __DUMMY__ 0.004990991130135262 false 1.0 509 17 0.07745 16 0.069194 0 0.064353 19 0.054317 22 0.053449 18 0.0517 9 0.049823 6 0.041463 8 0.040986 7 0.040582 1 0.040529 11 0.040483 2 0.040343 4 0.039515 5 0.039056 3 0.038033 10 0.036021 23 0.035504 24 0.033493 20 0.032643 21 0.030647 15 0.027516 12 0.020565 14 0.002335 17 0.07745 16 0.069194 0 0.064353 19 0.054317 22 0.053449 18 0.0517 9 0.049823 6 0.041463 8 0.040986 7 0.040582 1 0.040529 11 0.040483 2 0.040343 4 0.039515 5 0.039056 3 0.038033 10 0.036021 23 0.035504 24 0.033493 20 0.032643 21 0.030647 15 0.027516 12 0.020565 14 0.002335 17 0.0731707252526125 16 0.0642263944229798 0 0.062452269619411645 22 0.05423896579143748 18 0.05352218501389466 19 0.053305805760772575 9 0.04908827549177673 11 0.04365383896002066 10 0.039523628658007 6 0.03918887272116868 8 0.03810650903188374 7 0.03784092373867685 1 0.03774255341567993 4 0.0374310314649566 2 0.03739512029974381 5 0.036959655417297566 23 0.03567690303216302 21 0.0350665725587716 3 0.034968106057237894 20 0.03138921901780512 24 0.030806797800062218 15 0.028084933752701092 12 0.02615514763642728 14 0.009471173330992802 13 0.008574788931747162 __DUMMY__ 0.001959602821771358 false 1.0 990 18 0.07066931019096244 19 0.062089034045879905 20 0.057823977228285306 10 0.05570826454055349 21 0.05417672571065675 14 0.05360812210769357 22 0.05283250127421787 15 0.048415045644211015 24 0.043958283971232186 23 0.04266367940230735 11 0.04229644727461794 12 0.04125857714315756 17 0.041081889355649895 13 0.03939020649927768 9 0.03850391794506164 16 0.03532194003654336 0 0.03089418964208675 4 0.024555754006734216 5 0.02414227097027127 3 0.02208253208686561 6 0.021631992704642267 8 0.020889934534338895 7 0.020834815174559807 1 0.020662521860356987 2 0.020372745355012708 __DUMMY__ 0.014135321294823535 false 0.0 991 18 0.07285256989017745 19 0.061601825733807104 10 0.060238149359032093 22 0.05525545187837953 21 0.05474157861403675 20 0.054261867587583994 14 0.05376846208567525 15 0.04651054870557846 11 0.04558205302255228 17 0.04239951754045205 9 0.04131685445565753 12 0.040476194797536995 24 0.0397600128818096 23 0.03952891832121758 13 0.039410727490026054 0 0.03466286657131073 16 0.03414801363166196 4 0.023933926359008723 5 0.023523804557890837 3 0.02124139948597831 6 0.02108521583857024 8 0.020188235572681724 7 0.020144060694311357 1 0.019974084747892393 2 0.01966372710356237 __DUMMY__ 0.013729933073608602 false 0.0 992 18 0.0734159779367809 10 0.06984075226476809 22 0.06212577421232271 21 0.05654517994684959 11 0.05620324630080019 19 0.054580380764785226 14 0.052161505002779086 9 0.050262876530699864 0 0.046592900451286216 17 0.04491116891207874 13 0.04086779295896342 12 0.03968586539809111 20 0.03778551096563549 15 0.03726335927542802 23 0.030912596473457944 16 0.02794870751248052 24 0.02617536229642981 4 0.025321780025869572 5 0.024920687445925835 6 0.02304677466990663 3 0.021562988549608805 8 0.02135819903921755 7 0.02134527426251635 1 0.021196092679181086 2 0.020836661943226007 __DUMMY__ 0.013132584180911327 false 0.0 750 21 0.07447211802385968 22 0.07327644037580387 11 0.06200580316001674 18 0.05777839445000286 19 0.057681288350373325 12 0.048569633915562724 9 0.04760331024905733 10 0.04547640556709855 24 0.04493774297916704 17 0.043277032165579626 0 0.04108047032354228 23 0.03968075999900028 20 0.03678745461252392 14 0.034408218930783295 13 0.030201850024505414 4 0.030038555204960286 5 0.029484980072663758 16 0.02835373572507217 6 0.026501371376403043 3 0.025765525015671614 7 0.024743045674639034 8 0.02469078157631174 1 0.0244558321277492 2 0.023986407632185108 15 0.013373807992812448 __DUMMY__ 0.011369034474654352 false 0.0 993 18 0.07577465950580617 10 0.07178137397154905 22 0.06354332106029029 21 0.058562695303717674 11 0.05830927664781639 19 0.0570877191794134 14 0.05230856176670709 9 0.050102236741599096 0 0.0476498946526458 17 0.04593845604641749 13 0.04164459112284854 12 0.04141580294813132 20 0.039039141239588626 15 0.03592094535557764 23 0.029924781673442667 16 0.02905852312388594 24 0.02590459863003955 4 0.02336916666524065 5 0.02295820419631428 6 0.02102979689808324 3 0.019447420050985008 8 0.01923278054430776 7 0.01923130127462212 1 0.019076954400610392 2 0.018708029073865335 __DUMMY__ 0.012979767926494657 false 0.0 751 9 0.05867898289660614 22 0.055139642079605505 4 0.05040603866485393 5 0.0499032981799677 6 0.04956118991968233 7 0.049141702788208175 8 0.049130952265468215 1 0.04904687193694754 3 0.04845530533596219 2 0.0484194513144818 0 0.0474838601864429 17 0.04714040755225693 18 0.045900918904106816 10 0.040401511079154455 23 0.04017975186509992 21 0.03911945778074041 11 0.036176740017192954 19 0.034187140724280585 24 0.030981182230862582 16 0.026584192984445153 15 0.020560128864297665 20 0.02047281046404171 12 0.02016402864809494 14 0.019070458986013974 13 0.01209264536226572 __DUMMY__ 0.011601328968919768 false 0.0 510 19 0.103747 21 0.079957 18 0.078903 20 0.077416 16 0.071661 22 0.067967 12 0.065386 11 0.064648 17 0.058766 24 0.055314 10 0.052141 23 0.046646 0 0.040823 13 0.034748 14 0.034519 9 0.026781 15 0.023265 5 0.005999 4 0.005953 6 0.002411 3 0.00202 7 4.9E-4 8 2.36E-4 1 2.03E-4 19 0.103747 21 0.079957 18 0.078903 20 0.077416 16 0.071661 22 0.067967 12 0.065386 11 0.064648 17 0.058766 24 0.055314 10 0.052141 23 0.046646 0 0.040823 13 0.034748 14 0.034519 9 0.026781 15 0.023265 5 0.005999 4 0.005953 6 0.002411 3 0.00202 7 4.9E-4 8 2.36E-4 1 2.03E-4 19 0.08723383100106463 21 0.07751488112107559 18 0.07177484412322094 20 0.06773417064186629 22 0.06531594023869601 12 0.0641816038313615 11 0.06107880428009903 16 0.0560092777408182 24 0.05363753677825472 17 0.05075442459443047 10 0.048640557140292265 23 0.04698667591503655 13 0.03953021346625507 14 0.038070658926762015 0 0.03690008606297394 9 0.029814909555214094 15 0.022966844323668176 4 0.013347399173497254 5 0.013121744899728205 6 0.009995264027460477 3 0.009051961660305982 7 0.007944645391713866 8 0.0077955069735259645 1 0.0076842408570162325 2 0.007416913788173536 __DUMMY__ 0.005497063487488999 false 1.0 752 21 0.07031347242617722 12 0.06485488258823784 22 0.05925053031930698 11 0.058233580802123 18 0.0566415806532204 13 0.05586344889986038 19 0.04937257735517286 10 0.04843495036910179 14 0.045128357838739544 23 0.04269163749549974 9 0.04001673415070407 24 0.038192327188121204 0 0.038099780143685355 20 0.0379443352919346 17 0.03680406143783097 4 0.02913250074899943 5 0.02872396476947233 6 0.02728456181728536 7 0.02395080711372904 16 0.023937069362578254 8 0.023921030136581683 1 0.02384418389826352 2 0.02349712300179239 3 0.023069517798287743 15 0.01819577862758119 __DUMMY__ 0.012601205765713252 false 0.0 994 22 0.06647237748693317 21 0.06531870117498348 19 0.05539431812389735 18 0.05443468400738022 11 0.05440055270723497 17 0.04628126744751189 9 0.045612693410962704 24 0.045422727963395026 12 0.04432140905515397 23 0.04222015883333834 0 0.04086334163243744 10 0.040389679150154754 20 0.03788327764999388 16 0.03420756863923649 4 0.0330448943311058 5 0.03252588886090725 6 0.03045009300011191 14 0.029781850803366174 3 0.02928971797700556 7 0.028916002772682876 8 0.02890509712427318 1 0.02870059305646212 2 0.02822251032348482 13 0.026350519935278097 15 0.017660586639984165 __DUMMY__ 0.01292948789272423 false 0.0 511 19 0.113421 16 0.089618 18 0.08261 20 0.081627 17 0.069393 21 0.06873 22 0.065418 11 0.060008 24 0.053678 12 0.052822 10 0.052746 23 0.047685 0 0.045292 15 0.031294 14 0.027133 9 0.025876 13 0.020399 4 0.004051 5 0.003605 3 0.001947 6 0.001111 7 6.42E-4 1 5.05E-4 8 3.9E-4 19 0.113421 16 0.089618 18 0.08261 20 0.081627 17 0.069393 21 0.06873 22 0.065418 11 0.060008 24 0.053678 12 0.052822 10 0.052746 23 0.047685 0 0.045292 15 0.031294 14 0.027133 9 0.025876 13 0.020399 4 0.004051 5 0.003605 3 0.001947 6 0.001111 7 6.42E-4 1 5.05E-4 8 3.9E-4 19 0.09063481913977593 18 0.07271678419493051 16 0.06773754969204844 20 0.06724190384478641 21 0.06671844450314357 22 0.06277133633949346 17 0.05910148951346617 11 0.05677963488489917 12 0.05283868250900805 24 0.05029539877917719 10 0.04880926106305047 23 0.04672770463423753 0 0.04208866513053541 9 0.03110950150482273 14 0.03089866485394609 15 0.028153082706352684 13 0.027724978946991278 4 0.01434586457309955 5 0.013908678644059555 6 0.011772976815241653 3 0.011311066157154851 7 0.010618501250285742 8 0.010491155433896594 1 0.01043957686444409 2 0.010022395752466336 __DUMMY__ 0.004741882268686297 false 1.0 753 21 0.0570268247575151 22 0.05660400630213172 18 0.0503192852103773 9 0.04767288906407058 11 0.04725432595101887 12 0.04634955209801674 23 0.04313895268543195 10 0.042842489193514514 19 0.04162648547806023 0 0.040676953104017775 17 0.039953217948727915 4 0.03961159175354576 5 0.039172109505114044 6 0.03817108194631107 13 0.03726772938823065 24 0.036376506437009064 7 0.03609794922924439 8 0.036060668441526306 1 0.036014968422075744 2 0.03553054306586493 3 0.035308379408698895 14 0.03307051562851619 20 0.030513093201453758 16 0.023840640555920833 15 0.018036332878663706 __DUMMY__ 0.011462908344942001 false 0.0 995 21 0.08181764710285838 22 0.07247707754193242 19 0.06580565961532871 11 0.06384367414447777 18 0.06083231440634308 12 0.058620980300954605 24 0.052926019142101155 20 0.04853385969914942 23 0.04421880441542777 10 0.04383136016873902 14 0.04001802054150411 17 0.03994222845142832 9 0.03920784891365545 13 0.03771421059613896 0 0.033619516662489836 16 0.031103118831717375 4 0.02383378922865587 5 0.023308748340095078 6 0.019609696248091037 3 0.01910453818809336 7 0.01760171885005795 8 0.01750565002632892 1 0.017297549083692073 2 0.016870251481172927 15 0.015488308664387584 __DUMMY__ 0.014867409355178758 false 0.0 754 9 0.059032971921086023 22 0.05552118821999607 4 0.05036728974994231 5 0.04985987718993899 6 0.04949118273162859 7 0.04910218296582665 8 0.04909339771722629 1 0.04900322941888969 3 0.04845485710479678 2 0.04837520333344243 0 0.04778499695684599 17 0.04731479294620367 18 0.04611208126569025 10 0.04073778160227804 23 0.039852893167158406 21 0.039175486223196936 11 0.03644078283316155 19 0.03431043485578817 24 0.03081553204523056 16 0.026560047397173214 15 0.020485250543152814 20 0.02027440972811622 12 0.019760788838703594 14 0.019005881045592428 13 0.011673493202480371 __DUMMY__ 0.011393966996453899 false 0.0 512 17 0.089114 0 0.087269 16 0.07227 22 0.058616 11 0.057885 9 0.056787 18 0.053778 10 0.048736 19 0.046415 6 0.04164 8 0.038087 7 0.038003 1 0.037895 2 0.037536 4 0.036512 5 0.036042 12 0.03293 21 0.032532 3 0.031186 23 0.023811 13 0.015129 15 0.013884 20 0.007815 24 0.006126 17 0.089114 0 0.087269 16 0.07227 22 0.058616 11 0.057885 9 0.056787 18 0.053778 10 0.048736 19 0.046415 6 0.04164 8 0.038087 7 0.038003 1 0.037895 2 0.037536 4 0.036512 5 0.036042 12 0.03293 21 0.032532 3 0.031186 23 0.023811 13 0.015129 15 0.013884 20 0.007815 24 0.006126 17 0.07633785423870884 0 0.07386798482032535 16 0.06009383021983998 22 0.05731947267033289 9 0.05564452140148106 18 0.05217299907167659 11 0.051349762187917244 10 0.045501973166109766 19 0.04495344732424043 6 0.042702058554796814 8 0.0402079168863446 7 0.04012386541888929 1 0.04001496075799393 2 0.03953986668538398 4 0.03953563804815534 5 0.03904924344344845 21 0.035384103669632676 3 0.0352913230121425 12 0.030010420505768357 23 0.029880503628392726 15 0.017370797677021634 24 0.015978540099330484 20 0.014766567071316149 13 0.014397231210767168 14 0.0064326297569894724 __DUMMY__ 0.0020724884729942683 false 1.0 996 21 0.08075463776985856 12 0.06838736317090632 22 0.06519526608228174 19 0.06169569714183078 11 0.06158753973466005 18 0.05825388448434607 13 0.05137572940503534 24 0.05058159826970215 20 0.04860268341498021 23 0.0472709431530921 14 0.04454068513241708 10 0.042035820486126196 17 0.03680176406946767 9 0.03404984426418724 0 0.03158152008425589 16 0.029632874278886823 4 0.02350707929038964 5 0.023001574352515715 6 0.020282196394559495 __DUMMY__ 0.017967034216352564 3 0.017619172002542736 7 0.017308848778594094 8 0.017223309059021134 1 0.017053674825194227 15 0.01699553055166944 2 0.01669372958712687 false 0.0 513 0 0.084093 17 0.078163 9 0.068252 22 0.06458 11 0.057364 10 0.055681 18 0.054974 16 0.048662 6 0.046597 8 0.04454 7 0.044232 1 0.04422 4 0.043617 2 0.043252 5 0.042985 3 0.039231 19 0.037305 21 0.03372 23 0.020985 12 0.020717 15 0.009974 13 0.008332 24 0.00478 14 0.003744 0 0.084093 17 0.078163 9 0.068252 22 0.06458 11 0.057364 10 0.055681 18 0.054974 16 0.048662 6 0.046597 8 0.04454 7 0.044232 1 0.04422 4 0.043617 2 0.043252 5 0.042985 3 0.039231 19 0.037305 21 0.03372 23 0.020985 12 0.020717 15 0.009974 13 0.008332 24 0.00478 14 0.003744 0 0.07130919023628733 17 0.06842391171480329 9 0.06306399355754934 22 0.061811392641997906 18 0.052932394210887655 11 0.05154340205552854 10 0.05021876670132523 6 0.04555745374734301 16 0.04409885790376454 8 0.043909403587614776 4 0.04388925295742914 7 0.043730572617951755 1 0.04365243490879627 5 0.043316252832329295 2 0.042895607271073756 3 0.04022373121824743 19 0.03916534951597538 21 0.03737043932110238 23 0.028027377317530078 12 0.022983084779409656 24 0.015290541767444678 15 0.014383540471276568 13 0.010886976408844562 14 0.009688489444981806 20 0.009679627177090167 __DUMMY__ 0.0019479556334152065 false 1.0 755 9 0.05596647361942598 22 0.05247034209943148 4 0.05078352705380871 6 0.050356232264133605 5 0.050309068923329134 7 0.04974462587379683 8 0.04972991481186245 1 0.049678574540504575 2 0.04905458411434066 3 0.04863437079395188 17 0.04775210917120003 0 0.046564210055191915 18 0.043910874684704185 23 0.04252856775704026 21 0.03810594004619857 10 0.036688117094181315 11 0.03440128306070123 19 0.034219878091198 24 0.03245492718250924 16 0.02921755979354378 12 0.022752758605477527 20 0.022003195547753093 15 0.019884407704795444 14 0.016934389311881112 13 0.013327145072474112 __DUMMY__ 0.012526922726565097 false 0.0 997 21 0.08127434295172226 12 0.06728207760136487 22 0.06640247556966462 19 0.06469445915203267 11 0.0622794655881463 18 0.06047556193537393 24 0.05137787051041817 20 0.05100833432450851 13 0.049082218746677016 23 0.04612436445824701 14 0.04403603127100725 10 0.04365291560668112 17 0.03798800686314316 9 0.034354769769719025 0 0.032011042932466975 16 0.03150150662603751 4 0.022046439811445544 5 0.0215546724330781 6 0.01856782915096328 __DUMMY__ 0.01826423373523044 15 0.01713056758385586 3 0.016492974652072313 7 0.01583622804969103 8 0.015754902538485556 1 0.015580928972409954 2 0.015225779165557545 false 0.0 514 18 0.099994 19 0.086219 10 0.081226 20 0.079494 14 0.065323 21 0.061309 22 0.055243 12 0.055022 13 0.054137 11 0.054055 15 0.05352 17 0.049731 16 0.049485 24 0.037802 0 0.037465 23 0.034506 9 0.032755 4 0.004641 5 0.004072 6 0.001737 3 0.001399 7 3.22E-4 8 2.79E-4 1 2.63E-4 18 0.099994 19 0.086219 10 0.081226 20 0.079494 14 0.065323 21 0.061309 22 0.055243 12 0.055022 13 0.054137 11 0.054055 15 0.05352 17 0.049731 16 0.049485 24 0.037802 0 0.037465 23 0.034506 9 0.032755 4 0.004641 5 0.004072 6 0.001737 3 0.001399 7 3.22E-4 8 2.79E-4 1 2.63E-4 18 0.08920317309562566 19 0.07567391808570038 10 0.07470875241216576 20 0.0661561617942359 21 0.06190554957739311 14 0.06169974157230752 22 0.05860714259263578 11 0.054436419341909244 12 0.05011580917045063 13 0.04905690313206521 15 0.048267428831729554 17 0.04621644425415358 16 0.040790510463053084 9 0.038094639921624804 0 0.03783986857923661 24 0.03710890065068448 23 0.03507208813732402 4 0.012273034649054193 5 0.011786957645323295 6 0.009172280991774072 3 0.008892165157300966 7 0.007747653888095324 8 0.007724103440783671 1 0.007608348413943524 2 0.007325980475249209 __DUMMY__ 0.002516023726180263 false 1.0 998 21 0.07986904198973849 22 0.06793010777604563 19 0.06753332917796978 18 0.06316726224645237 12 0.06233278800779993 11 0.062062605244717496 20 0.05303745854378395 24 0.05196709454676028 10 0.046148786060074866 23 0.04525785652764594 13 0.0435774649131161 14 0.043353154370352094 17 0.039217830997972054 9 0.03582630882853036 16 0.03313742794794387 0 0.032426790914892756 4 0.021630845540423566 5 0.02115616707648608 15 0.01904160708892949 6 0.01773476578091036 3 0.016798353969842608 __DUMMY__ 0.01563317030406321 7 0.015532256220822492 8 0.015444328918041008 1 0.01525853455081577 2 0.014924662455869523 false 0.0 756 17 0.06509026734311046 0 0.0610165662423175 22 0.05485473872417261 9 0.05283268216999857 16 0.050967805324112186 18 0.05021330816841919 11 0.04471660158484776 19 0.0444316862253415 6 0.042838056321840935 10 0.041390458736721744 4 0.041323249208373165 8 0.04128780332244646 7 0.04119911433888871 1 0.04109699578418439 5 0.0408403639020918 2 0.04054515484972399 3 0.03809588891614908 21 0.037339306161243556 23 0.03568499450771586 12 0.027949247300922388 24 0.025425052891451642 20 0.022344751776879456 15 0.021407597700058685 13 0.014035018153351309 14 0.012075999855598962 __DUMMY__ 0.0109972904900382 false 0.0 757 22 0.0677174409000413 21 0.06619478032003576 11 0.06374872461645738 18 0.06040444109796187 19 0.05399721702286899 10 0.05276513401377884 12 0.049065206611997945 0 0.04710442008575037 9 0.04688313545357251 17 0.04646734123294832 23 0.0366649966692283 14 0.036231839532330425 13 0.03600207521634048 24 0.035023750585022856 20 0.03310833481911901 16 0.03139531651264974 4 0.02905212576794863 5 0.028612802855217924 6 0.026921495848718897 7 0.024562374050296647 8 0.024523941836001772 1 0.024382577821217825 3 0.02425526300802321 2 0.023976013628800235 15 0.017898908558122692 __DUMMY__ 0.013040341935547938 false 0.0 515 17 0.084337 0 0.075054 16 0.070499 22 0.056415 9 0.055032 18 0.053199 19 0.0503 11 0.047088 6 0.042362 10 0.041194 8 0.040804 7 0.040609 1 0.040487 2 0.039691 4 0.038958 5 0.038211 3 0.035561 21 0.031031 23 0.029818 12 0.023815 15 0.020797 20 0.020403 24 0.02016 13 0.004174 17 0.084337 0 0.075054 16 0.070499 22 0.056415 9 0.055032 18 0.053199 19 0.0503 11 0.047088 6 0.042362 10 0.041194 8 0.040804 7 0.040609 1 0.040487 2 0.039691 4 0.038958 5 0.038211 3 0.035561 21 0.031031 23 0.029818 12 0.023815 15 0.020797 20 0.020403 24 0.02016 13 0.004174 17 0.07422471567415025 0 0.06792060330061395 16 0.05971117882924659 22 0.056165675557152864 9 0.05460309432903661 18 0.05195654011423162 19 0.047115933811562816 11 0.04604556471268261 6 0.04289575265460518 10 0.041765949015417574 8 0.0413709430415322 7 0.04123092522530452 1 0.04111283956952213 4 0.04054769441045967 2 0.04044053444837791 5 0.03993392930172831 3 0.03726124349398334 21 0.03457491047716239 23 0.03279507231142265 12 0.025602496239831515 24 0.022921946015102525 20 0.021173571681250298 15 0.02112409352269547 13 0.00907816533417508 14 0.006532630692872667 __DUMMY__ 0.001893996235879496 false 1.0 999 21 0.08215726849733371 22 0.07332177233546913 11 0.06707969824167909 19 0.06386584487792198 18 0.06062756032231088 12 0.06019272686990599 24 0.049119163324562724 10 0.045981482036424874 20 0.04448507695588913 23 0.04211151484711825 17 0.0408293469824187 9 0.04024627274921349 14 0.040031909911397934 13 0.03993101740413766 0 0.03678081700897954 16 0.030489718915272458 4 0.02351489519625614 5 0.02301006696979246 6 0.019649569162951856 3 0.01833129845329323 7 0.017284325590027284 8 0.017169962723522832 1 0.016987698272790546 __DUMMY__ 0.016698458410547033 2 0.016566208541802765 15 0.013536325398980377 false 0.0 516 20 0.118528 19 0.111364 24 0.090782 18 0.080371 21 0.07394 23 0.071169 16 0.063556 12 0.058567 22 0.052773 15 0.048474 14 0.046961 11 0.038132 10 0.036293 17 0.034977 13 0.029702 3 0.008786 4 0.008705 5 0.00799 9 0.007659 8 0.002843 7 0.002613 2 0.002362 1 0.002141 6 0.001312 20 0.118528 19 0.111364 24 0.090782 18 0.080371 21 0.07394 23 0.071169 16 0.063556 12 0.058567 22 0.052773 15 0.048474 14 0.046961 11 0.038132 10 0.036293 17 0.034977 13 0.029702 3 0.008786 4 0.008705 5 0.00799 9 0.007659 8 0.002843 7 0.002613 2 0.002362 1 0.002141 6 0.001312 20 0.0915547388303494 19 0.09087911810421254 18 0.07498651886920787 24 0.07256071372960271 21 0.07119528363873469 23 0.05931484986560451 22 0.05637046471446936 12 0.05537909724048884 16 0.050130886525380274 14 0.04869563777896431 11 0.044111752169459534 15 0.043043506649804726 10 0.042892795635341006 17 0.036930672631896776 13 0.03499539461928718 9 0.020730171900602595 4 0.015105682204666767 5 0.014524824450549886 3 0.013538092106044574 0 0.013176639516269668 8 0.009552363711939123 7 0.00946060585620764 6 0.009376674381186284 1 0.00909174307060606 2 0.009065633366353111 __DUMMY__ 0.0033361384327704573 false 1.0 758 18 0.07565864561572427 21 0.07019841644672084 10 0.06844692234662303 22 0.06766890054312885 11 0.06507867170871151 19 0.06358628560343198 12 0.053235164308351006 14 0.05232575348804529 13 0.04717299867973152 9 0.04537356973337911 0 0.045209805692466624 17 0.04473701703616868 20 0.04418342120831243 24 0.03228223707184836 23 0.03208533180625163 16 0.030871762713320493 15 0.02862520422433237 4 0.018839258164728003 5 0.018443455781384115 6 0.015960013334952863 3 0.014121628813745816 7 0.013662838988170107 8 0.013606213040348085 1 0.013481139839070155 2 0.013136871643848658 __DUMMY__ 0.012008472167204284 false 0.0 517 20 0.114183 19 0.089596 24 0.087761 18 0.075178 23 0.068754 15 0.052647 16 0.049324 21 0.04616 14 0.039065 12 0.038289 17 0.034081 22 0.033473 10 0.031737 3 0.029295 5 0.025206 4 0.025061 8 0.023339 7 0.023333 1 0.023309 2 0.022944 9 0.021342 13 0.020857 6 0.019374 11 0.005694 20 0.114183 19 0.089596 24 0.087761 18 0.075178 23 0.068754 15 0.052647 16 0.049324 21 0.04616 14 0.039065 12 0.038289 17 0.034081 22 0.033473 10 0.031737 3 0.029295 5 0.025206 4 0.025061 8 0.023339 7 0.023333 1 0.023309 2 0.022944 9 0.021342 13 0.020857 6 0.019374 11 0.005694 20 0.08395410376224481 19 0.07679866099920553 18 0.06971897908128158 24 0.06773350937137501 23 0.057224037825529 21 0.0543962605623703 22 0.046043043949717886 16 0.04438517764156677 12 0.04365020407121842 15 0.04201933059856021 14 0.03978082607530881 17 0.039397742783863106 10 0.03908633269836311 9 0.02940086080776623 13 0.028369534755450794 11 0.02757853758239448 3 0.02584184499343462 4 0.025577760549600332 5 0.0253785112446656 8 0.02261016048606243 7 0.022599962952840818 1 0.02247883914909596 2 0.022122549974289318 6 0.021407680801376786 0 0.017251890592532605 __DUMMY__ 0.00519365668988545 false 1.0 759 21 0.0682766355961327 22 0.06479293023020335 11 0.06205342914730574 18 0.06011636948210432 19 0.057665374009804045 12 0.05548497236513124 10 0.04971946826812132 17 0.04604824402818961 0 0.04421954526979594 9 0.041996869240920366 13 0.040883841943163225 23 0.039622444770168325 20 0.03890430107069512 24 0.038466445073937566 14 0.037089025346063155 16 0.03511669373245042 4 0.02660532317924663 5 0.026174820390079106 6 0.024629867446650362 7 0.02203617116437252 8 0.02198773027299025 1 0.021865031139070096 3 0.02153848657377118 2 0.021487277789962417 15 0.018165196132109946 __DUMMY__ 0.015053506337560956 false 0.0 518 18 0.099769 19 0.08586 10 0.081173 20 0.079526 14 0.065323 21 0.061114 22 0.054983 12 0.054682 13 0.05404 15 0.05387 11 0.053641 16 0.050081 17 0.049486 24 0.038284 0 0.037992 23 0.034432 9 0.032466 4 0.004611 5 0.004413 6 0.001878 3 0.001399 7 4.7E-4 8 3.41E-4 1 1.65E-4 18 0.099769 19 0.08586 10 0.081173 20 0.079526 14 0.065323 21 0.061114 22 0.054983 12 0.054682 13 0.05404 15 0.05387 11 0.053641 16 0.050081 17 0.049486 24 0.038284 0 0.037992 23 0.034432 9 0.032466 4 0.004611 5 0.004413 6 0.001878 3 0.001399 7 4.7E-4 8 3.41E-4 1 1.65E-4 18 0.08901855394505687 19 0.07559003366264411 10 0.07444528996045884 20 0.06640379128316354 21 0.061751749963625 14 0.06154977860067125 22 0.05836445730429027 11 0.054029508079316946 12 0.04994161458608285 13 0.04888227562053698 15 0.04841424568540821 17 0.04607385465496251 16 0.041152069025638886 0 0.037915273953143216 9 0.03785641307446273 24 0.037578613263110135 23 0.03521061995767966 4 0.012313197897165711 5 0.011999095872161645 6 0.009283786066283587 3 0.00897612177567978 7 0.007883306525699784 8 0.007820424749972918 1 0.007631814727252512 2 0.007393953946483434 __DUMMY__ 0.0025201558190484775 false 1.0 519 17 0.086004 16 0.082947 0 0.0712 19 0.057488 22 0.051612 18 0.051228 9 0.045804 11 0.045226 6 0.038554 8 0.036996 7 0.036522 1 0.036286 2 0.035999 4 0.034637 10 0.03441 23 0.034364 5 0.034041 3 0.031502 21 0.031334 20 0.03133 12 0.030645 24 0.028214 15 0.025978 13 0.007676 17 0.086004 16 0.082947 0 0.0712 19 0.057488 22 0.051612 18 0.051228 9 0.045804 11 0.045226 6 0.038554 8 0.036996 7 0.036522 1 0.036286 2 0.035999 4 0.034637 10 0.03441 23 0.034364 5 0.034041 3 0.031502 21 0.031334 20 0.03133 12 0.030645 24 0.028214 15 0.025978 13 0.007676 17 0.07694992734572395 16 0.0698710835828348 0 0.06610435359323966 19 0.053308369374699016 22 0.05292490545524006 18 0.05214649957592552 9 0.047736398673938515 11 0.04544393940147669 6 0.03913585743119561 10 0.038143408103223364 8 0.03749535170582472 7 0.03721327708324723 1 0.03705057341960052 2 0.036634141412544764 4 0.036324820917594966 5 0.03579943954847361 23 0.035377506323940835 21 0.034734389471319786 3 0.0330412329044841 12 0.030772849507133576 20 0.029259441807027588 24 0.027611063709963173 15 0.025750942901556106 13 0.01199270560146328 14 0.007049136245384969 __DUMMY__ 0.002128384902943722 false 1.0 760 21 0.0751224664135725 12 0.07248386345617398 11 0.06597102919693736 13 0.06378989746760205 18 0.06214146324531933 22 0.06138865050004276 19 0.054996519373901015 10 0.05431528543967647 14 0.050306181193871424 0 0.04102400736085594 20 0.0405549168230751 23 0.03971664618771577 17 0.03927825829083276 9 0.03700952929844625 24 0.035768021180938254 16 0.02813595153594763 4 0.022172766202054914 5 0.02176393021830021 6 0.02052689976135974 15 0.019360038880913918 7 0.01650712509666889 8 0.0164944695925738 1 0.016368005202702925 2 0.01608601499767658 3 0.01520888573616591 __DUMMY__ 0.01350917734667455 false 0.0 761 22 0.06270604521030272 21 0.061534835041949586 18 0.06096220692786162 19 0.05919399752204434 11 0.058607984643789905 17 0.05108413253100656 10 0.049648533808498777 12 0.048848987494298085 0 0.04705868178270899 9 0.04263127352079546 16 0.04173434817699388 20 0.03936992633075699 23 0.03897926427086765 24 0.036748879767204104 13 0.03431355678349556 14 0.03329044942475157 4 0.02709861921939379 5 0.026658002877318503 6 0.025648416059887318 7 0.023418898301224744 8 0.02341593770256032 1 0.023237234011902273 2 0.022862466881293213 3 0.02265837084473117 15 0.022123314401082346 __DUMMY__ 0.016165636463280543 false 0.0 762 21 0.07878881999600866 12 0.07743193663544681 13 0.06685331763918127 11 0.06463731303189921 22 0.06050214280447239 18 0.060258820023487904 19 0.05658419734505723 14 0.05109607105458131 10 0.04968816619529653 20 0.04454729424981631 23 0.04321868300892807 24 0.04077132122107571 17 0.03658647844844924 0 0.036407239303654186 9 0.03348205977716282 16 0.027765374162695363 4 0.02155190364961654 5 0.02113300318973561 6 0.019620238362442425 15 0.018153089530814955 7 0.015476542692276538 8 0.015452982969110638 1 0.015324060825274979 __DUMMY__ 0.015262000001130246 2 0.015051280904446818 3 0.01435566297793816 false 0.0 520 17 0.085021 0 0.079726 16 0.072436 22 0.054683 18 0.052856 9 0.052788 11 0.051317 19 0.049243 10 0.044139 6 0.041551 8 0.039566 7 0.039202 1 0.039106 2 0.038701 4 0.037526 5 0.036907 3 0.033966 21 0.029289 23 0.029225 12 0.025909 15 0.022096 20 0.018828 24 0.018184 13 0.007733 17 0.085021 0 0.079726 16 0.072436 22 0.054683 18 0.052856 9 0.052788 11 0.051317 19 0.049243 10 0.044139 6 0.041551 8 0.039566 7 0.039202 1 0.039106 2 0.038701 4 0.037526 5 0.036907 3 0.033966 21 0.029289 23 0.029225 12 0.025909 15 0.022096 20 0.018828 24 0.018184 13 0.007733 17 0.07512208762805621 0 0.07023132910119864 16 0.06181957208973166 22 0.054970566950250106 9 0.05279486136637827 18 0.052259397206198585 11 0.04819112891408095 19 0.047333114468800286 10 0.04329494711850838 6 0.04188276400600457 8 0.04009856508868494 7 0.03987669575991823 1 0.03977353839489553 2 0.039286679157277134 4 0.03915188867894716 5 0.03859842189910768 3 0.035714985675112346 21 0.03368640562359641 23 0.032567814137894315 12 0.027288485767633958 15 0.02253654868874345 24 0.021968128437570244 20 0.021185493706197104 13 0.011452035295898331 14 0.006914676299972859 __DUMMY__ 0.001999868539342538 false 1.0 521 18 0.078804 17 0.075978 19 0.073891 16 0.061291 0 0.059821 22 0.055959 20 0.053442 10 0.051909 9 0.051768 23 0.039355 24 0.037855 21 0.037077 11 0.036396 8 0.030526 4 0.030322 1 0.029912 6 0.029892 7 0.029861 5 0.029369 2 0.029057 3 0.028719 12 0.022806 15 0.021722 14 0.004267 18 0.078804 17 0.075978 19 0.073891 16 0.061291 0 0.059821 22 0.055959 20 0.053442 10 0.051909 9 0.051768 23 0.039355 24 0.037855 21 0.037077 11 0.036396 8 0.030526 4 0.030322 1 0.029912 6 0.029892 7 0.029861 5 0.029369 2 0.029057 3 0.028719 12 0.022806 15 0.021722 14 0.004267 18 0.07117258881943105 19 0.0669062490070437 17 0.06179114324440782 22 0.055150190321768336 20 0.0523836282601577 16 0.05141172054293853 10 0.04966226378286397 0 0.04854004519290913 9 0.04647390597121606 21 0.04439740430338806 23 0.04163229578415166 24 0.040846237715812014 11 0.039507329206766244 12 0.030789920565754827 4 0.030248539616150084 5 0.02955470433627794 15 0.029280751033337656 6 0.029033735148985457 8 0.028936661326567564 7 0.0285934504518071 1 0.028522334670785358 3 0.028214773630534967 2 0.027925733435108215 14 0.02093594259501533 13 0.014509470453813893 __DUMMY__ 0.003578980583007391 false 1.0 763 18 0.06866824006905954 14 0.06564473142531373 21 0.06539240647233685 13 0.06419594507170676 10 0.06334258478122431 12 0.05973626330486581 11 0.056874568963528126 22 0.05650558450748354 19 0.05316054903153509 20 0.044148185604787976 15 0.04152358411978664 9 0.03923166663192474 0 0.03654061295688936 23 0.03635199142005456 17 0.03621236935248532 24 0.03221726179770811 16 0.024672880267142292 4 0.02132646664640196 5 0.020958612758467172 6 0.01922925492742868 8 0.016266410763889117 7 0.01623254436329238 1 0.016109766312138542 2 0.015828666850274148 3 0.015825782908402735 __DUMMY__ 0.013803068691872663 false 0.0 522 18 0.067769 19 0.062451 22 0.057039 9 0.055212 20 0.054615 17 0.050936 24 0.049672 23 0.045088 10 0.044406 21 0.043515 3 0.040877 4 0.040178 5 0.039645 8 0.039172 7 0.038893 1 0.038601 0 0.038298 2 0.037638 6 0.036859 16 0.034777 11 0.027788 15 0.023527 12 0.016908 14 0.016136 18 0.067769 19 0.062451 22 0.057039 9 0.055212 20 0.054615 17 0.050936 24 0.049672 23 0.045088 10 0.044406 21 0.043515 3 0.040877 4 0.040178 5 0.039645 8 0.039172 7 0.038893 1 0.038601 0 0.038298 2 0.037638 6 0.036859 16 0.034777 11 0.027788 15 0.023527 12 0.016908 14 0.016136 18 0.06485360034633006 19 0.061416606128664605 22 0.05637146510302131 20 0.0536559516421493 21 0.049250623635279794 24 0.048997604485578085 17 0.04799915202295829 9 0.04799821466349067 23 0.045897148004541 10 0.0440994408176787 16 0.03659062901344127 0 0.036318758332616864 4 0.0358781213801685 5 0.035350446773580964 11 0.034995946323017044 3 0.03497948856798079 8 0.03370960995584519 7 0.03354851339348505 1 0.033312863565024865 6 0.03292927760209369 2 0.032662116666608364 12 0.028608046669134655 15 0.02757832908324255 14 0.02551297122336308 13 0.013724664621865326 __DUMMY__ 0.0037604099788401514 false 1.0 764 18 0.07858383638093741 10 0.0742976439742678 22 0.06491420683673153 21 0.061992063415531325 11 0.06127215293656494 19 0.060254123978563834 14 0.054691853584776316 9 0.04893187015021337 0 0.04771438463062805 17 0.04592907450521793 12 0.045048521790946816 13 0.04484353048409616 20 0.04149941590952687 15 0.03547994161304266 16 0.02976760794351243 23 0.02902159225275368 24 0.02624224153307229 4 0.020379596140958647 5 0.019998692507405887 6 0.01786152795216905 3 0.016234330687100583 7 0.01589800847147073 8 0.015884571275358066 1 0.015750014084198648 2 0.01540530417377692 __DUMMY__ 0.012103892787178121 false 0.0 523 20 0.108148 19 0.097666 18 0.092074 24 0.066672 21 0.065047 12 0.064045 14 0.059804 16 0.058436 15 0.056651 10 0.055983 23 0.05378 13 0.052567 22 0.044558 17 0.042452 11 0.037859 9 0.015318 0 0.014668 4 0.004719 5 0.004297 3 0.002805 6 9.01E-4 7 6.65E-4 8 4.95E-4 1 3.88E-4 20 0.108148 19 0.097666 18 0.092074 24 0.066672 21 0.065047 12 0.064045 14 0.059804 16 0.058436 15 0.056651 10 0.055983 23 0.05378 13 0.052567 22 0.044558 17 0.042452 11 0.037859 9 0.015318 0 0.014668 4 0.004719 5 0.004297 3 0.002805 6 9.01E-4 7 6.65E-4 8 4.95E-4 1 3.88E-4 20 0.08799263616711338 19 0.08497964243091408 18 0.0818632815052744 21 0.06577597554330454 24 0.060598885810743165 12 0.05776127927882213 14 0.05585815893677786 10 0.053170038029909314 22 0.051234532138016375 23 0.050623626071078114 15 0.048914367172822416 16 0.04857778761010578 13 0.04666238820018423 11 0.042655985216221715 17 0.04103573726931512 9 0.024066972765316382 0 0.020127780679379353 4 0.012502965782892957 5 0.012053883953272945 3 0.010049436658020027 6 0.00858932647008589 7 0.007976406255997973 8 0.007892700709934447 1 0.007706133047999479 2 0.0073787030477791525 __DUMMY__ 0.003951369248718987 false 1.0 765 21 0.07365454387523687 22 0.06949238897967859 11 0.06753519062641106 18 0.06492502741776922 19 0.0595192643728119 12 0.056807572602408554 10 0.05619331669199485 0 0.04400183842376103 17 0.04377278178183346 13 0.04375744257330295 9 0.043504532368428946 14 0.04324988321259921 20 0.039176301168325274 24 0.03758178015082177 23 0.036630057772508474 16 0.030518323948442814 4 0.023333405240375246 5 0.022892990576245883 6 0.020562119609550508 15 0.018805321263649998 3 0.01803396413397904 7 0.017908001826562592 8 0.017838463437788138 1 0.017691733140172482 2 0.01732670457741942 __DUMMY__ 0.015287050227921567 false 0.0 766 22 0.06024057184296461 17 0.05705948064786801 0 0.05681622286153035 18 0.05392714320608935 9 0.05307771674913736 11 0.05188358639601109 10 0.04752537033690236 21 0.04725464447317282 19 0.04556106109679013 16 0.04031916762059765 6 0.03825628457483283 4 0.03818135195787577 5 0.03770665640518583 8 0.03646160441974855 7 0.03642977857420378 1 0.036301990738719925 2 0.03578996411468795 23 0.0348437813167701 3 0.03445458634594178 12 0.03374046335190521 24 0.026776985465853394 20 0.02335884079402022 13 0.02154610430260503 14 0.02120722175483171 15 0.019042730377734077 __DUMMY__ 0.01223669027402015 false 0.0 524 0 0.08847 17 0.079603 9 0.065431 22 0.062643 11 0.060342 10 0.057198 18 0.05451 16 0.053414 6 0.045174 8 0.042598 7 0.042185 1 0.041961 2 0.041679 4 0.041393 5 0.040662 19 0.03759 3 0.036861 21 0.032654 12 0.023999 23 0.020764 13 0.012441 15 0.011305 14 0.003663 24 0.003458 0 0.08847 17 0.079603 9 0.065431 22 0.062643 11 0.060342 10 0.057198 18 0.05451 16 0.053414 6 0.045174 8 0.042598 7 0.042185 1 0.041961 2 0.041679 4 0.041393 5 0.040662 19 0.03759 3 0.036861 21 0.032654 12 0.023999 23 0.020764 13 0.012441 15 0.011305 14 0.003663 24 0.003458 0 0.07360881149576078 17 0.06957395526764684 9 0.06141581140460816 22 0.06056080426992138 11 0.052898099566486695 18 0.05274494844917522 10 0.05082980793338266 16 0.047142410259911054 6 0.04479922690715255 8 0.04287938244695929 4 0.04266345791126633 7 0.042652835987139405 1 0.04247966670319144 5 0.04204674772305533 2 0.04203833074179655 19 0.03953047409473361 3 0.038901141295411244 21 0.03655554058329424 23 0.0279692781260659 12 0.024741066903194595 15 0.015211841353603517 24 0.014531730320537919 13 0.012938314071284596 20 0.00987668625632607 14 0.00942728795237307 __DUMMY__ 0.0019823419757217706 false 1.0 767 18 0.0674609833029793 10 0.0641071120591925 22 0.06247296509980265 11 0.05570157149605077 9 0.05362797569843424 0 0.05357967179940169 21 0.05247477163712477 17 0.05111925969279609 19 0.0506754492954161 14 0.03924328484961856 12 0.03625031931416174 13 0.032669808486875326 16 0.032424369300626685 4 0.030280935132374055 23 0.03012828620126646 20 0.03001178168812858 5 0.02984697029547173 6 0.0290806610753861 15 0.028588656780543363 8 0.02732612661395762 7 0.02731395586282029 1 0.027185103363062638 2 0.026735785971903053 3 0.026519092523304068 24 0.023465480640502693 __DUMMY__ 0.011709621818798968 false 0.0 525 17 0.082388 16 0.081694 0 0.062293 19 0.059873 18 0.050892 22 0.047984 9 0.042432 20 0.040597 23 0.039642 6 0.039173 8 0.038766 7 0.038747 1 0.038677 24 0.038307 11 0.038208 2 0.037859 4 0.036285 5 0.035634 3 0.034877 15 0.033309 10 0.029644 21 0.028711 12 0.02396 14 4.6E-5 17 0.082388 16 0.081694 0 0.062293 19 0.059873 18 0.050892 22 0.047984 9 0.042432 20 0.040597 23 0.039642 6 0.039173 8 0.038766 7 0.038747 1 0.038677 24 0.038307 11 0.038208 2 0.037859 4 0.036285 5 0.035634 3 0.034877 15 0.033309 10 0.029644 21 0.028711 12 0.02396 14 4.6E-5 17 0.07517336429108924 16 0.07178454059340628 0 0.059410445289214936 19 0.058032714026462 18 0.05438769807034666 22 0.05044130575948794 9 0.0433249145973929 11 0.041663520559496785 20 0.03876415527290793 23 0.038578255774852396 10 0.03644212418235931 6 0.03629515506531004 8 0.03526998553558984 7 0.03517669109008441 1 0.03507131288200109 24 0.03478535933639038 2 0.03444660537962152 15 0.03437255692090264 21 0.034346669804829005 4 0.034184549410088264 5 0.03363378159806582 3 0.03178831150935665 12 0.02895579637387849 14 0.011002037688564652 13 0.01034500496313368 __DUMMY__ 0.0023231440251671623 false 1.0 768 21 0.07262475814462027 19 0.07242711370333416 18 0.0651639506687693 22 0.06302230344714617 20 0.05928532909933291 12 0.057600884391123985 11 0.055891164778633366 24 0.05310683914152856 23 0.047234606938075 10 0.04512338485638024 17 0.04364108520350369 16 0.04217398490221926 14 0.039531438635291696 13 0.038113694641051556 9 0.033575326547552124 0 0.032678400395935336 15 0.024084126479897185 4 0.021091844409638717 5 0.020634762775801195 6 0.01764404153100624 3 0.017134212233749745 7 0.015958297057271364 8 0.015898362578132756 1 0.01571265430139557 2 0.015387858173186945 __DUMMY__ 0.015259574965422518 false 0.0 526 17 0.086124 16 0.082537 0 0.07058 19 0.057356 22 0.052041 18 0.05181 9 0.04562 11 0.044742 6 0.038652 8 0.036811 1 0.036657 7 0.036588 2 0.036402 4 0.034834 5 0.034581 10 0.034124 23 0.033964 3 0.031921 21 0.031604 20 0.030958 12 0.030644 24 0.028277 15 0.02579 13 0.007385 17 0.086124 16 0.082537 0 0.07058 19 0.057356 22 0.052041 18 0.05181 9 0.04562 11 0.044742 6 0.038652 8 0.036811 1 0.036657 7 0.036588 2 0.036402 4 0.034834 5 0.034581 10 0.034124 23 0.033964 3 0.031921 21 0.031604 20 0.030958 12 0.030644 24 0.028277 15 0.02579 13 0.007385 17 0.07698852790930563 16 0.06963561228981556 0 0.06582085097766949 19 0.05326100114894538 22 0.05314131130040498 18 0.052455263887644515 9 0.047677015423380514 11 0.04522708698438473 6 0.039169564539485495 10 0.038056772921808854 8 0.03740250279350919 7 0.03723461106980441 1 0.037211559840249396 2 0.03680989549354686 4 0.03641033887547183 5 0.03604123192321228 23 0.03518483607338227 21 0.034871294742714776 3 0.033230654902699906 12 0.030756675631665835 20 0.029100272688052556 24 0.02763843390002575 15 0.025644997161114808 13 0.011849835561681699 14 0.007057440760380816 __DUMMY__ 0.0021224111996424964 false 1.0 527 19 0.087783 18 0.087474 21 0.080397 20 0.075727 12 0.068952 10 0.065831 22 0.064054 11 0.06252 14 0.054703 13 0.05432 24 0.047981 16 0.04757 17 0.046752 23 0.039998 0 0.035862 15 0.031734 9 0.030723 4 0.006092 5 0.005867 6 0.002604 3 0.001778 7 6.47E-4 8 3.38E-4 1 2.93E-4 19 0.087783 18 0.087474 21 0.080397 20 0.075727 12 0.068952 10 0.065831 22 0.064054 11 0.06252 14 0.054703 13 0.05432 24 0.047981 16 0.04757 17 0.046752 23 0.039998 0 0.035862 15 0.031734 9 0.030723 4 0.006092 5 0.005867 6 0.002604 3 0.001778 7 6.47E-4 8 3.38E-4 1 2.93E-4 18 0.08018559926684637 19 0.07888793358271719 21 0.07595110842269223 20 0.06733860160502889 22 0.06317913854776393 12 0.06316742983420082 10 0.06156240409367928 11 0.05969765976102282 14 0.05345608167967302 13 0.05072803022078221 24 0.04714501055890671 17 0.0439501522237926 16 0.04160395285571962 23 0.040800213525048507 0 0.03473674185220641 9 0.03361194096766854 15 0.03225633696703474 4 0.012240761000954463 5 0.011918903793618197 6 0.008729487157864245 3 0.008053371063010042 7 0.006836227205205913 8 0.00668044443457218 1 0.006562452839186749 2 0.006283788712103162 __DUMMY__ 0.0044362278287008935 false 1.0 769 19 0.06292209777910558 18 0.05797103840434192 21 0.05549203551526916 22 0.05461616811056167 17 0.052045035205823514 16 0.04982259931074581 20 0.04868536849092588 23 0.04776296335042663 12 0.047678957847927306 11 0.04706768632320576 24 0.04400904773261919 0 0.0410523130450293 10 0.04002471302910084 9 0.03665616989605145 13 0.0304802664152792 4 0.029177081042449773 5 0.028715707179744327 6 0.028117999639059532 14 0.028117191839063922 8 0.026306985603736538 7 0.026301247523764983 15 0.0261709856583499 1 0.026102427188483945 2 0.025720181200701006 3 0.025371856609907786 __DUMMY__ 0.01361187605832504 false 0.0 528 17 0.11124 16 0.102037 0 0.097348 18 0.080832 19 0.071027 10 0.067599 11 0.063564 22 0.059267 9 0.049838 15 0.035844 12 0.033837 21 0.029847 20 0.024945 6 0.02208 8 0.018007 1 0.017575 7 0.01756 2 0.017024 13 0.016442 23 0.016162 4 0.015856 5 0.015135 3 0.00914 14 0.007792 17 0.11124 16 0.102037 0 0.097348 18 0.080832 19 0.071027 10 0.067599 11 0.063564 22 0.059267 9 0.049838 15 0.035844 12 0.033837 21 0.029847 20 0.024945 6 0.02208 8 0.018007 1 0.017575 7 0.01756 2 0.017024 13 0.016442 23 0.016162 4 0.015856 5 0.015135 3 0.00914 14 0.007792 17 0.08687439948152115 0 0.07708338561402756 16 0.07645124989972982 18 0.0670494980065772 19 0.05964453590606363 22 0.05692373625032924 10 0.05532213806178006 11 0.054452651745931564 9 0.04976774186196298 21 0.03508473428329523 12 0.032504906759045174 15 0.03132951994609171 6 0.03065483579803025 8 0.027884723838024015 7 0.027622570466221845 1 0.027574483281331205 4 0.027066593233109216 2 0.027042691055932204 20 0.026897960552329837 23 0.026740085599756342 5 0.02648575071947898 3 0.022142416394503255 13 0.017517487132755707 24 0.01458721541049166 14 0.013290709280906745 __DUMMY__ 0.0020039794207733167 false 1.0 529 18 0.121983 10 0.120978 14 0.074379 22 0.072888 19 0.068972 9 0.064789 11 0.060432 21 0.054042 15 0.052892 0 0.05236 17 0.046071 20 0.041744 13 0.040812 12 0.023244 23 0.019111 5 0.014021 4 0.012359 16 0.012116 3 0.01115 2 0.009179 6 0.00795 1 0.006666 7 0.0061 8 0.005763 18 0.121983 10 0.120978 14 0.074379 22 0.072888 19 0.068972 9 0.064789 11 0.060432 21 0.054042 15 0.052892 0 0.05236 17 0.046071 20 0.041744 13 0.040812 12 0.023244 23 0.019111 5 0.014021 4 0.012359 16 0.012116 3 0.01115 2 0.009179 6 0.00795 1 0.006666 7 0.0061 8 0.005763 18 0.09659073231600769 10 0.09164477872447757 22 0.06571398279855234 14 0.06418200555121867 19 0.06381208431716845 21 0.05549398237936773 11 0.05529629132614718 9 0.054665586287855054 15 0.048084419745868405 0 0.04542397066894295 20 0.04488254198725609 17 0.044328183537962404 13 0.04067185890069696 12 0.0321259985444667 23 0.028096532918201928 16 0.021939819614450535 5 0.01930452624439086 4 0.018762911648226004 24 0.01814515370716294 3 0.016495087291510082 6 0.015183560575002626 2 0.014808139825227034 1 0.013822860526804336 7 0.013659506865454573 8 0.013511500766917713 __DUMMY__ 0.0033539829306630914 false 1.0 770 19 0.06739661597433005 18 0.0642249360313105 21 0.06336647430280538 22 0.059687049121277216 20 0.05523588106115847 11 0.05110710018878727 12 0.04894988718517159 24 0.048780489303913356 23 0.04631336616650258 10 0.046178428372522125 17 0.04519762799175098 16 0.042096706566460834 14 0.03777875514476143 9 0.036435004264845236 0 0.03473725163456234 13 0.03312822589926896 15 0.02877365218470356 4 0.02493658113272688 5 0.024481385106058805 6 0.022037789272919283 3 0.021553714240471547 7 0.0206628108055882 8 0.020654504763732116 1 0.02043750260122267 2 0.02013691437160445 __DUMMY__ 0.015711346311544215 false 0.0 771 21 0.07335139728778076 19 0.07177928409496648 18 0.06400823591357968 22 0.06312317132467453 12 0.05929975809190241 20 0.05769341645305479 11 0.0567101156413351 24 0.05231112099778339 23 0.046961397326694194 17 0.044384823541646155 10 0.04408225135696134 16 0.042678822393814105 13 0.03937875407751185 14 0.03873087774430313 0 0.0337583134592511 9 0.03346085752835726 15 0.022571348209430166 4 0.021100798809251135 5 0.02064208291697209 6 0.017901859544824837 3 0.01684570329049399 __DUMMY__ 0.016114447939901213 7 0.01599653632984948 8 0.01594075608463965 1 0.01576079352397684 2 0.015413076117044391 false 0.0 530 19 0.101254 21 0.094264 18 0.082104 20 0.079929 22 0.076179 12 0.070527 11 0.064355 24 0.064274 16 0.058141 17 0.05532 23 0.053258 10 0.045747 0 0.034447 13 0.031217 14 0.029461 9 0.028859 15 0.010309 4 0.007295 5 0.006371 6 0.002825 3 0.002609 7 8.59E-4 8 3.76E-4 1 2.2E-5 19 0.101254 21 0.094264 18 0.082104 20 0.079929 22 0.076179 12 0.070527 11 0.064355 24 0.064274 16 0.058141 17 0.05532 23 0.053258 10 0.045747 0 0.034447 13 0.031217 14 0.029461 9 0.028859 15 0.010309 4 0.007295 5 0.006371 6 0.002825 3 0.002609 7 8.59E-4 8 3.76E-4 1 2.2E-5 19 0.08290176730842197 21 0.07584027418343525 18 0.07140839066780601 20 0.06727265271172235 22 0.06566717757361737 12 0.058364263497600655 24 0.056283852526736386 11 0.05487260466405085 16 0.05106384373113011 17 0.050849439771034045 23 0.05027154297373505 10 0.04444562501059365 0 0.03515321072671111 9 0.03331419382500479 14 0.03160272262353229 13 0.03113979431060868 15 0.019641625636616797 4 0.018269848649027455 5 0.017624548793558025 6 0.014878646388122807 3 0.01458254045823439 7 0.013385846621487486 8 0.013172951944242886 1 0.012898529029266064 2 0.012726256568095723 __DUMMY__ 0.0023678498056076535 false 1.0 772 19 0.0681932314984404 18 0.06615802519592513 21 0.06153652660578028 22 0.05871944847787474 20 0.054895506143173206 11 0.051309078983139134 10 0.049238510597124 12 0.048591775974060905 17 0.04688872621685199 24 0.045665427415108255 23 0.04503557343689066 16 0.044156245970746556 14 0.039506280954788704 0 0.036862424918370905 9 0.03660562250845678 13 0.03471240927452486 15 0.03148912181340173 4 0.023689506747858663 5 0.023261555748693204 6 0.02111648323393357 3 0.020233033227712843 7 0.019642851392284458 8 0.019633565439056578 1 0.01942942525873396 2 0.019129915772122443 __DUMMY__ 0.014299727194946049 false 0.0 773 21 0.07996855610768433 12 0.0781965907535417 13 0.06675201319753628 11 0.0649998243805649 22 0.061011805607345065 18 0.060476317254490694 19 0.05776056024628183 14 0.05094896234442766 10 0.04921853061991476 20 0.04563725564675371 23 0.043624771125439284 24 0.04188679393932283 17 0.03652383288706295 0 0.035879000790692644 9 0.032974711056497026 16 0.028181708482232833 4 0.021031844604729455 5 0.02060999603930328 6 0.01897408361001262 15 0.017620324447957657 __DUMMY__ 0.015117370677662544 7 0.0148464878741968 8 0.014816308302576508 1 0.014689153239537024 2 0.014417476885331222 3 0.013835719878904373 false 0.0 531 18 0.137033 10 0.127644 14 0.078308 22 0.077366 19 0.073812 9 0.068863 15 0.057381 21 0.05482 11 0.052818 20 0.048312 0 0.042504 17 0.040253 13 0.033231 23 0.029034 12 0.015639 5 0.013913 4 0.013537 3 0.008247 6 0.006503 1 0.004528 2 0.004517 7 0.004119 8 0.003903 24 0.003714 18 0.137033 10 0.127644 14 0.078308 22 0.077366 19 0.073812 9 0.068863 15 0.057381 21 0.05482 11 0.052818 20 0.048312 0 0.042504 17 0.040253 13 0.033231 23 0.029034 12 0.015639 5 0.013913 4 0.013537 3 0.008247 6 0.006503 1 0.004528 2 0.004517 7 0.004119 8 0.003903 24 0.003714 18 0.10240295258636589 10 0.0929463450545296 22 0.06690832407600168 19 0.06569180759696795 14 0.06562657158112192 9 0.05595722061730626 21 0.055110851671841765 15 0.05091236763553189 11 0.05023360983064629 20 0.04863337480658366 17 0.04109541178992889 0 0.039568742600102076 13 0.03638937961061184 23 0.033807349787785615 12 0.02797933770574949 24 0.021189701120851414 4 0.020059063272291136 5 0.020005513318340145 16 0.01644292699933741 3 0.01606186337126975 6 0.015232060119468097 1 0.013652817590437502 7 0.013566327090517012 2 0.013484644585355381 8 0.013478362962140573 __DUMMY__ 0.0035630726189168366 false 1.0 774 21 0.076059322592278 12 0.06991238372653409 11 0.06318639047293319 22 0.06217124355403987 18 0.06065506705476889 13 0.05824772374105665 19 0.05697088953824121 10 0.04964026539890137 14 0.04773654396047879 20 0.04415359256860303 23 0.04239174202046594 24 0.0415809531450555 17 0.03790330209119882 0 0.0369311502941069 9 0.03626000815237976 16 0.02813117628719287 4 0.02331540420222037 5 0.02288787713603948 6 0.02101826661999486 15 0.018680527741204978 7 0.017518398998227564 8 0.017499001557255284 1 0.01734798297991782 2 0.01705364560440382 3 0.016966922673883462 __DUMMY__ 0.0157802178886174 false 0.0 532 19 0.102857 21 0.093281 20 0.083001 18 0.07719 22 0.074946 24 0.069263 12 0.066467 11 0.066345 23 0.054755 16 0.051757 10 0.049364 14 0.042144 17 0.039896 13 0.032848 9 0.024815 0 0.023197 15 0.020107 5 0.008923 4 0.008094 3 0.006994 2 0.001669 1 8.94E-4 6 8.15E-4 7 3.78E-4 19 0.102857 21 0.093281 20 0.083001 18 0.07719 22 0.074946 24 0.069263 12 0.066467 11 0.066345 23 0.054755 16 0.051757 10 0.049364 14 0.042144 17 0.039896 13 0.032848 9 0.024815 0 0.023197 15 0.020107 5 0.008923 4 0.008094 3 0.006994 2 0.001669 1 8.94E-4 6 8.15E-4 7 3.78E-4 19 0.08425570069510663 21 0.08425049335194802 18 0.0711878513406277 22 0.06975545344499197 20 0.06838789973214263 12 0.06378892058302858 11 0.06307512308737133 24 0.05920542662947464 23 0.049835170210856296 10 0.04954250360619457 14 0.044486418931142926 16 0.04219379431062143 13 0.03970705964743658 17 0.039431475608208075 9 0.030462061512471442 0 0.02802817270536691 15 0.022198918131847108 5 0.015356722528835012 4 0.015217745086148551 3 0.012244822434919488 6 0.009810175492097055 2 0.008797742770739823 1 0.008566037816007708 7 0.00846666591389125 8 0.008272151728747552 __DUMMY__ 0.0034754926997768035 false 1.0 775 12 0.08188496062728087 21 0.07672942584542 13 0.07505377464218188 11 0.06093682636531492 18 0.0594994505128826 14 0.05600799332175133 22 0.05513557713789843 19 0.05470972835682071 10 0.04866454878441352 20 0.04674373954768325 23 0.044866437237941745 24 0.040329843751908394 17 0.03473106029600545 0 0.03375091301957528 9 0.030130594119665476 16 0.027795156662288222 15 0.022962470197759377 4 0.021128325639220975 5 0.0207339082552815 6 0.019735927106075912 8 0.015203666710619266 7 0.015174985482224951 1 0.015056225329149048 2 0.014820322641302694 __DUMMY__ 0.014730289750404644 3 0.013483848658929636 false 0.0 533 10 0.111629 18 0.105287 14 0.071454 22 0.069655 9 0.066279 11 0.062663 0 0.057947 19 0.057482 21 0.051763 15 0.050898 17 0.046719 13 0.043766 20 0.031965 12 0.024641 4 0.017729 5 0.017697 23 0.016212 16 0.014995 6 0.014688 3 0.014416 2 0.013138 7 0.013058 1 0.01299 8 0.012927 10 0.111629 18 0.105287 14 0.071454 22 0.069655 9 0.066279 11 0.062663 0 0.057947 19 0.057482 21 0.051763 15 0.050898 17 0.046719 13 0.043766 20 0.031965 12 0.024641 4 0.017729 5 0.017697 23 0.016212 16 0.014995 6 0.014688 3 0.014416 2 0.013138 7 0.013058 1 0.01299 8 0.012927 18 0.08870172846719444 10 0.08778129543000837 22 0.06426791844900503 14 0.06290747518983236 19 0.05764023774943067 11 0.05656047732125381 9 0.055905382080745324 21 0.05407416858222861 0 0.048628192385179375 15 0.04704917090394933 17 0.04468880379033942 13 0.04223288180603771 20 0.03919830117445508 12 0.032492291083139564 23 0.02626612511190869 16 0.022747479467892684 4 0.02153543242432015 5 0.021297723076354493 6 0.01865936317843127 3 0.018245965310791305 7 0.017194766613404768 24 0.017193789774296316 8 0.01714280329560774 1 0.01707068132067294 2 0.016961934471754724 __DUMMY__ 0.003555611541765924 false 1.0 776 12 0.0771341291640381 13 0.07685313571804984 21 0.07421179311622614 14 0.06515569176907272 18 0.06272361678611421 11 0.059107391328193815 22 0.05433856310634493 10 0.05379893586945072 19 0.053720720910777814 20 0.047757592669243565 23 0.04257647748293327 24 0.03870362581054335 15 0.03345764961646647 17 0.032497477851975015 0 0.031623744986098004 9 0.031241101635160397 16 0.024862270122001016 4 0.020050608890547585 5 0.019681902370062 6 0.018272994064187247 8 0.014149313142966854 7 0.014099634421236072 1 0.013993931794689633 2 0.013770169195246321 __DUMMY__ 0.013268287838836641 3 0.012949240339538334 false 0.0 534 10 0.102682 18 0.090441 11 0.068572 14 0.066671 0 0.066247 22 0.064952 9 0.06194 19 0.053179 17 0.052489 13 0.050456 21 0.049928 15 0.047645 12 0.033324 16 0.028415 20 0.026827 4 0.017678 5 0.01739 6 0.016672 1 0.015036 7 0.01503 8 0.014918 2 0.014362 3 0.014106 23 0.01104 10 0.102682 18 0.090441 11 0.068572 14 0.066671 0 0.066247 22 0.064952 9 0.06194 19 0.053179 17 0.052489 13 0.050456 21 0.049928 15 0.047645 12 0.033324 16 0.028415 20 0.026827 4 0.017678 5 0.01739 6 0.016672 1 0.015036 7 0.01503 8 0.014918 2 0.014362 3 0.014106 23 0.01104 10 0.08607506304076153 18 0.08276781906342719 22 0.06446682444298785 11 0.06319908530150695 14 0.059011306525038915 0 0.05625515291736828 9 0.055653402862165864 19 0.05556276979848625 21 0.05487475985474798 17 0.04910203657760228 13 0.04572941835442932 15 0.04139840366276327 12 0.03784646367090212 20 0.03365530847440594 16 0.02889261546664878 23 0.02149301046147104 4 0.020853456697044543 5 0.02049249009205715 6 0.01910681600652266 7 0.01737091165133551 8 0.017319237268218234 1 0.01728692383293016 3 0.01706504908359881 2 0.01677417655381992 24 0.014241571033021863 __DUMMY__ 0.003505927306737875 false 1.0 535 10 0.101235 18 0.087754 11 0.067091 14 0.066807 0 0.065085 22 0.06461 9 0.063149 17 0.050835 19 0.050324 13 0.04919 21 0.049105 15 0.047503 12 0.031215 16 0.025233 20 0.024765 4 0.02016 5 0.019713 6 0.018996 7 0.017596 1 0.017486 8 0.017318 2 0.016797 3 0.016751 23 0.011283 10 0.101235 18 0.087754 11 0.067091 14 0.066807 0 0.065085 22 0.06461 9 0.063149 17 0.050835 19 0.050324 13 0.04919 21 0.049105 15 0.047503 12 0.031215 16 0.025233 20 0.024765 4 0.02016 5 0.019713 6 0.018996 7 0.017596 1 0.017486 8 0.017318 2 0.016797 3 0.016751 23 0.011283 10 0.08416541725146753 18 0.08034090748090524 22 0.0637619572857104 11 0.06151134391579652 14 0.05853719795384956 9 0.056257191192221036 0 0.05522388604458991 21 0.05374111679606213 19 0.053233281156151474 17 0.04797768821318616 13 0.044525914588838936 15 0.04146127453327817 12 0.036192231134903004 20 0.03221584960024568 16 0.027046213709929264 4 0.02294413072674393 5 0.022508651564774825 23 0.02216769369166923 6 0.021152191760674396 7 0.019572374185985703 8 0.019448415617471966 1 0.01943636497139203 3 0.01929724559569338 2 0.01891509702685646 24 0.014604632338711836 __DUMMY__ 0.003761731662891094 false 1.0 777 12 0.07493081088740391 21 0.0748113839885671 13 0.07151762245968385 18 0.06193187827716584 11 0.0604758111554167 14 0.06008778794011618 22 0.05680058217122995 19 0.054288899249421554 10 0.05271850806512697 20 0.045913474059218244 23 0.042233090302701795 24 0.03901642977087051 17 0.03413837028682048 0 0.033554668137044635 9 0.03298737052938872 15 0.028920951176889243 16 0.025571423617758864 4 0.021045367647291112 5 0.02064902916148668 6 0.019152540590717474 8 0.015175272218126116 7 0.015150116174412033 __DUMMY__ 0.015024722313416899 1 0.015023209235786608 2 0.014765445837806822 3 0.014115234746131529 false 0.0 536 20 0.098723 18 0.09523 19 0.093438 10 0.065141 21 0.063838 14 0.061557 12 0.060717 24 0.056398 15 0.055328 16 0.055148 13 0.052825 22 0.047672 23 0.047411 17 0.044499 11 0.04361 0 0.022391 9 0.021483 4 0.004849 5 0.004209 3 0.002309 6 0.001439 7 7.71E-4 8 5.18E-4 1 4.94E-4 20 0.098723 18 0.09523 19 0.093438 10 0.065141 21 0.063838 14 0.061557 12 0.060717 24 0.056398 15 0.055328 16 0.055148 13 0.052825 22 0.047672 23 0.047411 17 0.044499 11 0.04361 0 0.022391 9 0.021483 4 0.004849 5 0.004209 3 0.002309 6 0.001439 7 7.71E-4 8 5.18E-4 1 4.94E-4 18 0.08451349658483429 20 0.08229625081023721 19 0.08223288988372672 21 0.06419263244486956 10 0.05984586607285772 14 0.057966707660656536 12 0.054962377378537125 24 0.05364892109114165 22 0.05276861415673767 15 0.04951476318430253 13 0.047148043724040974 23 0.046337776407795635 16 0.0462116106146044 11 0.045565175499624896 17 0.042197015515530165 9 0.02814624274126006 0 0.024864277672591098 4 0.012493404253536495 5 0.011957590252912004 3 0.009763676117019334 6 0.008830185320058203 7 0.00801140387175792 8 0.007889648349826741 1 0.0077479048889194475 2 0.007379085445568394 __DUMMY__ 0.003514440057053364 false 1.0 778 21 0.07875614379215953 12 0.07793819744865658 13 0.06762880566124302 11 0.06129535102867052 22 0.05858391627919412 18 0.058285984701844366 19 0.05652449917133757 14 0.05227518521815195 20 0.04691800583026831 23 0.04648280904949445 10 0.04550468007594176 24 0.044221928845874885 17 0.034638889666837154 0 0.03236052539916321 9 0.031073515851399777 16 0.027506902377074458 4 0.022247827184415606 5 0.021802957807837184 15 0.020499486774694896 6 0.020201354586521714 __DUMMY__ 0.016347951204428755 7 0.01611716818736801 8 0.01609570392809496 1 0.015945060786157934 2 0.015663343787091104 3 0.015083805356078015 false 0.0 537 20 0.118033 19 0.093586 24 0.089602 18 0.076984 23 0.066638 15 0.054725 16 0.052531 21 0.045975 14 0.03964 12 0.037606 17 0.036043 10 0.033336 22 0.031777 3 0.027884 4 0.023117 5 0.02303 8 0.021621 1 0.021576 2 0.021408 7 0.021328 9 0.020937 13 0.020515 6 0.017288 11 0.004821 20 0.118033 19 0.093586 24 0.089602 18 0.076984 23 0.066638 15 0.054725 16 0.052531 21 0.045975 14 0.03964 12 0.037606 17 0.036043 10 0.033336 22 0.031777 3 0.027884 4 0.023117 5 0.02303 8 0.021621 1 0.021576 2 0.021408 7 0.021328 9 0.020937 13 0.020515 6 0.017288 11 0.004821 20 0.08600179940605357 19 0.07843088471309528 18 0.07068944791875656 24 0.06848364066784474 23 0.05623181437746536 21 0.05355351712800003 16 0.045876479020832375 22 0.04472748110313806 15 0.04424206042286321 12 0.04273438293359673 14 0.04070085690316523 17 0.04017443867122265 10 0.04003801080029372 9 0.029147447216853323 13 0.028256897348867795 11 0.026515673787619043 3 0.02531414751742145 4 0.024730598519027768 5 0.024425546692795494 8 0.021928344668988013 1 0.021786564949578795 7 0.021780277042040237 2 0.021524188401081366 6 0.02050547886262298 0 0.0169514327140287 __DUMMY__ 0.005248588212747386 false 1.0 779 12 0.07837653441456809 21 0.07828289394378798 13 0.06881076230629062 11 0.06130800407231849 18 0.05868433995149224 22 0.058058785910802484 19 0.056068001329262804 14 0.05297842196455922 20 0.04671472693889316 10 0.046503357470468645 23 0.04588507486204539 24 0.04325165633754234 17 0.0346206595702522 0 0.03278487663382321 9 0.031202363309663507 16 0.027299572255822694 4 0.02207020726928857 5 0.021640105316069892 15 0.020892444233197884 6 0.02012120739576201 __DUMMY__ 0.01630184433315377 7 0.015971276546446717 8 0.0159608390197404 1 0.015814255260563508 2 0.015543352654588598 3 0.014854436699595606 false 0.0 538 18 0.125681 10 0.103268 19 0.091076 22 0.085577 17 0.07121 11 0.065204 0 0.06491 21 0.064712 9 0.064417 20 0.05628 14 0.039758 16 0.039754 12 0.02753 15 0.026348 23 0.019513 13 0.0172 24 0.016752 4 0.007038 5 0.005013 6 0.00324 8 0.001498 3 0.001498 7 0.001494 1 0.001029 18 0.125681 10 0.103268 19 0.091076 22 0.085577 17 0.07121 11 0.065204 0 0.06491 21 0.064712 9 0.064417 20 0.05628 14 0.039758 16 0.039754 12 0.02753 15 0.026348 23 0.019513 13 0.0172 24 0.016752 4 0.007038 5 0.005013 6 0.00324 8 0.001498 3 0.001498 7 0.001494 1 0.001029 18 0.09812054286623788 10 0.08406187019002503 22 0.074172495373431 19 0.07368563988934539 21 0.0607910397232139 11 0.05978979202939933 17 0.058063990788865434 9 0.05722854285330992 0 0.054701735928234206 20 0.04835674925251174 14 0.0440663492191128 16 0.034874555077266854 12 0.032571161051705814 15 0.0311177478023204 23 0.02642123527359483 13 0.02627983114846859 24 0.024248635253116487 4 0.01727195171249941 5 0.016092218199625332 6 0.01404786667177607 3 0.01301120846160397 8 0.012605234941917412 7 0.01259417215262725 1 0.01227679792406784 2 0.011595480711323724 __DUMMY__ 0.001953155504399401 false 1.0 539 18 0.100646 19 0.085526 10 0.081528 20 0.079961 14 0.06455 21 0.06131 22 0.054533 12 0.054006 13 0.053768 11 0.053567 15 0.053027 17 0.049408 16 0.049238 0 0.037928 24 0.037379 23 0.035104 9 0.03332 4 0.004722 5 0.004091 6 0.002063 3 0.001376 7 0.001114 1 9.61E-4 8 8.72E-4 18 0.100646 19 0.085526 10 0.081528 20 0.079961 14 0.06455 21 0.06131 22 0.054533 12 0.054006 13 0.053768 11 0.053567 15 0.053027 17 0.049408 16 0.049238 0 0.037928 24 0.037379 23 0.035104 9 0.03332 4 0.004722 5 0.004091 6 0.002063 3 0.001376 7 0.001114 1 9.61E-4 8 8.72E-4 18 0.08938085451702614 19 0.07545261236465907 10 0.07445501399628722 20 0.06670529202606976 21 0.061627461678725716 14 0.060908275976677057 22 0.058017367604729676 11 0.053723712515095015 12 0.049440515938060814 13 0.04848068893691696 15 0.04796122479591404 17 0.04609897562151292 16 0.040843841440125365 9 0.038274085495798395 0 0.037855286469342435 24 0.03726451580947795 23 0.0356318457695861 4 0.01248942883931607 5 0.011980290433525663 6 0.009498957586081578 3 0.009133432129008856 7 0.008335491773419204 8 0.008221806224427515 1 0.008157727660762436 2 0.007555105327106143 __DUMMY__ 0.0025061890703479343 false 1.0 780 21 0.08038680562432597 22 0.07065346419933348 11 0.06427960017029775 12 0.06070756281490906 19 0.0601916539085492 18 0.057530372375082996 24 0.048958998154233525 23 0.04456361355807912 10 0.04278737375079792 20 0.04257190109253857 13 0.042165305414938195 14 0.04042735372853293 9 0.03932752895780903 17 0.03905349017946456 0 0.035143756260632465 16 0.028397150240843445 4 0.02583054360859053 5 0.025298249272889293 6 0.022281333996236788 3 0.02037356446012511 7 0.01971577047354844 8 0.019612615928042813 1 0.019420695124990364 2 0.018990418701299833 __DUMMY__ 0.016884342560767072 15 0.014446535443141466 false 0.0 781 21 0.07325270354823371 12 0.06406535606382005 22 0.05888459999753661 19 0.05711568504924006 23 0.05431430279169463 18 0.05299192841030502 11 0.0526364384996994 24 0.051808599309897244 20 0.0474510404734542 13 0.047430245735256636 14 0.038842861733872774 17 0.03584475487006082 10 0.03505315554543816 9 0.0330275701014082 4 0.029688896034153357 16 0.02962218404402837 5 0.029157176990587962 0 0.029073720829215638 6 0.027076368319529278 7 0.024284298127696464 8 0.024170434628536658 3 0.024064620548076843 1 0.024008775498659075 2 0.023621754960624828 15 0.017570038331415613 __DUMMY__ 0.014942489557558466 false 0.0 540 18 0.099549 19 0.086733 10 0.080603 20 0.079524 14 0.065615 21 0.06245 12 0.05528 22 0.05501 11 0.053717 13 0.053343 15 0.053072 17 0.048568 16 0.048377 24 0.038872 0 0.035923 23 0.035842 9 0.032454 4 0.005462 5 0.005225 6 0.002209 3 0.001492 7 2.69E-4 8 2.29E-4 1 1.81E-4 18 0.099549 19 0.086733 10 0.080603 20 0.079524 14 0.065615 21 0.06245 12 0.05528 22 0.05501 11 0.053717 13 0.053343 15 0.053072 17 0.048568 16 0.048377 24 0.038872 0 0.035923 23 0.035842 9 0.032454 4 0.005462 5 0.005225 6 0.002209 3 0.001492 7 2.69E-4 8 2.29E-4 1 1.81E-4 18 0.08887714227997308 19 0.07600675378132773 10 0.07403027984854368 20 0.06650461936283371 21 0.06215084739164424 14 0.061397226887677334 22 0.05823634840721375 11 0.05379255811289647 12 0.05002543134915786 13 0.04828553426237525 15 0.04798186385450552 17 0.045713280976092945 16 0.04044850737052786 24 0.037949987396799154 9 0.03787645693059125 0 0.036934703223266585 23 0.0359706711098322 4 0.01282918307524787 5 0.01250094413063315 6 0.009565986948640252 3 0.009186687606544439 7 0.007947518791065197 8 0.007926578583451497 1 0.007799598541198264 2 0.007555101858292141 __DUMMY__ 0.0025061879196685783 false 1.0 782 21 0.07325270354823371 12 0.06406535606382005 22 0.05888459999753661 19 0.05711568504924006 23 0.05431430279169463 18 0.05299192841030502 11 0.0526364384996994 24 0.051808599309897244 20 0.0474510404734542 13 0.047430245735256636 14 0.038842861733872774 17 0.03584475487006082 10 0.03505315554543816 9 0.0330275701014082 4 0.029688896034153357 16 0.02962218404402837 5 0.029157176990587962 0 0.029073720829215638 6 0.027076368319529278 7 0.024284298127696464 8 0.024170434628536658 3 0.024064620548076843 1 0.024008775498659075 2 0.023621754960624828 15 0.017570038331415613 __DUMMY__ 0.014942489557558466 false 0.0 541 18 0.073446 19 0.069148 20 0.060627 22 0.056695 17 0.055123 9 0.054185 24 0.049207 10 0.048182 23 0.042181 21 0.041965 16 0.041176 0 0.039941 3 0.037299 4 0.036039 8 0.035274 5 0.03497 7 0.034957 1 0.034841 2 0.03394 6 0.032652 15 0.027758 11 0.026967 14 0.018207 12 0.015217 18 0.073446 19 0.069148 20 0.060627 22 0.056695 17 0.055123 9 0.054185 24 0.049207 10 0.048182 23 0.042181 21 0.041965 16 0.041176 0 0.039941 3 0.037299 4 0.036039 8 0.035274 5 0.03497 7 0.034957 1 0.034841 2 0.03394 6 0.032652 15 0.027758 11 0.026967 14 0.018207 12 0.015217 18 0.06960749399180062 19 0.06411673866681994 20 0.0560454598811758 22 0.055912307046524425 17 0.0496176863603288 10 0.04958399367648267 9 0.048128084815641306 21 0.04756657563865227 24 0.046305956847172626 23 0.04284626670678032 16 0.038698496601354285 0 0.037566051689977176 11 0.034979088900441706 15 0.0334415978718328 4 0.0328290087330084 3 0.03220591883207595 5 0.032089413809014346 8 0.030774739733231152 7 0.030597386227941246 14 0.030506163619985257 1 0.030446206840023193 6 0.029860765713710158 2 0.029839911171620315 12 0.026883969606755802 13 0.015797110122648124 __DUMMY__ 0.0037536068950011167 false 1.0 783 21 0.07310609274102334 18 0.0652512495117514 22 0.0644711038081648 11 0.061562586682914505 12 0.05980151714857232 19 0.05908753006478815 10 0.05426058070374768 13 0.050856975028522426 14 0.04962572577883658 20 0.043772898720490776 23 0.040881621634193156 24 0.039919986076055916 9 0.03975198260536827 17 0.039648687108878936 0 0.03793166384328804 16 0.028154835105584763 15 0.0248584357477304 4 0.02304994562166633 5 0.022576980791963498 6 0.020306940499294247 3 0.017560364572188278 7 0.017553013560475488 8 0.01747767447990548 1 0.017331248329828932 2 0.016941363213454633 __DUMMY__ 0.014258996621311668 false 0.0 784 21 0.07463594448277798 19 0.07055277539750872 22 0.0655688276587289 18 0.06528210622910294 20 0.060120974359717826 24 0.05664348706991389 11 0.055563426067620054 12 0.05455741532730782 23 0.04732966973753454 10 0.04474622818539225 14 0.04327476140275137 17 0.03958389758179568 13 0.03624296405489011 16 0.03616456643035983 9 0.03488707608530532 0 0.02819207188282329 15 0.026606179837102006 4 0.022256032002315698 5 0.021748098661925817 3 0.01865560459936143 6 0.01791124422219308 7 0.016627789491631826 8 0.016564161548640523 1 0.01632757655714014 2 0.01597612170641436 __DUMMY__ 0.013980999419744622 false 0.0 542 18 0.118512 10 0.098397 19 0.084976 22 0.075493 11 0.062718 17 0.062084 21 0.061819 20 0.059465 0 0.056993 9 0.054088 14 0.053869 16 0.041382 15 0.038383 12 0.037159 13 0.034232 23 0.022293 24 0.017596 4 0.006304 5 0.006045 6 0.003267 7 0.001367 8 0.001228 1 0.001178 3 0.001153 18 0.118512 10 0.098397 19 0.084976 22 0.075493 11 0.062718 17 0.062084 21 0.061819 20 0.059465 0 0.056993 9 0.054088 14 0.053869 16 0.041382 15 0.038383 12 0.037159 13 0.034232 23 0.022293 24 0.017596 4 0.006304 5 0.006045 6 0.003267 7 0.001367 8 0.001228 1 0.001178 3 0.001153 18 0.09744064837237228 10 0.08512808059546419 19 0.07203734414875858 22 0.06916025408561555 21 0.060319923047115524 11 0.05986800482746943 14 0.05429633270876668 17 0.05348701161102303 9 0.05163267546616805 20 0.05116945106818949 0 0.051141411985446236 12 0.039135521681417235 15 0.038807149607332295 13 0.03804846816412124 16 0.03551126577104532 23 0.026716524028157117 24 0.023265855396728312 4 0.0146912322174436 5 0.014344525171127909 6 0.011834656297144978 3 0.010396407235176848 7 0.010141084877257603 8 0.010078099754016115 1 0.00996407511751893 2 0.009229448929500235 __DUMMY__ 0.0021545478356231663 false 1.0 300 12 0.112972 21 0.099076 13 0.085292 19 0.075578 20 0.069905 11 0.068059 18 0.064145 23 0.060508 22 0.058484 24 0.057675 14 0.046366 10 0.038837 16 0.03605 17 0.032599 0 0.025968 9 0.014799 4 0.01238 5 0.012313 6 0.009906 2 0.004222 7 0.004023 1 0.003917 8 0.003805 3 0.003123 12 0.112972 21 0.099076 13 0.085292 19 0.075578 20 0.069905 11 0.068059 18 0.064145 23 0.060508 22 0.058484 24 0.057675 14 0.046366 10 0.038837 16 0.03605 17 0.032599 0 0.025968 9 0.014799 4 0.01238 5 0.012313 6 0.009906 2 0.004222 7 0.004023 1 0.003917 8 0.003805 3 0.003123 12 0.09795851122987496 21 0.08911313345397864 13 0.07851360199857191 19 0.06690856462960823 11 0.06545771312157371 18 0.06190451961409791 20 0.05913370036042519 22 0.05785179029937291 23 0.0535563667344565 24 0.05036537779365012 14 0.04890868285965501 10 0.042881571688763595 17 0.03466302088375034 16 0.03341068533983673 0 0.030291319564141092 9 0.02229474519124072 4 0.016711552533489486 5 0.01645933374867538 6 0.014710316521996515 7 0.009507774961054875 8 0.009400090283244593 2 0.00939313318320118 1 0.009378558765845873 15 0.009365040770386647 3 0.008238495344116888 __DUMMY__ 0.0036223991249910927 false 1.0 785 18 0.055087149538372245 17 0.05301085244202908 22 0.0520588283352056 19 0.05202150088253022 21 0.04582615824105885 16 0.04574186018591555 0 0.04420100494008247 9 0.04301805113143636 11 0.041931523217824965 10 0.04184159530682537 23 0.04157957090604557 20 0.040202585646692 24 0.03749636993638657 12 0.03673848646926073 15 0.03585344224853823 4 0.03425358092251348 6 0.033858384406851634 5 0.033804647477417765 8 0.03261173935047903 7 0.032512113416276474 1 0.032333216382202594 2 0.031988325624593736 14 0.03155094708802257 3 0.031336624117478125 13 0.027513158342798858 __DUMMY__ 0.011628283443162003 false 0.0 301 21 0.101912 12 0.096486 11 0.085057 22 0.075426 19 0.073101 13 0.072973 18 0.068807 10 0.055502 20 0.050458 14 0.048273 0 0.043864 24 0.043818 17 0.042359 23 0.039174 16 0.034501 9 0.032579 4 0.009705 5 0.009078 6 0.007088 7 0.002594 1 0.002128 8 0.00211 2 0.001617 3 0.001389 21 0.101912 12 0.096486 11 0.085057 22 0.075426 19 0.073101 13 0.072973 18 0.068807 10 0.055502 20 0.050458 14 0.048273 0 0.043864 24 0.043818 17 0.042359 23 0.039174 16 0.034501 9 0.032579 4 0.009705 5 0.009078 6 0.007088 7 0.002594 1 0.002128 8 0.00211 2 0.001617 3 0.001389 21 0.09081300891096261 12 0.0846508942574469 11 0.0746923360049497 22 0.06951078422838017 19 0.06745043444118541 13 0.06598725340651143 18 0.06571039693238674 10 0.05251789319994679 20 0.04925583728354477 14 0.04824843076971621 24 0.04406833598729537 23 0.0414821789940326 17 0.040552833446048354 0 0.03999915615412378 9 0.03360723002224345 16 0.032688743703918895 4 0.015418949612698662 5 0.01489389727755469 6 0.012829330959569717 15 0.009112467536267608 7 0.008799323107231433 8 0.008543831466198196 1 0.00847823608955335 2 0.008077800561938577 3 0.00801710364997537 __DUMMY__ 0.0045933119963195495 false 1.0 543 17 0.071359 0 0.065022 22 0.057746 9 0.057042 16 0.056014 18 0.052367 19 0.048307 6 0.043845 8 0.043415 7 0.04327 1 0.043163 11 0.043042 2 0.042897 4 0.04267 5 0.042016 10 0.041434 3 0.041301 21 0.033512 23 0.032657 24 0.028967 20 0.025172 15 0.022291 12 0.017319 14 0.005174 17 0.071359 0 0.065022 22 0.057746 9 0.057042 16 0.056014 18 0.052367 19 0.048307 6 0.043845 8 0.043415 7 0.04327 1 0.043163 11 0.043042 2 0.042897 4 0.04267 5 0.042016 10 0.041434 3 0.041301 21 0.033512 23 0.032657 24 0.028967 20 0.025172 15 0.022291 12 0.017319 14 0.005174 17 0.0659203347040873 0 0.06195972464492895 22 0.05802892231768814 9 0.057013137926912316 18 0.05199007078481664 16 0.04918505914971798 19 0.0454334094331139 11 0.044074947869519425 6 0.04384830199398691 8 0.04303536976330095 4 0.04299123353018255 7 0.04292010729849066 10 0.042888152680515754 1 0.04279613773246046 5 0.042408239368423147 2 0.042368682461853914 3 0.04083735056231523 21 0.036811580616609975 23 0.033899680826536265 24 0.02754496293860942 20 0.02304527715709215 12 0.021303506742750073 15 0.021224916969341312 14 0.010149147045274375 13 0.006513491733048447 __DUMMY__ 0.0018082537484236847 false 1.0 544 18 0.126872 10 0.103133 19 0.091475 22 0.087409 17 0.07175 9 0.065022 21 0.064681 11 0.064433 0 0.064168 20 0.056357 14 0.040465 16 0.039655 12 0.027582 15 0.026445 23 0.018477 24 0.016204 13 0.015828 4 0.006811 5 0.005523 6 0.003014 3 0.001523 8 0.001181 7 0.001157 1 8.38E-4 18 0.126872 10 0.103133 19 0.091475 22 0.087409 17 0.07175 9 0.065022 21 0.064681 11 0.064433 0 0.064168 20 0.056357 14 0.040465 16 0.039655 12 0.027582 15 0.026445 23 0.018477 24 0.016204 13 0.015828 4 0.006811 5 0.005523 6 0.003014 3 0.001523 8 0.001181 7 0.001157 1 8.38E-4 18 0.09869588155126141 10 0.08392704598453558 22 0.07494491476066077 19 0.07395918675400039 21 0.06073513374302109 11 0.059319142480075984 17 0.05832893879873588 9 0.057449023176221 0 0.054291249593992785 20 0.04855821479274973 14 0.04433398288590545 16 0.0349090731544657 12 0.03257716137686639 15 0.031192641965104944 23 0.026015418623041582 13 0.02559232745154693 24 0.024105181453203155 4 0.01715950837075865 5 0.01631517580972484 6 0.013933209029883055 3 0.013026953758169833 8 0.012459969792230473 7 0.01243914002516491 1 0.012188825199834441 2 0.011593189431280524 __DUMMY__ 0.0019495100375645407 false 1.0 786 0 0.059594370884121325 17 0.059358899587005555 22 0.05872734494701541 9 0.057821996531751525 18 0.05065305697955762 11 0.04617704818429895 10 0.045076990291059105 6 0.04427206329522163 4 0.04373456024850611 5 0.04321727018833502 8 0.042966660450193386 7 0.04290340057305563 1 0.042773402980950684 2 0.04220200830737602 3 0.04069125434637289 19 0.04050069870965948 21 0.04028339145395279 16 0.03992750786994753 23 0.03408950515104845 12 0.025135971875147038 24 0.02430166957823396 15 0.018231410409721413 20 0.018104666941918045 14 0.014976712761933776 13 0.013474827268595517 __DUMMY__ 0.010803310185021012 false 0.0 302 0 0.087115 17 0.084079 11 0.073855 16 0.073558 12 0.066385 22 0.060736 18 0.058233 19 0.056302 21 0.05354 10 0.051851 9 0.044974 13 0.042209 6 0.029737 23 0.028457 4 0.024727 5 0.024514 8 0.023857 7 0.02356 1 0.023553 2 0.023399 3 0.01591 20 0.015333 24 0.008093 14 0.006024 0 0.087115 17 0.084079 11 0.073855 16 0.073558 12 0.066385 22 0.060736 18 0.058233 19 0.056302 21 0.05354 10 0.051851 9 0.044974 13 0.042209 6 0.029737 23 0.028457 4 0.024727 5 0.024514 8 0.023857 7 0.02356 1 0.023553 2 0.023399 3 0.01591 20 0.015333 24 0.008093 14 0.006024 17 0.06799204840357809 0 0.06738694026753636 11 0.062056164576122626 12 0.05943300867326995 16 0.05805254528591799 22 0.05721163543528967 18 0.055786951813424156 21 0.05390503208639844 19 0.05313570524518745 10 0.04699067834586338 9 0.043252350255415704 13 0.041221025869477214 23 0.035355005386814096 6 0.031714721431813454 4 0.02906634967381759 5 0.02873632826406174 8 0.027385217651543326 7 0.027220509280350698 1 0.027167378992968505 2 0.026870525677428994 20 0.02541427998065509 3 0.022142691062757097 24 0.02129898145466785 14 0.017870688551550166 15 0.010956804726783936 __DUMMY__ 0.002376431607306321 false 1.0 303 21 0.080385 11 0.075778 22 0.075477 12 0.067132 18 0.063364 19 0.056673 10 0.056306 0 0.055448 17 0.049043 9 0.048976 13 0.048688 14 0.033847 23 0.032442 24 0.031632 20 0.029928 16 0.029131 4 0.024717 5 0.024046 6 0.022966 8 0.01927 7 0.01919 1 0.019018 2 0.018604 3 0.01794 21 0.080385 11 0.075778 22 0.075477 12 0.067132 18 0.063364 19 0.056673 10 0.056306 0 0.055448 17 0.049043 9 0.048976 13 0.048688 14 0.033847 23 0.032442 24 0.031632 20 0.029928 16 0.029131 4 0.024717 5 0.024046 6 0.022966 8 0.01927 7 0.01919 1 0.019018 2 0.018604 3 0.01794 21 0.0800335958118779 12 0.07475369322215591 11 0.07114483255957696 22 0.06739674476074352 18 0.062243625146057524 13 0.060830723275524225 19 0.05650080060009071 10 0.053906722830595284 0 0.04644955534859177 14 0.043677694243092625 17 0.0428315669156579 9 0.040634016831847704 23 0.037889602953649085 20 0.03736270007511814 24 0.03544452913726104 16 0.028638818420648388 4 0.022705534148185408 5 0.02217318479125097 6 0.021053767183850023 8 0.016887080889112685 7 0.016858577014644077 1 0.016701116305935217 2 0.016371905727457975 3 0.015425142413808537 15 0.009219801241032503 __DUMMY__ 0.0028646681522339163 false 1.0 787 18 0.06843901447881555 14 0.06676185392056523 15 0.06453806772822288 19 0.05670037575696372 10 0.05620446202700691 20 0.054977972971881846 21 0.05135469432407228 22 0.0497189118196793 13 0.04818461935269419 12 0.04119564061076547 11 0.04110575311732667 24 0.04056805061394027 23 0.040101136616758 17 0.0400862898663762 9 0.036609321544024534 16 0.0353351739813151 0 0.02921636338644138 4 0.023243500385262378 5 0.022869389186731332 6 0.020906290900376174 3 0.020388962753503676 8 0.019845672040718333 7 0.019751090077542336 1 0.019577729038728096 2 0.019308564282606897 __DUMMY__ 0.013011099217681194 false 0.0 545 17 0.0863 16 0.082394 0 0.070482 19 0.057552 22 0.051444 18 0.051287 9 0.045784 11 0.045083 6 0.038726 8 0.037181 7 0.036992 1 0.036822 2 0.036053 4 0.034754 23 0.034556 10 0.034022 5 0.034007 21 0.031786 3 0.031585 20 0.031324 12 0.030527 24 0.028027 15 0.025564 13 0.007748 17 0.0863 16 0.082394 0 0.070482 19 0.057552 22 0.051444 18 0.051287 9 0.045784 11 0.045083 6 0.038726 8 0.037181 7 0.036992 1 0.036822 2 0.036053 4 0.034754 23 0.034556 10 0.034022 5 0.034007 21 0.031786 3 0.031585 20 0.031324 12 0.030527 24 0.028027 15 0.025564 13 0.007748 17 0.07700567524078156 16 0.06954526198436319 0 0.0656765682449464 19 0.05341340981201344 22 0.05284473874543224 18 0.052251392941577865 9 0.047704121971137055 11 0.04534122139920746 6 0.03916177490836255 10 0.03800315555391559 8 0.037536851665757945 7 0.03738450606478796 1 0.03725214934604868 2 0.03661541882443545 4 0.036344789776461814 5 0.03574970103084447 23 0.03550243069248058 21 0.034989728551724227 3 0.03305601547969536 12 0.030733551423144014 20 0.02939689171496573 24 0.027615452619108166 15 0.025582981262981058 13 0.012047623086949975 14 0.007117971075382504 __DUMMY__ 0.0021266165834947733 false 1.0 304 21 0.098547 12 0.096161 11 0.085691 13 0.075505 22 0.073609 19 0.065919 18 0.065206 10 0.055729 14 0.048606 0 0.045789 20 0.044103 17 0.041434 24 0.040442 23 0.037559 9 0.033838 16 0.030946 4 0.012894 5 0.011951 6 0.010616 7 0.005665 1 0.005588 8 0.005395 2 0.004836 3 0.003971 21 0.098547 12 0.096161 11 0.085691 13 0.075505 22 0.073609 19 0.065919 18 0.065206 10 0.055729 14 0.048606 0 0.045789 20 0.044103 17 0.041434 24 0.040442 23 0.037559 9 0.033838 16 0.030946 4 0.012894 5 0.011951 6 0.010616 7 0.005665 1 0.005588 8 0.005395 2 0.004836 3 0.003971 21 0.08917343247308154 12 0.08559821336754189 11 0.07539001843332448 13 0.06911312822098648 22 0.068200117349326 18 0.06380625414916304 19 0.06297238875401104 10 0.05310538804049192 14 0.04929340157469932 20 0.04536759870241133 24 0.0414809750014613 0 0.04121956829360275 23 0.040462699309094304 17 0.03976017219606853 9 0.034132894500045516 16 0.030274162320650697 4 0.01696262825565066 5 0.016296560888850335 6 0.014672874766600745 7 0.010270779407422825 1 0.010138078094857962 8 0.010119011970352374 2 0.009633093915543489 15 0.00918365606277827 3 0.009080947357779364 __DUMMY__ 0.004291956594203826 false 1.0 788 21 0.0727539698456133 13 0.07203779877302285 12 0.07127090128936321 14 0.06493009762494224 18 0.06294258599530157 11 0.058852346048963625 22 0.056478880939313844 10 0.05514174881612019 19 0.05238964630583161 20 0.04503473755331235 23 0.04066523351024696 24 0.037685240139705714 15 0.0346600958674354 9 0.034602287475647586 17 0.032883054204011594 0 0.032723901153360206 16 0.023063388198692563 4 0.021532168907534413 5 0.02113985644489303 6 0.019470470622449238 8 0.015754437360778945 7 0.01568934708581105 1 0.015579288599453369 2 0.015326310160548104 3 0.014927600536539916 __DUMMY__ 0.012464606541107263 false 0.0 546 16 0.064779 23 0.063707 17 0.063338 19 0.061827 18 0.054439 20 0.054301 24 0.052205 22 0.044961 5 0.042612 6 0.0423 4 0.042075 1 0.041431 7 0.041291 2 0.040754 8 0.04045 3 0.039387 0 0.035507 15 0.035158 21 0.033778 9 0.033179 12 0.026641 11 0.022099 10 0.019037 14 0.004745 16 0.064779 23 0.063707 17 0.063338 19 0.061827 18 0.054439 20 0.054301 24 0.052205 22 0.044961 5 0.042612 6 0.0423 4 0.042075 1 0.041431 7 0.041291 2 0.040754 8 0.04045 3 0.039387 0 0.035507 15 0.035158 21 0.033778 9 0.033179 12 0.026641 11 0.022099 10 0.019037 14 0.004745 19 0.06098998920913793 18 0.0579457099441897 17 0.05649526741933876 16 0.05585191675836146 23 0.05366394953702134 20 0.05342865266570903 22 0.048067125801124905 24 0.048064873727183766 21 0.04277315419901545 15 0.038626295890078335 0 0.03659313089525783 12 0.035666552545245964 9 0.035003961721304065 5 0.03473491429938716 4 0.03473202431531837 6 0.03424306054030573 7 0.033044439202744115 1 0.03301952595192009 8 0.032708745508211824 11 0.03270855823159239 2 0.03252117844123581 10 0.03208152201056904 3 0.03184918362165499 14 0.023204529576407038 13 0.018323114686038703 __DUMMY__ 0.0036586233016462945 false 1.0 305 21 0.096311 12 0.096192 11 0.086073 13 0.077123 22 0.072405 18 0.061529 19 0.061395 10 0.055243 14 0.048829 0 0.047053 17 0.040297 20 0.039425 24 0.037657 23 0.036644 9 0.034546 16 0.029232 4 0.015099 5 0.014776 6 0.013111 2 0.007667 1 0.007664 7 0.007654 8 0.00765 3 0.006423 21 0.096311 12 0.096192 11 0.086073 13 0.077123 22 0.072405 18 0.061529 19 0.061395 10 0.055243 14 0.048829 0 0.047053 17 0.040297 20 0.039425 24 0.037657 23 0.036644 9 0.034546 16 0.029232 4 0.015099 5 0.014776 6 0.013111 2 0.007667 1 0.007664 7 0.007654 8 0.00765 3 0.006423 21 0.08760596955858004 12 0.08525178556114339 11 0.07542401738077024 13 0.06994505814789698 22 0.0674327914286173 18 0.06183393377108812 19 0.06005522753288166 10 0.05303115984760059 14 0.049440277744278165 20 0.042435265743772405 0 0.04206000062267065 23 0.03984828146073191 24 0.03961917103896002 17 0.03915762480463287 9 0.034799311424022615 16 0.029035495757099957 4 0.01837803932353153 5 0.01799824407462519 6 0.016283193071720537 7 0.011632079406346961 8 0.011606354120925637 1 0.011543288066665946 2 0.011385424739337228 3 0.010598086044041638 15 0.00930384783914468 __DUMMY__ 0.004296071488913658 false 1.0 789 18 0.07367647541495292 10 0.06966538492283737 14 0.06637060369743612 21 0.0588042837871612 22 0.05778726161852861 19 0.05420168041928302 13 0.054168830364491806 11 0.053999941144349146 15 0.049156774875515744 12 0.0465361911648448 9 0.04445344117470414 20 0.04372431992538319 17 0.039299788772536204 0 0.039087185729148294 23 0.03240899385800398 24 0.029017549981078444 16 0.02581973923649101 4 0.021865330531533098 5 0.021498092392168097 6 0.019440583280478877 3 0.01773040343228894 8 0.017472208327121964 7 0.01744060790148095 1 0.017305972527338818 2 0.01698962456677009 __DUMMY__ 0.012078730954073358 false 0.0 547 10 0.102602 18 0.090271 11 0.068659 14 0.066803 0 0.066284 22 0.064778 9 0.062005 19 0.053272 17 0.052885 13 0.050524 21 0.04961 15 0.047473 12 0.033398 16 0.028446 20 0.026508 4 0.017807 5 0.017336 6 0.016768 1 0.015286 7 0.015191 8 0.015068 2 0.014268 3 0.014011 23 0.010745 10 0.102602 18 0.090271 11 0.068659 14 0.066803 0 0.066284 22 0.064778 9 0.062005 19 0.053272 17 0.052885 13 0.050524 21 0.04961 15 0.047473 12 0.033398 16 0.028446 20 0.026508 4 0.017807 5 0.017336 6 0.016768 1 0.015286 7 0.015191 8 0.015068 2 0.014268 3 0.014011 23 0.010745 10 0.08583211987272894 18 0.08235624505409755 22 0.06427640832150162 11 0.06319036386898752 14 0.05906681566435166 0 0.05621099807484691 9 0.05565649789966032 19 0.05535587372800054 21 0.05467479532371479 17 0.04915160902635339 13 0.04583870253530237 15 0.041304527768720393 12 0.03791151456810459 20 0.03332518873204589 16 0.028803613283046214 23 0.021416595067795273 4 0.02106021817223945 5 0.020620699445716734 6 0.01930790065289757 7 0.01760290510250843 1 0.017561507976979963 8 0.017547036426510145 3 0.01717952574505363 2 0.016894782873671885 24 0.01427771701965422 __DUMMY__ 0.003575837795509966 false 1.0 548 20 0.108503 23 0.08872 19 0.08535 24 0.078412 18 0.074692 16 0.058086 15 0.055643 12 0.051793 21 0.040443 17 0.035805 14 0.035005 13 0.032251 10 0.029143 4 0.026788 5 0.025835 3 0.023766 6 0.023618 22 0.023537 8 0.023091 7 0.022485 2 0.021992 1 0.02171 11 0.008165 9 0.005167 20 0.108503 23 0.08872 19 0.08535 24 0.078412 18 0.074692 16 0.058086 15 0.055643 12 0.051793 21 0.040443 17 0.035805 14 0.035005 13 0.032251 10 0.029143 4 0.026788 5 0.025835 3 0.023766 6 0.023618 22 0.023537 8 0.023091 7 0.022485 2 0.021992 1 0.02171 11 0.008165 9 0.005167 20 0.08160681984866591 19 0.0740650125996295 18 0.07074142641904756 23 0.06676387811976886 24 0.062122595422620386 21 0.04850416077764921 16 0.04764071340801725 12 0.04691474387033964 15 0.04617829212512608 10 0.03983497149731182 22 0.03974426785701644 17 0.03971677265507772 14 0.03885492840941897 13 0.03271090348205545 4 0.02724179057977313 5 0.026565021607768836 11 0.02619950815274956 3 0.02446567098084047 6 0.024239064647803576 8 0.023550941844302245 7 0.02325629314515378 1 0.0228022687442397 2 0.02278848371586742 9 0.02271495041724488 0 0.016924219397343395 __DUMMY__ 0.003852300275168166 false 1.0 306 12 0.102249 13 0.086811 21 0.079732 11 0.070546 22 0.051504 19 0.047971 18 0.047725 23 0.047312 0 0.043571 10 0.041298 14 0.041007 20 0.038819 17 0.037312 24 0.036825 16 0.032353 9 0.026509 6 0.025791 4 0.024923 5 0.024624 8 0.019552 7 0.019484 2 0.01935 1 0.019343 3 0.015387 12 0.102249 13 0.086811 21 0.079732 11 0.070546 22 0.051504 19 0.047971 18 0.047725 23 0.047312 0 0.043571 10 0.041298 14 0.041007 20 0.038819 17 0.037312 24 0.036825 16 0.032353 9 0.026509 6 0.025791 4 0.024923 5 0.024624 8 0.019552 7 0.019484 2 0.01935 1 0.019343 3 0.015387 12 0.08941119585096445 21 0.07830390503261818 13 0.0780282120928771 11 0.06629360227352314 22 0.05515500374765022 18 0.05440110682413467 19 0.05148324462410796 14 0.04786911321737968 10 0.046086541212643044 23 0.0453472316965484 20 0.04174331327542055 0 0.03954203371352803 24 0.03831500523627934 17 0.03659503563745259 9 0.0302765231434359 16 0.0293797618619052 4 0.02364046140113458 5 0.02327797924137503 6 0.02316148326427616 8 0.01796167463118851 7 0.017920933480634966 1 0.017787327575894085 2 0.017648836723418042 3 0.015261260531379375 15 0.01128596467378256 __DUMMY__ 0.003823249036448501 false 1.0 549 20 0.115194 19 0.09373 24 0.089137 18 0.073777 21 0.068303 23 0.0661 12 0.063905 16 0.054381 15 0.048701 14 0.047878 22 0.042023 13 0.04164 17 0.033395 11 0.032935 10 0.029733 4 0.014841 5 0.014237 3 0.013374 7 0.010091 8 0.009967 1 0.009691 6 0.009687 2 0.008939 9 0.008342 20 0.115194 19 0.09373 24 0.089137 18 0.073777 21 0.068303 23 0.0661 12 0.063905 16 0.054381 15 0.048701 14 0.047878 22 0.042023 13 0.04164 17 0.033395 11 0.032935 10 0.029733 4 0.014841 5 0.014237 3 0.013374 7 0.010091 8 0.009967 1 0.009691 6 0.009687 2 0.008939 9 0.008342 20 0.09143815969923433 19 0.08320971823332367 24 0.07252080704677315 18 0.0721115092215463 21 0.06810911990088851 12 0.05813211673106819 23 0.05726097117698934 22 0.050464136624318943 14 0.04873371758240755 16 0.04675248767369905 15 0.043644881569788845 13 0.04058047666019507 11 0.04047979027540207 10 0.038957863533199646 17 0.036596715759207366 9 0.020438762206525296 4 0.01775540198345786 5 0.01721679888272758 3 0.015503530856506081 6 0.01314559633776654 7 0.012844416809451238 8 0.012779548793970944 0 0.012662072998084086 1 0.012509902455643984 2 0.012005387239450872 __DUMMY__ 0.004146109748373793 false 1.0 307 21 0.103114 12 0.096347 11 0.084119 19 0.077517 22 0.076716 18 0.071295 13 0.070672 10 0.055491 20 0.05498 14 0.048208 24 0.046879 17 0.042713 0 0.041977 23 0.040462 16 0.035889 9 0.031085 4 0.008232 5 0.007801 6 0.004891 15 9.68E-4 7 2.21E-4 3 2.21E-4 8 1.24E-4 1 8.0E-5 21 0.103114 12 0.096347 11 0.084119 19 0.077517 22 0.076716 18 0.071295 13 0.070672 10 0.055491 20 0.05498 14 0.048208 24 0.046879 17 0.042713 0 0.041977 23 0.040462 16 0.035889 9 0.031085 4 0.008232 5 0.007801 6 0.004891 15 9.68E-4 7 2.21E-4 3 2.21E-4 8 1.24E-4 1 8.0E-5 21 0.09131438876405874 12 0.08373781454417416 11 0.07381970635622989 19 0.07036662527957917 22 0.07029180236749173 18 0.06718766568002175 13 0.063639325984758 20 0.05232035832852051 10 0.05226407255695721 14 0.04788439929170681 24 0.046321870010903606 23 0.04231126492518401 17 0.04085275534702241 0 0.038667124775544 16 0.03382866347495455 9 0.0328345164354051 4 0.014613783104609337 5 0.01417785900924972 6 0.011571177400863438 15 0.009914592792424274 7 0.00758779012668658 3 0.007518690055200991 8 0.007510229655414493 1 0.007412307557628568 2 0.007211248854024279 __DUMMY__ 0.004839967321386619 false 1.0 308 13 0.132715 14 0.117235 12 0.100241 21 0.078025 10 0.077294 18 0.073324 15 0.064623 11 0.062669 20 0.0535 19 0.043205 22 0.040504 23 0.039659 24 0.026494 9 0.021386 0 0.019397 17 0.011064 4 0.009774 5 0.009018 6 0.008102 16 0.003765 7 0.002169 1 0.002037 8 0.001943 2 0.001858 13 0.132715 14 0.117235 12 0.100241 21 0.078025 10 0.077294 18 0.073324 15 0.064623 11 0.062669 20 0.0535 19 0.043205 22 0.040504 23 0.039659 24 0.026494 9 0.021386 0 0.019397 17 0.011064 4 0.009774 5 0.009018 6 0.008102 16 0.003765 7 0.002169 1 0.002037 8 0.001943 2 0.001858 13 0.10211718894077218 14 0.08950659593728726 12 0.08706360980476968 21 0.07570927179051103 18 0.06817999086033624 10 0.065174698132649 11 0.060622398806191226 20 0.0506707292221711 19 0.04913370047414836 15 0.04868122323828941 22 0.048179729274589404 23 0.04120414441504515 24 0.03310627559810671 9 0.02711478040990293 0 0.026141178935931236 17 0.02291218545849314 4 0.015445277640394548 16 0.01529921776039211 5 0.014895031960681569 6 0.013680277879586557 7 0.00875773142687083 8 0.008681165381881222 1 0.008636282345048782 2 0.00842981995762848 3 0.007188325088058585 __DUMMY__ 0.0034691692602632257 false 1.0 309 12 0.08694 21 0.084745 13 0.083261 11 0.074894 18 0.074593 19 0.070218 14 0.069866 10 0.066922 22 0.062976 20 0.053923 0 0.039837 17 0.03942 23 0.036749 16 0.036151 24 0.035174 15 0.03152 9 0.029367 4 0.007509 5 0.00715 6 0.005429 8 0.001013 7 9.08E-4 1 7.94E-4 2 6.41E-4 12 0.08694 21 0.084745 13 0.083261 11 0.074894 18 0.074593 19 0.070218 14 0.069866 10 0.066922 22 0.062976 20 0.053923 0 0.039837 17 0.03942 23 0.036749 16 0.036151 24 0.035174 15 0.03152 9 0.029367 4 0.007509 5 0.00715 6 0.005429 8 0.001013 7 9.08E-4 1 7.94E-4 2 6.41E-4 12 0.08276436361099211 21 0.08102526078363875 13 0.07697996230227377 11 0.06855379407500117 18 0.0681954284543786 19 0.06385706615348903 14 0.06260067037956944 22 0.06030943062604355 10 0.058777491149679416 20 0.0509005885849234 23 0.040514115343487075 24 0.03816917356556021 17 0.037770882396963336 0 0.037249414298542144 16 0.03256466659461906 9 0.03054303939035402 15 0.027572812155463037 4 0.01411842612655733 5 0.013739833540849214 6 0.0121844933174487 8 0.007878793033251712 7 0.007832113603957856 1 0.007708420414740894 2 0.007498029097577094 3 0.00676017178758597 __DUMMY__ 0.00393155921305307 false 1.0 790 14 0.07140348675596767 18 0.07045897585883643 10 0.06437584647347303 15 0.05816899051948934 21 0.056627764996198836 13 0.05536482297595225 22 0.054135902525104314 19 0.052669322498460555 11 0.04817054733429997 20 0.047486263853303394 12 0.04499935448172336 9 0.04133722283578234 17 0.03620110644259909 23 0.035610326434341984 24 0.03395749953665307 0 0.03261109519372508 16 0.025499532018396633 4 0.023020207752739264 5 0.022649342657345795 6 0.0203822439669365 3 0.01935117666709588 8 0.01877440148165948 7 0.018697293642301382 1 0.01855214079185129 2 0.018271418046496884 __DUMMY__ 0.011223714259266073 false 0.0 791 14 0.07168253076282743 13 0.06905652387854401 18 0.06657437545662831 21 0.06603339891358212 12 0.06294650334623941 10 0.058064653282537855 19 0.05389845355649125 22 0.052915941353989686 11 0.05275949561647999 20 0.05019335119812964 15 0.04946630977756201 23 0.040114616149895005 24 0.03806602662739812 9 0.03386980705455595 17 0.03318510570118757 0 0.02954178720849154 16 0.025694845685932072 4 0.020254948549720507 5 0.019893226583211066 6 0.017996227195305622 8 0.015061330925164661 7 0.01499356331667335 1 0.014865071036212697 3 0.014768948020945223 2 0.014626037126179802 __DUMMY__ 0.013476921676115064 false 0.0 792 22 0.06087987174238375 18 0.06011721871923035 21 0.058344983748329846 10 0.05633633233894554 11 0.05441941441659808 9 0.05026340019862965 19 0.04546751153905555 0 0.04518783603401607 12 0.04439028546761112 17 0.04186731111524213 14 0.04178437274288051 13 0.04012976834155795 23 0.03606490209632483 4 0.03344675109317866 5 0.033017265387627906 6 0.031670986647526586 20 0.0302160648768953 24 0.02975452702268458 7 0.0295379133821445 8 0.029517786023467225 1 0.02942612085186598 3 0.029044106707998393 2 0.028978646004222123 15 0.024279730080876548 16 0.02347919592173314 __DUMMY__ 0.012377697498973637 false 0.0 550 18 0.119207 19 0.096287 22 0.089058 10 0.086401 21 0.077638 20 0.066894 11 0.060083 17 0.059586 9 0.056886 0 0.045416 24 0.044118 14 0.039146 23 0.034551 12 0.033447 16 0.031256 15 0.018883 13 0.011388 4 0.010195 5 0.008009 3 0.00387 6 0.003262 8 0.001736 7 0.001478 1 0.001204 18 0.119207 19 0.096287 22 0.089058 10 0.086401 21 0.077638 20 0.066894 11 0.060083 17 0.059586 9 0.056886 0 0.045416 24 0.044118 14 0.039146 23 0.034551 12 0.033447 16 0.031256 15 0.018883 13 0.011388 4 0.010195 5 0.008009 3 0.00387 6 0.003262 8 0.001736 7 0.001478 1 0.001204 18 0.09605200438311005 10 0.07704065998660058 19 0.07682738449198585 22 0.07515973706044361 21 0.0672772513046858 11 0.057296525516397454 20 0.05463264380326717 9 0.052856478822520356 17 0.052096283015454284 14 0.0452745553771269 0 0.04493999010263898 24 0.037075607075787456 12 0.036631920248155654 23 0.03366794227966855 16 0.030881292684280918 15 0.02848112998460024 13 0.02545691604265446 4 0.0178044632888124 5 0.016567217058863916 3 0.013131194588999058 6 0.013102009517454893 8 0.011708999275642711 7 0.011586120950374918 1 0.011368569601231128 2 0.010613810726536284 __DUMMY__ 0.0024692928127062735 false 1.0 793 18 0.06744586926260761 15 0.0605544164190071 14 0.05951938050572106 19 0.05871996287051863 20 0.054659313309726475 10 0.053361158387550366 21 0.049915215020976705 22 0.0492943496986037 17 0.0457484214403761 13 0.04511159998256091 16 0.04258043450729036 12 0.042312061674029136 11 0.04179609726629926 23 0.04044243328391129 24 0.040237348398346695 9 0.03564440928674547 0 0.0332583442025526 4 0.023090756712089017 5 0.0227022600910141 6 0.021510939232542593 8 0.020221473550621004 7 0.020114789525826467 3 0.019985584595148972 1 0.01995430952484076 2 0.019661658117381582 __DUMMY__ 0.012157413133712167 false 0.0 551 17 0.092609 16 0.084578 0 0.082149 19 0.057179 18 0.056626 22 0.054966 11 0.053946 9 0.047961 10 0.042816 12 0.036876 6 0.035512 21 0.034587 8 0.032605 7 0.032353 1 0.032294 2 0.031592 4 0.030517 5 0.029867 23 0.029303 3 0.025465 20 0.023227 15 0.021162 24 0.017108 13 0.014702 17 0.092609 16 0.084578 0 0.082149 19 0.057179 18 0.056626 22 0.054966 11 0.053946 9 0.047961 10 0.042816 12 0.036876 6 0.035512 21 0.034587 8 0.032605 7 0.032353 1 0.032294 2 0.031592 4 0.030517 5 0.029867 23 0.029303 3 0.025465 20 0.023227 15 0.021162 24 0.017108 13 0.014702 17 0.07907762459035494 0 0.07109558401126996 16 0.06886950543822624 22 0.05446000483880252 18 0.053925025332130845 19 0.05175398278101375 9 0.04951777441859095 11 0.04919446463368258 10 0.04202158462919526 6 0.038726803752888665 8 0.036468989496670844 7 0.03629812601279898 1 0.036219491470017594 21 0.03603372702064677 2 0.035604494057393105 4 0.035451130351555234 5 0.03489732648100045 12 0.03320123308509829 23 0.03312068947935225 3 0.031286103369898545 20 0.02423911174815998 15 0.022563524609475836 24 0.021984150827425768 13 0.01516153104288161 14 0.006791822922613553 __DUMMY__ 0.0020361935988554344 false 1.0 794 21 0.07435953608241766 19 0.07294795835609101 20 0.0665170826642504 18 0.06584430803974041 12 0.06069997721867043 22 0.060108076923136015 24 0.058710621956599804 11 0.0518238839461397 23 0.04995720049584006 14 0.045809831331779974 13 0.04323614113212205 10 0.043019602643915064 16 0.038809213523899495 17 0.038486978410541293 9 0.02994059141789048 15 0.029084970904736038 0 0.02504830766328001 4 0.02008542546468309 5 0.01959726968063774 3 0.01629204419366512 __DUMMY__ 0.01613464608607389 6 0.01608292566368657 7 0.01455960937672558 8 0.014526163401116609 1 0.014313363564127669 2 0.014004269858234 false 0.0 552 18 0.094125 19 0.086865 20 0.077813 10 0.075744 21 0.068829 14 0.060589 12 0.06046 22 0.057676 11 0.057626 13 0.054341 16 0.048601 17 0.048584 15 0.044561 24 0.042114 0 0.037061 23 0.036361 9 0.032503 4 0.005315 5 0.004709 6 0.002241 3 0.001547 7 8.71E-4 1 7.72E-4 8 6.9E-4 18 0.094125 19 0.086865 20 0.077813 10 0.075744 21 0.068829 14 0.060589 12 0.06046 22 0.057676 11 0.057626 13 0.054341 16 0.048601 17 0.048584 15 0.044561 24 0.042114 0 0.037061 23 0.036361 9 0.032503 4 0.005315 5 0.004709 6 0.002241 3 0.001547 7 8.71E-4 1 7.72E-4 8 6.9E-4 18 0.0864140240563428 19 0.0766818223456777 10 0.07179003104525339 21 0.066332161305965 20 0.06619954928863188 22 0.05976922096136395 14 0.05944123166119987 11 0.05657528101685192 12 0.05397487989831625 13 0.04990728771544974 17 0.04561136679551705 15 0.043400445484308645 16 0.040814548166646356 24 0.03982649257861373 0 0.037440379456003585 9 0.03735254682117398 23 0.03607743025400011 4 0.012076436929163525 5 0.011591456534170236 6 0.008878442033118788 3 0.008452009070035975 7 0.007455584524517475 8 0.007365793745691295 1 0.007307466640158499 2 0.006802321418018112 __DUMMY__ 0.0024617902538101866 false 1.0 310 12 0.119287 13 0.09607 21 0.087077 11 0.063841 23 0.061849 19 0.057223 20 0.055206 24 0.051927 18 0.048458 22 0.046728 14 0.041801 16 0.037732 17 0.034817 0 0.029972 10 0.027734 6 0.021494 4 0.021108 5 0.020511 8 0.014237 7 0.01383 2 0.013814 1 0.01362 9 0.012178 3 0.009485 12 0.119287 13 0.09607 21 0.087077 11 0.063841 23 0.061849 19 0.057223 20 0.055206 24 0.051927 18 0.048458 22 0.046728 14 0.041801 16 0.037732 17 0.034817 0 0.029972 10 0.027734 6 0.021494 4 0.021108 5 0.020511 8 0.014237 7 0.01383 2 0.013814 1 0.01362 9 0.012178 3 0.009485 12 0.09863948607629248 13 0.0822043384161968 21 0.08187979974955016 11 0.06240644168092833 19 0.05692726091810939 18 0.053980738779019086 23 0.053509630301541745 22 0.05215688485897751 20 0.05094599197818074 24 0.046951247096049496 14 0.04672935843594447 10 0.037527844522009114 17 0.03605402556497291 16 0.0338893396859571 0 0.03258332868490056 9 0.02211664303192925 4 0.02173711004498696 5 0.021232789015285344 6 0.02114409181910054 8 0.015423582455057558 7 0.015220815151372937 1 0.015050054941166686 2 0.015008899825205306 3 0.012336594869018783 15 0.010636560930797236 __DUMMY__ 0.0037071411674493952 false 1.0 553 18 0.081347 19 0.078311 22 0.067121 20 0.063275 17 0.059389 21 0.056253 24 0.051512 9 0.050236 23 0.045311 10 0.044929 16 0.044899 0 0.038783 11 0.03621 4 0.030961 5 0.030274 3 0.028298 12 0.027239 6 0.027125 7 0.026818 8 0.026768 1 0.026448 2 0.025832 15 0.018413 14 0.014248 18 0.081347 19 0.078311 22 0.067121 20 0.063275 17 0.059389 21 0.056253 24 0.051512 9 0.050236 23 0.045311 10 0.044929 16 0.044899 0 0.038783 11 0.03621 4 0.030961 5 0.030274 3 0.028298 12 0.027239 6 0.027125 7 0.026818 8 0.026768 1 0.026448 2 0.025832 15 0.018413 14 0.014248 18 0.0740790151402425 19 0.07163196435642719 22 0.06393630159025564 20 0.059826340742708095 21 0.05880344287532 17 0.050948963320029815 24 0.05064211208322694 10 0.04700576514744478 9 0.045926213672278074 23 0.04489163254325814 11 0.041642720294720596 16 0.04015333593098085 0 0.03563098149622627 12 0.03446381871811277 4 0.029412793517645277 5 0.028826996360181368 14 0.02743931127493811 3 0.02691631750371819 6 0.025676738615197398 15 0.0253807183071099 7 0.025251897553210056 8 0.025251233476098017 1 0.02493846964617126 2 0.024461082868939887 13 0.014541996816847482 __DUMMY__ 0.002319836148711341 false 1.0 311 12 0.130063 13 0.121729 21 0.101995 11 0.066923 14 0.065827 18 0.060003 23 0.059843 22 0.050576 20 0.05005 19 0.048907 10 0.04517 24 0.043061 0 0.022374 9 0.018372 4 0.01836 5 0.017945 17 0.017533 6 0.017317 8 0.008594 1 0.008579 7 0.008431 2 0.008195 16 0.005898 3 0.004254 12 0.130063 13 0.121729 21 0.101995 11 0.066923 14 0.065827 18 0.060003 23 0.059843 22 0.050576 20 0.05005 19 0.048907 10 0.04517 24 0.043061 0 0.022374 9 0.018372 4 0.01836 5 0.017945 17 0.017533 6 0.017317 8 0.008594 1 0.008579 7 0.008431 2 0.008195 16 0.005898 3 0.004254 12 0.10018377386503852 13 0.09238124476390022 21 0.08738890384750908 11 0.06317312377058922 18 0.05949641062564975 14 0.05885281751220946 22 0.05438838549891454 23 0.05142654942951467 19 0.05115159640665893 10 0.04725172641232913 20 0.04664928378957118 24 0.04152223944957168 0 0.02923520251462727 17 0.02716788478716429 9 0.027134617082742216 4 0.02165640866298703 5 0.02124350041090503 6 0.020232463898135884 16 0.016612747907998354 8 0.014063276902669241 1 0.013988734947782895 7 0.013981643321030938 2 0.013654551716183233 15 0.011972656006095253 3 0.011407085852988726 __DUMMY__ 0.003783170617233248 false 1.0 795 18 0.07524255503038982 21 0.07021501346511014 10 0.06799740208832952 22 0.06747059169597977 11 0.06495410441444283 19 0.06329999471931361 12 0.05352600905191201 14 0.05225017950987717 13 0.04742724059286143 9 0.045186907888612855 0 0.04501531535882729 17 0.044549785563847734 20 0.04407870446750322 24 0.03242155731778033 23 0.0323066356805324 16 0.03075024339070341 15 0.028481058170282424 4 0.01899927961234056 5 0.01860280641911621 6 0.01614257112296321 3 0.014247044868546195 7 0.013818946720509666 8 0.013763434527023449 1 0.013637999988098412 2 0.013294314743840697 __DUMMY__ 0.012320303591255556 false 0.0 554 19 0.112764 20 0.086835 18 0.085753 16 0.076324 21 0.074726 22 0.067069 17 0.063081 24 0.059699 11 0.056279 12 0.056215 10 0.051655 23 0.049169 0 0.037982 14 0.029573 9 0.027107 15 0.026845 13 0.02337 4 0.005189 5 0.004773 3 0.002779 6 0.001041 7 6.78E-4 1 5.98E-4 8 4.96E-4 19 0.112764 20 0.086835 18 0.085753 16 0.076324 21 0.074726 22 0.067069 17 0.063081 24 0.059699 11 0.056279 12 0.056215 10 0.051655 23 0.049169 0 0.037982 14 0.029573 9 0.027107 15 0.026845 13 0.02337 4 0.005189 5 0.004773 3 0.002779 6 0.001041 7 6.78E-4 1 5.98E-4 8 4.96E-4 19 0.09185594372685137 18 0.07527845572410774 20 0.074063813527551 21 0.07076046944695542 22 0.06258110613344381 16 0.06037899704272773 24 0.05617449959170922 12 0.055711824533173186 17 0.053695636743237574 11 0.05347582788564046 23 0.04874223128415228 10 0.04799789651621084 14 0.0350152857064025 0 0.034947839182576365 13 0.030939087843735776 9 0.02987747166489438 15 0.028337360672492453 4 0.0138452961158775 5 0.013417055243151982 3 0.010877825694479766 6 0.010296592829612414 7 0.009370051259775653 8 0.00927348263359325 1 0.009214623005225134 2 0.008766879324286422 __DUMMY__ 0.00510444666813566 false 1.0 312 12 0.106777 13 0.0837 21 0.081895 11 0.06209 19 0.061527 20 0.057185 23 0.056009 18 0.052898 24 0.048395 22 0.047323 16 0.041358 17 0.038897 14 0.036881 0 0.035324 10 0.034918 6 0.02131 4 0.021071 5 0.020642 9 0.018496 7 0.015451 8 0.015381 1 0.015339 2 0.015256 3 0.011875 12 0.106777 13 0.0837 21 0.081895 11 0.06209 19 0.061527 20 0.057185 23 0.056009 18 0.052898 24 0.048395 22 0.047323 16 0.041358 17 0.038897 14 0.036881 0 0.035324 10 0.034918 6 0.02131 4 0.021071 5 0.020642 9 0.018496 7 0.015451 8 0.015381 1 0.015339 2 0.015256 3 0.011875 12 0.09344392360310766 21 0.08100723052605804 13 0.07693205415480685 11 0.06259952689190518 19 0.05978197434552294 18 0.05691478274359576 22 0.05336758652002555 20 0.05253327146990287 23 0.050546611074864814 24 0.045709409457188814 14 0.045425052684780656 10 0.041870605210394006 17 0.03719570926506263 16 0.034701967352985065 0 0.03459780782272679 9 0.025099589541572473 4 0.02097781222457845 5 0.02055751066876333 6 0.020082916452471178 7 0.01503068107813283 8 0.01499498148273773 1 0.014900569293111733 2 0.01472763170551621 3 0.012708071064392649 15 0.010267533809258735 __DUMMY__ 0.004025189556537104 false 1.0 796 9 0.0581239866946799 22 0.05735208754478889 17 0.048898943580540574 18 0.04848721746932403 0 0.04844731126657647 4 0.047504848040006646 5 0.046972381286429714 6 0.04642261335135605 8 0.04610312099499798 7 0.04607753597803609 1 0.04593525194469174 3 0.04567437577871057 2 0.04535884869432283 10 0.04224311872091186 21 0.04107424591309682 11 0.03889767938460947 23 0.0387410467464516 19 0.03842121222990681 24 0.031674134430697894 16 0.02950802131911048 20 0.022781513839968952 15 0.021491240673802172 12 0.020344697867656376 14 0.019899369384572915 __DUMMY__ 0.01233394127490016 13 0.01123125558985281 false 0.0 313 13 0.126994 12 0.107456 14 0.096541 21 0.075453 18 0.067465 10 0.066033 11 0.060557 20 0.053135 15 0.050185 19 0.048543 23 0.04091 22 0.037977 0 0.028441 24 0.027503 17 0.024458 16 0.022165 9 0.018929 6 0.010856 4 0.010379 5 0.010049 8 0.004089 1 0.004054 7 0.003932 2 0.003894 13 0.126994 12 0.107456 14 0.096541 21 0.075453 18 0.067465 10 0.066033 11 0.060557 20 0.053135 15 0.050185 19 0.048543 23 0.04091 22 0.037977 0 0.028441 24 0.027503 17 0.024458 16 0.022165 9 0.018929 6 0.010856 4 0.010379 5 0.010049 8 0.004089 1 0.004054 7 0.003932 2 0.003894 13 0.09610579962974043 12 0.08844097907270786 14 0.07746372977561952 21 0.07423436397567044 18 0.06483974717440515 11 0.059333142128305406 10 0.058755086721882746 19 0.05181750912146559 20 0.049932856535037456 22 0.04793661991267677 23 0.0419537910343105 15 0.04074585174112967 24 0.03426514403785888 0 0.030769213661274483 17 0.02996175361000663 9 0.026808902422243767 16 0.024361141569037813 4 0.0165497681759587 5 0.016178039263937315 6 0.01569863071498872 8 0.010572668118558127 7 0.010474483445293859 1 0.010462406298341248 2 0.01024850999742056 3 0.00820028569236415 __DUMMY__ 0.0038895761697643402 false 1.0 797 9 0.058123986694679906 22 0.05735208754478889 17 0.048898943580540574 18 0.04848721746932402 0 0.04844731126657647 4 0.047504848040006646 5 0.046972381286429714 6 0.04642261335135605 8 0.04610312099499798 7 0.04607753597803609 1 0.04593525194469174 3 0.04567437577871057 2 0.04535884869432283 10 0.04224311872091186 21 0.04107424591309682 11 0.03889767938460947 23 0.0387410467464516 19 0.03842121222990681 24 0.031674134430697894 16 0.02950802131911048 20 0.022781513839968952 15 0.021491240673802172 12 0.020344697867656372 14 0.019899369384572915 __DUMMY__ 0.01233394127490016 13 0.01123125558985281 false 0.0 555 17 0.089997 16 0.082934 0 0.080012 19 0.055852 18 0.055134 22 0.053896 11 0.050582 9 0.049098 10 0.043051 6 0.038162 8 0.03582 7 0.035378 1 0.035174 2 0.035079 4 0.033552 5 0.033254 12 0.029868 3 0.029687 23 0.029386 21 0.02913 15 0.025026 20 0.023024 24 0.017626 13 0.009279 17 0.089997 16 0.082934 0 0.080012 19 0.055852 18 0.055134 22 0.053896 11 0.050582 9 0.049098 10 0.043051 6 0.038162 8 0.03582 7 0.035378 1 0.035174 2 0.035079 4 0.033552 5 0.033254 12 0.029868 3 0.029687 23 0.029386 21 0.02913 15 0.025026 20 0.023024 24 0.017626 13 0.009279 17 0.07794830687285889 0 0.07021473127567904 16 0.06819727916845726 22 0.054254503627810945 18 0.05357327857010502 19 0.05151969958725837 9 0.05004635311779552 11 0.04801362062499774 10 0.042471809271381666 6 0.039602610891125954 8 0.03761049071356566 7 0.03735096304928091 1 0.037201726943976846 2 0.03687086782287652 4 0.036542498607639466 5 0.03614922982851237 21 0.033792803105152175 23 0.032974820521234086 3 0.0329283712301934 12 0.030018463479576974 15 0.02436055531758396 20 0.024304460246648146 24 0.02221867251584886 13 0.012654141178932755 14 0.006962907938249841 __DUMMY__ 0.0022168344932575607 false 1.0 556 19 0.097999 21 0.085909 18 0.084809 20 0.084103 12 0.072233 22 0.065652 24 0.061266 11 0.056896 23 0.054382 10 0.052973 16 0.05217 17 0.047808 13 0.043479 14 0.042212 0 0.029049 9 0.025655 15 0.022367 4 0.007648 5 0.006796 6 0.002878 3 0.002541 8 6.46E-4 7 4.66E-4 1 6.1E-5 19 0.097999 21 0.085909 18 0.084809 20 0.084103 12 0.072233 22 0.065652 24 0.061266 11 0.056896 23 0.054382 10 0.052973 16 0.05217 17 0.047808 13 0.043479 14 0.042212 0 0.029049 9 0.025655 15 0.022367 4 0.007648 5 0.006796 6 0.002878 3 0.002541 8 6.46E-4 7 4.66E-4 1 6.1E-5 19 0.08327293130930205 18 0.07676781355504188 21 0.07394916175704581 20 0.0726576302993653 22 0.061232672395570335 12 0.060356752950693586 24 0.05586571780576169 11 0.051732453473131025 10 0.05123970610439669 23 0.05071542988006536 16 0.04575925976642807 17 0.04521983286346527 14 0.042456416774583276 13 0.03971944700313581 9 0.030972137775207072 0 0.030136054356713713 15 0.02803679993354394 4 0.016016301598806355 5 0.015399662523122647 3 0.012057798775492732 6 0.012011903565451195 8 0.010395322758520472 7 0.010307973159944825 1 0.010015242560579101 2 0.009847985054130412 __DUMMY__ 0.003857592000501449 false 1.0 314 12 0.11022 13 0.101225 21 0.085347 19 0.067695 18 0.065193 20 0.06299 11 0.06241 14 0.061641 23 0.049573 10 0.048304 22 0.0466 24 0.042752 16 0.041778 17 0.038142 0 0.032684 15 0.020349 9 0.017116 4 0.010424 6 0.01042 5 0.010026 8 0.004018 7 0.003841 1 0.003834 2 0.003419 12 0.11022 13 0.101225 21 0.085347 19 0.067695 18 0.065193 20 0.06299 11 0.06241 14 0.061641 23 0.049573 10 0.048304 22 0.0466 24 0.042752 16 0.041778 17 0.038142 0 0.032684 15 0.020349 9 0.017116 4 0.010424 6 0.01042 5 0.010026 8 0.004018 7 0.003841 1 0.003834 2 0.003419 12 0.09339050828430184 13 0.08431533449913088 21 0.0814654669769785 18 0.06286397218544305 19 0.062423898185947464 11 0.06169570344585914 14 0.057678095838339265 20 0.055440583088544514 22 0.052642503163104266 10 0.04827736681603237 23 0.04740196129360298 24 0.043058644460660864 17 0.036821376047805596 16 0.03485565491454218 0 0.03298383433164537 9 0.02469454711157319 15 0.021611494031859052 4 0.016230594511667955 5 0.01581997507328034 6 0.015191707272822931 8 0.010016719814508995 7 0.009927457936029581 1 0.009847973576247587 2 0.009518396801786946 3 0.00756479939450106 __DUMMY__ 0.004261430943784166 false 1.0 798 18 0.0752425550303898 21 0.07021501346511014 10 0.06799740208832952 22 0.06747059169597978 11 0.06495410441444283 19 0.06329999471931361 12 0.05352600905191201 14 0.052250179509877176 13 0.047427240592861436 9 0.04518690788861285 0 0.045015315358827294 17 0.044549785563847734 20 0.04407870446750323 24 0.03242155731778034 23 0.0323066356805324 16 0.030750243390703407 15 0.02848105817028242 4 0.018999279612340558 5 0.018602806419116213 6 0.01614257112296321 3 0.014247044868546195 7 0.013818946720509663 8 0.01376343452702345 1 0.013637999988098415 2 0.013294314743840697 __DUMMY__ 0.012320303591255556 false 0.0 557 21 0.08964 22 0.073165 12 0.068261 11 0.065654 18 0.059642 10 0.051639 13 0.05149 19 0.049442 9 0.049365 24 0.044738 23 0.044722 14 0.044161 20 0.034839 4 0.032582 5 0.032392 0 0.032331 6 0.027227 17 0.026327 3 0.026056 1 0.02443 7 0.023979 2 0.023895 8 0.023689 16 3.32E-4 21 0.08964 22 0.073165 12 0.068261 11 0.065654 18 0.059642 10 0.051639 13 0.05149 19 0.049442 9 0.049365 24 0.044738 23 0.044722 14 0.044161 20 0.034839 4 0.032582 5 0.032392 0 0.032331 6 0.027227 17 0.026327 3 0.026056 1 0.02443 7 0.023979 2 0.023895 8 0.023689 16 3.32E-4 21 0.0803441431472782 12 0.06760096637367381 22 0.06610714684589339 11 0.06225118928582217 18 0.05851728458786902 13 0.05432408800116721 19 0.05063511830237351 10 0.049839934157180056 14 0.044747077169240576 23 0.044062390700251995 9 0.04388669414495857 24 0.0420391697725619 20 0.03761092220440954 0 0.03534189686234036 17 0.03224551210756032 4 0.03022787616065242 5 0.029917031776724463 6 0.02671369990880615 3 0.023886146910527983 1 0.023525510905843386 7 0.02338320134426282 8 0.023227511170024542 2 0.02309351992572769 16 0.013803973142896532 15 0.00946738314721444 __DUMMY__ 0.0032006119447390235 false 1.0 799 21 0.08062617538453369 12 0.06759761617495497 19 0.06696260986761848 22 0.06548410359332521 18 0.06249252083273863 11 0.06158377351544328 20 0.05356019045844362 24 0.05125408288352099 13 0.04925565349125888 23 0.04605443668086558 10 0.04513211303984023 14 0.04407442246034898 17 0.03888353063567721 9 0.03376035671288009 16 0.033464607026679034 0 0.032272646635438135 4 0.020852391971251043 5 0.0203881229268204 15 0.01795028278681283 6 0.017403850966445405 __DUMMY__ 0.017389549424340314 3 0.015459182406287998 7 0.014741504164787523 8 0.014665124193624875 1 0.014508076806199525 2 0.0141830749598631 false 0.0 315 0 0.091893 17 0.08902 11 0.078607 16 0.075203 22 0.065942 12 0.064356 18 0.063863 19 0.060307 10 0.057102 21 0.055549 9 0.04708 13 0.038438 6 0.026301 23 0.024935 4 0.021485 5 0.021274 8 0.020169 2 0.020126 7 0.019977 1 0.019966 20 0.01437 3 0.012706 24 0.006024 14 0.005306 0 0.091893 17 0.08902 11 0.078607 16 0.075203 22 0.065942 12 0.064356 18 0.063863 19 0.060307 10 0.057102 21 0.055549 9 0.04708 13 0.038438 6 0.026301 23 0.024935 4 0.021485 5 0.021274 8 0.020169 2 0.020126 7 0.019977 1 0.019966 20 0.01437 3 0.012706 24 0.006024 14 0.005306 0 0.06961198161348296 17 0.06947377615361712 11 0.0646341090795284 22 0.060219574563319146 18 0.058199921878353614 12 0.05817830573216154 16 0.05707425299763201 21 0.05526120727923046 19 0.054071954194174376 10 0.04987869072950514 9 0.04508191688571139 13 0.039362167651503445 23 0.033458141446801266 6 0.030572375082852304 4 0.02812639810712434 5 0.02779995338144743 8 0.026139439418993167 7 0.02603493681612084 1 0.025986600350495423 2 0.02582450810527644 20 0.023925879559195673 3 0.021226547192950012 24 0.020008466776840685 14 0.017643048217798725 15 0.010039262835384465 __DUMMY__ 0.002166583950499706 false 1.0 558 19 0.096083 21 0.094231 20 0.091416 18 0.078811 12 0.077006 24 0.074743 22 0.068408 11 0.062672 23 0.053456 13 0.04563 16 0.04455 14 0.044512 10 0.044069 17 0.039173 9 0.022037 15 0.020144 0 0.018415 4 0.008569 5 0.00762 3 0.004062 6 0.002394 8 8.72E-4 7 6.61E-4 1 4.65E-4 19 0.096083 21 0.094231 20 0.091416 18 0.078811 12 0.077006 24 0.074743 22 0.068408 11 0.062672 23 0.053456 13 0.04563 16 0.04455 14 0.044512 10 0.044069 17 0.039173 9 0.022037 15 0.020144 0 0.018415 4 0.008569 5 0.00762 3 0.004062 6 0.002394 8 8.72E-4 7 6.61E-4 1 4.65E-4 21 0.08442185090351319 19 0.0829992960283637 20 0.07684584848750052 18 0.07215364297281425 12 0.06941004610164915 24 0.06501662358298899 22 0.06471399373554106 11 0.05837361859891518 23 0.051093816091937506 13 0.045422014721498205 14 0.04504784840636139 10 0.04455151814765285 16 0.04029533171931103 17 0.038690543793631856 9 0.027074409108008794 15 0.023222921677640555 0 0.023024980537528366 4 0.01501619194237056 5 0.014337212311382788 3 0.01069310542704209 6 0.010042579655715004 8 0.00834680132880832 7 0.00826849984453525 1 0.008045872412109445 2 0.007682637139744759 __DUMMY__ 0.005208795323435141 false 1.0 316 21 0.101407 12 0.097983 11 0.08737 22 0.075376 13 0.074699 19 0.071209 18 0.066297 10 0.056037 14 0.049126 20 0.048165 0 0.044847 24 0.043824 17 0.04209 23 0.037759 16 0.033346 9 0.03186 4 0.010491 5 0.009647 6 0.007589 8 0.00279 7 0.00228 2 0.002136 1 0.001959 3 0.001714 21 0.101407 12 0.097983 11 0.08737 22 0.075376 13 0.074699 19 0.071209 18 0.066297 10 0.056037 14 0.049126 20 0.048165 0 0.044847 24 0.043824 17 0.04209 23 0.037759 16 0.033346 9 0.03186 4 0.010491 5 0.009647 6 0.007589 8 0.00279 7 0.00228 2 0.002136 1 0.001959 3 0.001714 21 0.09059117769467419 12 0.08583058836842045 11 0.07576190426758067 22 0.06922613077583015 13 0.06755466150396652 19 0.06628005749548718 18 0.06446524808639584 10 0.052819559091753884 14 0.04902148646900839 20 0.04810120463359336 24 0.043887916234322207 23 0.040864746813170774 0 0.04037664361577362 17 0.04021573538297451 9 0.03311863337966199 16 0.03192192109985909 4 0.0157670377363899 5 0.015141284692775944 6 0.013084716693123546 15 0.00921211429614111 8 0.008833113416807394 7 0.008626295440995347 1 0.008374712329689145 2 0.008293968178234508 3 0.008085995756169842 __DUMMY__ 0.004543146547200392 false 1.0 317 13 0.112752 14 0.095752 12 0.090063 10 0.083115 11 0.078995 18 0.072735 21 0.07241 15 0.051001 22 0.05071 19 0.046224 0 0.045342 20 0.036605 17 0.032373 9 0.031303 23 0.024685 16 0.021742 24 0.013431 6 0.009429 4 0.0092 5 0.008978 7 0.00331 1 0.003286 8 0.003282 2 0.003277 13 0.112752 14 0.095752 12 0.090063 10 0.083115 11 0.078995 18 0.072735 21 0.07241 15 0.051001 22 0.05071 19 0.046224 0 0.045342 20 0.036605 17 0.032373 9 0.031303 23 0.024685 16 0.021742 24 0.013431 6 0.009429 4 0.0092 5 0.008978 7 0.00331 1 0.003286 8 0.003282 2 0.003277 13 0.08646464237789345 14 0.07710193340269403 12 0.07650029533193729 21 0.071500170750614 10 0.06901749528137333 18 0.06855758257604118 11 0.06841536157002556 22 0.05524426547985121 19 0.05056695879804441 15 0.04231178030672886 20 0.04064758014546407 0 0.04027932137038628 9 0.03475923339816696 17 0.03471858284716911 23 0.03250133693897279 24 0.02604133129753653 16 0.023971878173503422 4 0.016186074774358 5 0.01585898523321917 6 0.01512230894250597 8 0.010516483971212479 7 0.01050699233018583 1 0.01042196860997604 2 0.010256148166641832 3 0.00868733391413411 __DUMMY__ 0.003843954011364059 false 1.0 559 19 0.101885 21 0.091727 20 0.08255 18 0.076793 22 0.075536 24 0.069217 11 0.066987 12 0.066379 23 0.054488 16 0.051481 10 0.04965 14 0.043002 17 0.040393 13 0.033759 9 0.025052 0 0.024218 15 0.020911 4 0.008635 5 0.008259 3 0.005788 6 0.00145 8 7.8E-4 2 6.0E-4 7 4.61E-4 19 0.101885 21 0.091727 20 0.08255 18 0.076793 22 0.075536 24 0.069217 11 0.066987 12 0.066379 23 0.054488 16 0.051481 10 0.04965 14 0.043002 17 0.040393 13 0.033759 9 0.025052 0 0.024218 15 0.020911 4 0.008635 5 0.008259 3 0.005788 6 0.00145 8 7.8E-4 2 6.0E-4 7 4.61E-4 19 0.08388642994036527 21 0.08358574354710127 18 0.07103735365310997 22 0.07001990322471618 20 0.06828284059555251 12 0.06378608710570927 11 0.06335681623957357 24 0.05925256792363115 23 0.049740378117974354 10 0.04964789267301328 14 0.04486722718413284 16 0.042099257806225976 13 0.040117270280005224 17 0.03965454658788175 9 0.030530428067552934 0 0.028446724575687605 15 0.022558495480873478 4 0.01543225069088377 5 0.015025637788602388 3 0.011671135623624979 6 0.010061542762592239 8 0.008591273674622065 7 0.008470253806995008 2 0.008280336996308198 1 0.008128265254963194 __DUMMY__ 0.003469340398301438 false 1.0 318 21 0.097774 12 0.096274 11 0.086017 13 0.075697 22 0.073491 19 0.065666 18 0.064511 10 0.05566 14 0.04871 0 0.0461 20 0.043399 17 0.040947 24 0.040115 23 0.037402 9 0.033593 16 0.030996 4 0.013442 5 0.01284 6 0.011004 8 0.005572 7 0.005516 1 0.005406 2 0.005368 3 0.004502 21 0.097774 12 0.096274 11 0.086017 13 0.075697 22 0.073491 19 0.065666 18 0.064511 10 0.05566 14 0.04871 0 0.0461 20 0.043399 17 0.040947 24 0.040115 23 0.037402 9 0.033593 16 0.030996 4 0.013442 5 0.01284 6 0.011004 8 0.005572 7 0.005516 1 0.005406 2 0.005368 3 0.004502 21 0.08882807675982306 12 0.08579802430342706 11 0.07551001723702841 13 0.06947794835016134 22 0.0680439403336512 18 0.06348291117017513 19 0.06278622688686478 10 0.053105966951281496 14 0.04954890168776191 20 0.04508393100045345 24 0.04131425652955101 0 0.04126898823759788 23 0.04041590772602081 17 0.03941576996601442 9 0.03394599945707349 16 0.030197056082368886 4 0.017192697145030304 5 0.016684419961581532 6 0.014832485082955827 7 0.010170801351950563 8 0.010170342320565361 1 0.010023567529871193 2 0.0098493137762146 15 0.009297342770285532 3 0.009288567977220507 __DUMMY__ 0.00426653940507033 false 1.0 319 12 0.132684 13 0.112433 21 0.105383 11 0.06961 20 0.067887 19 0.065597 23 0.065173 18 0.060165 14 0.05994 24 0.058603 22 0.05036 10 0.037686 16 0.021478 17 0.020067 0 0.01716 4 0.012901 5 0.012252 6 0.010771 9 0.008952 8 0.00293 2 0.002638 7 0.00262 1 0.002476 3 2.34E-4 12 0.132684 13 0.112433 21 0.105383 11 0.06961 20 0.067887 19 0.065597 23 0.065173 18 0.060165 14 0.05994 24 0.058603 22 0.05036 10 0.037686 16 0.021478 17 0.020067 0 0.01716 4 0.012901 5 0.012252 6 0.010771 9 0.008952 8 0.00293 2 0.002638 7 0.00262 1 0.002476 3 2.34E-4 12 0.1025217982802548 21 0.09132004034596655 13 0.08707532822566476 11 0.06522005607295503 19 0.062341992518877815 18 0.06048807597950814 20 0.05801668904489926 14 0.05565461391186811 22 0.055460329829787186 23 0.05493677196873118 24 0.05148540237208485 10 0.042803215902948145 17 0.028558353933638585 16 0.025593997385599303 0 0.025538833315127057 9 0.02128800175191874 4 0.01754997153219076 5 0.01701531561550118 6 0.015312344434234924 15 0.011346315738519542 8 0.009625642927021677 7 0.009491597501399654 1 0.009336038610075943 2 0.009261341231054645 3 0.008035465989128295 __DUMMY__ 0.00472246558104404 false 1.0 560 21 0.101692 19 0.095685 22 0.085551 20 0.078143 18 0.076148 24 0.075634 11 0.07303 12 0.068823 23 0.048579 16 0.043834 14 0.042696 17 0.042283 10 0.041892 13 0.032196 9 0.028928 0 0.021781 15 0.016787 4 0.009456 5 0.009377 3 0.005029 6 0.002014 7 2.59E-4 8 1.28E-4 2 5.3E-5 21 0.101692 19 0.095685 22 0.085551 20 0.078143 18 0.076148 24 0.075634 11 0.07303 12 0.068823 23 0.048579 16 0.043834 14 0.042696 17 0.042283 10 0.041892 13 0.032196 9 0.028928 0 0.021781 15 0.016787 4 0.009456 5 0.009377 3 0.005029 6 0.002014 7 2.59E-4 8 1.28E-4 2 5.3E-5 21 0.08821706255365956 19 0.08129282361757305 22 0.07687099675297715 18 0.07006569376316586 11 0.06621957171278646 20 0.06529112072585587 24 0.0635763040325277 12 0.06132786019770417 23 0.046534108622639445 10 0.04424583950315517 17 0.04206437669044225 14 0.041925857104039545 16 0.03935468625498001 13 0.03402652413406832 9 0.033782215948680534 0 0.027745416936454565 15 0.019821739877991115 4 0.016654592733291344 5 0.016340055140013944 3 0.01241229127252869 6 0.010996111472475865 7 0.009324949180103174 8 0.009222104942900239 1 0.009040748259324785 2 0.00885431517736267 __DUMMY__ 0.004792633393298425 false 1.0 561 22 0.080387 21 0.078484 11 0.070543 9 0.060483 10 0.050603 18 0.048049 12 0.046192 0 0.043012 4 0.041898 5 0.041394 14 0.03816 6 0.037604 3 0.036943 24 0.036536 23 0.036105 7 0.03538 8 0.035247 1 0.035001 2 0.034768 13 0.034205 19 0.033346 17 0.030014 20 0.012405 15 0.00324 22 0.080387 21 0.078484 11 0.070543 9 0.060483 10 0.050603 18 0.048049 12 0.046192 0 0.043012 4 0.041898 5 0.041394 14 0.03816 6 0.037604 3 0.036943 24 0.036536 23 0.036105 7 0.03538 8 0.035247 1 0.035001 2 0.034768 13 0.034205 19 0.033346 17 0.030014 20 0.012405 15 0.00324 21 0.07472725630640831 22 0.07385759508841451 11 0.06568139593140923 18 0.05322763780977603 9 0.052475470922291864 12 0.0499040475669082 10 0.04911073371655453 19 0.04424951249246324 0 0.04199215242293641 24 0.03904239310061663 23 0.03861596632273704 14 0.03782281557093095 13 0.03642359684969275 17 0.036195774850149014 4 0.035813560014434725 5 0.03532867717422506 6 0.03231570472938222 3 0.030871308108213986 7 0.030037427216498828 8 0.02993536796068775 1 0.02975248776536172 2 0.02940446724039136 20 0.025027399024252175 16 0.014399061023846051 15 0.00973867998591627 __DUMMY__ 0.004049510805501109 false 1.0 320 12 0.125165 13 0.116937 21 0.086268 11 0.066013 14 0.061708 18 0.059465 19 0.057879 20 0.054811 23 0.051085 10 0.046327 22 0.042665 16 0.037264 24 0.036531 17 0.035471 0 0.034923 6 0.014 9 0.013743 15 0.012837 4 0.012301 5 0.012119 8 0.005704 2 0.005683 7 0.005574 1 0.005526 12 0.125165 13 0.116937 21 0.086268 11 0.066013 14 0.061708 18 0.059465 19 0.057879 20 0.054811 23 0.051085 10 0.046327 22 0.042665 16 0.037264 24 0.036531 17 0.035471 0 0.034923 6 0.014 9 0.013743 15 0.012837 4 0.012301 5 0.012119 8 0.005704 2 0.005683 7 0.005574 1 0.005526 12 0.09983121363647454 13 0.09251253463608511 21 0.0808475869513523 11 0.06316863231735824 18 0.05992375950760895 14 0.05859127816409447 19 0.05618161651551445 22 0.05033931717792938 20 0.05004642860997749 10 0.04812062108383234 23 0.04742276583050007 24 0.0386522021952371 17 0.03541021229397202 0 0.03463309710176803 16 0.031793736614939706 9 0.023823891905936406 15 0.018953437826433977 4 0.01765305609236946 6 0.0175482441481423 5 0.01734573116611667 8 0.01144143606247747 7 0.011361776289598708 1 0.011274309729374987 2 0.011208272211574243 3 0.008052188945359046 __DUMMY__ 0.003862652985972451 false 1.0 562 22 0.086991 21 0.084999 11 0.076952 9 0.061022 10 0.051604 18 0.050113 12 0.047783 0 0.044755 4 0.038596 19 0.038537 5 0.038253 24 0.038189 14 0.037312 23 0.033876 6 0.033769 3 0.033389 17 0.032638 7 0.03148 13 0.031443 8 0.031324 1 0.031251 2 0.030859 20 0.012222 16 0.002643 22 0.086991 21 0.084999 11 0.076952 9 0.061022 10 0.051604 18 0.050113 12 0.047783 0 0.044755 4 0.038596 19 0.038537 5 0.038253 24 0.038189 14 0.037312 23 0.033876 6 0.033769 3 0.033389 17 0.032638 7 0.03148 13 0.031443 8 0.031324 1 0.031251 2 0.030859 20 0.012222 16 0.002643 21 0.0783942417238276 22 0.07781165905112591 11 0.06927247955811308 18 0.05454061777732802 9 0.0527731996774683 12 0.05032072479789639 10 0.04953156890835704 19 0.04764109625112485 0 0.04291718863076714 24 0.04035231765347537 17 0.0378725421305629 23 0.03744729410730867 14 0.03702674341471259 13 0.03410183658163221 4 0.033873214207658056 5 0.03345641704156737 6 0.03002591956577927 3 0.028864781605454356 7 0.027771049102754426 8 0.02765512500013415 1 0.02754446264608498 2 0.02711898519030754 20 0.025331932845671548 16 0.016244097160547227 15 0.007964329264345656 __DUMMY__ 0.004146176105995382 false 1.0 321 23 0.091326 12 0.086645 24 0.081222 20 0.07977 19 0.060665 21 0.059813 13 0.058915 16 0.046139 5 0.038934 4 0.038128 6 0.037235 2 0.037162 3 0.036021 1 0.034994 7 0.034392 8 0.034298 18 0.032916 17 0.025197 11 0.022805 22 0.021789 14 0.0216 15 0.014448 0 0.004093 9 0.001493 23 0.091326 12 0.086645 24 0.081222 20 0.07977 19 0.060665 21 0.059813 13 0.058915 16 0.046139 5 0.038934 4 0.038128 6 0.037235 2 0.037162 3 0.036021 1 0.034994 7 0.034392 8 0.034298 18 0.032916 17 0.025197 11 0.022805 22 0.021789 14 0.0216 15 0.014448 0 0.004093 9 0.001493 12 0.07423872679467373 23 0.0713051523130968 20 0.06697026855691339 24 0.06542227672426097 21 0.06360539312243431 19 0.06087468813901591 13 0.053862963722379455 18 0.04637217590095892 16 0.04078872219508597 22 0.03847919094787192 11 0.036300588165382404 5 0.032504135935901936 14 0.03239860122131148 4 0.03238753419332124 17 0.032185361976698 6 0.030795523018270054 2 0.02911458615700684 3 0.028712952754309014 1 0.02827259343352241 7 0.028107380918428824 8 0.028051050181535576 10 0.020910914520043226 15 0.020623771598606663 0 0.01723799535299527 9 0.01699886265925253 __DUMMY__ 0.003478589496723072 false 1.0 563 22 0.106991 21 0.100121 11 0.096602 19 0.091841 18 0.073522 17 0.061579 10 0.056556 0 0.055003 16 0.051493 12 0.050353 9 0.049847 24 0.048559 20 0.038845 23 0.030682 14 0.026698 4 0.012142 5 0.01198 13 0.010195 3 0.007014 6 0.005802 7 0.003747 1 0.003731 8 0.003487 2 0.003209 22 0.106991 21 0.100121 11 0.096602 19 0.091841 18 0.073522 17 0.061579 10 0.056556 0 0.055003 16 0.051493 12 0.050353 9 0.049847 24 0.048559 20 0.038845 23 0.030682 14 0.026698 4 0.012142 5 0.01198 13 0.010195 3 0.007014 6 0.005802 7 0.003747 1 0.003731 8 0.003487 2 0.003209 22 0.08908725638456196 21 0.08793200704774995 11 0.08032710328020333 19 0.07710726231812835 18 0.06732498066798061 17 0.05272344879978687 12 0.05231274677942571 10 0.05171795082041061 24 0.04768127384651837 0 0.04717575347855837 9 0.046030346132282185 16 0.042259034346375554 20 0.04116858449296201 23 0.03615396059999702 14 0.03202065993978272 13 0.022774978943407114 4 0.018977846708666722 5 0.018629960491203447 6 0.01412543547831498 3 0.01407557704766856 7 0.012068387760694145 1 0.011901355802273124 8 0.011899466633353784 2 0.01142469716120909 15 0.008275397438584563 __DUMMY__ 0.004824527599900991 false 1.0 322 12 0.110517 13 0.101257 21 0.085719 19 0.068012 18 0.065589 20 0.063313 11 0.061677 14 0.061337 23 0.049351 10 0.048446 22 0.047732 24 0.042413 16 0.042074 17 0.038301 0 0.032935 15 0.020626 9 0.016877 6 0.009927 4 0.009761 5 0.00962 1 0.003804 7 0.003692 8 0.003607 2 0.003412 12 0.110517 13 0.101257 21 0.085719 19 0.068012 18 0.065589 20 0.063313 11 0.061677 14 0.061337 23 0.049351 10 0.048446 22 0.047732 24 0.042413 16 0.042074 17 0.038301 0 0.032935 15 0.020626 9 0.016877 6 0.009927 4 0.009761 5 0.00962 1 0.003804 7 0.003692 8 0.003607 2 0.003412 12 0.09359762681760873 13 0.08445908105814047 21 0.08168528491341848 18 0.06306747697132088 19 0.06255687031071322 11 0.06136518813621524 14 0.057666452132325643 20 0.055620205000305144 22 0.05315353123025045 10 0.04837589398347431 23 0.047298107831563345 24 0.04290872156266853 17 0.03682066157568986 16 0.03491651981711295 0 0.033037354669294236 9 0.024559250010037705 15 0.02179257569019813 4 0.015896520296640255 5 0.015604091862947757 6 0.014930774988879226 7 0.009821405556143553 1 0.009796480612819063 8 0.009789611238034937 2 0.00947617175089842 3 0.007528728787199603 __DUMMY__ 0.004275413196100205 false 1.0 564 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.07740863327410831 21 0.0738012032023298 11 0.05746843276823539 9 0.054434662207417286 18 0.05423103529998476 19 0.04938308612825157 24 0.04619029843958329 10 0.042696286483631524 12 0.03995034709545848 17 0.03952398460450951 14 0.03911146281433171 0 0.03890599499738465 23 0.0378347132413579 4 0.03593131940276606 5 0.03520459186929069 3 0.032022347546524436 6 0.03159734442258157 8 0.030324738516525562 7 0.03004084275576438 1 0.02982657544561479 2 0.029480705892667387 20 0.0292269295415512 13 0.026945891472886077 15 0.01752274086933804 16 0.017220574705298378 __DUMMY__ 0.0037152570026072126 false 1.0 323 13 0.128413 12 0.10851 14 0.097515 21 0.077559 18 0.067836 10 0.066408 11 0.060301 20 0.053188 15 0.05009 19 0.048601 23 0.041808 22 0.037871 0 0.027296 24 0.026414 17 0.023607 16 0.021324 9 0.018464 6 0.010301 5 0.009955 4 0.009728 2 0.004 1 0.003828 7 0.003531 8 0.003453 13 0.128413 12 0.10851 14 0.097515 21 0.077559 18 0.067836 10 0.066408 11 0.060301 20 0.053188 15 0.05009 19 0.048601 23 0.041808 22 0.037871 0 0.027296 24 0.026414 17 0.023607 16 0.021324 9 0.018464 6 0.010301 5 0.009955 4 0.009728 2 0.004 1 0.003828 7 0.003531 8 0.003453 13 0.09673764379824748 12 0.08879225024866608 14 0.0780388778259471 21 0.07514242805046892 18 0.06503107416298438 11 0.05915876215010553 10 0.058983558688654264 19 0.05177665056221027 20 0.0499244395295428 22 0.047884826108227224 23 0.04232636851539083 15 0.040864861432226104 24 0.033731128305561686 0 0.03019943150408021 17 0.029520093697786007 9 0.026646067229259923 16 0.023881107584139884 4 0.016271863917816543 5 0.016156603724925982 6 0.015457700775720505 1 0.010381941427030542 2 0.010318819037933483 7 0.010313783449893546 8 0.010303392989230426 3 0.00823224520903295 __DUMMY__ 0.003924080074917376 false 1.0 565 17 0.086069 16 0.08259 0 0.070697 19 0.057277 18 0.052456 22 0.052389 9 0.045726 11 0.044388 6 0.03864 8 0.036985 1 0.036862 7 0.036758 2 0.03623 5 0.034746 4 0.034684 23 0.034353 10 0.034012 3 0.03176 21 0.031469 20 0.030871 12 0.030232 24 0.027523 15 0.025747 13 0.007534 17 0.086069 16 0.08259 0 0.070697 19 0.057277 18 0.052456 22 0.052389 9 0.045726 11 0.044388 6 0.03864 8 0.036985 1 0.036862 7 0.036758 2 0.03623 5 0.034746 4 0.034684 23 0.034353 10 0.034012 3 0.03176 21 0.031469 20 0.030871 12 0.030232 24 0.027523 15 0.025747 13 0.007534 17 0.07687108462414777 16 0.06962634190508361 0 0.06572131960290858 19 0.05330937929872202 22 0.053265661955187005 18 0.052796855828197174 9 0.04764839188404375 11 0.04499536843643528 6 0.03911192352408424 10 0.03797941542641534 8 0.037437094268167756 7 0.03726827352561061 1 0.037261655683187206 2 0.03668780224302769 4 0.036307450876526794 5 0.03608416316683821 23 0.035445698820967965 21 0.03485522312539328 3 0.03313227249016862 12 0.030607225215751297 20 0.029242609085408253 24 0.027428474939656326 15 0.02569435667885138 13 0.011954944902332709 14 0.007140354419639313 __DUMMY__ 0.002126658073247583 false 1.0 324 12 0.101364 21 0.088912 13 0.087269 11 0.064248 22 0.061418 18 0.06124 23 0.056909 19 0.050756 14 0.04542 17 0.039863 10 0.038094 0 0.037788 20 0.03548 24 0.03519 9 0.029382 6 0.024732 4 0.024411 5 0.022625 16 0.020408 7 0.016741 8 0.016653 1 0.016011 2 0.014957 3 0.010128 12 0.101364 21 0.088912 13 0.087269 11 0.064248 22 0.061418 18 0.06124 23 0.056909 19 0.050756 14 0.04542 17 0.039863 10 0.038094 0 0.037788 20 0.03548 24 0.03519 9 0.029382 6 0.024732 4 0.024411 5 0.022625 16 0.020408 7 0.016741 8 0.016653 1 0.016011 2 0.014957 3 0.010128 12 0.09163371409449576 21 0.08363290493102792 13 0.08060364056016225 11 0.06290046603262195 18 0.05985732421760059 22 0.05883309941845956 19 0.053146069525499474 23 0.05145834415914384 14 0.05056279084261481 10 0.04273188467328743 20 0.041528865007064 24 0.03904615336680992 17 0.03692992726439791 0 0.03530154911150509 9 0.029775067651883345 16 0.02404604853390056 4 0.02313046555442605 6 0.022443962286882224 5 0.02207231038133831 7 0.01624861454126958 8 0.016220291557747422 1 0.015839648526764876 2 0.015217408526944523 3 0.012306502119231299 15 0.0112191638938425 __DUMMY__ 0.0033137832210785464 false 1.0 566 17 0.07691 16 0.069117 0 0.063591 19 0.054119 22 0.05326 18 0.052504 9 0.049784 6 0.041455 8 0.041131 1 0.041107 7 0.041008 11 0.040229 2 0.040135 4 0.039351 5 0.039077 3 0.037841 23 0.036308 10 0.035166 24 0.03332 20 0.032814 21 0.030965 15 0.027798 12 0.020498 14 0.002513 17 0.07691 16 0.069117 0 0.063591 19 0.054119 22 0.05326 18 0.052504 9 0.049784 6 0.041455 8 0.041131 1 0.041107 7 0.041008 11 0.040229 2 0.040135 4 0.039351 5 0.039077 3 0.037841 23 0.036308 10 0.035166 24 0.03332 20 0.032814 21 0.030965 15 0.027798 12 0.020498 14 0.002513 17 0.07243549464144693 16 0.06375306273482663 0 0.06148141395921354 18 0.054155945081249754 22 0.05412227811695706 19 0.05352680468704405 9 0.048932148851587386 11 0.043257458996799794 10 0.039147876645869474 6 0.03900721783622838 8 0.03804241447858393 7 0.03790592661020855 1 0.03787843981289249 4 0.03728116054496128 2 0.03717191021386574 5 0.03689534174384956 23 0.03633195046305521 21 0.03547807621498931 3 0.03485979229319249 20 0.03216558741105937 24 0.03127956285779422 15 0.028253861497400324 12 0.0262039993184886 14 0.009842530059124133 13 0.008644629973716822 __DUMMY__ 0.0019451149555949824 false 1.0 567 22 0.080064 21 0.078535 11 0.070165 9 0.060523 10 0.050627 18 0.047623 12 0.0461 0 0.042544 4 0.042043 5 0.041534 14 0.038296 6 0.037778 3 0.037004 24 0.036558 23 0.036213 7 0.035674 8 0.035507 1 0.03533 2 0.034845 13 0.033855 19 0.033303 17 0.029993 20 0.012384 15 0.003503 22 0.080064 21 0.078535 11 0.070165 9 0.060523 10 0.050627 18 0.047623 12 0.0461 0 0.042544 4 0.042043 5 0.041534 14 0.038296 6 0.037778 3 0.037004 24 0.036558 23 0.036213 7 0.035674 8 0.035507 1 0.03533 2 0.034845 13 0.033855 19 0.033303 17 0.029993 20 0.012384 15 0.003503 21 0.07473376356982306 22 0.07368647250374787 11 0.06548718210654637 18 0.05302248991725282 9 0.05249172466807571 12 0.04986289674018252 10 0.04911773814223611 19 0.04420922269876881 0 0.04176971569891705 24 0.03904670214461027 23 0.03867097036701557 14 0.0378908958034613 13 0.03627731570927919 17 0.03617650060114281 4 0.03589053047468447 5 0.03540321233200742 6 0.032408235729869596 3 0.030909449675892195 7 0.0301851581368129 8 0.030067481016754157 1 0.02991636748989771 2 0.02945189371377755 20 0.025015356240507672 16 0.014387246799133011 15 0.009868611199796826 __DUMMY__ 0.004052866519807164 false 1.0 325 12 0.104086 21 0.094468 19 0.07773 13 0.076216 11 0.069989 20 0.066535 18 0.064723 22 0.059635 24 0.054264 23 0.052705 16 0.044538 10 0.042119 17 0.041571 14 0.040194 0 0.035056 9 0.020204 4 0.011989 5 0.011407 6 0.010293 7 0.005227 8 0.004954 1 0.004773 2 0.00428 3 0.003042 12 0.104086 21 0.094468 19 0.07773 13 0.076216 11 0.069989 20 0.066535 18 0.064723 22 0.059635 24 0.054264 23 0.052705 16 0.044538 10 0.042119 17 0.041571 14 0.040194 0 0.035056 9 0.020204 4 0.011989 5 0.011407 6 0.010293 7 0.005227 8 0.004954 1 0.004773 2 0.00428 3 0.003042 12 0.08926119588650214 21 0.08685091422737397 19 0.07001181105693773 13 0.0686361437249328 11 0.06575429456185529 18 0.06332810755005085 22 0.06037050362128617 20 0.05891604694544124 24 0.050459367708688016 23 0.04931821678600136 14 0.044919089337975907 10 0.04468916909304413 17 0.0394804870812186 16 0.037982263682215286 0 0.03407392178512133 9 0.02623147949987237 4 0.01649540860796343 5 0.015993123354893894 6 0.01436749556749277 15 0.010246818340078156 7 0.010071681138934517 8 0.009927664444101654 1 0.009762219258446038 2 0.009386854154612106 3 0.008827653580332846 __DUMMY__ 0.0046380690046275205 false 1.0 326 12 0.101979 13 0.086631 21 0.079465 11 0.070258 22 0.051201 19 0.047584 23 0.047246 18 0.047229 0 0.043595 10 0.040894 14 0.040868 20 0.038264 17 0.03742 24 0.036676 16 0.032325 9 0.026383 6 0.026292 4 0.025461 5 0.025103 8 0.019914 2 0.019808 7 0.019799 1 0.019735 3 0.015869 12 0.101979 13 0.086631 21 0.079465 11 0.070258 22 0.051201 19 0.047584 23 0.047246 18 0.047229 0 0.043595 10 0.040894 14 0.040868 20 0.038264 17 0.03742 24 0.036676 16 0.032325 9 0.026383 6 0.026292 4 0.025461 5 0.025103 8 0.019914 2 0.019808 7 0.019799 1 0.019735 3 0.015869 12 0.08920523356417856 21 0.07812765606586171 13 0.07800994280875848 11 0.0661129608452105 22 0.0549853574204553 18 0.05416385503432212 19 0.05118362764062483 14 0.047972674701308324 10 0.045967432701891076 23 0.04526998341351629 20 0.04142792324346116 0 0.039494962508957475 24 0.03819571521121667 17 0.03654348571648542 9 0.030265428724335405 16 0.029215033604520515 4 0.023921390797654055 5 0.023533107719133445 6 0.023419884773695825 8 0.01816106389003921 7 0.01809871855315216 1 0.0180012082612054 2 0.017891519057038934 3 0.01552242737187502 15 0.011432790441806456 __DUMMY__ 0.00387661592929565 false 1.0 568 22 0.080039 21 0.078634 11 0.070094 9 0.060488 10 0.050602 18 0.047579 12 0.046015 0 0.042613 4 0.04207 5 0.041606 14 0.038262 6 0.037813 3 0.037087 24 0.036528 23 0.036159 7 0.03568 8 0.035536 1 0.035346 2 0.034928 13 0.033878 19 0.033272 17 0.029979 20 0.012352 15 0.00344 22 0.080039 21 0.078634 11 0.070094 9 0.060488 10 0.050602 18 0.047579 12 0.046015 0 0.042613 4 0.04207 5 0.041606 14 0.038262 6 0.037813 3 0.037087 24 0.036528 23 0.036159 7 0.03568 8 0.035536 1 0.035346 2 0.034928 13 0.033878 19 0.033272 17 0.029979 20 0.012352 15 0.00344 21 0.07477955639526113 22 0.07367495143999307 11 0.06545439582855589 18 0.05300217740978293 9 0.05247557175920423 12 0.04982363237224999 10 0.04910620572269239 19 0.04419491478120483 0 0.04180162714180894 24 0.03903285404578417 23 0.03864602917740252 14 0.03787519835089555 13 0.03628796318907336 17 0.03617004645377682 4 0.03590302659522494 5 0.035436507446910626 6 0.03242442787991708 3 0.030947826967437253 7 0.03018794531782077 8 0.030080898855612916 1 0.029923776595470023 2 0.029490270331633126 20 0.02500057724656487 16 0.01438725344898869 15 0.009839496853672093 __DUMMY__ 0.004052868393061847 false 1.0 327 12 0.100426 13 0.079279 21 0.071588 11 0.057708 23 0.057673 19 0.049016 20 0.04795 24 0.046949 22 0.041811 18 0.040553 16 0.040161 17 0.037527 0 0.036617 6 0.031436 14 0.030403 4 0.030264 5 0.029836 10 0.026971 8 0.025797 2 0.025714 7 0.025652 1 0.025538 3 0.021687 9 0.019446 12 0.100426 13 0.079279 21 0.071588 11 0.057708 23 0.057673 19 0.049016 20 0.04795 24 0.046949 22 0.041811 18 0.040553 16 0.040161 17 0.037527 0 0.036617 6 0.031436 14 0.030403 4 0.030264 5 0.029836 10 0.026971 8 0.025797 2 0.025714 7 0.025652 1 0.025538 3 0.021687 9 0.019446 12 0.08848881218605584 21 0.07381899758227216 13 0.07319361471043767 11 0.059417086027507 19 0.052601955495641915 23 0.05094905093582819 18 0.050300186899222915 22 0.05006007036032966 20 0.04662467412702264 24 0.043860270922071384 14 0.04084829882249683 17 0.03784855180241974 10 0.0376040896382276 0 0.0364702716509699 16 0.035041575581026725 4 0.02642719389151669 9 0.026374622151358863 6 0.026241386545318775 5 0.026002394084832906 8 0.021341266089004367 7 0.021256486050588476 1 0.02113360257084984 2 0.02107545487855928 3 0.01853812356850232 15 0.010693421052048402 __DUMMY__ 0.0037885423758899743 false 1.0 569 22 0.093215 21 0.077241 9 0.069463 11 0.056793 24 0.051432 18 0.049346 19 0.045629 4 0.044958 5 0.044046 3 0.042663 17 0.040562 0 0.039739 8 0.039085 7 0.03873 1 0.038612 6 0.038521 2 0.037646 10 0.036149 23 0.033733 14 0.029257 12 0.018744 20 0.017328 15 0.009847 16 0.007263 22 0.093215 21 0.077241 9 0.069463 11 0.056793 24 0.051432 18 0.049346 19 0.045629 4 0.044958 5 0.044046 3 0.042663 17 0.040562 0 0.039739 8 0.039085 7 0.03873 1 0.038612 6 0.038521 2 0.037646 10 0.036149 23 0.033733 14 0.029257 12 0.018744 20 0.017328 15 0.009847 16 0.007263 22 0.07691626403312389 21 0.07372042640291987 11 0.057118158725150976 9 0.05436937071200071 18 0.054117773272714845 19 0.04940711113327611 24 0.04605660460382614 10 0.0423090225120868 12 0.04019751555029544 17 0.039520450410761805 14 0.03919893025277579 0 0.03823064783488597 23 0.03797081276611035 4 0.03603028728188599 5 0.03533780158743928 3 0.032053380798943126 6 0.031736374818646454 8 0.03052130226594938 7 0.030327507154384044 1 0.030177243953514846 2 0.02953547402452337 20 0.029391218666331317 13 0.027016228941586052 15 0.017694104493167544 16 0.01732227910789594 __DUMMY__ 0.003723708695803874 false 1.0 328 12 0.106128 21 0.102917 13 0.079267 19 0.075413 20 0.068391 11 0.067946 18 0.06666 22 0.064024 24 0.061333 23 0.060171 14 0.049115 10 0.042184 17 0.027616 16 0.024662 0 0.020765 9 0.020265 4 0.0144 5 0.013869 6 0.010148 3 0.005459 2 0.004913 8 0.004906 7 0.004841 1 0.004603 12 0.106128 21 0.102917 13 0.079267 19 0.075413 20 0.068391 11 0.067946 18 0.06666 22 0.064024 24 0.061333 23 0.060171 14 0.049115 10 0.042184 17 0.027616 16 0.024662 0 0.020765 9 0.020265 4 0.0144 5 0.013869 6 0.010148 3 0.005459 2 0.004913 8 0.004906 7 0.004841 1 0.004603 12 0.08854367522837908 21 0.08602973957264239 13 0.06999022123761646 19 0.06351744530274102 11 0.06113035760689133 18 0.060778183189784604 22 0.05895804347338335 20 0.05606830952373406 23 0.053853167497186674 24 0.05155434185532995 14 0.04669766188180928 10 0.04253779145914311 17 0.03261903384978507 0 0.028095797399481377 9 0.02732230146004409 16 0.027175124707351596 4 0.021572095413731177 5 0.0211053100535618 6 0.0188551902964082 8 0.014382891769448737 7 0.014354411821775052 1 0.014181391341549273 2 0.014166722493065352 3 0.013870148407406196 15 0.009789200914524194 __DUMMY__ 0.0028514422432266923 false 1.0 329 15 0.17762 14 0.149486 18 0.08381 10 0.080169 20 0.071683 13 0.06787 19 0.042169 24 0.035666 9 0.032528 23 0.032499 22 0.029339 17 0.022611 16 0.020957 21 0.019019 3 0.017646 4 0.016762 5 0.01627 8 0.014442 7 0.014073 2 0.013786 1 0.01351 6 0.012746 11 0.01101 12 0.004328 15 0.17762 14 0.149486 18 0.08381 10 0.080169 20 0.071683 13 0.06787 19 0.042169 24 0.035666 9 0.032528 23 0.032499 22 0.029339 17 0.022611 16 0.020957 21 0.019019 3 0.017646 4 0.016762 5 0.01627 8 0.014442 7 0.014073 2 0.013786 1 0.01351 6 0.012746 11 0.01101 12 0.004328 15 0.1172118596122507 14 0.1073403381775464 18 0.0766292449551616 10 0.069135176358343 20 0.06255875717550897 13 0.06083130308872412 19 0.049849300580231494 22 0.04027740596094157 21 0.0375106675378489 24 0.037133795832880324 23 0.036292640627670944 9 0.03449582414083335 17 0.03150265505800246 11 0.028471196918822713 16 0.027868123040422257 12 0.02653764710984616 4 0.019480347993590493 5 0.019056833069772475 3 0.018002196947254433 6 0.016443664870078194 8 0.016400612161088977 7 0.016186688516001167 0 0.016024317351700363 1 0.015839188332796884 2 0.01582226646453236 __DUMMY__ 0.003097948118149629 false 1.0 570 21 0.099437 22 0.093498 11 0.086285 12 0.059205 19 0.05873 18 0.053005 24 0.051396 9 0.048011 0 0.041679 10 0.04094 17 0.040558 23 0.039879 14 0.036356 13 0.032075 4 0.02709 5 0.026496 20 0.026112 6 0.022116 16 0.021723 3 0.020347 7 0.019361 8 0.019053 1 0.018857 2 0.01779 21 0.099437 22 0.093498 11 0.086285 12 0.059205 19 0.05873 18 0.053005 24 0.051396 9 0.048011 0 0.041679 10 0.04094 17 0.040558 23 0.039879 14 0.036356 13 0.032075 4 0.02709 5 0.026496 20 0.026112 6 0.022116 16 0.021723 3 0.020347 7 0.019361 8 0.019053 1 0.018857 2 0.01779 21 0.088745940840888 22 0.08252548413839741 11 0.07481506932651937 19 0.06037668089860547 12 0.057722321959653926 18 0.056461362322672175 24 0.05003693168905455 9 0.04483112343203257 10 0.04298847262453999 23 0.0415158822464631 17 0.04101877998536686 0 0.03931345915345301 14 0.037433817575975144 20 0.034934844186118 13 0.034601826450434324 4 0.0266786299222533 5 0.0261123638163886 16 0.026080893023645513 6 0.02235077422009384 3 0.020885402050859873 7 0.019892777140134286 8 0.019701523493277095 1 0.01949927116204278 2 0.018764340210463918 15 0.0077097637803439124 __DUMMY__ 0.005002264350323204 false 1.0 571 17 0.083791 16 0.083552 19 0.076213 22 0.073753 11 0.066209 0 0.062826 21 0.060279 18 0.05726 24 0.048144 20 0.041827 9 0.039964 12 0.039653 23 0.037448 10 0.031055 6 0.023671 4 0.023546 5 0.022923 8 0.021941 1 0.021736 7 0.021734 2 0.02138 3 0.01995 15 0.018587 14 0.002559 17 0.083791 16 0.083552 19 0.076213 22 0.073753 11 0.066209 0 0.062826 21 0.060279 18 0.05726 24 0.048144 20 0.041827 9 0.039964 12 0.039653 23 0.037448 10 0.031055 6 0.023671 4 0.023546 5 0.022923 8 0.021941 1 0.021736 7 0.021734 2 0.02138 3 0.01995 15 0.018587 14 0.002559 17 0.06912332659675963 22 0.06885754469727164 19 0.06811979619757762 16 0.06447310440705503 11 0.061127582995468936 21 0.06026841568389957 18 0.05859128361997569 0 0.054909869695308866 24 0.04412229042527598 12 0.042125558935894765 9 0.041817785588239495 20 0.04111671406652599 23 0.03856175143303337 10 0.038306012534742785 4 0.026142762721315955 5 0.025595277936673384 6 0.025488434000804704 8 0.023698142939221786 7 0.023591404834646407 1 0.02347576820501596 2 0.023070594082149964 3 0.022333859561889904 15 0.02130536963803984 14 0.016279112166211855 13 0.0138605555163786 __DUMMY__ 0.003637681520622411 false 1.0 330 17 0.080957 0 0.079807 16 0.064108 9 0.054825 22 0.050561 6 0.049191 18 0.048615 11 0.046481 8 0.045884 2 0.045879 1 0.045504 7 0.045381 5 0.044873 4 0.044452 10 0.044259 3 0.03994 19 0.037473 23 0.033344 12 0.025347 21 0.023853 15 0.020582 13 0.011472 24 0.01015 20 0.00706 17 0.080957 0 0.079807 16 0.064108 9 0.054825 22 0.050561 6 0.049191 18 0.048615 11 0.046481 8 0.045884 2 0.045879 1 0.045504 7 0.045381 5 0.044873 4 0.044452 10 0.044259 3 0.03994 19 0.037473 23 0.033344 12 0.025347 21 0.023853 15 0.020582 13 0.011472 24 0.01015 20 0.00706 17 0.06777164288908273 0 0.06549075584226878 9 0.05440344908504276 22 0.053570377378346315 18 0.052263500919456675 16 0.05130873952179712 10 0.04606547400077308 11 0.044533434681557474 6 0.044527840537202434 8 0.042387589839758 4 0.04236288683921748 5 0.04228885420244484 7 0.04212495285366628 1 0.042109965940210915 2 0.04199556756780071 19 0.04134053008354045 3 0.03873675990011849 23 0.035250535419697304 21 0.03295251379737118 12 0.025870100344008197 15 0.024972227599528458 24 0.019786710837215567 20 0.017728539977392002 13 0.015082973760450877 14 0.013057462704067928 __DUMMY__ 0.0020166134779840464 false 1.0 572 21 0.103625 22 0.092507 11 0.087651 19 0.077065 18 0.067827 12 0.067782 10 0.05267 24 0.052385 17 0.046445 9 0.044387 20 0.044011 0 0.043949 14 0.03866 13 0.036329 23 0.035035 16 0.03376 4 0.015144 5 0.014632 6 0.00962 3 0.009426 7 0.007038 1 0.006942 8 0.006713 2 0.006399 21 0.103625 22 0.092507 11 0.087651 19 0.077065 18 0.067827 12 0.067782 10 0.05267 24 0.052385 17 0.046445 9 0.044387 20 0.044011 0 0.043949 14 0.03866 13 0.036329 23 0.035035 16 0.03376 4 0.015144 5 0.014632 6 0.00962 3 0.009426 7 0.007038 1 0.006942 8 0.006713 2 0.006399 21 0.091939591737649 22 0.0824743309887649 11 0.07675584232738075 19 0.07075590465010378 18 0.06488536873654087 12 0.06333298128969535 24 0.05041258041537735 10 0.0498877087667214 20 0.044741565026531 17 0.04411881245452859 9 0.04251573191530762 0 0.04066828487865477 14 0.03928626064574906 23 0.03871291841810637 13 0.03780965638023711 16 0.03269479372052269 4 0.019498557820183497 5 0.018989154581087513 6 0.01486676825024496 3 0.014113482885141982 7 0.012438018827747017 1 0.012231269335788764 8 0.012223958721987473 2 0.011749470074608435 15 0.0075578614466567185 __DUMMY__ 0.00533912570468304 false 1.0 573 22 0.086678 21 0.085094 11 0.076587 9 0.060905 10 0.051585 18 0.0507 12 0.047468 0 0.044312 19 0.038942 4 0.038433 24 0.037837 5 0.037739 14 0.037217 23 0.035073 6 0.033667 3 0.033073 17 0.033019 7 0.031616 8 0.031382 1 0.031294 13 0.031219 2 0.030566 20 0.012968 16 0.002626 22 0.086678 21 0.085094 11 0.076587 9 0.060905 10 0.051585 18 0.0507 12 0.047468 0 0.044312 19 0.038942 4 0.038433 24 0.037837 5 0.037739 14 0.037217 23 0.035073 6 0.033667 3 0.033073 17 0.033019 7 0.031616 8 0.031382 1 0.031294 13 0.031219 2 0.030566 20 0.012968 16 0.002626 21 0.07842385648405215 22 0.0776345856068161 11 0.06907238369398215 18 0.05479626212741316 9 0.052731742732453894 12 0.0501826168678746 10 0.04953816265979978 19 0.047763273456937254 0 0.04268204128757654 24 0.040168511896828886 23 0.038009382009202466 17 0.03798383599179581 14 0.03702507088724243 13 0.03405482220622906 4 0.033828039038602396 5 0.03324896249236519 6 0.030008090880483174 3 0.02874780329289326 7 0.027862785344301047 8 0.02771066093130531 1 0.027592968656777763 2 0.02701217506725685 20 0.02565353940799752 16 0.016143569567067723 15 0.007966059586935475 __DUMMY__ 0.004158797825810051 false 1.0 331 23 0.08237 12 0.06888 24 0.065002 21 0.063709 5 0.048536 13 0.04849 4 0.04823 6 0.04754 20 0.045574 2 0.045268 7 0.044764 1 0.044507 8 0.044093 3 0.044031 19 0.041932 22 0.040112 11 0.028126 16 0.027594 17 0.025317 18 0.024925 14 0.024429 9 0.021541 0 0.013869 15 0.011163 23 0.08237 12 0.06888 24 0.065002 21 0.063709 5 0.048536 13 0.04849 4 0.04823 6 0.04754 20 0.045574 2 0.045268 7 0.044764 1 0.044507 8 0.044093 3 0.044031 19 0.041932 22 0.040112 11 0.028126 16 0.027594 17 0.025317 18 0.024925 14 0.024429 9 0.021541 0 0.013869 15 0.011163 21 0.06903043632352851 23 0.0675144778077948 12 0.06667042133351113 24 0.05771158023126714 22 0.05038479036876201 19 0.05021440675645781 13 0.048194787644877335 20 0.04643866541611178 11 0.04157637971324352 18 0.04024398157638327 4 0.03841125788525268 5 0.03825190090364945 6 0.03672971372728304 7 0.03388224826015202 2 0.03373793624851797 1 0.03360781215568421 8 0.03351078389145363 3 0.03333546995191177 14 0.0320550283215748 17 0.03126845510971107 16 0.02886609293801517 9 0.027903198502853478 0 0.02245299425305006 10 0.01910649662614396 15 0.01433293330432629 __DUMMY__ 0.004567750748483308 false 1.0 332 20 0.100439 19 0.09864 21 0.088814 24 0.083502 18 0.079956 12 0.069539 22 0.067178 23 0.05848 11 0.054485 16 0.051928 14 0.046604 17 0.039413 13 0.038779 10 0.038514 15 0.03159 9 0.016605 0 0.012026 4 0.00781 5 0.007028 3 0.004676 6 0.001688 7 0.001139 8 7.35E-4 1 4.32E-4 20 0.100439 19 0.09864 21 0.088814 24 0.083502 18 0.079956 12 0.069539 22 0.067178 23 0.05848 11 0.054485 16 0.051928 14 0.046604 17 0.039413 13 0.038779 10 0.038514 15 0.03159 9 0.016605 0 0.012026 4 0.00781 5 0.007028 3 0.004676 6 0.001688 7 0.001139 8 7.35E-4 1 4.32E-4 19 0.08579715168467371 20 0.08232502883257924 21 0.07968468136289748 18 0.07419935203158311 24 0.06952079641079349 22 0.06454243081994243 12 0.06165192428168039 11 0.05321669731980393 23 0.0532059020446629 16 0.046045543109042165 14 0.04499847070563233 10 0.042425575491773754 17 0.04066052255790148 13 0.03773482129428195 15 0.031107579257341915 9 0.02519242474721538 0 0.02029536648403333 4 0.01463900378950011 5 0.013996494726032727 3 0.011352181366157127 6 0.009601173230002985 7 0.008700881582178237 8 0.008497996267188997 1 0.008216188418515496 2 0.007839496592309042 __DUMMY__ 0.004552315592276284 false 1.0 574 17 0.068792 0 0.066168 9 0.061055 22 0.060622 18 0.053562 16 0.049382 19 0.045424 6 0.044939 8 0.044716 10 0.044626 11 0.044525 7 0.044524 1 0.044357 4 0.044042 2 0.043587 5 0.043276 3 0.04234 21 0.034817 23 0.031148 24 0.026444 20 0.021184 15 0.019235 12 0.015197 14 0.006036 17 0.068792 0 0.066168 9 0.061055 22 0.060622 18 0.053562 16 0.049382 19 0.045424 6 0.044939 8 0.044716 10 0.044626 11 0.044525 7 0.044524 1 0.044357 4 0.044042 2 0.043587 5 0.043276 3 0.04234 21 0.034817 23 0.031148 24 0.026444 20 0.021184 15 0.019235 12 0.015197 14 0.006036 17 0.06330776400339075 0 0.061752267291611665 22 0.060361494301840235 9 0.059671970969386263 18 0.05267084203736077 11 0.04511867038492862 10 0.044898882608915086 6 0.044422536727100906 4 0.04397520815838704 16 0.04380743234910668 8 0.04376705152770932 19 0.04369539161264434 7 0.04363705530617654 1 0.043478895855797964 5 0.04333357490099752 2 0.04281656958145401 3 0.04171268442222937 21 0.03849057088194821 23 0.03313425313082455 24 0.02666389049412891 20 0.020772565783731652 12 0.019953941374007796 15 0.019083024245567213 14 0.011275556318591345 13 0.0063785605933904905 __DUMMY__ 0.001819345138772486 false 1.0 333 24 0.077588 23 0.074506 3 0.062632 5 0.061792 4 0.061502 22 0.060581 21 0.056882 2 0.056484 8 0.056062 1 0.055984 7 0.055722 6 0.054201 9 0.042921 20 0.040001 19 0.036198 18 0.02847 11 0.028141 14 0.022753 12 0.021253 15 0.018843 17 0.01443 10 0.008425 0 0.002592 16 0.002037 24 0.077588 23 0.074506 3 0.062632 5 0.061792 4 0.061502 22 0.060581 21 0.056882 2 0.056484 8 0.056062 1 0.055984 7 0.055722 6 0.054201 9 0.042921 20 0.040001 19 0.036198 18 0.02847 11 0.028141 14 0.022753 12 0.021253 15 0.018843 17 0.01443 10 0.008425 0 0.002592 16 0.002037 22 0.06293338991791646 21 0.06250068909085603 24 0.06145438126668499 23 0.05827274016645969 19 0.04780488735138813 18 0.045186268530342744 4 0.04462580410018761 5 0.04448715455264959 3 0.043144452193853405 9 0.042795289044214 20 0.04264167648523053 11 0.04179116544738196 8 0.03946807682502891 6 0.039401413425928664 2 0.03933450969784206 7 0.039322912171534836 1 0.0393160532409818 12 0.03495597435938218 14 0.03251480567983665 17 0.02837886259584201 10 0.028266411272856447 15 0.022711137023611258 0 0.0196283605418273 13 0.018034596405843022 16 0.01696430199008061 __DUMMY__ 0.004064686622238996 false 1.0 575 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.09077833061221892 22 0.08029179174295298 11 0.07548703498156163 12 0.06425747972405299 19 0.05905843531912549 18 0.05331690133657553 24 0.05103616998823522 23 0.04367663359009689 13 0.04187189292969351 9 0.041149112714152565 10 0.03968623064743126 14 0.03963381043837969 17 0.039057618438304346 0 0.037435480568482365 20 0.03497519769510653 4 0.026335704492405597 5 0.02586950367054657 16 0.025517850102164043 6 0.022461013413922638 3 0.01978493336413401 7 0.019367639274095138 8 0.019061386255592516 1 0.018829795912557366 2 0.018265556379050786 15 0.007641329684480165 __DUMMY__ 0.005153166724681274 false 1.0 576 22 0.08672 9 0.071507 11 0.06735 0 0.064214 21 0.063608 18 0.059461 17 0.058147 10 0.054617 19 0.046775 4 0.040902 5 0.040263 6 0.038352 7 0.037254 8 0.037084 3 0.036901 1 0.036901 2 0.035687 24 0.025461 16 0.025434 23 0.025083 12 0.021912 14 0.014998 20 0.009129 13 0.002238 22 0.08672 9 0.071507 11 0.06735 0 0.064214 21 0.063608 18 0.059461 17 0.058147 10 0.054617 19 0.046775 4 0.040902 5 0.040263 6 0.038352 7 0.037254 8 0.037084 3 0.036901 1 0.036901 2 0.035687 24 0.025461 16 0.025434 23 0.025083 12 0.021912 14 0.014998 20 0.009129 13 0.002238 22 0.07709465773062259 9 0.06251784086290267 11 0.06156338343662478 21 0.06075405406894045 18 0.057539829052548064 0 0.057264218485164366 17 0.05440216634174251 10 0.051033687723018785 19 0.048033773400799736 4 0.038826472782080734 5 0.038239225632275005 6 0.03665829154834748 7 0.03534874294952774 8 0.0352811530011506 1 0.03506298646752221 3 0.03503710113403036 2 0.034233368846101744 23 0.030788614438839217 24 0.02998531413169821 16 0.029065254078108452 12 0.02892605944393715 14 0.02064393088687054 20 0.01822705495855561 13 0.011903632241857942 15 0.008402229346164755 __DUMMY__ 0.003166957010568144 false 1.0 334 18 0.094649 21 0.093318 12 0.083318 22 0.074639 13 0.072097 19 0.070821 23 0.06636 11 0.062955 10 0.062729 14 0.049281 20 0.042668 17 0.03972 0 0.036137 9 0.035731 24 0.028913 4 0.015613 16 0.014889 6 0.014633 5 0.014047 7 0.007831 8 0.007178 1 0.005881 15 0.0037 2 0.002892 18 0.094649 21 0.093318 12 0.083318 22 0.074639 13 0.072097 19 0.070821 23 0.06636 11 0.062955 10 0.062729 14 0.049281 20 0.042668 17 0.03972 0 0.036137 9 0.035731 24 0.028913 4 0.015613 16 0.014889 6 0.014633 5 0.014047 7 0.007831 8 0.007178 1 0.005881 15 0.0037 2 0.002892 21 0.08093512085272696 18 0.07235711669944268 12 0.07152000344825966 22 0.066018883647599 19 0.06207702015647452 23 0.05923222158113502 13 0.058364526792308837 11 0.05750018541800789 10 0.04934127677511473 14 0.04337861713932039 20 0.04330791183644348 24 0.03923676910205558 17 0.03826338347457859 9 0.03571189668157744 0 0.03404915635838908 4 0.02417118278653268 5 0.023167787623611043 6 0.02247703786268922 16 0.022472897489524635 7 0.01782125982592469 8 0.017458582989607188 1 0.01678402824065078 2 0.015222571460807209 3 0.013971423705531219 15 0.01140417694861985 __DUMMY__ 0.00375496110306754 false 1.0 335 21 0.102221 19 0.099062 22 0.090007 20 0.082616 24 0.0807 18 0.078689 11 0.07532 12 0.060815 23 0.051285 10 0.043601 14 0.04085 16 0.040138 17 0.03928 9 0.02928 13 0.021731 0 0.01774 15 0.015533 4 0.010462 5 0.010021 3 0.007102 6 0.001568 8 0.001016 7 4.85E-4 2 4.75E-4 21 0.102221 19 0.099062 22 0.090007 20 0.082616 24 0.0807 18 0.078689 11 0.07532 12 0.060815 23 0.051285 10 0.043601 14 0.04085 16 0.040138 17 0.03928 9 0.02928 13 0.021731 0 0.01774 15 0.015533 4 0.010462 5 0.010021 3 0.007102 6 0.001568 8 0.001016 7 4.85E-4 2 4.75E-4 21 0.08779984977250002 19 0.08265040592673671 22 0.07979306174532784 18 0.0716152945523996 11 0.06798156118143878 20 0.06641645466684519 24 0.06522401895842354 12 0.055904557817543506 23 0.04729016696032129 10 0.045874756973871875 17 0.0410471077373222 14 0.039963301423264236 16 0.03729661210136964 9 0.03502787538984422 13 0.027216453649339757 0 0.026756931483974896 15 0.018569932160535145 4 0.017700080973925673 5 0.01721942793603151 3 0.014058475254943793 6 0.011298038458866575 8 0.010225549640384394 7 0.010012329933580234 2 0.009642682843884982 1 0.009621919625510532 __DUMMY__ 0.0037931528318137764 false 1.0 577 21 0.097648 22 0.094386 11 0.085961 19 0.059842 12 0.055499 18 0.053911 24 0.050767 9 0.05014 10 0.043203 0 0.042231 17 0.041591 23 0.037762 14 0.035439 13 0.02821 4 0.027696 5 0.027068 20 0.026216 6 0.022412 16 0.021814 3 0.02113 7 0.019928 8 0.019477 1 0.019472 2 0.018197 21 0.097648 22 0.094386 11 0.085961 19 0.059842 12 0.055499 18 0.053911 24 0.050767 9 0.05014 10 0.043203 0 0.042231 17 0.041591 23 0.037762 14 0.035439 13 0.02821 4 0.027696 5 0.027068 20 0.026216 6 0.022412 16 0.021814 3 0.02113 7 0.019928 8 0.019477 1 0.019472 2 0.018197 21 0.08771877247415648 22 0.08323695415333918 11 0.07468959202087117 19 0.061058180443912535 18 0.057121199648791816 12 0.0552826044625843 24 0.04968784006420058 9 0.046194568885286724 10 0.044317796031256636 17 0.04175801137056673 23 0.040220473369012445 0 0.03980034028436592 14 0.036746316842078505 20 0.03494778698896373 13 0.03198299769169865 4 0.026988440625523018 5 0.026407499656494186 16 0.02625408607702767 6 0.022478524167759806 3 0.021362009082966732 7 0.02020811462864543 8 0.019952838734329705 1 0.01983696910997181 2 0.019004134425515174 15 0.007747880104116264 __DUMMY__ 0.004996068656564705 false 1.0 336 23 0.082947 12 0.068951 24 0.06513 21 0.064332 13 0.04882 4 0.04792 5 0.047623 6 0.047176 20 0.045969 7 0.044561 1 0.044348 2 0.044017 8 0.043947 3 0.042789 19 0.042517 22 0.039864 11 0.028314 16 0.027713 17 0.026003 18 0.025772 14 0.024152 9 0.021972 0 0.014164 15 0.010998 23 0.082947 12 0.068951 24 0.06513 21 0.064332 13 0.04882 4 0.04792 5 0.047623 6 0.047176 20 0.045969 7 0.044561 1 0.044348 2 0.044017 8 0.043947 3 0.042789 19 0.042517 22 0.039864 11 0.028314 16 0.027713 17 0.026003 18 0.025772 14 0.024152 9 0.021972 0 0.014164 15 0.010998 21 0.06929119343557405 23 0.06776416591050878 12 0.06668281527219506 24 0.057806578913478 19 0.05046538500422287 22 0.05025133940533045 13 0.04831367611615406 20 0.046629518160552906 11 0.041647902298125046 18 0.04057116357967851 4 0.03828849280076711 5 0.03785673809972645 6 0.03657999994270658 7 0.0338108232285217 1 0.03355858781054081 8 0.0334659549113609 2 0.0331964278082526 3 0.03280264968247479 14 0.03191462039272652 17 0.03157393695149135 16 0.028942343729683892 9 0.028091512643871937 0 0.0225738240871263 10 0.01906414813129271 15 0.01427465272364549 __DUMMY__ 0.004581548959991256 false 1.0 578 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.09079522025296144 22 0.08028660917187606 11 0.0754893307527677 12 0.06428450459482489 19 0.05906987619645031 18 0.05331783260948534 24 0.05105282553819949 23 0.04368870393444066 13 0.041897213509828855 9 0.04112958932624352 10 0.039679707400862754 14 0.03965045511893148 17 0.039045124276034765 0 0.037416873169476485 20 0.03499700847149452 4 0.026324613625363768 5 0.025858447242451642 16 0.02551803138674921 6 0.022448697764580576 3 0.019772485801595782 7 0.019354303713314442 8 0.019048024758257582 1 0.01881644965899979 2 0.01825255559079611 15 0.007646615763845417 __DUMMY__ 0.005158900370167603 false 1.0 337 19 0.099582 21 0.098702 22 0.084306 20 0.082714 18 0.07777 24 0.077041 11 0.070295 12 0.062596 23 0.053375 16 0.045811 10 0.04379 14 0.041977 17 0.041371 9 0.027834 13 0.026749 0 0.019264 15 0.019246 4 0.009385 5 0.008431 3 0.005793 6 0.001603 7 0.001028 8 8.62E-4 1 4.77E-4 19 0.099582 21 0.098702 22 0.084306 20 0.082714 18 0.07777 24 0.077041 11 0.070295 12 0.062596 23 0.053375 16 0.045811 10 0.04379 14 0.041977 17 0.041371 9 0.027834 13 0.026749 0 0.019264 15 0.019246 4 0.009385 5 0.008431 3 0.005793 6 0.001603 7 0.001028 8 8.62E-4 1 4.77E-4 21 0.08661091381990395 19 0.0837773772533862 22 0.07648530748206549 18 0.07137161428522092 20 0.0678812205855467 11 0.06509216091802422 24 0.06427033873494493 12 0.057976226871931734 23 0.048775996630016485 10 0.04551027863492356 17 0.04198648003357462 14 0.04102172281960196 16 0.04078936619924894 9 0.03333508282038797 13 0.030654631241813685 0 0.02679539663714382 15 0.020782523965258332 4 0.016508045064466452 5 0.015791414737146008 3 0.01272105954123667 6 0.010652657736193425 7 0.009572129898175803 8 0.00945572534111898 1 0.00915143608663343 2 0.008730983082608394 __DUMMY__ 0.004299909579427288 false 1.0 579 21 0.0883 22 0.082982 11 0.081268 12 0.063024 19 0.058594 18 0.052626 24 0.046642 0 0.045867 9 0.045444 17 0.044425 10 0.043926 23 0.038027 13 0.036221 14 0.032253 20 0.031054 16 0.03104 4 0.027008 5 0.026166 6 0.02333 3 0.021028 7 0.020617 8 0.020363 1 0.020199 2 0.019596 21 0.0883 22 0.082982 11 0.081268 12 0.063024 19 0.058594 18 0.052626 24 0.046642 0 0.045867 9 0.045444 17 0.044425 10 0.043926 23 0.038027 13 0.036221 14 0.032253 20 0.031054 16 0.03104 4 0.027008 5 0.026166 6 0.02333 3 0.021028 7 0.020617 8 0.020363 1 0.020199 2 0.019596 21 0.08153960490236058 22 0.07719634231325521 11 0.07236047285077517 19 0.05969687095219669 12 0.05815108047620949 18 0.05634075064019107 24 0.04598581796820915 10 0.045102778265950765 17 0.044640811322755575 9 0.04454534164240744 0 0.04339746729784962 23 0.03951189420987816 20 0.03589052281574828 13 0.035308011258719914 14 0.034009856235187555 16 0.0319212636430355 4 0.027035422480598422 5 0.026366069735389186 6 0.023615978604269353 3 0.02165874539439324 7 0.021175878095845892 8 0.02102140274111156 1 0.020832919111618373 2 0.02031315877529008 15 0.007690151223759887 __DUMMY__ 0.004691387042993913 false 1.0 338 0 0.086662 17 0.079201 9 0.065797 22 0.06245 11 0.059258 10 0.056303 18 0.054146 16 0.053555 6 0.045419 8 0.042992 7 0.042802 1 0.042602 2 0.042168 4 0.041699 5 0.041179 19 0.037646 3 0.037388 21 0.032705 12 0.024274 23 0.021153 13 0.011875 15 0.011788 14 0.003952 24 0.002986 0 0.086662 17 0.079201 9 0.065797 22 0.06245 11 0.059258 10 0.056303 18 0.054146 16 0.053555 6 0.045419 8 0.042992 7 0.042802 1 0.042602 2 0.042168 4 0.041699 5 0.041179 19 0.037646 3 0.037388 21 0.032705 12 0.024274 23 0.021153 13 0.011875 15 0.011788 14 0.003952 24 0.002986 0 0.07293697006585555 17 0.06948515165965113 9 0.06168776505331079 22 0.060544919179444615 18 0.05259321931346038 11 0.05248730054748642 10 0.050476131308795455 16 0.04714779613276454 6 0.04495491539915631 8 0.04308418677196211 7 0.04296065304012477 4 0.0428272590029239 1 0.04279845044903423 5 0.04230789681029356 2 0.04228532407303 19 0.039420251892515815 3 0.039138598762959116 21 0.03657592510106654 23 0.028045851201210815 12 0.02488316746185847 15 0.01534798013386226 24 0.01415084299556429 13 0.012705428763548132 20 0.009657890893592064 14 0.009517046205394415 __DUMMY__ 0.0019790777811341293 false 1.0 339 23 0.087622 24 0.074157 4 0.063054 3 0.062309 5 0.061895 7 0.061414 8 0.060982 1 0.060235 6 0.060073 2 0.059483 20 0.056155 19 0.03398 21 0.033911 15 0.032961 9 0.03059 22 0.029775 18 0.027764 12 0.027539 14 0.021907 16 0.017387 17 0.016068 13 0.015267 10 0.003769 11 0.001702 23 0.087622 24 0.074157 4 0.063054 3 0.062309 5 0.061895 7 0.061414 8 0.060982 1 0.060235 6 0.060073 2 0.059483 20 0.056155 19 0.03398 21 0.033911 15 0.032961 9 0.03059 22 0.029775 18 0.027764 12 0.027539 14 0.021907 16 0.017387 17 0.016068 13 0.015267 10 0.003769 11 0.001702 23 0.06837610161485815 24 0.05944214839635495 4 0.04977290445219945 20 0.0491853150975719 5 0.04898521799577194 3 0.047575470569790425 6 0.04711760418892385 7 0.046986375032584723 8 0.0467703160798714 1 0.04634651190511511 21 0.046015441094163785 2 0.0458027181750416 22 0.043085100446819666 19 0.04265800766554201 18 0.04123693885487983 9 0.036546933989673125 12 0.03615065428740437 15 0.028723685755419583 14 0.028183252592862522 17 0.028088281733633768 13 0.02414349530105375 16 0.023438838928648675 11 0.022988818115097363 10 0.02218931016935172 0 0.017150251583986083 __DUMMY__ 0.0030403059733802216 false 1.0 580 17 0.084911 0 0.07903 16 0.072508 22 0.054787 18 0.054151 9 0.053099 11 0.050443 19 0.049061 10 0.043402 6 0.041713 8 0.03975 1 0.039629 7 0.03957 2 0.03864 4 0.037585 5 0.037288 3 0.03392 23 0.029756 21 0.029238 12 0.02563 15 0.022408 20 0.018665 24 0.0175 13 0.007314 17 0.084911 0 0.07903 16 0.072508 22 0.054787 18 0.054151 9 0.053099 11 0.050443 19 0.049061 10 0.043402 6 0.041713 8 0.03975 1 0.039629 7 0.03957 2 0.03864 4 0.037585 5 0.037288 3 0.03392 23 0.029756 21 0.029238 12 0.02563 15 0.022408 20 0.018665 24 0.0175 13 0.007314 17 0.07499824717120095 0 0.06979347449683933 16 0.06181867127881723 22 0.055061803372543856 18 0.05292359832427565 9 0.05286666942604852 11 0.047822980384822765 19 0.04736544654540116 10 0.042955280828244964 6 0.041864719504454515 8 0.04009091863355086 7 0.03995459316094055 1 0.03992260857398565 2 0.03916712722075252 4 0.03910811588159363 5 0.03870321157382671 3 0.035620648537716945 21 0.03379655351519628 23 0.03287114087436149 12 0.027252625040095742 15 0.022687219549314866 24 0.021780678553823117 20 0.021261932634176483 13 0.01131098651693689 14 0.006997087325250114 __DUMMY__ 0.0020036610758292087 false 1.0 581 22 0.101864 21 0.099317 19 0.073637 11 0.073232 18 0.067689 24 0.058026 9 0.057563 10 0.051075 20 0.044344 23 0.043242 12 0.037253 14 0.034806 17 0.033514 0 0.03071 4 0.027613 5 0.026838 3 0.025232 8 0.018801 7 0.018617 6 0.018418 1 0.018162 2 0.017985 16 0.013635 13 0.008426 22 0.101864 21 0.099317 19 0.073637 11 0.073232 18 0.067689 24 0.058026 9 0.057563 10 0.051075 20 0.044344 23 0.043242 12 0.037253 14 0.034806 17 0.033514 0 0.03071 4 0.027613 5 0.026838 3 0.025232 8 0.018801 7 0.018617 6 0.018418 1 0.018162 2 0.017985 16 0.013635 13 0.008426 21 0.0864946498983625 22 0.08532474333201315 19 0.06861848604609191 11 0.06672600376083321 18 0.06458815909112908 24 0.05368269740176428 9 0.04916078724863077 10 0.04844495593763191 20 0.045753009919679455 12 0.044944978038964245 23 0.04324905375189021 17 0.03813266450186665 14 0.0367380112503813 0 0.03350778625792132 4 0.02680318119969723 5 0.026163835580244724 16 0.02370765030031204 3 0.02348684606221051 13 0.02144947384111244 6 0.020417962545336246 8 0.019684312509999042 7 0.019640235609523445 1 0.01926887960104457 2 0.018956409923346584 15 0.010181342531185963 __DUMMY__ 0.004873883858827362 false 1.0 340 22 0.078359 21 0.073576 24 0.073437 23 0.064919 5 0.053719 4 0.053253 3 0.053006 11 0.047931 9 0.04783 2 0.046671 1 0.046023 8 0.046008 7 0.045664 6 0.045116 19 0.043875 18 0.036022 20 0.03351 12 0.027926 14 0.023316 17 0.020723 10 0.017119 0 0.011778 15 0.007614 16 0.002605 22 0.078359 21 0.073576 24 0.073437 23 0.064919 5 0.053719 4 0.053253 3 0.053006 11 0.047931 9 0.04783 2 0.046671 1 0.046023 8 0.046008 7 0.045664 6 0.045116 19 0.043875 18 0.036022 20 0.03351 12 0.027926 14 0.023316 17 0.020723 10 0.017119 0 0.011778 15 0.007614 16 0.002605 22 0.07290100898029238 21 0.07200378847459653 24 0.05978571098252631 23 0.05354814758201329 11 0.05279130251586682 19 0.05192633223179339 18 0.04837133297051585 9 0.04555209146912366 4 0.04071498601547555 5 0.040649050142580426 12 0.03881233377922207 20 0.03875700927594307 3 0.038469795865931966 6 0.03503317639990278 8 0.0345783975716121 2 0.034541808131750874 1 0.03447247522818483 7 0.03444418493781805 10 0.03188339064625161 17 0.03183403755654927 14 0.03098639295559731 0 0.02481327184185366 16 0.01732600434308646 13 0.017080265291630984 15 0.014525932994702997 __DUMMY__ 0.004197771815177684 false 1.0 582 22 0.088855 21 0.086909 11 0.07922 9 0.059726 10 0.051808 18 0.051599 12 0.048022 0 0.045638 19 0.042495 24 0.039065 14 0.036773 4 0.036203 5 0.035777 17 0.035318 23 0.033218 6 0.031327 3 0.031134 13 0.030082 7 0.029117 8 0.029009 1 0.028857 2 0.028523 20 0.014519 16 0.006806 22 0.088855 21 0.086909 11 0.07922 9 0.059726 10 0.051808 18 0.051599 12 0.048022 0 0.045638 19 0.042495 24 0.039065 14 0.036773 4 0.036203 5 0.035777 17 0.035318 23 0.033218 6 0.031327 3 0.031134 13 0.030082 7 0.029117 8 0.029009 1 0.028857 2 0.028523 20 0.014519 16 0.006806 21 0.07961212351614348 22 0.0790647615208263 11 0.0705348976244907 18 0.055369164375202666 9 0.05214279380918587 12 0.050304523065735615 19 0.049960075571915646 10 0.049518180625444864 0 0.04326258079613514 24 0.041120387484388364 17 0.03926065260264555 23 0.03713494364767761 14 0.036640406605666205 13 0.033012696940582044 4 0.03257080420658526 5 0.032110220983991 6 0.028643388346872595 3 0.027653311575918896 20 0.026674473428718894 7 0.0264543811038776 8 0.026359890514573613 1 0.02620615094024654 2 0.0258059832830114 16 0.018434179182784376 15 0.007883117725010783 __DUMMY__ 0.004265910522369031 false 1.0 583 21 0.100137 19 0.093686 22 0.084881 20 0.079053 18 0.078469 24 0.073975 11 0.071983 12 0.06666 23 0.050279 10 0.044993 16 0.043195 17 0.042563 14 0.042292 13 0.032259 9 0.028828 0 0.022823 15 0.016422 4 0.009455 5 0.008353 3 0.004817 6 0.002512 7 0.001195 8 7.9E-4 1 3.81E-4 21 0.100137 19 0.093686 22 0.084881 20 0.079053 18 0.078469 24 0.073975 11 0.071983 12 0.06666 23 0.050279 10 0.044993 16 0.043195 17 0.042563 14 0.042292 13 0.032259 9 0.028828 0 0.022823 15 0.016422 4 0.009455 5 0.008353 3 0.004817 6 0.002512 7 0.001195 8 7.9E-4 1 3.81E-4 21 0.08762886464580541 19 0.08006130585890302 22 0.07674527098320907 18 0.07095146274786107 11 0.06594718170746065 20 0.06525496516666654 24 0.06264820783989901 12 0.06033415075333761 23 0.047225002390860825 10 0.045695333562966255 17 0.042106824579912466 14 0.041690311162318076 16 0.0387423233731759 13 0.034075142254982295 9 0.03394205686048239 0 0.028362258857696245 15 0.01937372893994361 4 0.01680534782854936 5 0.016019061262472243 3 0.012441375336598535 6 0.011376125697407403 7 0.009892175865287218 8 0.009661358588749428 1 0.009351657431974277 2 0.008963449904457394 __DUMMY__ 0.004705056399023695 false 1.0 341 23 0.085985 24 0.065868 12 0.061713 21 0.055174 6 0.051392 4 0.051391 5 0.050362 20 0.050192 7 0.049473 8 0.048813 1 0.048077 2 0.04722 3 0.046144 19 0.042529 13 0.041464 22 0.034879 16 0.031076 17 0.026645 18 0.026113 9 0.023728 14 0.018416 11 0.018077 0 0.013706 15 0.011562 23 0.085985 24 0.065868 12 0.061713 21 0.055174 6 0.051392 4 0.051391 5 0.050362 20 0.050192 7 0.049473 8 0.048813 1 0.048077 2 0.04722 3 0.046144 19 0.042529 13 0.041464 22 0.034879 16 0.031076 17 0.026645 18 0.026113 9 0.023728 14 0.018416 11 0.018077 0 0.013706 15 0.011562 23 0.06989741368525088 21 0.06319778327808573 12 0.06177772787854885 24 0.05801235716263136 19 0.049827166908934406 20 0.0485025525952828 22 0.046856636838065374 13 0.04360962496723531 4 0.04089405051702146 18 0.04032400934284704 5 0.04013920503800784 6 0.03961317559960862 7 0.03726730209539365 8 0.036900488970114706 1 0.03648204142778931 2 0.03588658107956451 3 0.035529947242422054 11 0.03521482875513273 17 0.03197239085066888 16 0.030689204431242404 9 0.029114454205574493 14 0.028282087555730327 0 0.022234950922006235 10 0.018606109544836043 15 0.015041400454615196 __DUMMY__ 0.004126508653389675 false 1.0 100 19 0.100706 20 0.099246 21 0.090394 24 0.083827 18 0.077522 12 0.070703 22 0.06641 23 0.058822 11 0.054517 16 0.052669 14 0.046547 17 0.039137 13 0.038258 10 0.036834 15 0.031541 9 0.017633 0 0.008983 4 0.00851 5 0.008195 3 0.004815 6 0.002093 7 0.00115 8 0.001134 1 3.54E-4 19 0.100706 20 0.099246 21 0.090394 24 0.083827 18 0.077522 12 0.070703 22 0.06641 23 0.058822 11 0.054517 16 0.052669 14 0.046547 17 0.039137 13 0.038258 10 0.036834 15 0.031541 9 0.017633 0 0.008983 4 0.00851 5 0.008195 3 0.004815 6 0.002093 7 0.00115 8 0.001134 1 3.54E-4 19 0.08693507997212609 20 0.0820337666174245 21 0.0804145476472513 18 0.07327291889792843 24 0.06972973154572518 22 0.06415163642098215 12 0.0622701891129419 23 0.053369754246731065 11 0.05318467160178103 16 0.04652768497545668 14 0.04497317702147501 10 0.041695958035204844 17 0.04061625184519406 13 0.03752663891359408 15 0.031130615346742246 9 0.025584466904118575 0 0.018869827461444427 4 0.014845882157680962 5 0.014414743003571266 3 0.011292666031802753 6 0.009674840403754685 7 0.008589549207773403 8 0.008565445115817498 1 0.008061168780790348 2 0.007719866568982067 __DUMMY__ 0.004548922163705313 false 1.0 584 20 0.112389 19 0.089867 24 0.083009 18 0.071078 23 0.067623 21 0.061645 12 0.057275 16 0.05262 15 0.050245 14 0.048734 13 0.039638 22 0.038128 10 0.032239 17 0.031329 11 0.022414 3 0.018932 4 0.018886 5 0.01825 7 0.015101 8 0.014982 1 0.01481 2 0.014494 6 0.013917 9 0.012396 20 0.112389 19 0.089867 24 0.083009 18 0.071078 23 0.067623 21 0.061645 12 0.057275 16 0.05262 15 0.050245 14 0.048734 13 0.039638 22 0.038128 10 0.032239 17 0.031329 11 0.022414 3 0.018932 4 0.018886 5 0.01825 7 0.015101 8 0.014982 1 0.01481 2 0.014494 6 0.013917 9 0.012396 20 0.08886038985483735 19 0.08066293220884871 24 0.06965099572327457 18 0.06954294303002927 21 0.06506751591708237 23 0.058259209177782906 12 0.05517129222053635 22 0.04871037545451861 14 0.04776078729883624 16 0.04581355462139555 15 0.04274845907471364 13 0.03918200576716175 10 0.03912418514277997 17 0.035691966521367365 11 0.0356532654986539 9 0.022558146236086925 4 0.020351609911465954 5 0.019791793057821055 3 0.01876380832298437 7 0.01592730608059541 6 0.015899043264095504 8 0.01586476549070031 1 0.015650599990189324 2 0.015342792124293457 0 0.013107710108849384 __DUMMY__ 0.00484254790109978 false 1.0 342 0 0.08657 17 0.079703 9 0.066111 22 0.062458 11 0.058774 10 0.056004 18 0.05569 16 0.052995 6 0.045556 8 0.043032 1 0.042932 7 0.042856 4 0.041853 2 0.041726 5 0.041282 19 0.037791 3 0.036945 21 0.03306 12 0.02385 23 0.021401 13 0.011784 15 0.011347 14 0.00362 24 0.00266 0 0.08657 17 0.079703 9 0.066111 22 0.062458 11 0.058774 10 0.056004 18 0.05569 16 0.052995 6 0.045556 8 0.043032 1 0.042932 7 0.042856 4 0.041853 2 0.041726 5 0.041282 19 0.037791 3 0.036945 21 0.03306 12 0.02385 23 0.021401 13 0.011784 15 0.011347 14 0.00362 24 0.00266 0 0.07289450583560385 17 0.069716858655155 9 0.06183269731743075 22 0.06054861172120564 18 0.053305879873336764 11 0.05226390177094487 10 0.05033812256047744 16 0.04688931820949333 6 0.04501815017681374 8 0.043102649480767204 7 0.04298557769701165 1 0.04295076779667621 4 0.042898340431823494 5 0.042355438285466666 2 0.042081311140733796 19 0.03948717921193426 3 0.038934124262942786 21 0.036739781641711704 23 0.028160319995802367 12 0.02468746274852455 15 0.015144428769286176 24 0.014000371918802833 13 0.012663426101016562 20 0.009657890893592065 14 0.009363805722312194 __DUMMY__ 0.0019790777811341297 false 1.0 101 22 0.085388 18 0.067631 21 0.065904 9 0.065528 11 0.062117 19 0.061086 17 0.058592 0 0.055136 10 0.052295 24 0.036993 4 0.035108 5 0.034711 16 0.032152 3 0.031907 6 0.031383 23 0.030954 8 0.030378 7 0.029906 2 0.029836 1 0.0294 20 0.028137 12 0.026375 14 0.01484 15 0.004242 22 0.085388 18 0.067631 21 0.065904 9 0.065528 11 0.062117 19 0.061086 17 0.058592 0 0.055136 10 0.052295 24 0.036993 4 0.035108 5 0.034711 16 0.032152 3 0.031907 6 0.031383 23 0.030954 8 0.030378 7 0.029906 2 0.029836 1 0.0294 20 0.028137 12 0.026375 14 0.01484 15 0.004242 22 0.07616259308297685 18 0.06278166086841414 21 0.06080292511857143 9 0.06018494133540327 11 0.05691778025457288 19 0.05583874829303519 17 0.054341194609629655 0 0.051728606094592275 10 0.05017456926576174 24 0.03647376610558086 4 0.03640841303259947 5 0.0359005341284627 23 0.03396700193042008 6 0.03344954501790684 3 0.03331032903705234 8 0.032469879214491494 7 0.032235843996794834 16 0.031926135618515976 1 0.03186955251112677 2 0.03178486617250015 20 0.02929707657569317 12 0.028850482713553935 14 0.02033914140674033 15 0.01132842198126617 13 0.008701869379052936 __DUMMY__ 0.0027541222552846718 false 1.0 343 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 21 0.0695929281571466 23 0.06811925305168683 12 0.06689802325691695 24 0.057979278378205996 22 0.05080752616925415 19 0.05072957965671138 13 0.04855522803918384 20 0.04714658798447518 11 0.041742596723041626 18 0.040838183757694525 4 0.038091705668015355 5 0.037307180579946836 6 0.03661078403211432 7 0.03381888935492627 8 0.03342552596013493 1 0.032990621268608286 2 0.03237107753676686 14 0.03213395918107526 3 0.03197491934738764 17 0.03137849768814649 16 0.029066930421286545 9 0.028087630893187297 0 0.02251647753358606 10 0.01906568692969138 15 0.014170185903748023 __DUMMY__ 0.0045807425270610715 false 1.0 585 21 0.099343 22 0.093515 11 0.089181 12 0.061395 19 0.058284 18 0.051506 24 0.049774 9 0.047777 0 0.043925 10 0.042419 17 0.041453 14 0.037412 23 0.036811 13 0.034911 4 0.026093 5 0.025743 20 0.024648 16 0.023288 6 0.021577 3 0.019391 7 0.018516 8 0.018052 1 0.017803 2 0.017181 21 0.099343 22 0.093515 11 0.089181 12 0.061395 19 0.058284 18 0.051506 24 0.049774 9 0.047777 0 0.043925 10 0.042419 17 0.041453 14 0.037412 23 0.036811 13 0.034911 4 0.026093 5 0.025743 20 0.024648 16 0.023288 6 0.021577 3 0.019391 7 0.018516 8 0.018052 1 0.017803 2 0.017181 21 0.08880133741944131 22 0.08259516564761177 11 0.07658429216519888 19 0.06005553503148332 12 0.05908472019052272 18 0.05582003379025093 24 0.04883149380417536 9 0.04472557224483781 10 0.043938199230544484 17 0.04156640509603895 0 0.040709180495445856 23 0.03992515395100889 14 0.038021930718387074 13 0.03635964409696827 20 0.03389380423662369 16 0.02683772370240336 4 0.02608546965940668 5 0.025633947181140933 6 0.022021980973607764 3 0.02023418262661224 7 0.01936572578587982 8 0.01909942232194874 1 0.01887419785851233 2 0.0183445256837908 15 0.007568868449449493 __DUMMY__ 0.005021487638708513 false 1.0 586 21 0.122493 24 0.092914 22 0.090791 12 0.08513 11 0.069365 19 0.063179 23 0.062571 14 0.053552 20 0.053183 13 0.049881 18 0.035792 4 0.028231 9 0.028174 5 0.028119 3 0.022286 6 0.019062 2 0.016283 7 0.01626 8 0.016242 1 0.015921 17 0.013484 16 0.007062 10 0.005799 15 0.004227 21 0.122493 24 0.092914 22 0.090791 12 0.08513 11 0.069365 19 0.063179 23 0.062571 14 0.053552 20 0.053183 13 0.049881 18 0.035792 4 0.028231 9 0.028174 5 0.028119 3 0.022286 6 0.019062 2 0.016283 7 0.01626 8 0.016242 1 0.015921 17 0.013484 16 0.007062 10 0.005799 15 0.004227 21 0.0980053784009073 22 0.07627042529798829 12 0.07475414567241123 24 0.06849570398940744 11 0.06429366805174394 19 0.06123141294980746 23 0.053075957202171224 13 0.05121137356840707 14 0.05004176724303531 20 0.049974846222379216 18 0.04854412595506861 9 0.03246458381064252 10 0.026904385514475437 17 0.0267151300907833 4 0.026153728663188512 5 0.025837062454692875 6 0.020361739438627183 3 0.020330728480064748 16 0.01923456003327269 0 0.018046041749054994 7 0.017483336907465865 8 0.01747075129471224 1 0.01721633424329812 2 0.01719755405447434 15 0.013450834938070566 __DUMMY__ 0.005234423773849591 false 1.0 102 10 0.088744 9 0.078074 18 0.076656 22 0.07343 0 0.071526 11 0.062085 17 0.055489 21 0.043725 14 0.042698 19 0.039801 4 0.035503 5 0.035383 6 0.034129 8 0.032891 7 0.032615 3 0.032424 1 0.032307 2 0.032183 15 0.029732 13 0.021024 16 0.018443 12 0.013457 23 0.011158 20 0.006522 10 0.088744 9 0.078074 18 0.076656 22 0.07343 0 0.071526 11 0.062085 17 0.055489 21 0.043725 14 0.042698 19 0.039801 4 0.035503 5 0.035383 6 0.034129 8 0.032891 7 0.032615 3 0.032424 1 0.032307 2 0.032183 15 0.029732 13 0.021024 16 0.018443 12 0.013457 23 0.011158 20 0.006522 10 0.0735975926429714 18 0.07007683559303814 22 0.06821118751242566 9 0.06693557690972173 0 0.06196045947019886 11 0.05695160176178215 17 0.05329795267728917 21 0.04710606352914439 19 0.04415668412098844 14 0.03802418949394709 4 0.035331669760351146 5 0.0349996272455123 6 0.03394271769109054 8 0.03266663593808061 7 0.03252004052245408 1 0.032285313133005984 3 0.03214256996487828 2 0.03195940539235948 15 0.027891754379971732 16 0.024926811948593718 13 0.02305711238602565 12 0.02229022138214495 23 0.022064633346533632 20 0.01745894298739846 24 0.013281478046587223 __DUMMY__ 0.0028629221635052414 false 1.0 344 0 0.079597 17 0.076055 9 0.065267 22 0.061257 18 0.052495 11 0.051088 10 0.050415 6 0.049473 16 0.049113 8 0.04774 7 0.047442 1 0.046909 4 0.046387 2 0.046308 5 0.04543 3 0.042299 19 0.037633 21 0.030729 23 0.028848 12 0.0183 15 0.011728 24 0.008983 13 0.004221 20 0.002283 0 0.079597 17 0.076055 9 0.065267 22 0.061257 18 0.052495 11 0.051088 10 0.050415 6 0.049473 16 0.049113 8 0.04774 7 0.047442 1 0.046909 4 0.046387 2 0.046308 5 0.04543 3 0.042299 19 0.037633 21 0.030729 23 0.028848 12 0.0183 15 0.011728 24 0.008983 13 0.004221 20 0.002283 0 0.06704395896034415 17 0.06506141510032815 9 0.06190078860779136 22 0.06013051026252485 18 0.052341306732504964 10 0.048670644810797616 11 0.047588596008199306 6 0.046790361595324514 4 0.04543404918172026 8 0.04542733987419647 7 0.045264169266678464 1 0.04494412405677603 5 0.044718062689368544 2 0.04436073744655918 3 0.04206019253186341 16 0.04157724328337171 19 0.038890677848522424 21 0.03635430163529842 23 0.03225277922021334 12 0.021146576408858128 24 0.018007029378788533 15 0.016671529986478837 20 0.011632420204210405 14 0.01036930546844507 13 0.00959933802178251 __DUMMY__ 0.0017625414190534394 false 1.0 345 20 0.108322 19 0.105917 24 0.087521 21 0.084143 18 0.078245 12 0.06657 23 0.063747 22 0.06297 16 0.057141 11 0.048181 14 0.04773 15 0.038347 17 0.037092 10 0.035329 13 0.034378 9 0.012916 4 0.008429 5 0.007971 3 0.006748 0 0.004164 6 0.001194 2 0.001173 8 0.001008 7 7.64E-4 20 0.108322 19 0.105917 24 0.087521 21 0.084143 18 0.078245 12 0.06657 23 0.063747 22 0.06297 16 0.057141 11 0.048181 14 0.04773 15 0.038347 17 0.037092 10 0.035329 13 0.034378 9 0.012916 4 0.008429 5 0.007971 3 0.006748 0 0.004164 6 0.001194 2 0.001173 8 0.001008 7 7.64E-4 19 0.08919735237213874 20 0.08641405795501182 21 0.07750861179711854 18 0.07326423594570183 24 0.07182478325063192 22 0.06235621050004749 12 0.060324726469083344 23 0.056045270384592324 11 0.05008671253632349 16 0.0482480146017179 14 0.0457825537623854 10 0.04079407927071033 17 0.03908182361317448 13 0.03581343928756619 15 0.03449130990338465 9 0.023178677063159417 0 0.016103289569448676 4 0.014993722622910597 5 0.014509287868661827 3 0.012444149133668 6 0.00938355602243284 8 0.008673616740867146 7 0.008580140757969446 2 0.00844728412522176 1 0.008071409159883703 __DUMMY__ 0.004381685286188229 false 1.0 587 22 0.094619 21 0.078311 9 0.069878 11 0.057046 24 0.051328 18 0.049557 19 0.046078 4 0.044796 5 0.044002 3 0.042579 0 0.040469 17 0.040148 8 0.038605 7 0.038268 6 0.038213 1 0.038026 2 0.037481 10 0.036358 23 0.033341 14 0.029087 12 0.018464 20 0.016884 15 0.009417 16 0.007044 22 0.094619 21 0.078311 9 0.069878 11 0.057046 24 0.051328 18 0.049557 19 0.046078 4 0.044796 5 0.044002 3 0.042579 0 0.040469 17 0.040148 8 0.038605 7 0.038268 6 0.038213 1 0.038026 2 0.037481 10 0.036358 23 0.033341 14 0.029087 12 0.018464 20 0.016884 15 0.009417 16 0.007044 22 0.07762486071241374 21 0.07445014703338151 11 0.057320791472551196 9 0.05443962781648211 18 0.054186615091640446 19 0.04969726361991729 24 0.046190314594926514 10 0.04231476336832529 12 0.04029343671799359 14 0.039247086556784876 17 0.03920161026887461 0 0.038399391303828266 23 0.03787722071083333 4 0.0358819633521207 5 0.03524459527140019 3 0.03192764868864778 6 0.03149757167778322 8 0.030194962724129495 7 0.030010204194045993 1 0.029802407671568068 2 0.029356495444332224 20 0.029312579962771524 13 0.02717676309683294 15 0.017461024988894607 16 0.017157957541177438 __DUMMY__ 0.0037326961183429654 false 1.0 103 23 0.089139 24 0.066807 4 0.064103 5 0.06274 6 0.062637 7 0.062231 8 0.062098 1 0.061537 3 0.060952 2 0.060523 20 0.048446 21 0.038605 12 0.037104 19 0.035144 9 0.033766 22 0.029407 18 0.025335 16 0.025053 17 0.024862 13 0.018102 15 0.012771 0 0.011287 14 0.006518 11 8.33E-4 23 0.089139 24 0.066807 4 0.064103 5 0.06274 6 0.062637 7 0.062231 8 0.062098 1 0.061537 3 0.060952 2 0.060523 20 0.048446 21 0.038605 12 0.037104 19 0.035144 9 0.033766 22 0.029407 18 0.025335 16 0.025053 17 0.024862 13 0.018102 15 0.012771 0 0.011287 14 0.006518 11 8.33E-4 23 0.07099474077031195 24 0.056096403772078425 4 0.05062349813030476 5 0.04974772557362824 6 0.04902207294804026 21 0.04816745933452363 7 0.047892855213487864 8 0.047766636555436254 1 0.047462795183999304 3 0.047029719343675024 2 0.046761903984506775 20 0.04525340284222487 19 0.04338511058006413 12 0.0424075839303502 22 0.041850235537822286 18 0.0387685316699859 9 0.03689095084478968 17 0.03297329760883533 16 0.028683660211610586 13 0.026066736226717863 0 0.02289538684040253 11 0.021940749997200495 14 0.01871711045585428 10 0.018392647863268795 15 0.017242151181358235 __DUMMY__ 0.0029666333995222584 false 1.0 588 22 0.099391 21 0.094089 24 0.069765 9 0.061362 11 0.059672 19 0.050229 18 0.044848 14 0.043522 4 0.040788 23 0.040062 5 0.039852 3 0.038843 8 0.032563 7 0.032014 1 0.031796 6 0.031788 2 0.031529 17 0.028035 12 0.02798 20 0.027311 10 0.027105 0 0.023989 15 0.015289 13 0.008178 22 0.099391 21 0.094089 24 0.069765 9 0.061362 11 0.059672 19 0.050229 18 0.044848 14 0.043522 4 0.040788 23 0.040062 5 0.039852 3 0.038843 8 0.032563 7 0.032014 1 0.031796 6 0.031788 2 0.031529 17 0.028035 12 0.02798 20 0.027311 10 0.027105 0 0.023989 15 0.015289 13 0.008178 21 0.08383636110435282 22 0.08057252877777105 11 0.05930068894142408 24 0.05709298046117975 19 0.054381490285922804 18 0.052808813832329764 9 0.04902277687473488 12 0.04610111406291202 14 0.0456766293076562 23 0.04196810566620872 10 0.0373651155583747 20 0.03695101394542868 17 0.03350213488597877 4 0.032621657042730956 5 0.03191676214362894 13 0.030565732489436274 0 0.02948762063566634 3 0.028820158748384943 6 0.026862142084042622 8 0.02577060195843173 7 0.02551410563354126 1 0.02530171261733305 2 0.02498107225503871 15 0.019556053887548663 16 0.015201679617161304 __DUMMY__ 0.004820947182780961 false 1.0 346 0 0.086226 17 0.079497 9 0.065839 22 0.062936 11 0.058592 10 0.055773 18 0.055485 16 0.053049 6 0.045446 8 0.042915 7 0.042881 1 0.042821 2 0.041917 4 0.04179 5 0.041267 19 0.037667 3 0.037153 21 0.033111 12 0.024012 23 0.02165 13 0.011773 15 0.011525 14 0.003971 24 0.002706 0 0.086226 17 0.079497 9 0.065839 22 0.062936 11 0.058592 10 0.055773 18 0.055485 16 0.053049 6 0.045446 8 0.042915 7 0.042881 1 0.042821 2 0.041917 4 0.04179 5 0.041267 19 0.037667 3 0.037153 21 0.033111 12 0.024012 23 0.02165 13 0.011773 15 0.011525 14 0.003971 24 0.002706 0 0.07273310341698802 17 0.0696200078268918 9 0.06170548763379848 22 0.06076865735542366 18 0.05321074057123979 11 0.05217943514977003 10 0.05023007370121791 16 0.04691420574498516 6 0.04496638468026204 8 0.04304764436034972 7 0.0429961562370072 1 0.04289865392982197 4 0.04286852979817371 5 0.04234786721610731 2 0.04216859319719014 19 0.039430787912989096 3 0.03902949850733403 21 0.036764808655848843 23 0.028275976932102983 12 0.024764027696925622 15 0.015227324763565574 24 0.014024070385119993 13 0.012659964193925226 20 0.00966060473687151 14 0.009527497428824637 __DUMMY__ 0.0019798979672656027 false 1.0 104 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05836907349092607 4 0.058338347338509323 6 0.05828407254337258 7 0.0582272940762601 8 0.05810455740085789 5 0.05797370511765505 2 0.05749393529358129 9 0.05712077453234958 3 0.05688455211615119 22 0.048310187253624216 23 0.04668803448267557 17 0.04614176842424771 0 0.044517244993133226 18 0.03688112432521911 24 0.034533620659065345 21 0.032524658027882826 10 0.029361502893866895 19 0.027661643823436236 11 0.027408044836678445 16 0.027074684208778954 20 0.019151116711413407 12 0.018389680956619643 15 0.018232248955655467 14 0.011151820747299696 13 0.008654137697810734 __DUMMY__ 0.0025221690929292852 false 1.0 589 21 0.100859 19 0.093913 22 0.083837 20 0.079433 18 0.078071 24 0.074202 11 0.071672 12 0.066936 23 0.050997 10 0.044712 16 0.042901 14 0.042412 17 0.042166 13 0.031699 9 0.028863 0 0.021793 15 0.015961 4 0.009742 5 0.008824 3 0.00484 6 0.002783 7 0.001483 8 0.001025 1 8.78E-4 21 0.100859 19 0.093913 22 0.083837 20 0.079433 18 0.078071 24 0.074202 11 0.071672 12 0.066936 23 0.050997 10 0.044712 16 0.042901 14 0.042412 17 0.042166 13 0.031699 9 0.028863 0 0.021793 15 0.015961 4 0.009742 5 0.008824 3 0.00484 6 0.002783 7 0.001483 8 0.001025 1 8.78E-4 21 0.08802470969551515 19 0.08012021657586059 22 0.07631024723583746 18 0.07071032286842084 11 0.06582614244447023 20 0.06537279997259897 24 0.06278277788193398 12 0.06048244274556378 23 0.04756009923855675 10 0.04551435412619385 17 0.041883907148861255 14 0.041764387842268734 16 0.038535732557527416 9 0.033975546369925856 13 0.03383254508451036 0 0.027864074572493985 15 0.019125518439931693 4 0.01696332836607381 5 0.016261957920057468 3 0.012473370383399487 6 0.01152093993674778 7 0.010042207340541141 8 0.009787390674966099 1 0.009598089797466259 2 0.008981047380743214 __DUMMY__ 0.004685843399534112 false 1.0 105 9 0.073348 0 0.061984 22 0.059926 17 0.05815 6 0.057102 4 0.056672 7 0.056627 8 0.056465 1 0.056345 5 0.055731 2 0.055222 3 0.054109 18 0.047335 10 0.044972 11 0.034818 23 0.031885 21 0.030834 16 0.027483 19 0.026609 24 0.017686 15 0.015406 14 0.009369 12 0.007247 20 0.004675 9 0.073348 0 0.061984 22 0.059926 17 0.05815 6 0.057102 4 0.056672 7 0.056627 8 0.056465 1 0.056345 5 0.055731 2 0.055222 3 0.054109 18 0.047335 10 0.044972 11 0.034818 23 0.031885 21 0.030834 16 0.027483 19 0.026609 24 0.017686 15 0.015406 14 0.009369 12 0.007247 20 0.004675 9 0.0661271168038499 22 0.057903375647380025 0 0.05731218036532507 17 0.05532497020515389 6 0.053123506870634385 4 0.05299708785109429 7 0.05253991936284574 8 0.05247519835974696 1 0.05235502789465329 5 0.052285638213814704 2 0.05149860003121123 3 0.05062487310545999 18 0.04718893448254407 10 0.04320746541320451 11 0.03681755835025857 23 0.035221895936295926 21 0.03447082660742401 19 0.03129905310552023 16 0.029892168091842846 24 0.02314052259783197 15 0.017634441047285065 12 0.01405540454140735 14 0.012760263398502466 20 0.011978426455835332 13 0.005668424979239632 __DUMMY__ 0.0020971202816387194 false 1.0 347 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 21 0.0695929281571466 23 0.06811925305168683 12 0.06689802325691695 24 0.057979278378205996 22 0.05080752616925415 19 0.05072957965671138 13 0.04855522803918384 20 0.04714658798447518 11 0.041742596723041626 18 0.040838183757694525 4 0.038091705668015355 5 0.037307180579946836 6 0.03661078403211432 7 0.03381888935492627 8 0.03342552596013493 1 0.032990621268608286 2 0.03237107753676686 14 0.03213395918107526 3 0.03197491934738764 17 0.03137849768814649 16 0.029066930421286545 9 0.028087630893187297 0 0.02251647753358606 10 0.01906568692969138 15 0.014170185903748023 __DUMMY__ 0.0045807425270610715 false 1.0 348 20 0.101007 19 0.099968 21 0.090058 24 0.084523 18 0.077736 12 0.070679 22 0.066952 23 0.058868 11 0.055443 16 0.052105 14 0.046774 17 0.039187 13 0.038286 10 0.036718 15 0.031786 9 0.016339 0 0.009265 4 0.008243 5 0.007757 3 0.005423 6 0.001473 2 6.17E-4 8 5.4E-4 7 2.53E-4 20 0.101007 19 0.099968 21 0.090058 24 0.084523 18 0.077736 12 0.070679 22 0.066952 23 0.058868 11 0.055443 16 0.052105 14 0.046774 17 0.039187 13 0.038286 10 0.036718 15 0.031786 9 0.016339 0 0.009265 4 0.008243 5 0.007757 3 0.005423 6 0.001473 2 6.17E-4 8 5.4E-4 7 2.53E-4 19 0.08621736446505768 20 0.08239377385476739 21 0.08020552956842422 18 0.07301922976997827 24 0.06999609710922522 22 0.0644611964082711 12 0.062046289154555366 11 0.05360887606199997 23 0.05343129640178119 16 0.04595969085774841 14 0.04499604710573087 10 0.041494078553690264 17 0.04047791509311048 13 0.03738411915021859 15 0.03112266521885333 9 0.025153987194959197 0 0.01899852618516452 4 0.014998038603139727 5 0.014494384505009233 3 0.011865941645007165 6 0.009656357857101625 8 0.008569100263925883 7 0.008453786064552146 2 0.008286817794217947 1 0.008179908204824789 __DUMMY__ 0.004528982908685388 false 1.0 106 9 0.05733 4 0.055742 5 0.054977 22 0.054594 6 0.052823 3 0.052383 8 0.05196 1 0.051877 7 0.051873 21 0.051367 2 0.051 23 0.048157 11 0.039194 10 0.038596 18 0.038404 24 0.03807 12 0.033934 0 0.033319 14 0.03241 13 0.030203 17 0.025352 19 0.021667 20 0.01851 15 0.016259 9 0.05733 4 0.055742 5 0.054977 22 0.054594 6 0.052823 3 0.052383 8 0.05196 1 0.051877 7 0.051873 21 0.051367 2 0.051 23 0.048157 11 0.039194 10 0.038596 18 0.038404 24 0.03807 12 0.033934 0 0.033319 14 0.03241 13 0.030203 17 0.025352 19 0.021667 20 0.01851 15 0.016259 22 0.05730903293168855 21 0.05472259636979456 9 0.053505015548451405 4 0.04732011946657226 5 0.04671556730369441 18 0.04579291791111356 23 0.04504792829576005 6 0.045030142808188796 11 0.044469639860947714 8 0.04358367784811357 7 0.04356512394699064 3 0.04353095391720812 1 0.043507531095777215 2 0.04283641968658024 10 0.04200903177375346 12 0.03896333864097877 0 0.03811045098575259 24 0.036886410351279424 17 0.033755390970410415 19 0.032800259656458455 14 0.0322200285122614 13 0.03196969834399322 20 0.024270716181740603 15 0.01683424913320184 16 0.012374944104362401 __DUMMY__ 0.002868814354926474 false 1.0 107 10 0.101878 18 0.089238 11 0.067493 14 0.066849 0 0.065701 22 0.064737 9 0.063444 17 0.050509 19 0.05026 13 0.04942 21 0.049247 15 0.0476 12 0.030894 16 0.025352 20 0.025193 4 0.019645 5 0.019294 6 0.01859 7 0.017107 8 0.016889 1 0.016871 2 0.016181 3 0.016137 23 0.011471 10 0.101878 18 0.089238 11 0.067493 14 0.066849 0 0.065701 22 0.064737 9 0.063444 17 0.050509 19 0.05026 13 0.04942 21 0.049247 15 0.0476 12 0.030894 16 0.025352 20 0.025193 4 0.019645 5 0.019294 6 0.01859 7 0.017107 8 0.016889 1 0.016871 2 0.016181 3 0.016137 23 0.011471 10 0.08499927464853445 18 0.08158903129373514 22 0.06436940065620499 11 0.06231573456286592 14 0.05772453808430275 9 0.05679518137525801 0 0.056533990922224435 21 0.05396560496155769 19 0.05372565171565636 17 0.04875222216996453 13 0.04409712829410838 15 0.04067421374647605 12 0.036022993631463975 20 0.03211852786728929 16 0.027787545696592506 4 0.022460530700481342 5 0.022065282614104374 23 0.021776776226486785 6 0.020780080955485895 7 0.019124969322821796 8 0.01902775851915618 1 0.018926963160796572 3 0.018717645107435035 2 0.018402447393598056 24 0.014051154846732387 __DUMMY__ 0.0031953515266669444 false 1.0 349 0 0.085822 17 0.078945 9 0.065207 22 0.062949 11 0.058517 10 0.055859 18 0.05422 16 0.052935 6 0.045694 8 0.042993 7 0.042926 1 0.042778 2 0.042534 4 0.041975 5 0.041833 3 0.037781 19 0.037426 21 0.032738 12 0.024455 23 0.021291 15 0.011921 13 0.01172 14 0.004258 24 0.003225 0 0.085822 17 0.078945 9 0.065207 22 0.062949 11 0.058517 10 0.055859 18 0.05422 16 0.052935 6 0.045694 8 0.042993 7 0.042926 1 0.042778 2 0.042534 4 0.041975 5 0.041833 3 0.037781 19 0.037426 21 0.032738 12 0.024455 23 0.021291 15 0.011921 13 0.01172 14 0.004258 24 0.003225 0 0.07254663118688372 17 0.0693652239877394 9 0.061413778600566016 22 0.060774657699461665 18 0.05262686093984888 11 0.05214481778031998 10 0.05026976828485397 16 0.04686158734342108 6 0.04508085278191021 8 0.04308364642457777 7 0.043016926658677214 4 0.04295391930948384 1 0.04287880663800393 5 0.04260911296422371 2 0.042453378756532587 19 0.039319550765822914 3 0.03931936128086248 21 0.036592644938450575 23 0.02811027512366872 12 0.024968500959143942 15 0.015410104474261856 24 0.014263622581714366 13 0.012635501252847185 20 0.009660604736871508 14 0.009659966562586842 __DUMMY__ 0.0019798979672656022 false 1.0 108 9 0.064605 3 0.055523 22 0.054979 4 0.054046 5 0.053274 8 0.053174 7 0.053021 1 0.053021 2 0.052084 6 0.050806 18 0.048749 10 0.047729 0 0.04078 23 0.038729 17 0.038713 24 0.036565 19 0.035276 15 0.034294 21 0.03201 11 0.03067 14 0.02726 20 0.026479 16 0.018058 13 1.56E-4 9 0.064605 3 0.055523 22 0.054979 4 0.054046 5 0.053274 8 0.053174 7 0.053021 1 0.053021 2 0.052084 6 0.050806 18 0.048749 10 0.047729 0 0.04078 23 0.038729 17 0.038713 24 0.036565 19 0.035276 15 0.034294 21 0.03201 11 0.03067 14 0.02726 20 0.026479 16 0.018058 13 1.56E-4 9 0.05967819947455289 22 0.05886340737337982 18 0.05335915307367778 10 0.04838173724018908 4 0.04657239668248596 3 0.046056041412233094 5 0.045911749165050725 8 0.04468307921604805 7 0.0445901991990235 1 0.04448246268185563 6 0.04383803760532322 2 0.04377957276760177 0 0.04296701685455623 17 0.042879376972342176 21 0.04185516676449178 19 0.041731406134090855 23 0.03852628493486819 11 0.038306158786009875 24 0.03588478071731228 15 0.029393951681493218 20 0.02909159734052302 14 0.028617226735751365 16 0.023544997332658402 12 0.014265240833962908 13 0.009628778429901454 __DUMMY__ 0.0031119805906165937 false 1.0 109 9 0.073947 22 0.063225 0 0.059086 4 0.056092 8 0.055599 5 0.055581 6 0.055557 7 0.055534 1 0.055086 3 0.054581 2 0.054574 17 0.05317 18 0.048794 10 0.047156 11 0.036847 21 0.034985 23 0.031426 19 0.02785 16 0.021298 24 0.020574 15 0.013879 14 0.011579 12 0.006999 20 0.006582 9 0.073947 22 0.063225 0 0.059086 4 0.056092 8 0.055599 5 0.055581 6 0.055557 7 0.055534 1 0.055086 3 0.054581 2 0.054574 17 0.05317 18 0.048794 10 0.047156 11 0.036847 21 0.034985 23 0.031426 19 0.02785 16 0.021298 24 0.020574 15 0.013879 14 0.011579 12 0.006999 20 0.006582 9 0.0666940527799493 22 0.06043599694957648 0 0.0559019616810879 17 0.05269429175530263 4 0.0521819068551607 6 0.05169060013183955 5 0.051660224156714084 8 0.051368309301461634 7 0.05132612193728396 1 0.05105341837286191 2 0.050483637396572974 3 0.050281211771181895 18 0.04865495884850417 10 0.04509611607877402 11 0.03870486078649374 21 0.037477475937664054 23 0.03458114152376176 19 0.03248002967356954 16 0.0263528968035308 24 0.024590536378102986 15 0.016716652380666643 14 0.014512430017810971 12 0.01410634859423924 20 0.013050721462662162 13 0.0058058118740212826 __DUMMY__ 0.002098286551205494 false 1.0 590 22 0.085691 9 0.070676 21 0.065594 11 0.054361 18 0.051316 0 0.048522 17 0.046844 4 0.046179 5 0.04506 3 0.043856 19 0.042892 8 0.041814 24 0.041683 10 0.041593 6 0.041548 7 0.041532 1 0.041418 2 0.040412 23 0.031322 14 0.023346 12 0.016087 20 0.014647 16 0.013691 15 0.009918 22 0.085691 9 0.070676 21 0.065594 11 0.054361 18 0.051316 0 0.048522 17 0.046844 4 0.046179 5 0.04506 3 0.043856 19 0.042892 8 0.041814 24 0.041683 10 0.041593 6 0.041548 7 0.041532 1 0.041418 2 0.040412 23 0.031322 14 0.023346 12 0.016087 20 0.014647 16 0.013691 15 0.009918 22 0.07412023135089063 21 0.06668202987350229 9 0.05688272098511595 11 0.055228151096754066 18 0.054430829670652554 19 0.047186695224850764 10 0.044622473112651224 0 0.04345976055911676 17 0.0433220104362633 24 0.04092140862369147 4 0.03811440048912992 5 0.03732099435446069 23 0.03620564485567967 12 0.035483226328872165 6 0.03464243623704939 3 0.03443702008768506 14 0.03422033568165095 8 0.03351768862253301 7 0.03335166313349874 1 0.033201528938108765 2 0.032532311170785394 20 0.026355666327530176 13 0.023207176927383562 16 0.02014341046916571 15 0.017058376333917345 __DUMMY__ 0.0033518091090603487 false 1.0 591 20 0.100357 19 0.099437 21 0.089876 24 0.082357 18 0.080226 12 0.069306 22 0.066408 23 0.060129 11 0.053916 16 0.051692 14 0.045993 17 0.039556 10 0.038686 13 0.038168 15 0.030681 9 0.017229 0 0.010768 4 0.008225 5 0.007256 3 0.004662 6 0.001915 7 0.001384 8 9.73E-4 1 8.0E-4 20 0.100357 19 0.099437 21 0.089876 24 0.082357 18 0.080226 12 0.069306 22 0.066408 23 0.060129 11 0.053916 16 0.051692 14 0.045993 17 0.039556 10 0.038686 13 0.038168 15 0.030681 9 0.017229 0 0.010768 4 0.008225 5 0.007256 3 0.004662 6 0.001915 7 0.001384 8 9.73E-4 1 8.0E-4 19 0.0850720802467163 20 0.08119705867481461 21 0.08050227665698528 18 0.07327300115359446 24 0.06912501191554013 22 0.06448208490590172 12 0.06143024627805708 23 0.054000567626729716 11 0.05313073924144769 14 0.04517044367594032 16 0.044829863850350336 10 0.041971371883117295 17 0.03999889334218276 13 0.03764551520530811 15 0.030634997696168575 9 0.025771844363547562 0 0.01939429619697505 4 0.015374969059312984 5 0.014655497602041087 3 0.01189823471095882 6 0.010197541201760457 7 0.009315613390706905 8 0.009105826685151905 1 0.008890880980093975 2 0.008342969817284416 __DUMMY__ 0.0045881736393126185 false 1.0 592 21 0.102573 19 0.094692 22 0.083743 20 0.078694 18 0.077243 24 0.074648 11 0.071854 12 0.067202 23 0.05155 10 0.043143 16 0.042964 17 0.042309 14 0.041863 13 0.032011 9 0.029353 0 0.021684 15 0.015522 4 0.009687 5 0.008484 3 0.004873 6 0.0025 8 0.001232 7 0.00123 1 9.43E-4 21 0.102573 19 0.094692 22 0.083743 20 0.078694 18 0.077243 24 0.074648 11 0.071854 12 0.067202 23 0.05155 10 0.043143 16 0.042964 17 0.042309 14 0.041863 13 0.032011 9 0.029353 0 0.021684 15 0.015522 4 0.009687 5 0.008484 3 0.004873 6 0.0025 8 0.001232 7 0.00123 1 9.43E-4 21 0.08881521948703004 19 0.08047630154486594 22 0.07626820992448079 18 0.07032642531542337 11 0.06591196092300974 20 0.0650258507600353 24 0.06298527338824701 12 0.06060394731614811 23 0.04781339962573336 10 0.04479124384099617 17 0.04195035813835321 14 0.04151024914883464 16 0.03856272494376058 9 0.034204496623793 13 0.03397618744922721 0 0.027816792759188004 15 0.01892104475326057 4 0.01693966521064106 5 0.01610680272166273 3 0.012490167707879049 6 0.011392260071646823 7 0.009927207343059614 8 0.00988471919510715 1 0.009629879136053817 2 0.008982869548139656 __DUMMY__ 0.004686743123422786 false 1.0 350 0 0.081993 17 0.07556 9 0.069512 22 0.066632 18 0.056318 11 0.055401 10 0.055358 6 0.047064 16 0.045218 1 0.045193 8 0.04517 7 0.04504 4 0.04459 5 0.044537 2 0.044517 3 0.041072 19 0.036947 21 0.034826 23 0.021874 12 0.018307 15 0.009399 24 0.006061 13 0.005622 14 0.003789 0 0.081993 17 0.07556 9 0.069512 22 0.066632 18 0.056318 11 0.055401 10 0.055358 6 0.047064 16 0.045218 1 0.045193 8 0.04517 7 0.04504 4 0.04459 5 0.044537 2 0.044517 3 0.041072 19 0.036947 21 0.034826 23 0.021874 12 0.018307 15 0.009399 24 0.006061 13 0.005622 14 0.003789 0 0.06989522149486067 17 0.06664014162253763 9 0.06400559343066381 22 0.06301517074794756 18 0.053520673481570004 11 0.050404264189692426 10 0.050088206928142115 6 0.04595711829006877 4 0.04463585553627622 8 0.044436654479194995 7 0.04434198359903126 1 0.04433732495008087 5 0.044328315733004255 2 0.04371328752649143 16 0.041566101626824566 3 0.04142697173584274 19 0.03873261735841786 21 0.03806710212325728 23 0.028499103934584796 12 0.021426604885789968 24 0.016131117923660867 15 0.01399838199866417 14 0.009899258291484896 20 0.009590561519513447 13 0.009308738656785966 __DUMMY__ 0.0020336279356112912 false 1.0 351 22 0.066048 9 0.06372 4 0.0542 5 0.052798 18 0.052312 6 0.052247 8 0.051035 17 0.051002 7 0.050311 1 0.049785 3 0.049778 2 0.04952 0 0.047661 23 0.044121 21 0.043339 11 0.038095 19 0.036996 10 0.036144 24 0.035427 16 0.019607 20 0.018149 12 0.016023 15 0.012125 14 0.009557 22 0.066048 9 0.06372 4 0.0542 5 0.052798 18 0.052312 6 0.052247 8 0.051035 17 0.051002 7 0.050311 1 0.049785 3 0.049778 2 0.04952 0 0.047661 23 0.044121 21 0.043339 11 0.038095 19 0.036996 10 0.036144 24 0.035427 16 0.019607 20 0.018149 12 0.016023 15 0.012125 14 0.009557 22 0.05934087581848061 9 0.05691612944657755 18 0.05003223121576528 4 0.04976110267205487 5 0.04887337211025433 6 0.048024591703381754 8 0.04721468679914458 17 0.04704380773065267 7 0.04688167181815884 3 0.046659607730235336 1 0.04656480203511722 2 0.04619420338349419 23 0.04480318559255543 21 0.043726171839553574 0 0.04322053903445334 19 0.039176208992805016 24 0.037550649019179566 10 0.0371455701447103 11 0.03684723670965275 20 0.025562879492702417 16 0.024722490369737986 12 0.02193220884866466 15 0.02062296669005146 14 0.01889588220767619 13 0.01004515338279926 __DUMMY__ 0.002241775212140844 false 1.0 593 22 0.079465 0 0.076361 9 0.072211 17 0.070566 11 0.062602 18 0.055181 10 0.05135 21 0.050381 4 0.043298 6 0.043288 5 0.042082 8 0.041419 7 0.041065 1 0.041006 19 0.040873 2 0.040034 3 0.038511 16 0.036163 23 0.022689 12 0.019004 24 0.017201 14 0.007808 15 0.005226 13 0.002218 22 0.079465 0 0.076361 9 0.072211 17 0.070566 11 0.062602 18 0.055181 10 0.05135 21 0.050381 4 0.043298 6 0.043288 5 0.042082 8 0.041419 7 0.041065 1 0.041006 19 0.040873 2 0.040034 3 0.038511 16 0.036163 23 0.022689 12 0.019004 24 0.017201 14 0.007808 15 0.005226 13 0.002218 22 0.0700670310644324 0 0.06225144571072544 9 0.0619337275155941 17 0.05947768953897361 11 0.05609063738554893 18 0.05365079562545769 21 0.051856671341364596 10 0.04795288321439858 19 0.042414261396974004 4 0.041349243273591636 6 0.040842328632725564 5 0.040514165094140256 8 0.039048444344458935 7 0.03885202468260048 1 0.038749746313565 2 0.03803779456756504 3 0.03708206379401441 16 0.033713393913738274 23 0.030634555201401088 12 0.028605318269965964 24 0.025204338147864602 14 0.018170363862847125 13 0.015034986085003093 20 0.01343122634834945 15 0.012612996632434967 __DUMMY__ 0.0024218680422646932 false 1.0 110 22 0.065417 9 0.05498 3 0.052951 24 0.052908 21 0.052817 4 0.052092 5 0.051786 23 0.050367 8 0.048906 7 0.048875 1 0.048812 2 0.048446 6 0.047169 11 0.042504 18 0.041574 19 0.040219 10 0.032916 17 0.032079 20 0.030488 0 0.029982 14 0.023268 15 0.022491 16 0.015394 12 0.01356 22 0.065417 9 0.05498 3 0.052951 24 0.052908 21 0.052817 4 0.052092 5 0.051786 23 0.050367 8 0.048906 7 0.048875 1 0.048812 2 0.048446 6 0.047169 11 0.042504 18 0.041574 19 0.040219 10 0.032916 17 0.032079 20 0.030488 0 0.029982 14 0.023268 15 0.022491 16 0.015394 12 0.01356 22 0.06564668039102578 21 0.06087734866220006 18 0.05207810297106202 19 0.05154777468478711 24 0.04964631033256798 11 0.04923071183993812 9 0.04841599140153028 23 0.04667263601683365 10 0.039786145986129895 4 0.03954214584941172 5 0.03912053098778067 20 0.03878635889573656 17 0.03852619589902041 3 0.03790881699130705 6 0.03556065332682022 8 0.035539255120174126 7 0.035536709180790896 1 0.035374290432821164 2 0.03498503399438276 0 0.03404628449101582 12 0.031910447862966554 14 0.030272156774969125 16 0.025515765747693035 15 0.022288999117760715 13 0.016881331148196007 __DUMMY__ 0.004303321893078349 false 1.0 352 15 0.082148 20 0.077091 23 0.076602 24 0.071273 14 0.0541 19 0.043811 18 0.042127 13 0.041917 16 0.041678 4 0.041343 5 0.040867 6 0.0407 7 0.040515 8 0.040329 3 0.040129 2 0.039824 1 0.039722 12 0.038955 21 0.028121 17 0.026981 22 0.018112 10 0.014371 9 0.010451 11 0.008832 15 0.082148 20 0.077091 23 0.076602 24 0.071273 14 0.0541 19 0.043811 18 0.042127 13 0.041917 16 0.041678 4 0.041343 5 0.040867 6 0.0407 7 0.040515 8 0.040329 3 0.040129 2 0.039824 1 0.039722 12 0.038955 21 0.028121 17 0.026981 22 0.018112 10 0.014371 9 0.010451 11 0.008832 20 0.06754816959560006 15 0.06643188298704153 23 0.06010427298490873 24 0.05814150861757074 14 0.05536276759466012 18 0.055153659026928495 19 0.05308485167371425 13 0.043774368786061425 12 0.04330939773741248 21 0.04269940329501555 16 0.0401547630158402 22 0.03531416262097641 17 0.0345073117126758 10 0.03331351541294051 4 0.03227191545306199 5 0.03182913248603188 6 0.03068803676341462 3 0.030020538275446165 7 0.02988302876039491 8 0.029834921855067618 1 0.029418140514349732 2 0.029332757134247715 11 0.026457414294410068 9 0.022938198140397312 0 0.015161879726489719 __DUMMY__ 0.0032640015353420774 false 1.0 594 22 0.098473 21 0.095526 11 0.085918 19 0.06165 18 0.058296 9 0.055477 24 0.05002 10 0.049392 12 0.046837 0 0.044763 17 0.043072 23 0.034473 14 0.032868 4 0.027572 5 0.027197 20 0.026455 3 0.022476 16 0.021993 6 0.021823 7 0.020089 8 0.019567 1 0.019291 2 0.018596 13 0.018176 22 0.098473 21 0.095526 11 0.085918 19 0.06165 18 0.058296 9 0.055477 24 0.05002 10 0.049392 12 0.046837 0 0.044763 17 0.043072 23 0.034473 14 0.032868 4 0.027572 5 0.027197 20 0.026455 3 0.022476 16 0.021993 6 0.021823 7 0.020089 8 0.019567 1 0.019291 2 0.018596 13 0.018176 21 0.08575717787064402 22 0.08493751885844825 11 0.07408040571550913 19 0.062024726149014234 18 0.05940460434673211 12 0.05005930547433609 24 0.0491462447855855 9 0.04904023495859465 10 0.047413181766532524 17 0.04299289691213953 0 0.04130983892872712 23 0.038420208325143805 20 0.03519736360990151 14 0.03501654765314397 4 0.02711687726861032 16 0.02693070283331361 5 0.026657780058031023 13 0.02614650215012016 6 0.02241667890992698 3 0.022323337998587458 7 0.020591522749852233 8 0.020308128522725306 1 0.020063011357250693 2 0.01949971330091576 15 0.00820516477568693 __DUMMY__ 0.004940324720527152 false 1.0 353 18 0.09858 20 0.092894 19 0.091403 15 0.078864 14 0.070006 10 0.066027 16 0.058933 21 0.056708 22 0.054561 17 0.053392 24 0.0513 23 0.042384 12 0.039968 11 0.03766 13 0.037505 9 0.027785 0 0.024826 4 0.005324 5 0.00398 3 0.002504 6 0.001832 7 0.001828 8 0.001188 1 5.48E-4 18 0.09858 20 0.092894 19 0.091403 15 0.078864 14 0.070006 10 0.066027 16 0.058933 21 0.056708 22 0.054561 17 0.053392 24 0.0513 23 0.042384 12 0.039968 11 0.03766 13 0.037505 9 0.027785 0 0.024826 4 0.005324 5 0.00398 3 0.002504 6 0.001832 7 0.001828 8 0.001188 1 5.48E-4 18 0.08291806098890843 20 0.07501781450942145 19 0.07499133211635516 15 0.07003558159228929 14 0.06505325353951796 10 0.05970686278419043 21 0.05350521246691767 22 0.052625308151550663 24 0.04803118408096623 16 0.047738057572749994 17 0.04688453490922505 23 0.0425658679654452 11 0.038588251896389675 13 0.038561128318073595 12 0.038294147980340684 9 0.03276961358281689 0 0.026582498335990246 4 0.01570633297155832 5 0.014861344514402202 3 0.013335192846621642 6 0.012559688973089957 7 0.012305129344506519 8 0.012048325707734505 1 0.01158415858432779 2 0.01118604009467811 __DUMMY__ 0.0025450761719322734 false 1.0 111 9 0.06057 3 0.059598 4 0.059582 5 0.059252 8 0.058731 7 0.058641 2 0.058272 1 0.058256 6 0.058101 22 0.053545 23 0.046365 17 0.043401 0 0.042101 24 0.04134 21 0.036502 18 0.035212 19 0.031857 10 0.027123 11 0.026018 16 0.025226 20 0.02244 15 0.015361 12 0.013502 14 0.009005 9 0.06057 3 0.059598 4 0.059582 5 0.059252 8 0.058731 7 0.058641 2 0.058272 1 0.058256 6 0.058101 22 0.053545 23 0.046365 17 0.043401 0 0.042101 24 0.04134 21 0.036502 18 0.035212 19 0.031857 10 0.027123 11 0.026018 16 0.025226 20 0.02244 15 0.015361 12 0.013502 14 0.009005 9 0.057799426753920975 22 0.05695454056701046 4 0.05112477415067151 5 0.05068096783103226 6 0.049822546655319586 3 0.04972729576453251 8 0.04965354847545592 7 0.049588795857972615 1 0.049326233220771516 2 0.04905550743515074 17 0.04705281063862887 0 0.045551722122363004 18 0.04369332792152744 23 0.04260785497438431 21 0.042065743387199414 19 0.03766820729590402 24 0.03726323878138346 11 0.03538209439146757 10 0.03532263999392071 16 0.028773877082970387 20 0.02426494892581825 12 0.02089377944733826 15 0.018303529188081678 14 0.016068122173675894 13 0.008621234316415883 __DUMMY__ 0.002733232647083035 false 1.0 595 22 0.09904 21 0.096216 11 0.084177 19 0.062705 18 0.059566 9 0.05588 24 0.049616 10 0.048564 12 0.045458 0 0.042908 17 0.042413 23 0.036961 14 0.032375 4 0.027986 20 0.02784 5 0.027394 3 0.022652 6 0.021998 16 0.020976 7 0.020587 8 0.019871 1 0.019577 2 0.018559 13 0.016682 22 0.09904 21 0.096216 11 0.084177 19 0.062705 18 0.059566 9 0.05588 24 0.049616 10 0.048564 12 0.045458 0 0.042908 17 0.042413 23 0.036961 14 0.032375 4 0.027986 20 0.02784 5 0.027394 3 0.022652 6 0.021998 16 0.020976 7 0.020587 8 0.019871 1 0.019577 2 0.018559 13 0.016682 21 0.08613763904900448 22 0.08515101818218204 11 0.0730245129298928 19 0.06248793171923355 18 0.05987027852495926 12 0.04937273079891947 24 0.0492630720985268 9 0.0491777923182936 10 0.04678891299844061 17 0.04244667255876168 0 0.040119239512596626 23 0.03977761178374791 20 0.03601133234371697 14 0.03482216721041942 4 0.02742669457672335 5 0.02686527267945986 16 0.02625664826030821 13 0.025380261037402055 6 0.022577840426728148 3 0.022545545320423015 7 0.02092222095233341 8 0.020549553254270457 1 0.020294941917340877 2 0.01958234123080774 15 0.008224750560677849 __DUMMY__ 0.004923017754829564 false 1.0 596 21 0.107004 22 0.092167 11 0.087288 19 0.082834 12 0.072091 18 0.071783 10 0.054173 24 0.053169 20 0.050767 17 0.046219 0 0.042219 9 0.042016 13 0.039992 14 0.03999 23 0.037476 16 0.035936 4 0.011387 5 0.011075 6 0.006141 3 0.005021 7 0.003598 8 0.002882 1 0.002783 2 0.001989 21 0.107004 22 0.092167 11 0.087288 19 0.082834 12 0.072091 18 0.071783 10 0.054173 24 0.053169 20 0.050767 17 0.046219 0 0.042219 9 0.042016 13 0.039992 14 0.03999 23 0.037476 16 0.035936 4 0.011387 5 0.011075 6 0.006141 3 0.005021 7 0.003598 8 0.002882 1 0.002783 2 0.001989 21 0.09376586158951336 22 0.08148245702423894 11 0.07605385877745288 19 0.07378842537968422 18 0.0667479972821387 12 0.06658507091350797 24 0.05138212710805468 10 0.05023836521683151 20 0.04906034447908598 17 0.043444940087080254 13 0.040940964954070354 14 0.04066191922232776 23 0.040468355774279305 9 0.04046263799653778 0 0.03898009142369738 16 0.033791445650844 4 0.017385844746415687 5 0.016973992509987965 6 0.012888439744853434 3 0.011654141506008448 7 0.01043258447518536 8 0.010039542789700099 1 0.009897854710900524 2 0.009312428710156077 15 0.008020468926766288 __DUMMY__ 0.005539839000681084 false 1.0 112 22 0.089692 11 0.072243 9 0.069603 21 0.068839 0 0.062024 18 0.058238 17 0.056506 10 0.055568 19 0.049003 4 0.038039 5 0.037512 6 0.035024 3 0.034246 8 0.033919 7 0.033612 1 0.033179 2 0.032675 24 0.028826 12 0.027263 16 0.025144 23 0.024701 14 0.017806 20 0.010639 13 0.005699 22 0.089692 11 0.072243 9 0.069603 21 0.068839 0 0.062024 18 0.058238 17 0.056506 10 0.055568 19 0.049003 4 0.038039 5 0.037512 6 0.035024 3 0.034246 8 0.033919 7 0.033612 1 0.033179 2 0.032675 24 0.028826 12 0.027263 16 0.025144 23 0.024701 14 0.017806 20 0.010639 13 0.005699 22 0.07905659630319911 21 0.06492711084648026 11 0.06479359037972811 9 0.06055733842147106 18 0.05812237610427744 0 0.05566749387533742 17 0.053741155055803534 10 0.051709384447802396 19 0.05108560567523327 4 0.03604156862957198 5 0.03550249700737988 6 0.033538218239252536 12 0.033165382251628704 24 0.03257332237824409 3 0.032218836164626175 8 0.032159735309982965 7 0.03201825043782606 1 0.03168600402282343 2 0.03117950212751777 23 0.03088997076745046 16 0.029824835944159852 14 0.022608482428750652 20 0.020832824975940894 13 0.014462887013743696 15 0.00826087719378324 __DUMMY__ 0.0033761539979849688 false 1.0 355 17 0.066727 16 0.063651 19 0.055369 22 0.053264 0 0.051406 9 0.046454 18 0.045481 23 0.043183 8 0.042719 7 0.042668 6 0.042408 1 0.042281 24 0.04211 2 0.042001 4 0.041898 3 0.041364 5 0.040992 20 0.039485 21 0.038104 11 0.034791 15 0.030503 10 0.026068 12 0.020984 14 0.006088 17 0.066727 16 0.063651 19 0.055369 22 0.053264 0 0.051406 9 0.046454 18 0.045481 23 0.043183 8 0.042719 7 0.042668 6 0.042408 1 0.042281 24 0.04211 2 0.042001 4 0.041898 3 0.041364 5 0.040992 20 0.039485 21 0.038104 11 0.034791 15 0.030503 10 0.026068 12 0.020984 14 0.006088 17 0.06025604585888551 16 0.054466513112487264 19 0.0530844998581354 22 0.05272701253335902 18 0.05063548945272497 0 0.04879430865355642 9 0.0452247286026701 23 0.04202804929915242 21 0.04182839188785287 11 0.03900031658580057 20 0.0388153269187636 24 0.03865421929440264 6 0.03842058711257989 4 0.038222281574113594 8 0.037799103131074964 7 0.03772247544032241 5 0.0375586876293141 1 0.0374468324684706 2 0.03712064458719497 3 0.03628231010664071 10 0.03490741716485984 15 0.03282972055239337 12 0.029478334907917486 14 0.019062085815189346 13 0.014765761917608847 __DUMMY__ 0.0028688555345289892 false 1.0 113 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.059980402702244445 22 0.058732394157161846 4 0.05057459208260079 5 0.050174019598738566 17 0.049495051377386697 6 0.049482314942306184 8 0.04919952603757945 7 0.049121903443709834 0 0.04909414645667744 3 0.04904774780191142 1 0.048869695951199214 2 0.04860304722375686 18 0.045447978351220684 21 0.041647495786459154 23 0.039850551354244985 10 0.03821367598560105 11 0.037755412067097295 19 0.03760344755449974 24 0.03408721218501587 16 0.029263161392861368 20 0.021609878539449574 12 0.019799551321960953 15 0.017072266816281212 14 0.015109224899593994 13 0.0075799962314963085 __DUMMY__ 0.0025853057389451386 false 1.0 597 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09241236401449536 22 0.08299726218732145 11 0.07697608875271368 19 0.07112516035523178 18 0.06520084249626126 12 0.063174270640985 10 0.05031556399661815 24 0.049879801207353615 20 0.04498864570822221 17 0.04395773326857725 9 0.04283257808872674 0 0.04065570582716964 14 0.039389041620642065 23 0.039020764999058426 13 0.0378947202733315 16 0.03256290328490642 4 0.019208018224359337 5 0.01877806179071802 6 0.014720451721916595 3 0.013636085868295577 7 0.012370568788165786 8 0.012002284310234377 1 0.011845217691606767 2 0.011259620134107032 15 0.00749087674752686 __DUMMY__ 0.005305368001455246 false 1.0 356 20 0.115239 19 0.103051 24 0.084213 21 0.080849 18 0.080364 12 0.077595 23 0.066647 16 0.059625 13 0.051891 14 0.049516 22 0.046044 15 0.040611 11 0.038674 17 0.037798 10 0.036602 9 0.007484 4 0.006199 5 0.005457 0 0.005254 3 0.003538 6 0.001227 7 7.57E-4 1 7.41E-4 8 6.24E-4 20 0.115239 19 0.103051 24 0.084213 21 0.080849 18 0.080364 12 0.077595 23 0.066647 16 0.059625 13 0.051891 14 0.049516 22 0.046044 15 0.040611 11 0.038674 17 0.037798 10 0.036602 9 0.007484 4 0.006199 5 0.005457 0 0.005254 3 0.003538 6 0.001227 7 7.57E-4 1 7.41E-4 8 6.24E-4 20 0.0916048896235436 19 0.08875799595165602 21 0.07576549236331587 18 0.07466054375752856 24 0.07078451563535848 12 0.06695602656973768 23 0.05797104589927084 22 0.052937970819841126 16 0.05038327652562185 14 0.047452693849321444 13 0.04578049877746824 11 0.044529205713229096 10 0.04112834285764784 17 0.03927813294626259 15 0.0365679320487452 9 0.019309332677860152 0 0.015798235391315214 4 0.01320108533256337 5 0.012599339922748087 3 0.010174436837331345 6 0.008742187215703556 7 0.007869128954107884 8 0.007793009919019417 1 0.007716806750224912 2 0.007224365821195643 __DUMMY__ 0.005013507839381842 false 1.0 114 22 0.085009 9 0.074193 0 0.066975 11 0.065622 17 0.059544 21 0.059165 18 0.058537 10 0.055792 19 0.044614 4 0.042726 5 0.041784 6 0.040435 7 0.039345 8 0.039295 3 0.039018 1 0.039014 2 0.038018 16 0.025397 24 0.024172 23 0.023245 12 0.01871 14 0.012397 20 0.006906 15 8.8E-5 22 0.085009 9 0.074193 0 0.066975 11 0.065622 17 0.059544 21 0.059165 18 0.058537 10 0.055792 19 0.044614 4 0.042726 5 0.041784 6 0.040435 7 0.039345 8 0.039295 3 0.039018 1 0.039014 2 0.038018 16 0.025397 24 0.024172 23 0.023245 12 0.01871 14 0.012397 20 0.006906 15 8.8E-5 22 0.07450349094163085 9 0.06507868070069256 0 0.06006590873979857 11 0.05800414113606056 18 0.056596356488251585 17 0.05659570399162763 21 0.05477504000150006 10 0.05135682986071055 19 0.04540806253992584 4 0.041411102215960345 5 0.040680148500880274 6 0.03974085792546237 7 0.03856351462563536 8 0.03856058402954033 1 0.03830545336754325 3 0.03799133736000894 2 0.037552963815803385 16 0.030038664830847096 23 0.029602049297328795 24 0.02757152622786031 12 0.024387196473521142 14 0.01716965443070373 20 0.015831963234882302 15 0.00902485611332948 13 0.00853073048255246 __DUMMY__ 0.0026531826679419977 false 1.0 598 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09241236401449536 22 0.08299726218732145 11 0.07697608875271368 19 0.07112516035523178 18 0.06520084249626126 12 0.063174270640985 10 0.05031556399661815 24 0.049879801207353615 20 0.04498864570822221 17 0.04395773326857725 9 0.04283257808872674 0 0.04065570582716964 14 0.039389041620642065 23 0.039020764999058426 13 0.0378947202733315 16 0.03256290328490642 4 0.019208018224359337 5 0.01877806179071802 6 0.014720451721916595 3 0.013636085868295577 7 0.012370568788165786 8 0.012002284310234377 1 0.011845217691606767 2 0.011259620134107032 15 0.00749087674752686 __DUMMY__ 0.005305368001455246 false 1.0 357 17 0.070327 19 0.068868 16 0.067205 22 0.062316 18 0.054774 21 0.05193 0 0.051321 20 0.047292 24 0.046853 23 0.044751 9 0.044272 11 0.041941 4 0.034006 6 0.033503 8 0.033172 7 0.033154 5 0.032862 1 0.032674 2 0.032373 3 0.032195 12 0.029548 10 0.028058 15 0.022604 14 0.003998 17 0.070327 19 0.068868 16 0.067205 22 0.062316 18 0.054774 21 0.05193 0 0.051321 20 0.047292 24 0.046853 23 0.044751 9 0.044272 11 0.041941 4 0.034006 6 0.033503 8 0.033172 7 0.033154 5 0.032862 1 0.032674 2 0.032373 3 0.032195 12 0.029548 10 0.028058 15 0.022604 14 0.003998 19 0.05918828239756323 17 0.05884244742810728 22 0.05708138938471204 18 0.0546605246860059 16 0.053018901895774864 21 0.051501222700536003 0 0.046563460700937545 23 0.04387836761674399 20 0.04349809006097892 11 0.043375152847162673 9 0.04305928418108226 24 0.042243957256980075 12 0.037629014822168315 10 0.03566787899819093 4 0.0341231050727746 6 0.03357946352446392 5 0.033363527661339196 8 0.03244706492158083 7 0.03239885803842526 1 0.03207894067815071 2 0.03177173649174879 3 0.031284660533215596 15 0.02718646622620125 14 0.020173070650600592 13 0.01892229864295622 __DUMMY__ 0.00246283258159915 false 1.0 115 9 0.063264 4 0.057241 22 0.056977 5 0.056781 3 0.056758 8 0.056444 7 0.056294 6 0.056008 1 0.055935 2 0.055774 0 0.047664 17 0.047314 23 0.041302 18 0.039566 21 0.037235 24 0.036269 10 0.033036 19 0.032963 11 0.031053 16 0.026183 20 0.019209 15 0.014341 12 0.013004 14 0.009383 9 0.063264 4 0.057241 22 0.056977 5 0.056781 3 0.056758 8 0.056444 7 0.056294 6 0.056008 1 0.055935 2 0.055774 0 0.047664 17 0.047314 23 0.041302 18 0.039566 21 0.037235 24 0.036269 10 0.033036 19 0.032963 11 0.031053 16 0.026183 20 0.019209 15 0.014341 12 0.013004 14 0.009383 9 0.05988584136857492 22 0.0587526724169709 4 0.050584941811925736 5 0.0500766781830248 17 0.0494989318955642 6 0.049487985924036464 8 0.04924935853728165 0 0.04916573741953615 7 0.04915690418227644 3 0.04898688956930302 1 0.04890753446466231 2 0.04853968579261507 18 0.04547684483267326 21 0.04176427619192428 23 0.03977068660303275 10 0.038213197748676646 11 0.0377672480502144 19 0.03764523341536698 24 0.03412563362494989 16 0.029307386451049057 20 0.021650233002901396 12 0.019805453348361667 15 0.016948325571327142 14 0.015062344935152839 13 0.007583366872230406 __DUMMY__ 0.0025866077863677364 false 1.0 599 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.0919176479015813 22 0.08300755170822774 11 0.07704972849248458 19 0.07079227967496886 18 0.06483881790249 12 0.06347912689879955 24 0.05033817950304302 10 0.050017339794861775 20 0.044604856919079464 17 0.043983230179508566 9 0.04264533662507302 0 0.04060859015742174 14 0.03955789830637181 23 0.03866841598069002 13 0.03781337789425544 16 0.032656830143887365 4 0.01944159289738088 5 0.01896076402049853 6 0.014790305316674971 3 0.01396769673349699 7 0.012362723938592226 8 0.012096645114458439 1 0.012017273461985861 2 0.011587527931496542 15 0.007490887140474138 __DUMMY__ 0.00530537536219709 false 1.0 116 21 0.108119 22 0.095669 19 0.093491 11 0.082774 24 0.082049 18 0.080327 20 0.079342 12 0.061597 23 0.047168 10 0.042903 14 0.03831 17 0.038187 9 0.033089 16 0.030543 13 0.02131 0 0.019209 4 0.012058 5 0.010939 15 0.00833 3 0.006747 6 0.003048 7 0.001858 8 0.001738 1 0.001194 21 0.108119 22 0.095669 19 0.093491 11 0.082774 24 0.082049 18 0.080327 20 0.079342 12 0.061597 23 0.047168 10 0.042903 14 0.03831 17 0.038187 9 0.033089 16 0.030543 13 0.02131 0 0.019209 4 0.012058 5 0.010939 15 0.00833 3 0.006747 6 0.003048 7 0.001858 8 0.001738 1 0.001194 21 0.09020170911952534 22 0.08254339072774315 19 0.07947550329728813 18 0.0719027740880641 11 0.07078208176882325 24 0.06590272239563014 20 0.06429544412635034 12 0.055529983998614196 23 0.04543603856408661 10 0.044731950386468856 17 0.04080708980558229 14 0.03754042591645491 9 0.037421695974217545 16 0.032511724037625984 0 0.027571339829865232 13 0.025850455784251283 4 0.019196828495053775 5 0.01838360567045182 3 0.014653297300385478 15 0.014374472047789274 6 0.01276744060199796 7 0.011451447726654164 8 0.011373185720643657 1 0.010972039365869083 2 0.010199858457558065 __DUMMY__ 0.004123494793005592 false 1.0 358 20 0.10078 24 0.095697 21 0.095006 19 0.088509 22 0.083811 18 0.083195 11 0.067281 23 0.054435 12 0.047713 10 0.034441 14 0.033538 9 0.029103 17 0.025521 4 0.021863 5 0.020542 3 0.018822 16 0.017152 15 0.016407 7 0.012197 8 0.01202 6 0.011381 1 0.011374 2 0.009874 13 0.009335 20 0.10078 24 0.095697 21 0.095006 19 0.088509 22 0.083811 18 0.083195 11 0.067281 23 0.054435 12 0.047713 10 0.034441 14 0.033538 9 0.029103 17 0.025521 4 0.021863 5 0.020542 3 0.018822 16 0.017152 15 0.016407 7 0.012197 8 0.01202 6 0.011381 1 0.011374 2 0.009874 13 0.009335 21 0.08040352270162714 22 0.07492102586983204 19 0.07320128756033134 18 0.07178800546830726 20 0.07056024511198444 24 0.06878096543987489 11 0.06254079619594496 23 0.04786470790452555 12 0.04762311822029383 10 0.04174522270851848 9 0.03701347624938562 17 0.03509893809809855 14 0.034843849990655734 4 0.025780920966309073 16 0.025055732671352686 5 0.024906705019099997 3 0.02231123834811881 13 0.0210478468158618 0 0.020750359490290495 6 0.019148737157324344 7 0.018667670118064174 8 0.018588613180938983 15 0.01851851813277246 1 0.0181524716436821 2 0.01728390867708558 __DUMMY__ 0.0034021162597197992 false 1.0 359 21 0.09581 12 0.094339 13 0.074289 23 0.070735 11 0.066524 24 0.062965 22 0.061973 19 0.043144 14 0.043115 4 0.036414 6 0.0348 5 0.034227 20 0.032451 7 0.028795 8 0.028706 1 0.027929 2 0.026429 17 0.026126 18 0.024822 3 0.02435 9 0.0186 16 0.018273 0 0.018185 15 0.007001 21 0.09581 12 0.094339 13 0.074289 23 0.070735 11 0.066524 24 0.062965 22 0.061973 19 0.043144 14 0.043115 4 0.036414 6 0.0348 5 0.034227 20 0.032451 7 0.028795 8 0.028706 1 0.027929 2 0.026429 17 0.026126 18 0.024822 3 0.02435 9 0.0186 16 0.018273 0 0.018185 15 0.007001 21 0.08660482930027288 12 0.08005721733242491 22 0.06276563922813391 11 0.06271527229689015 13 0.06215078922540608 23 0.05920818355118562 24 0.05613951257026176 19 0.052378079665985795 14 0.04361486311973039 18 0.04223332611064803 20 0.04074448220757579 17 0.031990665226523246 4 0.03045879637489978 5 0.02916514348144731 6 0.028137119341529123 9 0.026868086484801497 0 0.025372541478113155 16 0.024500691511855206 7 0.023725262772588258 8 0.023641643025647748 1 0.02318772683093673 2 0.022291640208432134 10 0.021849506239718607 3 0.021666962389849845 15 0.013026181907657065 __DUMMY__ 0.005505838117485013 false 1.0 117 9 0.074234 22 0.062801 0 0.058554 5 0.056351 4 0.056215 6 0.055681 8 0.055662 7 0.055468 1 0.055373 3 0.055051 2 0.055049 17 0.052921 18 0.047688 10 0.046673 11 0.036453 21 0.034679 23 0.030733 19 0.02752 16 0.02137 24 0.020676 15 0.015162 14 0.011896 12 0.007733 20 0.006058 9 0.074234 22 0.062801 0 0.058554 5 0.056351 4 0.056215 6 0.055681 8 0.055662 7 0.055468 1 0.055373 3 0.055051 2 0.055049 17 0.052921 18 0.047688 10 0.046673 11 0.036453 21 0.034679 23 0.030733 19 0.02752 16 0.02137 24 0.020676 15 0.015162 14 0.011896 12 0.007733 20 0.006058 9 0.06680454836290915 22 0.06025395709599228 0 0.055613929186442104 17 0.05254914651995967 4 0.05222716645225373 5 0.052004896730099455 6 0.05172899937118117 8 0.05138029203063972 7 0.05127836643642961 1 0.051168426847189905 2 0.05068663827464445 3 0.05048922542942834 18 0.048141849076958954 10 0.04485436922718652 11 0.03853150216503617 21 0.037377102664611944 23 0.03428309661793938 19 0.03235502558933281 16 0.026374155354398583 24 0.024688097608618283 15 0.017310111617908953 14 0.014677387200424987 12 0.014465841895822973 20 0.012849370528313213 13 0.005810308232462726 __DUMMY__ 0.0020961894838150987 false 1.0 118 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.06624515105183433 22 0.058176366378230905 4 0.054161601392496934 0 0.0538410063566849 6 0.05363763614581364 5 0.053395647759347055 7 0.05329982376297929 8 0.053291283429872036 1 0.05293319593654613 2 0.052445498576337575 3 0.05228071661761788 17 0.050339737894718246 18 0.04673755346617084 10 0.0442865851779498 23 0.03635320247735961 21 0.0356778408656429 11 0.03558427597220041 19 0.02972944816230674 24 0.02547707712534577 16 0.024165469551507234 15 0.01779431479652255 14 0.015339844250932605 20 0.013272290802557797 12 0.013238546548900804 13 0.006106718763797763 __DUMMY__ 0.002189166736326078 false 1.0 119 19 0.101622 20 0.100032 21 0.091946 24 0.084712 18 0.078356 12 0.071585 22 0.067228 23 0.058401 11 0.054001 16 0.052446 14 0.046184 17 0.039138 13 0.037643 10 0.035322 15 0.032423 9 0.017847 5 0.008387 4 0.008025 0 0.007971 3 0.004943 6 0.001248 7 2.86E-4 8 1.8E-4 1 7.5E-5 19 0.101622 20 0.100032 21 0.091946 24 0.084712 18 0.078356 12 0.071585 22 0.067228 23 0.058401 11 0.054001 16 0.052446 14 0.046184 17 0.039138 13 0.037643 10 0.035322 15 0.032423 9 0.017847 5 0.008387 4 0.008025 0 0.007971 3 0.004943 6 0.001248 7 2.86E-4 8 1.8E-4 1 7.5E-5 19 0.08729433013510524 20 0.0823602846234382 21 0.08109172020161322 18 0.07359350430744441 24 0.07014419313010174 22 0.06449551588749358 12 0.06263444322144407 23 0.05320398618874013 11 0.05291111777718048 16 0.04638447151150097 14 0.04480644869111641 10 0.040966291587858444 17 0.040574068161828035 13 0.03723005531128642 15 0.031554935303920964 9 0.025684714534401337 0 0.01837800360063584 4 0.014670633860827308 5 0.014550865918630258 3 0.011406633699213083 6 0.009333873027946272 7 0.008245104455039017 8 0.008179256958343224 1 0.007986121555869481 2 0.007772370625074717 __DUMMY__ 0.0045470557239469635 false 1.0 10 19 0.06003 22 0.059333 24 0.05489 23 0.054449 18 0.051572 20 0.04913 21 0.047613 9 0.046616 3 0.043592 4 0.043313 5 0.042214 17 0.040196 8 0.040139 7 0.039978 2 0.039415 1 0.039354 6 0.038597 16 0.037646 10 0.036529 11 0.035039 0 0.029562 15 0.029497 14 0.022749 12 0.018546 19 0.06003 22 0.059333 24 0.05489 23 0.054449 18 0.051572 20 0.04913 21 0.047613 9 0.046616 3 0.043592 4 0.043313 5 0.042214 17 0.040196 8 0.040139 7 0.039978 2 0.039415 1 0.039354 6 0.038597 16 0.037646 10 0.036529 11 0.035039 0 0.029562 15 0.029497 14 0.022749 12 0.018546 22 0.060968799595124606 19 0.059749234237914915 18 0.056878286163721176 21 0.05440131987439462 24 0.05051333384750724 23 0.05002978590731874 20 0.04814299361284398 9 0.04529913186071534 10 0.04211130183484807 11 0.04209018735467962 17 0.04077971990631494 4 0.03755539404432111 5 0.03679270729883957 3 0.036269472724849164 16 0.034572005309803845 8 0.033755007834275125 7 0.033685781753093405 6 0.033452703572128796 1 0.03326306227488533 2 0.03313826507477001 0 0.03218635471556883 14 0.029749546785057663 12 0.02937245128759699 15 0.028047802376452574 13 0.013472547453667912 __DUMMY__ 0.0037228032993062415 false 1.0 11 10 0.078148 9 0.065776 22 0.06309 18 0.062862 11 0.057828 14 0.057035 21 0.053998 0 0.051362 13 0.045619 4 0.039155 5 0.039095 6 0.03683 3 0.036056 1 0.0353 2 0.035294 7 0.03517 8 0.035141 17 0.032426 12 0.032223 15 0.031716 19 0.027473 23 0.024806 24 0.011865 20 0.011732 10 0.078148 9 0.065776 22 0.06309 18 0.062862 11 0.057828 14 0.057035 21 0.053998 0 0.051362 13 0.045619 4 0.039155 5 0.039095 6 0.03683 3 0.036056 1 0.0353 2 0.035294 7 0.03517 8 0.035141 17 0.032426 12 0.032223 15 0.031716 19 0.027473 23 0.024806 24 0.011865 20 0.011732 10 0.06887307463572917 18 0.06412702424300165 22 0.06289652714822304 9 0.057348844473266436 11 0.05726073587353572 21 0.057110171490440245 14 0.050786632138713685 0 0.04858488204408511 13 0.0432716314560016 19 0.03947106692976632 12 0.03892987764058556 17 0.03845374511486565 4 0.03430684553700125 5 0.034038447715232956 6 0.032169715965065286 3 0.030461420413004033 7 0.03023382962772438 8 0.030217360755314445 1 0.03021335481992477 23 0.030180635951839365 2 0.02998826967879792 15 0.029676970525070786 20 0.02321456551871954 24 0.021145444011563562 16 0.013829215160404957 __DUMMY__ 0.0032097111321224303 false 1.0 12 10 0.081965 9 0.074416 18 0.071128 22 0.06761 0 0.058848 11 0.048274 17 0.047515 14 0.046682 15 0.043665 19 0.040192 4 0.039883 3 0.039584 5 0.039436 8 0.038102 7 0.037894 21 0.037888 1 0.037669 2 0.03712 6 0.037101 23 0.019408 16 0.017131 20 0.015177 13 0.012912 24 0.0104 10 0.081965 9 0.074416 18 0.071128 22 0.06761 0 0.058848 11 0.048274 17 0.047515 14 0.046682 15 0.043665 19 0.040192 4 0.039883 3 0.039584 5 0.039436 8 0.038102 7 0.037894 21 0.037888 1 0.037669 2 0.03712 6 0.037101 23 0.019408 16 0.017131 20 0.015177 13 0.012912 24 0.0104 10 0.06897132279621088 18 0.06685872627614245 22 0.06402864078924458 9 0.06399880600655534 0 0.053762040551908204 11 0.04838369984635776 17 0.04835299105786679 19 0.04463379524983003 21 0.043868919249603566 14 0.0406306115149685 4 0.037666105994098205 5 0.0371928325672327 15 0.03601260099799239 3 0.03597434411474088 6 0.03551016218336753 8 0.03540759319050283 7 0.035298992765889915 1 0.035103955679658294 2 0.03459676553836936 23 0.02748348922692021 16 0.0243968372810179 20 0.023546435328073052 24 0.01993961508003302 13 0.01945474468115302 12 0.015937593160408315 __DUMMY__ 0.0029883788718541517 false 1.0 13 10 0.081661 9 0.075229 18 0.071661 22 0.067671 0 0.058074 11 0.048021 17 0.04789 14 0.046829 15 0.043284 19 0.040881 4 0.040088 5 0.039577 3 0.039568 21 0.0383 8 0.038067 7 0.037725 1 0.03769 2 0.0371 6 0.036988 23 0.019572 16 0.017082 20 0.015002 13 0.011838 24 0.010203 10 0.081661 9 0.075229 18 0.071661 22 0.067671 0 0.058074 11 0.048021 17 0.04789 14 0.046829 15 0.043284 19 0.040881 4 0.040088 5 0.039577 3 0.039568 21 0.0383 8 0.038067 7 0.037725 1 0.03769 2 0.0371 6 0.036988 23 0.019572 16 0.017082 20 0.015002 13 0.011838 24 0.010203 10 0.0688302496515883 18 0.0671059812123696 9 0.06437596858768432 22 0.06405691210237094 0 0.053402917429798934 17 0.0485269503003862 11 0.0482662977613147 19 0.04495343687453209 21 0.0440600467645397 14 0.04069879348132038 4 0.03776119850171522 5 0.03725823242173093 3 0.03596690420622944 15 0.03583581890714562 6 0.03545771923003617 8 0.03539133847335493 7 0.03522056864692313 1 0.03511368236699108 2 0.03458747046444364 23 0.02755956446220391 16 0.02437409235642078 20 0.023465232954903523 24 0.019848207455263098 13 0.018956452135197015 12 0.015937585766143864 __DUMMY__ 0.002988377485392379 false 1.0 14 23 0.08536 24 0.062803 4 0.059471 6 0.05938 5 0.059247 7 0.058489 8 0.058257 2 0.057892 1 0.057604 3 0.057275 20 0.051452 12 0.041708 19 0.03936 16 0.036375 21 0.035887 9 0.031061 17 0.030482 22 0.026226 18 0.025092 13 0.023652 0 0.017456 15 0.016253 14 0.006769 10 0.002449 23 0.08536 24 0.062803 4 0.059471 6 0.05938 5 0.059247 7 0.058489 8 0.058257 2 0.057892 1 0.057604 3 0.057275 20 0.051452 12 0.041708 19 0.03936 16 0.036375 21 0.035887 9 0.031061 17 0.030482 22 0.026226 18 0.025092 13 0.023652 0 0.017456 15 0.016253 14 0.006769 10 0.002449 23 0.07065077657975441 24 0.056085504489784326 21 0.04980219743893124 20 0.04950827350064876 12 0.04813186995075375 19 0.04798442017462135 4 0.046348770181176176 5 0.045970149707499755 6 0.045195496225667334 7 0.043654506403820764 8 0.04348007221417362 1 0.043108624443099985 2 0.04302200939571909 3 0.042879326642691944 22 0.04073095937742261 18 0.039903890747825604 17 0.03477594374027172 16 0.0345605467466135 9 0.03331066235081452 13 0.031443122320251864 0 0.024117243845985997 11 0.0229400195977963 14 0.020635326968117648 10 0.0194816272357237 15 0.0189265797759376 __DUMMY__ 0.003352079944896609 false 1.0 15 9 0.062734 3 0.055765 8 0.054657 7 0.054531 4 0.054425 1 0.054058 2 0.053915 5 0.053795 6 0.052874 22 0.051012 17 0.045967 0 0.045219 18 0.044402 10 0.043429 23 0.038088 15 0.036611 19 0.034114 24 0.032189 16 0.029813 21 0.027066 11 0.026156 20 0.024439 14 0.02342 12 0.001322 9 0.062734 3 0.055765 8 0.054657 7 0.054531 4 0.054425 1 0.054058 2 0.053915 5 0.053795 6 0.052874 22 0.051012 17 0.045967 0 0.045219 18 0.044402 10 0.043429 23 0.038088 15 0.036611 19 0.034114 24 0.032189 16 0.029813 21 0.027066 11 0.026156 20 0.024439 14 0.02342 12 0.001322 9 0.059871581767554256 22 0.05453227456329045 4 0.04941517817672168 3 0.048901568195995025 5 0.0488414621904955 8 0.048688848900045295 18 0.04865424504419491 7 0.048614424497958594 1 0.04831533752400249 17 0.04816526058181382 6 0.048145591373025064 2 0.04795561381880799 0 0.04740500688296971 10 0.04475005249879688 23 0.0382329237659943 19 0.03785886262528881 21 0.035019475260385735 11 0.03381857384841222 24 0.03130657180737218 16 0.0305677290481254 15 0.029937269871493453 20 0.02473681548802992 14 0.023218091423979126 12 0.012594509062774744 13 0.007671944599160934 __DUMMY__ 0.002780787183311459 false 1.0 16 10 0.087849 18 0.08733 9 0.065199 22 0.062672 14 0.051217 21 0.049297 23 0.046171 19 0.045472 0 0.044671 11 0.03817 5 0.036677 4 0.03662 13 0.0351 17 0.034152 6 0.03338 15 0.032596 7 0.030737 8 0.030605 3 0.030593 1 0.030185 2 0.02964 20 0.026218 12 0.023521 24 0.011929 10 0.087849 18 0.08733 9 0.065199 22 0.062672 14 0.051217 21 0.049297 23 0.046171 19 0.045472 0 0.044671 11 0.03817 5 0.036677 4 0.03662 13 0.0351 17 0.034152 6 0.03338 15 0.032596 7 0.030737 8 0.030605 3 0.030593 1 0.030185 2 0.02964 20 0.026218 12 0.023521 24 0.011929 18 0.07546661419614324 10 0.07077380437874235 22 0.060878024194315636 9 0.054544243395209545 21 0.053848208143892184 19 0.050603043987590766 14 0.04669880470576616 11 0.04528772537966962 23 0.04344844500008526 0 0.042990296842344726 17 0.03933069791134644 13 0.03645194035925202 12 0.03434516234896537 20 0.034105184345112616 4 0.03292865986453867 5 0.03271342803626624 15 0.03146683200944167 6 0.03028796686586807 7 0.02810049527359473 8 0.028020049295644108 3 0.028008112799645227 1 0.027733855924527925 2 0.027287036147588112 24 0.024399688828336655 16 0.016718425674042036 __DUMMY__ 0.0035632540920706624 false 1.0 17 20 0.103664 19 0.102886 21 0.084758 18 0.081588 24 0.078623 12 0.071376 23 0.065686 22 0.061617 16 0.051307 14 0.049537 11 0.049087 10 0.043449 13 0.041582 17 0.033674 15 0.032653 9 0.013411 4 0.008572 5 0.008545 0 0.008221 3 0.005617 6 0.001917 7 7.89E-4 8 7.57E-4 2 6.85E-4 20 0.103664 19 0.102886 21 0.084758 18 0.081588 24 0.078623 12 0.071376 23 0.065686 22 0.061617 16 0.051307 14 0.049537 11 0.049087 10 0.043449 13 0.041582 17 0.033674 15 0.032653 9 0.013411 4 0.008572 5 0.008545 0 0.008221 3 0.005617 6 0.001917 7 7.89E-4 8 7.57E-4 2 6.85E-4 19 0.08674617592845152 20 0.08368803497292193 18 0.07570952790041535 21 0.07320781332170409 24 0.06549286317100589 22 0.05935503617348453 12 0.05859923497216021 23 0.058020389470041844 11 0.04734336924310941 10 0.04678742289808822 14 0.04661223994584752 16 0.044844893715793255 13 0.03736696081793261 17 0.036846448099626054 15 0.03431782785233071 9 0.024366338646880304 0 0.018007523622435257 4 0.016646428527223277 5 0.01636704609411435 3 0.013839955686483461 6 0.011334323584850824 7 0.010393280206969368 8 0.01037461404083426 2 0.010105302752810989 1 0.009899083776925202 __DUMMY__ 0.0037278645775593294 false 1.0 18 3 0.060626 4 0.057843 5 0.057273 8 0.057014 7 0.056881 1 0.056612 2 0.056293 9 0.055866 6 0.053987 23 0.049615 24 0.047175 22 0.046602 15 0.042062 18 0.041236 10 0.037802 20 0.035345 19 0.033247 14 0.030007 17 0.029115 21 0.028741 0 0.027461 11 0.021885 16 0.01616 13 0.001155 3 0.060626 4 0.057843 5 0.057273 8 0.057014 7 0.056881 1 0.056612 2 0.056293 9 0.055866 6 0.053987 23 0.049615 24 0.047175 22 0.046602 15 0.042062 18 0.041236 10 0.037802 20 0.035345 19 0.033247 14 0.030007 17 0.029115 21 0.028741 0 0.027461 11 0.021885 16 0.01616 13 0.001155 22 0.05457472351299911 18 0.052672890757094054 9 0.04999472139574623 19 0.04659673862640192 23 0.04575826718912346 21 0.04561501197920049 24 0.04520815814539362 10 0.04378550267568382 4 0.043355229203102266 3 0.04302674779150206 5 0.042819698102802665 20 0.040959921427840634 8 0.040821338056721265 7 0.04075128462854747 1 0.04050944781168519 2 0.040153411223312264 6 0.039973629002040614 17 0.03672756362911365 11 0.03625807157851149 15 0.0353163175282377 14 0.03499059132603872 0 0.0326391313339227 16 0.02495359412748286 12 0.021944778925496268 13 0.01676104583684981 __DUMMY__ 0.0038321841851496016 false 1.0 19 10 0.09498 18 0.079236 9 0.070809 22 0.068256 0 0.066389 11 0.063729 14 0.058009 17 0.049698 21 0.044969 19 0.041267 15 0.040559 13 0.035845 4 0.029909 5 0.029837 6 0.028377 3 0.027235 7 0.026985 8 0.026929 2 0.026867 1 0.026736 12 0.020547 16 0.017997 20 0.013885 23 0.010948 10 0.09498 18 0.079236 9 0.070809 22 0.068256 0 0.066389 11 0.063729 14 0.058009 17 0.049698 21 0.044969 19 0.041267 15 0.040559 13 0.035845 4 0.029909 5 0.029837 6 0.028377 3 0.027235 7 0.026985 8 0.026929 2 0.026867 1 0.026736 12 0.020547 16 0.017997 20 0.013885 23 0.010948 10 0.07827666373856268 18 0.0736282893293648 22 0.06541855431543221 9 0.06124578133276265 11 0.05874187521427644 0 0.05763645427153635 21 0.04980711857371899 14 0.04937207586413649 17 0.0493031416240707 19 0.04723025789926132 15 0.03541170502654802 13 0.03421464567347843 4 0.030034380809759603 5 0.029748263681703982 12 0.028906360182569448 6 0.028377089085136076 7 0.02686751926965501 8 0.026852848153950344 3 0.02682995335431869 1 0.026660769831566157 2 0.026486235466724878 16 0.02486298729642755 20 0.02437862914577293 23 0.02237655246939762 24 0.014284509062942761 __DUMMY__ 0.0030473393269259217 false 1.0 360 17 0.084266 0 0.082518 16 0.071707 9 0.053416 11 0.052553 22 0.052392 18 0.047256 6 0.04571 10 0.043179 8 0.042738 7 0.042616 19 0.042427 2 0.04229 1 0.042237 4 0.040742 5 0.03999 3 0.036443 23 0.028825 12 0.027742 21 0.026676 15 0.021812 13 0.011653 20 0.010522 24 0.010292 17 0.084266 0 0.082518 16 0.071707 9 0.053416 11 0.052553 22 0.052392 18 0.047256 6 0.04571 10 0.043179 8 0.042738 7 0.042616 19 0.042427 2 0.04229 1 0.042237 4 0.040742 5 0.03999 3 0.036443 23 0.028825 12 0.027742 21 0.026676 15 0.021812 13 0.011653 20 0.010522 24 0.010292 17 0.07399634284947919 0 0.0708435295915857 16 0.06087184652034415 22 0.05390444102935143 9 0.05281483386612969 18 0.049458087101242894 11 0.04873887931797685 19 0.044271226165038216 6 0.04372716792932836 10 0.042601989747512316 8 0.041494859788908316 7 0.04138779655357881 1 0.04115086598073581 2 0.04089293113534728 4 0.040658349143825455 5 0.040049053882704494 3 0.036897865216334605 21 0.03302398768539905 23 0.032758693577645034 12 0.02861354089655258 15 0.022044477947865376 24 0.018821071221924512 20 0.017731964082416635 13 0.01366062999082382 14 0.0071668512571132275 __DUMMY__ 0.0024187175208363605 false 1.0 361 17 0.062209 9 0.05801 0 0.056941 22 0.053934 8 0.050566 7 0.050357 6 0.050097 1 0.050045 2 0.049647 4 0.049476 3 0.048974 5 0.048747 16 0.048245 18 0.042849 19 0.040725 11 0.036382 10 0.03475 23 0.034368 24 0.031049 21 0.030907 15 0.026919 20 0.022789 12 0.012687 14 0.009328 17 0.062209 9 0.05801 0 0.056941 22 0.053934 8 0.050566 7 0.050357 6 0.050097 1 0.050045 2 0.049647 4 0.049476 3 0.048974 5 0.048747 16 0.048245 18 0.042849 19 0.040725 11 0.036382 10 0.03475 23 0.034368 24 0.031049 21 0.030907 15 0.026919 20 0.022789 12 0.012687 14 0.009328 17 0.05925357926816353 9 0.056045514938763565 22 0.055524287655168585 0 0.055011252724691616 18 0.047564685561905774 6 0.04594116221508165 4 0.04570183572688736 8 0.04570020231250596 7 0.04555327489461966 1 0.04531661487034035 5 0.04508880251034736 2 0.04488339632159996 16 0.044375690912025534 3 0.044170650670262 19 0.04259231098385363 11 0.03972652670637049 10 0.039189107553915845 21 0.036365827086844965 23 0.03594719182257038 24 0.030763057903641252 15 0.0259807729062186 20 0.02461297648277208 12 0.01948669445774227 14 0.014899070212582875 13 0.007743169458159007 __DUMMY__ 0.002562343842965683 false 1.0 362 17 0.062331 0 0.05798 9 0.057837 22 0.054763 8 0.049712 7 0.049577 6 0.049281 1 0.049182 2 0.048907 4 0.048705 16 0.048287 3 0.048232 5 0.047753 18 0.044465 19 0.040933 11 0.036645 10 0.03608 23 0.035145 21 0.031108 24 0.030881 15 0.026925 20 0.023592 12 0.012512 14 0.009164 17 0.062331 0 0.05798 9 0.057837 22 0.054763 8 0.049712 7 0.049577 6 0.049281 1 0.049182 2 0.048907 4 0.048705 16 0.048287 3 0.048232 5 0.047753 18 0.044465 19 0.040933 11 0.036645 10 0.03608 23 0.035145 21 0.031108 24 0.030881 15 0.026925 20 0.023592 12 0.012512 14 0.009164 17 0.05930918304784429 9 0.055966921817288975 22 0.05590148831778281 0 0.05548397829595542 18 0.04829986620723956 6 0.04557005967741013 4 0.04535120257706685 8 0.04531181370782111 7 0.04519854750982378 1 0.044924131603039846 5 0.04463672889843815 2 0.044546863116435624 16 0.044394876823790945 3 0.043833206398303425 19 0.042687004554472746 11 0.03984623373552157 10 0.03979417586026024 21 0.036457325133390596 23 0.03630070284582561 24 0.030686693204541357 15 0.02598354948904559 20 0.024978293891997315 12 0.019407125046111817 14 0.014824496188175428 13 0.007743183547164405 __DUMMY__ 0.0025623485052524153 false 1.0 120 3 0.060842 4 0.059763 5 0.059668 9 0.059414 7 0.058528 8 0.058457 1 0.058313 2 0.058001 6 0.057011 22 0.050876 23 0.048156 24 0.043317 18 0.037364 17 0.035768 21 0.034096 0 0.033796 19 0.03159 10 0.031239 15 0.028392 20 0.026898 11 0.022704 14 0.020016 16 0.019696 12 0.006094 3 0.060842 4 0.059763 5 0.059668 9 0.059414 7 0.058528 8 0.058457 1 0.058313 2 0.058001 6 0.057011 22 0.050876 23 0.048156 24 0.043317 18 0.037364 17 0.035768 21 0.034096 0 0.033796 19 0.03159 10 0.031239 15 0.028392 20 0.026898 11 0.022704 14 0.020016 16 0.019696 12 0.006094 9 0.05807569841911799 22 0.054415558510741785 4 0.05291495406719742 5 0.052590241833173075 3 0.05228345818635876 7 0.05133706664369922 8 0.05130125079982812 1 0.05116580226325975 6 0.050897744356314036 2 0.05071970985669588 23 0.04433254433854686 18 0.04417950035455672 17 0.041699820228144516 0 0.040347240272556456 21 0.039173996701298563 24 0.03804438610920042 10 0.03744029430372996 19 0.03587407787835832 11 0.03147388762999707 20 0.02606843913377253 15 0.024784653387085652 16 0.023942464384861206 14 0.021255889309848387 12 0.015356117272120736 13 0.007663651424904237 __DUMMY__ 0.002661552334631958 false 1.0 121 22 0.096292 21 0.078103 11 0.072762 9 0.066447 18 0.056383 19 0.055652 0 0.05053 10 0.049914 17 0.048218 24 0.041604 4 0.036395 5 0.036038 3 0.034042 6 0.030677 7 0.030415 8 0.030326 23 0.029971 1 0.029851 2 0.029794 14 0.025387 12 0.024037 16 0.022917 20 0.017714 15 0.006533 22 0.096292 21 0.078103 11 0.072762 9 0.066447 18 0.056383 19 0.055652 0 0.05053 10 0.049914 17 0.048218 24 0.041604 4 0.036395 5 0.036038 3 0.034042 6 0.030677 7 0.030415 8 0.030326 23 0.029971 1 0.029851 2 0.029794 14 0.025387 12 0.024037 16 0.022917 20 0.017714 15 0.006533 22 0.08106351012489464 21 0.06903228029844864 11 0.06354736914717597 9 0.058375054228894864 18 0.056660891697829986 19 0.05392789537752977 0 0.04845281804444705 17 0.04841760046369653 10 0.04821853809061517 24 0.03972480433016535 4 0.03572856292508407 5 0.03527773064213292 23 0.03453131609897373 3 0.032707921352477284 6 0.03184296977642778 12 0.031700570150860696 7 0.030963609687741783 8 0.030905143954037415 1 0.030578898728201718 2 0.030276379950349597 16 0.027982447129235182 14 0.026887715665991508 20 0.025308301428837696 13 0.012244164461730102 15 0.012133217922853488 __DUMMY__ 0.0035102883213668995 false 1.0 363 16 0.09147 17 0.080395 19 0.075111 0 0.061452 18 0.053806 20 0.04976 22 0.048467 11 0.044278 23 0.04315 24 0.038169 9 0.036243 21 0.034627 12 0.033234 10 0.033218 6 0.032202 7 0.031472 8 0.031469 1 0.031114 2 0.030623 4 0.029889 5 0.029333 3 0.028168 15 0.026819 13 0.00553 16 0.09147 17 0.080395 19 0.075111 0 0.061452 18 0.053806 20 0.04976 22 0.048467 11 0.044278 23 0.04315 24 0.038169 9 0.036243 21 0.034627 12 0.033234 10 0.033218 6 0.032202 7 0.031472 8 0.031469 1 0.031114 2 0.030623 4 0.029889 5 0.029333 3 0.028168 15 0.026819 13 0.00553 16 0.07029762733601481 17 0.06947716707171187 19 0.06478552994008689 0 0.05646935146005371 18 0.054974517586424326 22 0.05265429364479753 11 0.045762083445471724 20 0.042694888987160076 23 0.04160982876121677 9 0.041307575296351644 21 0.04113712011475859 10 0.03822283833796512 24 0.036352340549104634 12 0.03491064406888074 6 0.033370439443743925 4 0.03227095585957423 8 0.03224520347428997 7 0.032212451827353314 1 0.03196803725175869 5 0.03175866560526017 2 0.031492970299103404 3 0.029740406162287316 15 0.025834449250467892 13 0.013585590495040944 14 0.011001185265848668 __DUMMY__ 0.0038638384652727627 false 1.0 364 16 0.078375 17 0.074419 0 0.060405 19 0.05779 22 0.04465 18 0.044543 23 0.043052 6 0.041149 11 0.040805 8 0.040278 7 0.039966 1 0.039807 2 0.039573 20 0.039477 9 0.039188 4 0.038028 5 0.037927 3 0.036321 24 0.036125 12 0.034075 21 0.03154 10 0.028105 15 0.024019 13 0.010381 16 0.078375 17 0.074419 0 0.060405 19 0.05779 22 0.04465 18 0.044543 23 0.043052 6 0.041149 11 0.040805 8 0.040278 7 0.039966 1 0.039807 2 0.039573 20 0.039477 9 0.039188 4 0.038028 5 0.037927 3 0.036321 24 0.036125 12 0.034075 21 0.03154 10 0.028105 15 0.024019 13 0.010381 17 0.06818509445192086 16 0.06401227202241912 0 0.05833388247348273 19 0.05330341895984199 22 0.050162855828007114 18 0.048875241512086 9 0.04478992162955978 11 0.04286267803198883 23 0.04054710859470113 6 0.040359207871820034 8 0.039199050750553056 7 0.03900548544192332 1 0.03886055667803425 2 0.03848284238615204 4 0.038454346249984485 5 0.03813896768306141 21 0.036503125823084986 3 0.035999460230898166 10 0.035185227540122856 20 0.03407266579794409 24 0.03299705553138848 12 0.03242965189992352 15 0.0239564036028037 13 0.01360200476122151 14 0.008435468814239531 __DUMMY__ 0.0032460054328369947 false 1.0 122 22 0.067477 9 0.062284 18 0.047947 3 0.047454 21 0.047349 4 0.047056 5 0.046436 17 0.045576 7 0.045097 8 0.044934 0 0.044819 1 0.044522 2 0.044324 19 0.044005 10 0.043856 6 0.043758 11 0.043104 24 0.038531 23 0.036508 16 0.028236 15 0.026847 14 0.025008 20 0.024658 12 0.010213 22 0.067477 9 0.062284 18 0.047947 3 0.047454 21 0.047349 4 0.047056 5 0.046436 17 0.045576 7 0.045097 8 0.044934 0 0.044819 1 0.044522 2 0.044324 19 0.044005 10 0.043856 6 0.043758 11 0.043104 24 0.038531 23 0.036508 16 0.028236 15 0.026847 14 0.025008 20 0.024658 12 0.010213 22 0.06363620296805791 9 0.059189741665888175 18 0.050377034446932006 17 0.048588162781963005 0 0.04766041283198411 21 0.04642917376140682 4 0.04513776443863387 5 0.04456656572229514 10 0.04450732647095426 3 0.04401524392968717 19 0.04370047183953438 11 0.04367599660939325 7 0.043206652138566 8 0.0431433524995322 6 0.042994504253198305 1 0.042852415045981175 2 0.0424711511564991 23 0.037403797190701124 24 0.03497906158057539 16 0.030674189858571392 20 0.025003310795012997 15 0.023736070934452822 14 0.023247771402049155 12 0.01825811732348425 13 0.007694388489217311 __DUMMY__ 0.0028511198654284837 false 1.0 365 0 0.087039 17 0.079302 9 0.065857 22 0.062658 11 0.059348 10 0.056694 18 0.054071 16 0.05325 6 0.045568 8 0.042825 7 0.042476 2 0.042274 1 0.042222 4 0.041938 5 0.041332 19 0.037718 3 0.037472 21 0.03253 12 0.024267 23 0.020377 13 0.011858 15 0.011754 14 0.003977 24 0.003191 0 0.087039 17 0.079302 9 0.065857 22 0.062658 11 0.059348 10 0.056694 18 0.054071 16 0.05325 6 0.045568 8 0.042825 7 0.042476 2 0.042274 1 0.042222 4 0.041938 5 0.041332 19 0.037718 3 0.037472 21 0.03253 12 0.024267 23 0.020377 13 0.011858 15 0.011754 14 0.003977 24 0.003191 0 0.07311032726521477 17 0.06956951679136517 9 0.06165374101296046 22 0.06061404600344446 18 0.05256698261324831 11 0.05253674763366764 10 0.05063151008297552 16 0.047110347191083625 6 0.04498880678151934 8 0.0429697573510724 4 0.04289740579823786 7 0.0427727618195141 1 0.04258583802326172 5 0.04233941712313684 2 0.042297286830662896 19 0.039523537489256 3 0.039135266202486536 21 0.036499373243003286 23 0.027713758964954215 12 0.024936304012822774 15 0.015338789779785937 24 0.014274185249542055 13 0.012718114393635486 20 0.009726948576717966 14 0.009506682456637694 __DUMMY__ 0.0019825473097929355 false 1.0 123 8 0.073587 7 0.07303 1 0.072867 6 0.072424 4 0.072134 2 0.072067 3 0.071573 5 0.071518 9 0.059264 23 0.053723 17 0.040095 22 0.039883 24 0.038625 0 0.038108 18 0.023794 21 0.021226 16 0.019851 15 0.016948 10 0.016596 20 0.014478 19 0.014412 11 0.012439 12 0.008404 14 0.002954 8 0.073587 7 0.07303 1 0.072867 6 0.072424 4 0.072134 2 0.072067 3 0.071573 5 0.071518 9 0.059264 23 0.053723 17 0.040095 22 0.039883 24 0.038625 0 0.038108 18 0.023794 21 0.021226 16 0.019851 15 0.016948 10 0.016596 20 0.014478 19 0.014412 11 0.012439 12 0.008404 14 0.002954 4 0.05838229971763481 6 0.058363093815368076 8 0.05832967502456469 7 0.0580607003357576 1 0.05792758843636652 5 0.057823111152253304 2 0.057245558050616596 9 0.057052951083934336 3 0.056621967140352385 22 0.04835534260744604 23 0.046698696194516595 17 0.04623080927252521 0 0.044626959130362895 18 0.036862731745074456 24 0.034674543289841445 21 0.032402740565536645 10 0.02940889587548509 19 0.027647312550583274 11 0.027497015492460083 16 0.027199092603340976 20 0.019246751283450148 12 0.018521510154719898 15 0.018315113326365946 14 0.011194229634798528 13 0.008759505296207051 __DUMMY__ 0.0025518062204375382 false 1.0 124 10 0.089534 18 0.083517 0 0.076869 22 0.076653 9 0.075365 11 0.065958 17 0.064607 19 0.050118 21 0.045692 14 0.035227 4 0.03027 5 0.030016 16 0.029747 6 0.029558 8 0.027723 7 0.027348 2 0.026876 1 0.026768 3 0.026295 15 0.02352 13 0.018784 12 0.018455 20 0.011679 23 0.009421 10 0.089534 18 0.083517 0 0.076869 22 0.076653 9 0.075365 11 0.065958 17 0.064607 19 0.050118 21 0.045692 14 0.035227 4 0.03027 5 0.030016 16 0.029747 6 0.029558 8 0.027723 7 0.027348 2 0.026876 1 0.026768 3 0.026295 15 0.02352 13 0.018784 12 0.018455 20 0.011679 23 0.009421 10 0.07392285149688047 18 0.07308224399389078 22 0.07038994184469113 9 0.06658478355788526 0 0.0659032132471119 11 0.059226700179571615 17 0.05873437326487371 19 0.04876762257026363 21 0.04776421605000092 4 0.033254553162362706 14 0.03295853544309677 5 0.03284680865901704 6 0.03228792864723331 16 0.030826952262312128 8 0.030738441293358062 7 0.03054718377396962 1 0.030180668703370116 2 0.02994125154025246 3 0.029652408969181653 12 0.023871248201219532 15 0.023755385633913023 13 0.02064638436699959 23 0.02053853151227992 20 0.018637924634562937 24 0.01257332672884677 __DUMMY__ 0.002366520262854883 false 1.0 366 17 0.0726 16 0.070899 0 0.061566 19 0.051984 9 0.047157 6 0.045876 8 0.045648 22 0.045613 7 0.045393 1 0.045217 2 0.044985 18 0.044429 4 0.0435 5 0.042822 3 0.042448 23 0.04014 11 0.035913 24 0.033672 20 0.03324 10 0.031972 21 0.026009 15 0.025108 12 0.021747 13 0.002062 17 0.0726 16 0.070899 0 0.061566 19 0.051984 9 0.047157 6 0.045876 8 0.045648 22 0.045613 7 0.045393 1 0.045217 2 0.044985 18 0.044429 4 0.0435 5 0.042822 3 0.042448 23 0.04014 11 0.035913 24 0.033672 20 0.03324 10 0.031972 21 0.026009 15 0.025108 12 0.021747 13 0.002062 17 0.0657001900499983 0 0.05796855520321945 16 0.05785004874232992 22 0.05074880404643541 9 0.049608980201925834 19 0.049123859285777435 18 0.048330593579435754 6 0.04356128674336576 8 0.04283054185869709 7 0.04267290266261243 1 0.04252090941169796 4 0.04220981453494493 2 0.04213047968058819 5 0.04162214006772256 3 0.04021222791864455 11 0.03971312657983774 23 0.039313105163430055 10 0.03716016252475196 21 0.033720547665090125 24 0.031877062520177746 20 0.03028705458171119 12 0.02529042742988302 15 0.02425646735400484 13 0.009111768140741997 14 0.008898616943286948 __DUMMY__ 0.0032803271096887095 false 1.0 125 9 0.064048 4 0.057295 5 0.056863 3 0.056734 7 0.05647 22 0.056441 8 0.056428 1 0.056296 6 0.056045 2 0.055754 0 0.047391 17 0.047333 23 0.04172 18 0.039479 21 0.037129 24 0.036212 19 0.032883 10 0.03281 11 0.030961 16 0.025914 20 0.019142 15 0.014481 12 0.012853 14 0.009315 9 0.064048 4 0.057295 5 0.056863 3 0.056734 7 0.05647 22 0.056441 8 0.056428 1 0.056296 6 0.056045 2 0.055754 0 0.047391 17 0.047333 23 0.04172 18 0.039479 21 0.037129 24 0.036212 19 0.032883 10 0.03281 11 0.030961 16 0.025914 20 0.019142 15 0.014481 12 0.012853 14 0.009315 9 0.06023430052287287 22 0.05849242097210039 4 0.05064526455372069 5 0.05014998663114591 6 0.04953578297527515 17 0.04946933143838803 8 0.049276884401394855 7 0.04927346162602144 1 0.04910957522173599 3 0.049016482327417725 0 0.04898624747754987 2 0.04856528621707089 18 0.045379743229903444 21 0.04171782676191308 23 0.040008909163253864 10 0.038038786754644206 11 0.037687867719641256 19 0.03758867431194813 24 0.03415660174245457 16 0.029162903193796337 20 0.02163025235753055 12 0.01972176316817753 15 0.017005501771964037 14 0.0150112450028411 13 0.007552736133698787 __DUMMY__ 0.0025821643235396188 false 1.0 367 16 0.091435 17 0.080453 19 0.075056 0 0.06152 18 0.053966 20 0.049512 22 0.048493 11 0.044221 23 0.043953 24 0.038396 9 0.036369 21 0.03485 12 0.033391 10 0.032955 6 0.031938 8 0.031362 7 0.031291 1 0.031138 2 0.030572 4 0.029682 5 0.02911 3 0.028121 15 0.026745 13 0.005472 16 0.091435 17 0.080453 19 0.075056 0 0.06152 18 0.053966 20 0.049512 22 0.048493 11 0.044221 23 0.043953 24 0.038396 9 0.036369 21 0.03485 12 0.033391 10 0.032955 6 0.031938 8 0.031362 7 0.031291 1 0.031138 2 0.030572 4 0.029682 5 0.02911 3 0.028121 15 0.026745 13 0.005472 16 0.07030743393038426 17 0.0695097315117868 19 0.06476334645890808 0 0.05649204081086423 18 0.05503110624592485 22 0.05264533301978758 11 0.04571173982551427 20 0.04259759686725729 23 0.04199227795209975 9 0.041353656314526636 21 0.041218233424395165 10 0.03807569182586609 24 0.03647363623926598 12 0.03497198014363809 6 0.0332594707400255 8 0.03220873162874661 4 0.03218454441641452 7 0.0321417975925941 1 0.03199172470139785 5 0.03166493638799661 2 0.031482171039875086 3 0.0297311870137375 15 0.025809356308889295 13 0.013540918514874023 14 0.010982068933813016 __DUMMY__ 0.0038592881514169447 false 1.0 368 16 0.091558 17 0.080229 19 0.075257 0 0.06157 18 0.053925 20 0.049541 22 0.048547 11 0.044264 23 0.044034 24 0.03846 9 0.036041 21 0.034855 12 0.033374 10 0.033125 6 0.031883 8 0.031267 7 0.031183 1 0.030976 2 0.030676 4 0.029616 5 0.029187 3 0.028222 15 0.02679 13 0.005418 16 0.091558 17 0.080229 19 0.075257 0 0.06157 18 0.053925 20 0.049541 22 0.048547 11 0.044264 23 0.044034 24 0.03846 9 0.036041 21 0.034855 12 0.033374 10 0.033125 6 0.031883 8 0.031267 7 0.031183 1 0.030976 2 0.030676 4 0.029616 5 0.029187 3 0.028222 15 0.02679 13 0.005418 16 0.07036410574843821 17 0.0694067968913929 19 0.0648558873309801 0 0.056515116649998906 18 0.055012323914306355 22 0.05267024338193549 11 0.04573158108498101 20 0.04261099442116325 23 0.042029592473513004 21 0.041220590089060274 9 0.041202847236776786 10 0.03815393718224446 24 0.036503123863978214 12 0.0349642091188625 6 0.033234218957871604 8 0.03216508008688234 4 0.03215423161579707 7 0.032092166507676684 1 0.03191725569113702 5 0.031700396828005274 2 0.031530050086821665 3 0.029777683771311316 15 0.025830090021080852 13 0.013516099481363232 14 0.01098208408767602 __DUMMY__ 0.0038592934767453777 false 1.0 126 22 0.100492 21 0.097894 11 0.080664 19 0.067912 18 0.0639 9 0.056137 24 0.052972 10 0.050564 12 0.043788 23 0.039169 17 0.038267 0 0.037599 14 0.035225 20 0.034517 4 0.02726 5 0.026544 3 0.023036 6 0.019547 8 0.018378 7 0.018354 1 0.017988 16 0.017555 2 0.017492 13 0.014745 22 0.100492 21 0.097894 11 0.080664 19 0.067912 18 0.0639 9 0.056137 24 0.052972 10 0.050564 12 0.043788 23 0.039169 17 0.038267 0 0.037599 14 0.035225 20 0.034517 4 0.02726 5 0.026544 3 0.023036 6 0.019547 8 0.018378 7 0.018354 1 0.017988 16 0.017555 2 0.017492 13 0.014745 21 0.0859990255626933 22 0.0853800383352246 11 0.07108192044876077 19 0.06594224440762474 18 0.06319973449044473 24 0.05043923594604456 9 0.0491243693539514 10 0.048842853051174036 12 0.04795510616836658 17 0.04109575127558607 23 0.04069816176494137 20 0.04025854463644466 0 0.03788429905937607 14 0.03629000991185713 4 0.02656076720286145 5 0.025941330314377887 16 0.025675209615282628 13 0.024091325762865445 3 0.02228687954053786 6 0.020931651792328854 7 0.01943765132617276 8 0.019408846531056595 1 0.019105834857814915 2 0.018640514170170926 15 0.009257133475208734 __DUMMY__ 0.004471560998831645 false 1.0 127 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.06622413580597708 22 0.058152153339330444 4 0.054199701270110034 0 0.05377955058104219 6 0.053671637278839536 5 0.05343385550517689 7 0.05333838467125602 8 0.05333005374834031 1 0.052971623964696395 2 0.052483922982197805 3 0.052324730821900894 17 0.05029792728555439 18 0.046677784329325775 10 0.04420814487057257 23 0.036405215024333075 21 0.03567311594189159 11 0.035534226509454384 19 0.02970953247021025 24 0.025541013757660897 16 0.02414714647750713 15 0.017792493102330522 14 0.015319825265317789 20 0.01329375062681781 12 0.013226426458235336 13 0.006079467502593256 __DUMMY__ 0.0021841804093277874 false 1.0 369 17 0.08051 0 0.07658 16 0.070585 9 0.052167 22 0.050014 6 0.04813 11 0.046298 8 0.046199 7 0.045871 1 0.045628 2 0.04548 4 0.043495 5 0.043075 18 0.042765 19 0.04094 3 0.040241 10 0.036173 23 0.031917 12 0.026214 21 0.025437 15 0.023688 24 0.015091 20 0.013119 13 0.010382 17 0.08051 0 0.07658 16 0.070585 9 0.052167 22 0.050014 6 0.04813 11 0.046298 8 0.046199 7 0.045871 1 0.045628 2 0.04548 4 0.043495 5 0.043075 18 0.042765 19 0.04094 3 0.040241 10 0.036173 23 0.031917 12 0.026214 21 0.025437 15 0.023688 24 0.015091 20 0.013119 13 0.010382 17 0.07134484010816156 0 0.06635927097934215 16 0.06063273351324924 22 0.05211275936666578 9 0.050615645639632105 18 0.04796026558598801 11 0.04557996144333871 19 0.04467369253874434 6 0.043589945046969475 8 0.041804945872498944 7 0.04159855383357764 1 0.041420207149995225 2 0.041091814939123825 4 0.04078118763273705 5 0.040331841733556445 10 0.039274553233053316 3 0.037455660670677515 23 0.03489364373344782 21 0.03327829665699802 12 0.02952390811947367 15 0.024921723969662427 24 0.022305593500260006 20 0.021210951002116077 13 0.015203026482323806 14 0.00946825472097077 __DUMMY__ 0.0025667225274362032 false 1.0 128 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.067098876507779 22 0.057842491988044156 4 0.05452931394864642 6 0.05398878701695805 7 0.0537658498888557 8 0.05368782153626043 5 0.05366561414254371 1 0.05357633261884704 0 0.05348973280344627 2 0.05250520375967956 3 0.052347857741749465 17 0.05069169491620524 18 0.046396729870062235 10 0.04299563516741064 23 0.036525719010017686 21 0.035946861265652275 11 0.035271624656317044 19 0.029824952979169685 24 0.025427490542272495 16 0.02404793071764022 15 0.01748233292090828 14 0.014913194184075466 12 0.013056580050313 20 0.012657716226682415 13 0.006079473114821231 __DUMMY__ 0.002184182425642274 false 1.0 129 9 0.074863 4 0.059987 7 0.059758 8 0.059585 1 0.059431 22 0.059389 6 0.05937 5 0.058635 3 0.057976 2 0.057894 0 0.055456 17 0.050085 18 0.045477 10 0.043828 23 0.034822 21 0.032953 11 0.031461 19 0.023492 24 0.021346 16 0.01724 15 0.014737 14 0.01196 20 0.005356 12 0.004899 9 0.074863 4 0.059987 7 0.059758 8 0.059585 1 0.059431 22 0.059389 6 0.05937 5 0.058635 3 0.057976 2 0.057894 0 0.055456 17 0.050085 18 0.045477 10 0.043828 23 0.034822 21 0.032953 11 0.031461 19 0.023492 24 0.021346 16 0.01724 15 0.014737 14 0.01196 20 0.005356 12 0.004899 9 0.06680990139093822 22 0.05783184913084854 4 0.05446974597621302 6 0.053940758596966905 7 0.053797673548180734 8 0.05372472252489922 1 0.0535873856203378 5 0.05356588979450375 0 0.05340616356071837 2 0.05254210529418173 3 0.05238337463252417 17 0.050570739623415316 18 0.04657902944123678 10 0.04299561532182425 23 0.03680726114274638 21 0.03603362023176805 11 0.03522406644776417 19 0.029896482891093517 24 0.025299161756846836 16 0.02401930214646968 15 0.017542790799009313 14 0.01489380127160469 12 0.013068574898827784 20 0.012746332230890209 13 0.006079470308705947 __DUMMY__ 0.0021841814174845646 false 1.0 20 11 0.093164 22 0.090769 10 0.080318 0 0.079109 18 0.07093 9 0.068974 21 0.064717 17 0.062517 19 0.049273 12 0.032708 4 0.029454 16 0.02944 5 0.02879 6 0.027408 14 0.026602 8 0.024179 7 0.023973 1 0.023536 2 0.023441 3 0.023095 13 0.017718 23 0.016802 15 0.006951 24 0.00613 11 0.093164 22 0.090769 10 0.080318 0 0.079109 18 0.07093 9 0.068974 21 0.064717 17 0.062517 19 0.049273 12 0.032708 4 0.029454 16 0.02944 5 0.02879 6 0.027408 14 0.026602 8 0.024179 7 0.023973 1 0.023536 2 0.023441 3 0.023095 13 0.017718 23 0.016802 15 0.006951 24 0.00613 22 0.07686225589363867 11 0.0743846005498815 10 0.06802922980371627 0 0.06731197407623896 18 0.06619587913442866 9 0.06103962085284622 17 0.05860265334889038 21 0.05857021458550427 19 0.049531284808732264 12 0.034934047474183924 16 0.03322807105161388 4 0.03142652853446153 5 0.030857355988832474 6 0.030084228584467736 14 0.02847295267334745 8 0.027512289875731726 7 0.027399177399189623 1 0.027108718473017136 2 0.026813343492929673 3 0.026254489581269743 23 0.02482399052259153 13 0.022901841462940036 24 0.01619078163472021 15 0.014770837388016635 20 0.013797178598445838 __DUMMY__ 0.0028964542103637617 false 1.0 21 21 0.067224 12 0.062021 22 0.059951 23 0.054906 18 0.054356 11 0.048751 9 0.045245 13 0.044159 19 0.043032 4 0.042032 24 0.04145 5 0.041042 6 0.039948 10 0.038929 8 0.036465 7 0.035976 1 0.035156 2 0.035011 3 0.034531 20 0.03409 0 0.033838 17 0.032814 14 0.027723 16 0.011351 21 0.067224 12 0.062021 22 0.059951 23 0.054906 18 0.054356 11 0.048751 9 0.045245 13 0.044159 19 0.043032 4 0.042032 24 0.04145 5 0.041042 6 0.039948 10 0.038929 8 0.036465 7 0.035976 1 0.035156 2 0.035011 3 0.034531 20 0.03409 0 0.033838 17 0.032814 14 0.027723 16 0.011351 21 0.06202997227404001 12 0.05657419591398882 22 0.05578295321203012 18 0.05403447455541079 23 0.05257708401602939 19 0.0471731253428919 11 0.045860920404279616 24 0.04290301843147338 9 0.04205744177734407 13 0.04184635966199075 20 0.03943550208459196 10 0.03902129827498271 4 0.03871077299083654 5 0.03799987444915754 6 0.03688200399403605 17 0.0368430535887645 0 0.034155278798307265 8 0.034118293418794035 7 0.033869418192074875 1 0.03342200046901027 2 0.03319626157768814 3 0.03290693172725001 14 0.03106442038775797 16 0.022174763903437516 15 0.012264644339484774 __DUMMY__ 0.003095936214347141 false 1.0 22 10 0.069824 18 0.069009 9 0.068029 22 0.063105 0 0.0505 17 0.047026 19 0.046036 3 0.042213 4 0.041544 15 0.041422 5 0.041024 11 0.040652 8 0.040269 7 0.040192 1 0.040007 2 0.039231 6 0.038564 14 0.037908 21 0.036848 23 0.028519 20 0.026803 16 0.023312 24 0.021725 13 0.006239 10 0.069824 18 0.069009 9 0.068029 22 0.063105 0 0.0505 17 0.047026 19 0.046036 3 0.042213 4 0.041544 15 0.041422 5 0.041024 11 0.040652 8 0.040269 7 0.040192 1 0.040007 2 0.039231 6 0.038564 14 0.037908 21 0.036848 23 0.028519 20 0.026803 16 0.023312 24 0.021725 13 0.006239 18 0.06626490820770164 10 0.06378208480522142 22 0.06245197204492611 9 0.06139175850348139 0 0.04939831697861624 19 0.047580630757312524 17 0.04748996855019816 11 0.04493558266645889 21 0.043982259186102754 4 0.03837105830392954 5 0.03785841587513085 3 0.0372411204737971 14 0.03707167544195451 8 0.03626216716081862 7 0.03621755308647146 1 0.03604019757286518 6 0.035944272677653974 2 0.035425503506942714 15 0.034884036243245646 23 0.03148352671179967 20 0.029310119990097583 16 0.026370718805947754 24 0.02561040614521668 13 0.01610534214031509 12 0.015589361641915019 __DUMMY__ 0.002937042521879546 false 1.0 23 0 0.083082 17 0.078083 10 0.06746 11 0.064121 18 0.063433 16 0.061595 22 0.055505 9 0.055068 19 0.046789 12 0.040726 21 0.037284 13 0.036878 6 0.032788 8 0.029177 7 0.02912 1 0.02906 4 0.028565 2 0.028182 5 0.027753 15 0.026217 14 0.024274 3 0.022547 23 0.019637 20 0.012658 0 0.083082 17 0.078083 10 0.06746 11 0.064121 18 0.063433 16 0.061595 22 0.055505 9 0.055068 19 0.046789 12 0.040726 21 0.037284 13 0.036878 6 0.032788 8 0.029177 7 0.02912 1 0.02906 4 0.028565 2 0.028182 5 0.027753 15 0.026217 14 0.024274 3 0.022547 23 0.019637 20 0.012658 0 0.07358047413303967 17 0.0726854578996419 18 0.059755535684156424 10 0.05770527320424847 11 0.057108484805177086 16 0.05704861402455834 22 0.0566888592812577 9 0.05405748360423816 19 0.047511938012226855 21 0.03883913938333721 12 0.03571786446566602 6 0.03562370763424323 8 0.032873333763398176 7 0.03278569885107991 4 0.03278254365290607 1 0.03269042577746113 5 0.0321481694777469 2 0.03201669963227007 3 0.027922476132026208 13 0.027302844502704836 23 0.026199864288589794 15 0.024747908898547714 14 0.020301276019121777 20 0.018024667339160767 24 0.011418642930788175 __DUMMY__ 0.0024626166024075287 false 1.0 24 0 0.091034 17 0.089019 16 0.071536 11 0.062435 22 0.057186 9 0.056568 18 0.05566 10 0.054475 19 0.044756 6 0.040082 12 0.038467 8 0.035954 7 0.035742 1 0.035728 2 0.035211 4 0.034448 5 0.033913 21 0.033006 3 0.028004 13 0.023582 23 0.021592 15 0.013466 20 0.004634 14 0.003502 0 0.091034 17 0.089019 16 0.071536 11 0.062435 22 0.057186 9 0.056568 18 0.05566 10 0.054475 19 0.044756 6 0.040082 12 0.038467 8 0.035954 7 0.035742 1 0.035728 2 0.035211 4 0.034448 5 0.033913 21 0.033006 3 0.028004 13 0.023582 23 0.021592 15 0.013466 20 0.004634 14 0.003502 17 0.07896571109159828 0 0.07777394307159007 16 0.06332427121604915 22 0.05680568408582602 11 0.055168295976776 9 0.05465437946307009 18 0.05436910733060295 10 0.04919171675378728 19 0.046041524092842914 6 0.0403738069858023 8 0.0374241428748533 7 0.03725746733376527 1 0.03718502090549883 2 0.03666558971299107 4 0.036650852905830596 5 0.036136587861132316 21 0.03560684264350029 12 0.03394886205808629 3 0.03166808785693592 23 0.027765803538100882 13 0.019192731235565207 15 0.017850645566590734 20 0.013760756238365805 24 0.011967945261921645 14 0.007862894955146022 __DUMMY__ 0.002387328983771103 false 1.0 25 0 0.088762 17 0.079466 9 0.06544 22 0.062651 11 0.059562 10 0.057004 18 0.054769 16 0.054158 6 0.045282 8 0.042586 7 0.042371 1 0.042117 2 0.041733 4 0.041467 5 0.040937 19 0.037461 3 0.036906 21 0.032609 12 0.023859 23 0.020973 13 0.012175 15 0.011244 14 0.00358 24 0.002888 0 0.088762 17 0.079466 9 0.06544 22 0.062651 11 0.059562 10 0.057004 18 0.054769 16 0.054158 6 0.045282 8 0.042586 7 0.042371 1 0.042117 2 0.041733 4 0.041467 5 0.040937 19 0.037461 3 0.036906 21 0.032609 12 0.023859 23 0.020973 13 0.012175 15 0.011244 14 0.00358 24 0.002888 0 0.0763011780434677 17 0.07217840852453733 9 0.06125401811680148 22 0.06115182746711803 11 0.05438423409450105 18 0.054206783270490215 10 0.05203380448551986 16 0.050342144764578066 6 0.043610105014638766 8 0.04145500286946959 7 0.04129990901304006 4 0.041153119111597566 1 0.041103028996471946 19 0.04083489467878737 2 0.04062973452606846 5 0.040624154015039805 3 0.03715146186100255 21 0.03651574707453825 23 0.02667481446006561 12 0.025524569079536888 15 0.01517966401844374 13 0.013178285872127302 24 0.01266735807538012 20 0.0095431021478044 14 0.008801934277116633 __DUMMY__ 0.0022007161418572826 false 1.0 26 10 0.098536 18 0.089289 9 0.074293 22 0.06858 0 0.058814 14 0.057093 11 0.05147 17 0.045107 21 0.044288 19 0.041821 15 0.041281 4 0.033117 5 0.032256 6 0.030434 13 0.029861 7 0.029283 8 0.029115 1 0.028911 3 0.028584 2 0.027601 23 0.025258 20 0.015441 12 0.01297 16 0.006595 10 0.098536 18 0.089289 9 0.074293 22 0.06858 0 0.058814 14 0.057093 11 0.05147 17 0.045107 21 0.044288 19 0.041821 15 0.041281 4 0.033117 5 0.032256 6 0.030434 13 0.029861 7 0.029283 8 0.029115 1 0.028911 3 0.028584 2 0.027601 23 0.025258 20 0.015441 12 0.01297 16 0.006595 10 0.07848553486430626 18 0.07814149001379794 22 0.06356310291327293 9 0.06033450337351265 14 0.051714323988062215 11 0.0506985944413016 0 0.05025377797736449 21 0.0496958498520714 19 0.04827452999280072 17 0.0448298003330707 15 0.03886195375212481 13 0.03355026793534762 23 0.031594942029703366 4 0.031073661815468143 5 0.030435597213258496 6 0.02867047197962871 20 0.02865332074668287 7 0.02733870352328294 8 0.027263131457340162 3 0.027091813376983114 1 0.02706768370223345 12 0.02665112311317106 2 0.02625712326077982 16 0.01915976549380375 24 0.01702972598687568 __DUMMY__ 0.003309206863754929 false 1.0 27 10 0.081907 18 0.079837 9 0.074344 22 0.066466 0 0.051662 17 0.044924 4 0.044183 5 0.043379 14 0.042046 3 0.041226 6 0.04064 8 0.040307 1 0.040223 7 0.039985 11 0.039977 2 0.039394 15 0.039322 19 0.03773 21 0.036369 23 0.033277 20 0.015066 24 0.012425 13 0.00906 16 0.006252 10 0.081907 18 0.079837 9 0.074344 22 0.066466 0 0.051662 17 0.044924 4 0.044183 5 0.043379 14 0.042046 3 0.041226 6 0.04064 8 0.040307 1 0.040223 7 0.039985 11 0.039977 2 0.039394 15 0.039322 19 0.03773 21 0.036369 23 0.033277 20 0.015066 24 0.012425 13 0.00906 16 0.006252 18 0.0733386217149456 10 0.07013432707343256 22 0.06157616769260597 9 0.06023892165434854 0 0.04634494674020134 19 0.04580619536738092 14 0.04532237107533824 17 0.044839236069141856 21 0.04452658920016988 11 0.043736050401024094 15 0.040206396764714485 4 0.03664246087741921 5 0.03603100811957465 23 0.035474275428122336 6 0.0339040107868194 3 0.033552926609665884 8 0.033065681325578106 1 0.032916350809620736 7 0.03290515840905193 2 0.0323271145268169 20 0.028805671058983708 13 0.023400625896288697 24 0.02300480097823523 16 0.01944802535427215 12 0.019302381693053233 __DUMMY__ 0.0031496843731944305 false 1.0 28 10 0.084526 18 0.081162 9 0.069039 22 0.064436 14 0.050192 0 0.048244 19 0.048181 15 0.047162 11 0.044765 17 0.04123 21 0.038445 3 0.036997 4 0.036949 5 0.036031 8 0.034704 7 0.034688 1 0.034434 2 0.03318 6 0.03285 20 0.030654 23 0.026575 24 0.017626 16 0.014095 13 0.013835 10 0.084526 18 0.081162 9 0.069039 22 0.064436 14 0.050192 0 0.048244 19 0.048181 15 0.047162 11 0.044765 17 0.04123 21 0.038445 3 0.036997 4 0.036949 5 0.036031 8 0.034704 7 0.034688 1 0.034434 2 0.03318 6 0.03285 20 0.030654 23 0.026575 24 0.017626 16 0.014095 13 0.013835 18 0.0754138677858822 10 0.07380375425479889 22 0.06371380907750228 9 0.05994089333374527 19 0.05172148426038074 11 0.049122540442712775 21 0.047653535310217834 14 0.047633673609557434 0 0.047035024697463956 17 0.04378311924749446 15 0.0399493002595777 20 0.03458245091268349 4 0.032736826099876 5 0.032062753903632064 3 0.031091087086069384 23 0.03009402344493176 8 0.029733163951115693 7 0.029719371822588693 1 0.02950992951420884 6 0.029504168416809785 2 0.028711712920597935 24 0.024226403102459642 13 0.024011278824173362 16 0.02211978543873704 12 0.018965948644246344 __DUMMY__ 0.0031600936385365475 false 1.0 29 19 0.069841 22 0.065472 18 0.065365 20 0.058185 24 0.056483 21 0.054531 23 0.053704 10 0.049221 9 0.047555 3 0.037813 11 0.037385 4 0.03667 5 0.036269 15 0.034993 17 0.034884 14 0.034055 8 0.031935 7 0.031838 1 0.031587 2 0.031582 16 0.030736 6 0.029833 0 0.024245 12 0.015817 19 0.069841 22 0.065472 18 0.065365 20 0.058185 24 0.056483 21 0.054531 23 0.053704 10 0.049221 9 0.047555 3 0.037813 11 0.037385 4 0.03667 5 0.036269 15 0.034993 17 0.034884 14 0.034055 8 0.031935 7 0.031838 1 0.031587 2 0.031582 16 0.030736 6 0.029833 0 0.024245 12 0.015817 18 0.0681847342361869 19 0.06539289694037005 22 0.06396036310283951 21 0.057938532995305686 10 0.054709417083243304 20 0.0530424262191899 24 0.04761821608942585 23 0.046429086132594895 9 0.046010947633038916 11 0.0454532473517001 14 0.04132609703533021 17 0.03863542398780226 15 0.0351722853013218 0 0.031204896994671348 4 0.031072221911707516 16 0.030854147645087985 5 0.030638564848278822 3 0.029924021643596886 12 0.029289638999014378 8 0.026418802413843402 7 0.026379536243929552 1 0.026134809906856047 6 0.02604990765557531 2 0.02597425475379959 13 0.018494718192569263 __DUMMY__ 0.003690804682720761 false 1.0 370 22 0.069227 19 0.0679 17 0.064904 18 0.05991 21 0.057245 16 0.053629 0 0.053481 9 0.049873 11 0.048429 23 0.044275 24 0.04217 20 0.040601 10 0.036833 4 0.035982 5 0.035488 6 0.034311 7 0.03309 12 0.033049 8 0.032938 3 0.032685 1 0.03252 2 0.032419 15 0.00555 14 0.00349 22 0.069227 19 0.0679 17 0.064904 18 0.05991 21 0.057245 16 0.053629 0 0.053481 9 0.049873 11 0.048429 23 0.044275 24 0.04217 20 0.040601 10 0.036833 4 0.035982 5 0.035488 6 0.034311 7 0.03309 12 0.033049 8 0.032938 3 0.032685 1 0.03252 2 0.032419 15 0.00555 14 0.00349 22 0.06432245520779133 19 0.060617689864971264 18 0.05902148338202439 21 0.05642737061080017 17 0.05520404529919634 9 0.04855800458560016 11 0.04821414461698507 0 0.04763150833234387 16 0.04367360337011824 23 0.04276679670129248 10 0.042241945637765024 24 0.04065962772245861 20 0.03989916478659969 12 0.03589513989263087 4 0.0351375670035485 5 0.034637167823897315 6 0.03324904579299256 7 0.032085142790986246 8 0.032031542719260175 3 0.03202374621131662 1 0.03171664072465421 2 0.03144792851752205 14 0.01870040686678871 15 0.015832923409985235 13 0.014226354179719694 __DUMMY__ 0.003778553948751003 false 1.0 371 19 0.06972 17 0.068679 22 0.066304 18 0.066269 0 0.061544 16 0.059895 9 0.054709 10 0.053714 11 0.050758 21 0.04395 20 0.037493 23 0.033791 4 0.032233 5 0.03185 6 0.031045 24 0.031035 8 0.030841 3 0.030742 7 0.030494 1 0.030268 2 0.030151 15 0.021986 12 0.01976 14 0.012768 19 0.06972 17 0.068679 22 0.066304 18 0.066269 0 0.061544 16 0.059895 9 0.054709 10 0.053714 11 0.050758 21 0.04395 20 0.037493 23 0.033791 4 0.032233 5 0.03185 6 0.031045 24 0.031035 8 0.030841 3 0.030742 7 0.030494 1 0.030268 2 0.030151 15 0.021986 12 0.01976 14 0.012768 22 0.0649467929145591 19 0.06329591235868778 18 0.06296323300112029 17 0.061382986928269184 0 0.055993459766642044 11 0.0529150978501306 9 0.05162882383510103 10 0.05161741020906682 16 0.05114796695091653 21 0.04960169495186325 20 0.03642008559797062 23 0.03571887997305407 24 0.03302915497477313 4 0.03220787812526903 5 0.03178186945784604 6 0.030909113724840155 8 0.030099474363499152 7 0.029922794534159948 3 0.029811449584423375 1 0.029711528987852138 2 0.029442918755547613 12 0.028775745586590476 15 0.022210582409171203 14 0.02011819109644667 13 0.011621004362199285 __DUMMY__ 0.002725949700000238 false 1.0 130 9 0.063572 4 0.056995 22 0.056953 3 0.05678 5 0.056728 8 0.056297 7 0.056122 1 0.055833 2 0.055805 6 0.055715 0 0.047398 17 0.047281 23 0.041395 18 0.039773 21 0.037062 24 0.036016 10 0.033156 19 0.032939 11 0.031448 16 0.026148 20 0.019228 15 0.0147 12 0.012934 14 0.009721 9 0.063572 4 0.056995 22 0.056953 3 0.05678 5 0.056728 8 0.056297 7 0.056122 1 0.055833 2 0.055805 6 0.055715 0 0.047398 17 0.047281 23 0.041395 18 0.039773 21 0.037062 24 0.036016 10 0.033156 19 0.032939 11 0.031448 16 0.026148 20 0.019228 15 0.0147 12 0.012934 14 0.009721 9 0.06001401703762051 22 0.05872925047651514 4 0.05050641868893205 5 0.050087480675407026 17 0.04944522716952446 6 0.04938305823698197 8 0.04921622990691242 7 0.04911240919037874 3 0.04903771948470313 0 0.04898944079263374 1 0.048895316653881596 2 0.048588837108549665 18 0.04551572426016335 21 0.04168678971565485 23 0.03985850655712074 10 0.0381988330712585 11 0.037913149891616246 19 0.03761454867706828 24 0.034065888122208586 16 0.02927113942965605 20 0.021670021389541678 12 0.019759220649475044 15 0.017106809307322876 14 0.015199072427728931 13 0.0075527291449505665 __DUMMY__ 0.0025821619341940888 false 1.0 372 16 0.088541 17 0.082923 0 0.069017 19 0.068622 18 0.05371 22 0.049674 11 0.04872 9 0.040093 20 0.039556 23 0.03908 10 0.037801 12 0.034186 6 0.033863 21 0.03332 8 0.032389 7 0.032285 1 0.032058 2 0.031855 4 0.030732 5 0.030291 24 0.029676 3 0.028259 15 0.024433 13 0.008917 16 0.088541 17 0.082923 0 0.069017 19 0.068622 18 0.05371 22 0.049674 11 0.04872 9 0.040093 20 0.039556 23 0.03908 10 0.037801 12 0.034186 6 0.033863 21 0.03332 8 0.032389 7 0.032285 1 0.032058 2 0.031855 4 0.030732 5 0.030291 24 0.029676 3 0.028259 15 0.024433 13 0.008917 17 0.0716338396378996 16 0.06911968086289105 0 0.061450033106675274 19 0.0601355940235991 18 0.05407428046234812 22 0.052895041614239253 11 0.04746642270906195 9 0.04409353887121948 10 0.04012845731795793 23 0.039092341229605906 21 0.038995647525102914 20 0.035902976180239826 6 0.03545562802457207 12 0.034185041763302115 8 0.03396483256785812 7 0.033877762541468896 4 0.0337161415683453 1 0.03370062115276767 2 0.03334472039830732 5 0.033253698122040556 24 0.030990209886424112 3 0.0308274402303258 15 0.024285126007691032 13 0.01423378610195051 14 0.00963317405884137 __DUMMY__ 0.003543964035264533 false 1.0 131 9 0.074775 22 0.060599 4 0.059558 5 0.059462 8 0.059162 7 0.059066 6 0.058927 1 0.058902 3 0.058551 2 0.058475 0 0.055065 17 0.049754 18 0.045025 10 0.044252 23 0.033522 21 0.032728 11 0.031185 19 0.023405 24 0.021354 16 0.017319 15 0.016289 14 0.012338 12 0.005463 20 0.004825 9 0.074775 22 0.060599 4 0.059558 5 0.059462 8 0.059162 7 0.059066 6 0.058927 1 0.058902 3 0.058551 2 0.058475 0 0.055065 17 0.049754 18 0.045025 10 0.044252 23 0.033522 21 0.032728 11 0.031185 19 0.023405 24 0.021354 16 0.017319 15 0.016289 14 0.012338 12 0.005463 20 0.004825 9 0.06676925222572876 22 0.058390324442287145 4 0.05427170648728298 5 0.05394758503539162 6 0.05373625734553322 8 0.0535294528112808 7 0.05347824095845734 1 0.053343189348185036 0 0.05322566429509638 2 0.05281025431900088 3 0.052648754299179194 17 0.05041793598084265 18 0.04637037744062585 10 0.04319130196395705 23 0.03620720067710744 21 0.03592974992104649 11 0.0350966563435572 19 0.02985631233598589 24 0.0253028426547042 16 0.02405575524032607 15 0.018259142298239873 14 0.0150682685771174 12 0.013328895421135308 20 0.01250123166601034 13 0.006079467502593258 __DUMMY__ 0.0021841804093277874 false 1.0 373 17 0.085574 16 0.082167 0 0.078519 11 0.053919 19 0.051524 22 0.04896 18 0.047212 9 0.044088 12 0.042697 6 0.039931 10 0.036877 8 0.036726 7 0.036626 1 0.036503 2 0.035878 4 0.034504 23 0.03402 5 0.033936 21 0.033298 3 0.029401 13 0.022047 20 0.020779 15 0.017801 24 0.017014 17 0.085574 16 0.082167 0 0.078519 11 0.053919 19 0.051524 22 0.04896 18 0.047212 9 0.044088 12 0.042697 6 0.039931 10 0.036877 8 0.036726 7 0.036626 1 0.036503 2 0.035878 4 0.034504 23 0.03402 5 0.033936 21 0.033298 3 0.029401 13 0.022047 20 0.020779 15 0.017801 24 0.017014 17 0.07511179262620521 0 0.06894743113071496 16 0.0670369522094238 22 0.052073038721524745 18 0.04977980185883297 11 0.04972650580136001 19 0.04951008633152552 9 0.04753227155576867 6 0.040312209073714654 10 0.03949962808411353 8 0.037891693230033975 7 0.037792268938248434 1 0.03767646116363307 2 0.037107357558197065 4 0.036964205133130174 12 0.03670016055583777 21 0.03644950876137304 5 0.03644149011034605 23 0.03544132483753127 3 0.0327260017903221 20 0.023466286867218057 24 0.02228592953891505 15 0.02038110132066124 13 0.01921389980242652 14 0.007244954543641411 __DUMMY__ 0.00268763845530058 false 1.0 132 18 0.082104 19 0.078302 22 0.068747 20 0.0632 17 0.059265 21 0.055905 24 0.050989 9 0.050651 23 0.045778 10 0.044967 16 0.04491 0 0.038923 11 0.036863 4 0.030548 5 0.030049 3 0.027727 12 0.0272 8 0.02686 6 0.026825 7 0.026339 1 0.02579 2 0.025251 15 0.018548 14 0.014258 18 0.082104 19 0.078302 22 0.068747 20 0.0632 17 0.059265 21 0.055905 24 0.050989 9 0.050651 23 0.045778 10 0.044967 16 0.04491 0 0.038923 11 0.036863 4 0.030548 5 0.030049 3 0.027727 12 0.0272 8 0.02686 6 0.026825 7 0.026339 1 0.02579 2 0.025251 15 0.018548 14 0.014258 18 0.07275698919472857 19 0.0692151124884129 22 0.06671996865625597 21 0.058510377554923304 20 0.05509019124754774 17 0.05197065349907226 9 0.0489266443876172 24 0.04858903797415405 10 0.04633034000199171 23 0.0440177943016003 11 0.04316104939609306 16 0.038753357898668885 0 0.03818485811851098 12 0.032539648043107695 4 0.03133841958308491 5 0.030824167558814806 3 0.028604183194431067 6 0.027764448706665765 8 0.027424728145040066 7 0.02716827129379586 1 0.026757405467660842 2 0.026287119255874253 14 0.023791402517884523 15 0.021460598411319143 13 0.011383035356622771 __DUMMY__ 0.0024301977461213308 false 1.0 374 16 0.101021 19 0.088846 17 0.084714 18 0.062223 0 0.062198 20 0.058338 22 0.052444 11 0.046589 23 0.044867 24 0.041175 21 0.037788 10 0.037193 12 0.0331 9 0.032756 15 0.029331 6 0.024249 8 0.023917 7 0.023861 1 0.023662 2 0.023447 4 0.022607 5 0.022434 3 0.021647 13 0.001595 16 0.101021 19 0.088846 17 0.084714 18 0.062223 0 0.062198 20 0.058338 22 0.052444 11 0.046589 23 0.044867 24 0.041175 21 0.037788 10 0.037193 12 0.0331 9 0.032756 15 0.029331 6 0.024249 8 0.023917 7 0.023861 1 0.023662 2 0.023447 4 0.022607 5 0.022434 3 0.021647 13 0.001595 16 0.07528481458528068 19 0.07460685242521667 17 0.07034571564645828 18 0.06063497286349652 22 0.05534158156647231 0 0.05480603423728573 20 0.05035469783631437 11 0.048525420995371764 21 0.04587901674310785 23 0.043241312912285446 10 0.040675978195570416 24 0.040029674027423016 12 0.03796022110390736 9 0.03751856300502104 15 0.027426125785376246 6 0.02677623629434723 4 0.02636577590960427 5 0.026038733439806193 8 0.025768338971638886 7 0.025718433889368078 1 0.025532253111873866 2 0.025214356123858656 3 0.02406673442273347 13 0.01406903699894258 14 0.013373808108649592 __DUMMY__ 0.004445310800589452 false 1.0 375 11 0.10249 21 0.097539 22 0.091513 18 0.079301 19 0.075897 12 0.075581 10 0.07082 0 0.059647 17 0.053625 13 0.0486 9 0.043311 14 0.040553 16 0.03683 20 0.034497 23 0.031981 24 0.031669 4 0.008715 5 0.008387 6 0.004742 15 0.002934 3 5.52E-4 8 3.74E-4 1 3.42E-4 2 1.0E-4 11 0.10249 21 0.097539 22 0.091513 18 0.079301 19 0.075897 12 0.075581 10 0.07082 0 0.059647 17 0.053625 13 0.0486 9 0.043311 14 0.040553 16 0.03683 20 0.034497 23 0.031981 24 0.031669 4 0.008715 5 0.008387 6 0.004742 15 0.002934 3 5.52E-4 8 3.74E-4 1 3.42E-4 2 1.0E-4 11 0.08662890045262091 21 0.0853582389017987 22 0.07913238878887041 18 0.0724033289714531 12 0.06976448022018417 19 0.06614678645262513 10 0.06561835129343047 0 0.05368251365071633 13 0.05187051366046926 17 0.048915769847606566 14 0.04436303576769991 9 0.04301348490408128 20 0.035573214971424946 16 0.033560693070315076 23 0.03308704319957664 24 0.03179420789939144 4 0.015471935156932357 5 0.015087609617666996 6 0.012592890450391163 15 0.011466057344661017 8 0.008639499443601577 1 0.008547867362728718 7 0.008491704126092958 2 0.008276203433184925 3 0.00827107795073463 __DUMMY__ 0.0022422030617411234 false 1.0 133 9 0.064651 22 0.058781 18 0.0548 4 0.052565 5 0.052209 3 0.050543 8 0.050473 6 0.050438 7 0.050044 1 0.049543 2 0.049263 17 0.048401 23 0.042923 0 0.042211 19 0.040963 10 0.039794 21 0.039118 24 0.036665 20 0.029088 11 0.025959 16 0.024162 15 0.019749 14 0.014598 12 0.013058 9 0.064651 22 0.058781 18 0.0548 4 0.052565 5 0.052209 3 0.050543 8 0.050473 6 0.050438 7 0.050044 1 0.049543 2 0.049263 17 0.048401 23 0.042923 0 0.042211 19 0.040963 10 0.039794 21 0.039118 24 0.036665 20 0.029088 11 0.025959 16 0.024162 15 0.019749 14 0.014598 12 0.013058 9 0.06202723361756836 22 0.05641759841972808 4 0.05277509880590154 5 0.05234755545611238 6 0.05134577767657755 8 0.05120188745789654 7 0.05102612476988253 3 0.050893590367706416 1 0.050760265109141035 2 0.05026623806959557 18 0.04933999095785184 17 0.047383031580245 0 0.04474478188298116 23 0.04222204234045723 10 0.03950504083755297 21 0.03832867339603723 19 0.036337694717353736 24 0.0338692777358214 11 0.030317549332339794 16 0.02478245235767446 20 0.024038882038136727 15 0.020204321060732406 14 0.016498480803271726 12 0.015954407936316247 13 0.005788582474733227 __DUMMY__ 0.0016234207983849558 false 1.0 134 21 0.089306 23 0.074078 12 0.073526 22 0.067606 24 0.063344 11 0.057441 19 0.054134 13 0.046992 18 0.043636 20 0.041524 4 0.036933 5 0.035195 6 0.03292 14 0.031128 9 0.029649 7 0.029012 8 0.028817 1 0.028238 17 0.02801 3 0.027283 2 0.026809 0 0.019399 10 0.017611 16 0.017409 21 0.089306 23 0.074078 12 0.073526 22 0.067606 24 0.063344 11 0.057441 19 0.054134 13 0.046992 18 0.043636 20 0.041524 4 0.036933 5 0.035195 6 0.03292 14 0.031128 9 0.029649 7 0.029012 8 0.028817 1 0.028238 17 0.02801 3 0.027283 2 0.026809 0 0.019399 10 0.017611 16 0.017409 21 0.0778787522758423 12 0.0655005465719226 23 0.0645922099158136 22 0.06192269912556704 24 0.05668422876838094 19 0.05413413309595954 11 0.05251474342221468 18 0.04759380961587931 13 0.04435558222660277 20 0.04344055333699988 4 0.035446212074027275 5 0.034368882784286015 14 0.032908252646074 9 0.032736112761311144 17 0.03261874337722786 6 0.03233263390634457 7 0.029183737211829593 8 0.02902278523707061 1 0.02867544918910835 3 0.028208949328634544 2 0.02781087417522492 10 0.02615455679004667 0 0.025068477269554197 16 0.02389609662438774 15 0.009305184171056219 __DUMMY__ 0.0036457940986336446 false 1.0 376 16 0.087871 17 0.08117 0 0.063512 19 0.05865 18 0.044796 11 0.043998 22 0.042967 23 0.041949 12 0.040411 20 0.039855 6 0.038815 8 0.037025 7 0.036886 1 0.036768 2 0.036182 24 0.035185 9 0.0349 4 0.03455 5 0.033997 21 0.031772 3 0.031373 15 0.02652 10 0.025146 13 0.015701 16 0.087871 17 0.08117 0 0.063512 19 0.05865 18 0.044796 11 0.043998 22 0.042967 23 0.041949 12 0.040411 20 0.039855 6 0.038815 8 0.037025 7 0.036886 1 0.036768 2 0.036182 24 0.035185 9 0.0349 4 0.03455 5 0.033997 21 0.031772 3 0.031373 15 0.02652 10 0.025146 13 0.015701 17 0.0736157592462586 16 0.07125774561226793 0 0.06149113106507607 19 0.05434585124968813 18 0.049398612261804566 22 0.049106383990177346 11 0.04506270907798271 9 0.042228702326331316 23 0.03937238242276625 6 0.03872272341962299 8 0.036969899694788824 7 0.03684590888486844 1 0.036726820037243056 2 0.03618189346210895 12 0.036139079639067456 21 0.036001998221116355 4 0.03593240638840088 5 0.0354147414915753 20 0.03407712796886135 10 0.03390551595933539 3 0.0325976361287262 24 0.03160153355094696 15 0.025734686843339058 13 0.016486025137968593 14 0.007825877562872216 __DUMMY__ 0.0029568483568052106 false 1.0 135 23 0.085441 12 0.069293 24 0.066406 21 0.065426 13 0.049177 4 0.048164 6 0.047276 5 0.047201 20 0.046612 7 0.044284 8 0.044137 1 0.043877 2 0.042859 19 0.042264 3 0.04161 22 0.03982 11 0.028883 16 0.02766 17 0.025386 18 0.025225 14 0.023238 9 0.020944 0 0.014522 15 0.010298 23 0.085441 12 0.069293 24 0.066406 21 0.065426 13 0.049177 4 0.048164 6 0.047276 5 0.047201 20 0.046612 7 0.044284 8 0.044137 1 0.043877 2 0.042859 19 0.042264 3 0.04161 22 0.03982 11 0.028883 16 0.02766 17 0.025386 18 0.025225 14 0.023238 9 0.020944 0 0.014522 15 0.010298 21 0.06933028121853065 23 0.06912916075907315 12 0.06559663050648418 24 0.058628999345929814 19 0.0504616747023681 22 0.05037503330753292 13 0.0470298612283657 20 0.04692845206966042 11 0.04131558573416527 18 0.04028858524887856 4 0.03876773726105417 5 0.03802613538764485 6 0.03694185131716295 7 0.034112373218196795 8 0.03397080339134964 1 0.03376224016715457 2 0.033073761001836385 3 0.0327623128757673 17 0.03145739766925115 14 0.030873035286419867 16 0.029024694372864413 9 0.02797421142241761 0 0.022643408142952813 10 0.01879452206826496 15 0.014070908461653119 __DUMMY__ 0.004660343835020759 false 1.0 377 17 0.085255 0 0.08084 16 0.075645 9 0.051098 11 0.050687 22 0.050211 18 0.045798 6 0.044974 19 0.04394 8 0.042197 7 0.042121 1 0.041971 2 0.041309 4 0.03963 10 0.039323 5 0.038888 3 0.035113 12 0.031713 23 0.02971 21 0.027345 15 0.021903 13 0.015106 20 0.013074 24 0.012149 17 0.085255 0 0.08084 16 0.075645 9 0.051098 11 0.050687 22 0.050211 18 0.045798 6 0.044974 19 0.04394 8 0.042197 7 0.042121 1 0.041971 2 0.041309 4 0.03963 10 0.039323 5 0.038888 3 0.035113 12 0.031713 23 0.02971 21 0.027345 15 0.021903 13 0.015106 20 0.013074 24 0.012149 17 0.0747855052351926 0 0.0698336039151154 16 0.06376075500795853 22 0.05251417840117769 9 0.050899543928231115 18 0.049031368796238005 11 0.04787842397051449 19 0.045712847822530496 6 0.042800666660873336 8 0.040613484035829435 10 0.040612071673296786 7 0.040522342616998996 1 0.04039180933858128 2 0.03981086421804116 4 0.039503587662986166 5 0.038901946767733245 3 0.03558787934730195 21 0.0334617415767579 23 0.03339765086178482 12 0.03126825644612673 15 0.022790678260237764 24 0.020058847025566245 20 0.019873673246985506 13 0.01596842355023893 14 0.007565501966061544 __DUMMY__ 0.002454347667639889 false 1.0 136 19 0.07614 23 0.070095 16 0.064683 20 0.061658 18 0.059944 17 0.056891 24 0.051655 22 0.044986 4 0.038573 5 0.037918 6 0.036892 7 0.036801 8 0.036677 1 0.036443 21 0.036206 9 0.035945 3 0.035924 2 0.035164 0 0.032897 15 0.031318 10 0.029793 12 0.024283 11 0.020158 14 0.008957 19 0.07614 23 0.070095 16 0.064683 20 0.061658 18 0.059944 17 0.056891 24 0.051655 22 0.044986 4 0.038573 5 0.037918 6 0.036892 7 0.036801 8 0.036677 1 0.036443 21 0.036206 9 0.035945 3 0.035924 2 0.035164 0 0.032897 15 0.031318 10 0.029793 12 0.024283 11 0.020158 14 0.008957 23 0.05658717129505152 19 0.052587363378225976 18 0.05094862525016131 17 0.05023167186579253 22 0.048810774512448786 9 0.04734121356072622 4 0.04654879163433934 5 0.04600593438734501 6 0.04532820874601409 7 0.04509944754703609 8 0.04501151720933988 1 0.044906547841559605 3 0.04432981120852305 2 0.043976643937438456 16 0.04335146687076231 24 0.04214830630778489 20 0.04037374651549301 0 0.03882854174866471 21 0.037157428067879174 10 0.033421350676714534 11 0.02647913580746827 15 0.025568749775919244 12 0.022511458608449057 14 0.014010815683573362 13 0.006954442674764055 __DUMMY__ 0.001480834888525476 false 1.0 378 17 0.083762 16 0.08326 0 0.075824 19 0.051803 11 0.050402 22 0.046379 18 0.045952 9 0.042783 12 0.042285 6 0.040643 8 0.037716 7 0.037635 1 0.03742 2 0.037027 23 0.035538 10 0.035382 4 0.035235 5 0.034784 21 0.031346 3 0.030817 20 0.02422 13 0.021852 24 0.019007 15 0.018928 17 0.083762 16 0.08326 0 0.075824 19 0.051803 11 0.050402 22 0.046379 18 0.045952 9 0.042783 12 0.042285 6 0.040643 8 0.037716 7 0.037635 1 0.03742 2 0.037027 23 0.035538 10 0.035382 4 0.035235 5 0.034784 21 0.031346 3 0.030817 20 0.02422 13 0.021852 24 0.019007 15 0.018928 17 0.07419005629609741 16 0.067770136524078 0 0.06731080257998308 22 0.050737056394980426 19 0.050000112947772186 18 0.049320944104068586 11 0.04795110365215135 9 0.04654519832438188 6 0.0403755233067809 10 0.03863360938026178 8 0.03808434151711218 7 0.03799162781705378 1 0.03783145515765564 2 0.03737192904549386 4 0.0370598723235292 12 0.03679181548193589 5 0.036589769620926034 23 0.03636705024264888 21 0.03570214897196623 3 0.03313446112337438 20 0.025665456316693105 24 0.023610001082351922 15 0.021243227439309075 13 0.019352355396548185 14 0.0075094688397302975 __DUMMY__ 0.0028604761131159934 false 1.0 137 19 0.12715 16 0.113091 20 0.087189 18 0.086808 17 0.082929 22 0.062016 11 0.053932 10 0.053384 21 0.052792 0 0.050956 23 0.050879 24 0.049915 15 0.040891 12 0.03695 9 0.023955 14 0.016035 5 0.003718 4 0.003329 3 0.001742 6 9.17E-4 13 6.42E-4 1 3.32E-4 7 3.24E-4 8 1.22E-4 19 0.12715 16 0.113091 20 0.087189 18 0.086808 17 0.082929 22 0.062016 11 0.053932 10 0.053384 21 0.052792 0 0.050956 23 0.050879 24 0.049915 15 0.040891 12 0.03695 9 0.023955 14 0.016035 5 0.003718 4 0.003329 3 0.001742 6 9.17E-4 13 6.42E-4 1 3.32E-4 7 3.24E-4 8 1.22E-4 19 0.09243582002213073 16 0.07701317315566404 18 0.07329027486870637 17 0.06631593527119505 20 0.06489448040447218 22 0.06012299356452142 21 0.05348376346151332 11 0.05071643013620011 10 0.04998787488131527 0 0.04713189016364308 23 0.046869293512322635 24 0.044914005699549724 12 0.03824432175603142 9 0.03421965229937852 15 0.03370998678735609 14 0.023344774273415823 4 0.01776916522907096 5 0.017689560090552666 6 0.015743228260591314 3 0.015469147424940087 7 0.014867435807638286 8 0.014778138126670488 1 0.014752703450123273 2 0.014381529445823715 13 0.013648654010787324 __DUMMY__ 0.004205767896386179 false 1.0 379 16 0.086519 17 0.081947 0 0.066765 19 0.056179 18 0.045077 22 0.043221 11 0.043197 6 0.040271 23 0.03957 8 0.038394 7 0.038289 9 0.038134 1 0.038048 2 0.037766 12 0.036963 20 0.035878 4 0.035754 5 0.035292 3 0.032815 24 0.031036 21 0.029061 10 0.028479 15 0.026978 13 0.014366 16 0.086519 17 0.081947 0 0.066765 19 0.056179 18 0.045077 22 0.043221 11 0.043197 6 0.040271 23 0.03957 8 0.038394 7 0.038289 9 0.038134 1 0.038048 2 0.037766 12 0.036963 20 0.035878 4 0.035754 5 0.035292 3 0.032815 24 0.031036 21 0.029061 10 0.028479 15 0.026978 13 0.014366 17 0.073520376956705 16 0.06987031709599582 0 0.06283655707064745 19 0.05272999341954719 18 0.0492983744509924 22 0.04925173495966454 11 0.044529662245402744 9 0.04403094646253312 6 0.03973612879879762 23 0.03832160774727074 8 0.037963582725052895 7 0.03785827665211654 1 0.03768219812551082 2 0.03727576256781571 4 0.03687029625886568 5 0.03639356956187599 10 0.035451305871727984 21 0.034718336531656326 12 0.03429541517565798 3 0.033669484074955444 20 0.03187075980835336 24 0.02960559329042537 15 0.0256413326340212 13 0.015776658322994512 14 0.007813179410659154 __DUMMY__ 0.0029885497807543345 false 1.0 138 22 0.084846 21 0.068638 11 0.067993 9 0.066384 18 0.062175 0 0.060233 17 0.057353 19 0.055133 10 0.055111 4 0.035693 5 0.034941 6 0.032596 12 0.032411 3 0.031421 7 0.03085 8 0.03075 1 0.030656 24 0.030402 2 0.030124 16 0.029026 23 0.027027 20 0.019046 14 0.017916 13 0.009276 22 0.084846 21 0.068638 11 0.067993 9 0.066384 18 0.062175 0 0.060233 17 0.057353 19 0.055133 10 0.055111 4 0.035693 5 0.034941 6 0.032596 12 0.032411 3 0.031421 7 0.03085 8 0.03075 1 0.030656 24 0.030402 2 0.030124 16 0.029026 23 0.027027 20 0.019046 14 0.017916 13 0.009276 22 0.07355987260900101 9 0.06163383125222777 21 0.058645267889785295 11 0.05618113142162231 18 0.05524905431743773 0 0.05348483622278397 17 0.05238569443197435 19 0.04810026600760544 10 0.04783299971114731 4 0.04094590551875122 5 0.04033068891601016 6 0.0385387938026983 3 0.037715082978694955 7 0.03739637270463384 8 0.03735196842083496 1 0.037213606374740034 2 0.03668703475724443 23 0.03368136584892133 24 0.03325696025591603 12 0.028839615560446435 16 0.02863423155092174 20 0.021555827528479978 14 0.01919480572612427 13 0.010881619021277895 15 0.008744200242137038 __DUMMY__ 0.0019589669285821763 false 1.0 139 21 0.100022 12 0.089518 23 0.074344 13 0.070036 22 0.064728 11 0.064327 24 0.063277 14 0.042428 19 0.041413 4 0.036992 6 0.035035 5 0.034981 7 0.031219 1 0.03006 8 0.029889 20 0.029382 2 0.028764 3 0.027272 18 0.025812 17 0.022537 9 0.021558 0 0.017412 16 0.012834 15 0.006161 21 0.100022 12 0.089518 23 0.074344 13 0.070036 22 0.064728 11 0.064327 24 0.063277 14 0.042428 19 0.041413 4 0.036992 6 0.035035 5 0.034981 7 0.031219 1 0.03006 8 0.029889 20 0.029382 2 0.028764 3 0.027272 18 0.025812 17 0.022537 9 0.021558 0 0.017412 16 0.012834 15 0.006161 21 0.0853243850966031 12 0.0741110684884508 23 0.06313424689096145 22 0.0626104713124422 11 0.05810050916484865 24 0.056547027439148065 13 0.056097107288933516 19 0.04813508541095076 14 0.039327871113974525 18 0.039165205677086104 20 0.03662133490093299 4 0.03471197815719337 5 0.03348545572827447 6 0.03240414263293408 17 0.029871507949221218 9 0.029482043776029997 7 0.02918330287854637 8 0.028513665130124675 1 0.028487667644410557 2 0.02767215818541904 3 0.02724678601963805 0 0.02459634574414285 16 0.020701160278367194 10 0.018229425795798754 15 0.011254485513989845 __DUMMY__ 0.004985561781577341 false 1.0 30 10 0.102727 18 0.086739 9 0.078159 22 0.071133 14 0.062278 0 0.060386 11 0.055592 15 0.045963 17 0.043604 21 0.042954 19 0.04074 4 0.033203 5 0.032504 3 0.030994 6 0.029733 8 0.029497 7 0.029237 1 0.029042 2 0.028688 13 0.026925 20 0.015 23 0.013663 12 0.00649 16 0.004751 10 0.102727 18 0.086739 9 0.078159 22 0.071133 14 0.062278 0 0.060386 11 0.055592 15 0.045963 17 0.043604 21 0.042954 19 0.04074 4 0.033203 5 0.032504 3 0.030994 6 0.029733 8 0.029497 7 0.029237 1 0.029042 2 0.028688 13 0.026925 20 0.015 23 0.013663 12 0.00649 16 0.004751 10 0.08107479363195882 18 0.07742521383179582 22 0.0658599569497196 9 0.06324914298111176 11 0.053466692288819645 14 0.05273416438162602 0 0.05232192199466857 21 0.049140344680171456 19 0.04817775115732675 17 0.0451544571330493 15 0.039708881984216904 4 0.031138629361632746 5 0.0305674782296159 13 0.030466138964251863 6 0.028346187447101875 3 0.028331667999030072 20 0.02778252112482838 8 0.027519275073391032 7 0.027391883071735065 1 0.027205239908661152 2 0.026824503153463037 23 0.02505981188034622 12 0.02265433152564522 16 0.018699354622707998 24 0.016468354110248693 __DUMMY__ 0.0032313025128759333 false 1.0 31 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05849037551937839 4 0.05846515768743024 6 0.05839572385457155 7 0.05835130843941272 8 0.058227094507564525 5 0.05809797253779655 2 0.0576144890695877 9 0.057255712576441964 3 0.05702376763183037 22 0.04838473407199656 23 0.046737428935087685 17 0.04609800894654315 0 0.04449143389057229 18 0.03681610809411991 24 0.03457178565536672 21 0.03252464656047028 10 0.029292544545567005 19 0.027592505751547102 11 0.02731732330116835 16 0.026947124518039052 20 0.019051066126036725 12 0.018223790520738976 15 0.018117520761584002 14 0.011040244590627062 13 0.008449914535279766 __DUMMY__ 0.0024222173712412105 false 1.0 32 9 0.067434 3 0.060684 4 0.060261 8 0.059959 7 0.059854 5 0.059713 1 0.059607 2 0.059014 6 0.058559 22 0.053095 0 0.044332 17 0.042369 23 0.04018 18 0.039728 10 0.038656 24 0.031104 21 0.029716 15 0.029174 19 0.026648 11 0.022981 16 0.020355 14 0.01957 20 0.015853 12 0.001154 9 0.067434 3 0.060684 4 0.060261 8 0.059959 7 0.059854 5 0.059713 1 0.059607 2 0.059014 6 0.058559 22 0.053095 0 0.044332 17 0.042369 23 0.04018 18 0.039728 10 0.038656 24 0.031104 21 0.029716 15 0.029174 19 0.026648 11 0.022981 16 0.020355 14 0.01957 20 0.015853 12 0.001154 9 0.062049747356348404 22 0.05507225343837545 4 0.052623950555054116 5 0.05208988148968421 8 0.05172937421922216 7 0.05166892131780929 3 0.05162038809243463 1 0.05148146265091398 6 0.05142283251090162 2 0.050905457349178555 0 0.04728219403789506 17 0.04670452254035471 18 0.04574630374763208 10 0.041854123016655885 23 0.039369975911622015 21 0.035823943237305374 19 0.03360179155519272 11 0.03205248771779833 24 0.030555040177790746 16 0.026268192536160875 15 0.026040885373790443 14 0.020767059325765738 20 0.020082990272881313 12 0.012731130038450545 13 0.007791650371114182 __DUMMY__ 0.0026634411596673318 false 1.0 33 9 0.065785 22 0.05938 0 0.052328 3 0.051421 4 0.051159 8 0.05088 17 0.050798 7 0.050725 1 0.050649 5 0.050493 2 0.04994 6 0.049595 18 0.047777 10 0.045559 19 0.037668 11 0.03674 21 0.035544 23 0.034153 16 0.029794 24 0.029732 15 0.025758 20 0.019639 14 0.018493 12 0.005988 9 0.065785 22 0.05938 0 0.052328 3 0.051421 4 0.051159 8 0.05088 17 0.050798 7 0.050725 1 0.050649 5 0.050493 2 0.04994 6 0.049595 18 0.047777 10 0.045559 19 0.037668 11 0.03674 21 0.035544 23 0.034153 16 0.029794 24 0.029732 15 0.025758 20 0.019639 14 0.018493 12 0.005988 9 0.06232599382875351 22 0.05986423378135118 0 0.05309030600140034 17 0.05233662719137318 18 0.05029255996832262 4 0.04774535395240972 5 0.047137106171165406 8 0.046866281208260245 7 0.04676432686524659 1 0.04663400538352852 3 0.04663253731582811 6 0.04662045805985753 10 0.046037978670971244 2 0.04600913181650326 11 0.04042532040354533 19 0.039723463919800035 21 0.03925306302252495 23 0.035048582882725283 16 0.03172658487630826 24 0.029064762680216034 15 0.02309365435363209 20 0.02083412587096806 14 0.019056146432805468 12 0.01446081512752807 13 0.006331046756551308 __DUMMY__ 0.002625533458423348 false 1.0 34 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06734195401331168 22 0.05830577466741024 0 0.05435780315175795 4 0.0539015909494748 6 0.05340183044371148 7 0.05313175799628477 8 0.053062407506567225 5 0.053030759044958804 1 0.05293118592773378 2 0.05186673626787095 3 0.051662066027645136 17 0.05140708607054703 18 0.04718936672470881 10 0.043960669230956005 21 0.03609875182413426 11 0.03603934918576322 23 0.035803343626229625 19 0.030354275198401656 24 0.024722590269888337 16 0.024610948473193436 15 0.017608243644767277 14 0.015114499186786914 12 0.013114286818486094 20 0.01249872697891547 13 0.006204744057057331 __DUMMY__ 0.0022792527134375597 false 1.0 35 22 0.078423 9 0.063741 21 0.059241 11 0.05492 18 0.050686 19 0.048249 0 0.047055 17 0.046444 10 0.045688 4 0.04325 5 0.04299 3 0.042618 24 0.039933 8 0.039659 7 0.039527 1 0.03916 2 0.039047 6 0.038972 23 0.033645 16 0.026101 14 0.025143 20 0.021218 15 0.018512 12 0.01578 22 0.078423 9 0.063741 21 0.059241 11 0.05492 18 0.050686 19 0.048249 0 0.047055 17 0.046444 10 0.045688 4 0.04325 5 0.04299 3 0.042618 24 0.039933 8 0.039659 7 0.039527 1 0.03916 2 0.039047 6 0.038972 23 0.033645 16 0.026101 14 0.025143 20 0.021218 15 0.018512 12 0.01578 22 0.07134446849042782 9 0.05860164617855211 21 0.05672422456705729 18 0.0530688317667268 11 0.05293667477185449 17 0.04850032670434358 19 0.0484395139148971 0 0.04806745965929648 10 0.04605858170420952 4 0.04080976780562353 5 0.04039813028969149 3 0.03884483644335015 6 0.03787071938873935 8 0.0375763656670772 7 0.0375162756140666 24 0.03725854337203537 1 0.03723092040961201 2 0.03689384058622025 23 0.03585839256679168 16 0.029674347485848594 20 0.025057508280117102 14 0.025048112633532623 12 0.024637298010196033 15 0.01838787341203369 13 0.009975811528992743 __DUMMY__ 0.00321952874870655 false 1.0 36 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05848098342210469 4 0.05845572505512985 6 0.05838981207254563 7 0.058341651835306554 8 0.058217397350562264 5 0.05808904393809213 2 0.05760562668707855 9 0.057226368450630866 3 0.057010039673421053 22 0.04836623960268317 23 0.046754688328836655 17 0.046101390671976425 0 0.044485653790720364 18 0.03681235842166045 24 0.03457901094076373 21 0.032528911727256374 10 0.029276544350448797 19 0.0275986200796182 11 0.027318227406694658 16 0.026966071395786197 20 0.019067774110287337 12 0.018266096123253382 15 0.018112147165209237 14 0.01103704040116898 13 0.008483041222099795 __DUMMY__ 0.002429535776664596 false 1.0 37 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0584809834221047 4 0.05845572505512985 6 0.058389812072545635 7 0.05834165183530656 8 0.05821739735056227 5 0.05808904393809214 2 0.05760562668707856 9 0.05722636845063088 3 0.05701003967342106 22 0.04836623960268318 23 0.04675468832883666 17 0.04610139067197643 0 0.04448565379072037 18 0.03681235842166045 24 0.03457901094076373 21 0.03252891172725638 10 0.0292765443504488 19 0.027598620079618205 11 0.027318227406694668 16 0.026966071395786207 20 0.01906777411028734 12 0.018266096123253386 15 0.018112147165209237 14 0.011037040401168981 13 0.008483041222099795 __DUMMY__ 0.002429535776664597 false 1.0 38 9 0.067885 3 0.060218 4 0.060119 8 0.059868 7 0.059817 1 0.059611 5 0.059124 2 0.058566 6 0.058413 22 0.052612 0 0.043924 17 0.042986 23 0.040562 18 0.040217 10 0.038504 24 0.031399 21 0.02974 15 0.028869 19 0.026685 11 0.023305 16 0.020263 14 0.019705 20 0.016287 12 0.001318 9 0.067885 3 0.060218 4 0.060119 8 0.059868 7 0.059817 1 0.059611 5 0.059124 2 0.058566 6 0.058413 22 0.052612 0 0.043924 17 0.042986 23 0.040562 18 0.040217 10 0.038504 24 0.031399 21 0.02974 15 0.028869 19 0.026685 11 0.023305 16 0.020263 14 0.019705 20 0.016287 12 0.001318 9 0.06223947593029911 22 0.05481763646178405 4 0.05256610800603195 5 0.05182570188303356 8 0.05169718532054967 7 0.05166190987151815 1 0.051493957731464146 3 0.051411780634058026 6 0.05136649278532615 2 0.05070883141278074 0 0.047080664253514766 17 0.0469844727822479 18 0.045960574697232186 10 0.04176514318199546 23 0.03956623584768397 21 0.035816069662823476 19 0.03360686364217648 11 0.03217805597771834 24 0.030695532629212444 16 0.026230517224546696 15 0.025907034355563175 14 0.020825627994838027 20 0.020294102079919843 12 0.0128212410709495 13 0.007810057112201097 __DUMMY__ 0.0026687274505309984 false 1.0 39 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058478244221544746 4 0.058453176568867 6 0.0583876433829416 7 0.05833889008924157 8 0.05821462798690033 5 0.05808659413691672 2 0.05760297848651808 9 0.057223425333785875 3 0.05700678523289562 22 0.04836674074355721 23 0.04675515841019199 17 0.04610334250817294 0 0.044487043255463564 18 0.036813283986410955 24 0.03457928031503458 21 0.03253167703665909 10 0.029275959366801486 19 0.02760096186484245 11 0.027321831523134926 16 0.026969128333155127 20 0.019069003404237925 12 0.018272242464939248 15 0.018109220248860917 14 0.011035851151989493 13 0.008486556382573672 __DUMMY__ 0.002430353564362925 false 1.0 380 17 0.062772 0 0.055073 9 0.054091 16 0.052984 22 0.051045 8 0.05036 7 0.050202 1 0.049957 6 0.049869 2 0.049704 4 0.048984 3 0.048901 5 0.048488 19 0.041979 18 0.041224 23 0.037325 24 0.03362 11 0.033464 15 0.030996 10 0.030828 21 0.029192 20 0.026769 12 0.013244 14 0.008929 17 0.062772 0 0.055073 9 0.054091 16 0.052984 22 0.051045 8 0.05036 7 0.050202 1 0.049957 6 0.049869 2 0.049704 4 0.048984 3 0.048901 5 0.048488 19 0.041979 18 0.041224 23 0.037325 24 0.03362 11 0.033464 15 0.030996 10 0.030828 21 0.029192 20 0.026769 12 0.013244 14 0.008929 17 0.06053681483803141 0 0.053751234963818964 22 0.052963198505952824 9 0.0521371314516896 16 0.04964406984552302 18 0.04717741294772605 19 0.045007097617743325 6 0.044668772468982106 8 0.04437316928662162 7 0.04424574307482321 4 0.044133430461986284 1 0.044041695142963536 2 0.04369271463081327 5 0.04364045981213768 3 0.042748011479738605 11 0.038141572742816994 23 0.0380107677792737 10 0.03667363251048673 21 0.035307123108103876 24 0.03280869842991905 15 0.02956981490112321 20 0.028785045833449437 12 0.021233054428724047 14 0.015082603560471702 13 0.008838200369788761 __DUMMY__ 0.0027885298072909694 false 1.0 381 14 0.121546 15 0.115736 18 0.103513 10 0.0958 20 0.078475 13 0.070326 19 0.065983 21 0.048858 22 0.046931 11 0.037723 9 0.035245 12 0.03344 24 0.033384 23 0.029969 17 0.028001 16 0.022168 0 0.015603 4 0.005584 5 0.004961 3 0.003658 7 0.00105 6 8.56E-4 8 8.24E-4 1 3.65E-4 14 0.121546 15 0.115736 18 0.103513 10 0.0958 20 0.078475 13 0.070326 19 0.065983 21 0.048858 22 0.046931 11 0.037723 9 0.035245 12 0.03344 24 0.033384 23 0.029969 17 0.028001 16 0.022168 0 0.015603 4 0.005584 5 0.004961 3 0.003658 7 0.00105 6 8.56E-4 8 8.24E-4 1 3.65E-4 14 0.09375169236200176 18 0.08775214170225963 15 0.0846674158670131 10 0.08019157158792915 20 0.0637980088631341 13 0.06148442416943388 19 0.06105028750036239 21 0.05285008965824768 22 0.050812810551790266 11 0.0435406283157457 12 0.03968217438250006 9 0.03818727408607322 24 0.03382302606607444 17 0.03353903095800674 23 0.033360830846013406 16 0.02579474110592418 0 0.025288794545087815 4 0.014157025619264864 5 0.013671134298954026 3 0.011339929948615542 6 0.010551909057818077 7 0.009770921294511504 8 0.009691132793303305 1 0.009365985559556311 2 0.009054725061185083 __DUMMY__ 0.002822293799193766 false 1.0 382 14 0.163422 15 0.157877 13 0.106301 10 0.099061 18 0.091877 20 0.064255 19 0.043821 21 0.041993 12 0.036805 22 0.034854 11 0.03414 9 0.032247 23 0.021868 24 0.021566 17 0.016399 16 0.010496 0 0.009276 4 0.004635 5 0.004557 3 0.002316 6 0.001113 8 5.17E-4 1 3.76E-4 7 2.25E-4 14 0.163422 15 0.157877 13 0.106301 10 0.099061 18 0.091877 20 0.064255 19 0.043821 21 0.041993 12 0.036805 22 0.034854 11 0.03414 9 0.032247 23 0.021868 24 0.021566 17 0.016399 16 0.010496 0 0.009276 4 0.004635 5 0.004557 3 0.002316 6 0.001113 8 5.17E-4 1 3.76E-4 7 2.25E-4 14 0.11459665354341297 15 0.1050485414512961 13 0.08171385952533197 18 0.08020198255523323 10 0.0786734395105633 20 0.0576474638479224 21 0.05098862326253117 19 0.050037494727148475 12 0.04484558377041532 22 0.044148985737477664 11 0.04175081630445944 9 0.034541250799695375 23 0.030804390981199622 24 0.029866547084889564 17 0.02751903139343292 16 0.020915355742253797 0 0.020807295408930997 4 0.013377869815037696 5 0.013146028641769439 6 0.010518647959267446 3 0.009987741132760679 8 0.009117524645104907 7 0.00893979807663382 1 0.008929883023792752 2 0.008618400886050651 __DUMMY__ 0.0032567901733885248 false 1.0 140 9 0.075762 4 0.060201 1 0.059654 5 0.059591 7 0.059584 6 0.05956 8 0.059532 22 0.059023 3 0.058339 2 0.058259 0 0.055137 17 0.050124 18 0.04401 10 0.043377 23 0.033493 21 0.03248 11 0.03122 19 0.023049 24 0.021717 16 0.01741 15 0.015883 14 0.012315 12 0.005626 20 0.004653 9 0.075762 4 0.060201 1 0.059654 5 0.059591 7 0.059584 6 0.05956 8 0.059532 22 0.059023 3 0.058339 2 0.058259 0 0.055137 17 0.050124 18 0.04401 10 0.043377 23 0.033493 21 0.03248 11 0.03122 19 0.023049 24 0.021717 16 0.01741 15 0.015883 14 0.012315 12 0.005626 20 0.004653 9 0.06723865151246439 22 0.05767356052107899 4 0.054568311708324914 6 0.05403067301815144 5 0.05400684879977884 7 0.05371865255260171 8 0.053701466089499064 1 0.05369193282400222 0 0.05328613236386377 2 0.05271246698646218 3 0.05255042047169485 17 0.05059486654828088 18 0.045894801770715 10 0.042803524846991174 23 0.03616391631080982 21 0.03581813066804052 11 0.03514098772398648 19 0.02966743597318373 24 0.02544488630415991 16 0.024086644710606227 15 0.018063804655684284 14 0.015063824084653437 12 0.01340708243567545 20 0.012386116729293427 13 0.006093571872460627 __DUMMY__ 0.002191288517536621 false 1.0 383 15 0.1606 14 0.147302 10 0.088733 18 0.088646 13 0.068532 20 0.066116 19 0.041342 9 0.041224 22 0.035707 23 0.032538 24 0.031697 21 0.029272 3 0.01972 4 0.018491 5 0.018219 11 0.015414 8 0.015333 7 0.014918 1 0.014739 2 0.014534 17 0.013845 6 0.012852 12 0.005211 16 0.005015 15 0.1606 14 0.147302 10 0.088733 18 0.088646 13 0.068532 20 0.066116 19 0.041342 9 0.041224 22 0.035707 23 0.032538 24 0.031697 21 0.029272 3 0.01972 4 0.018491 5 0.018219 11 0.015414 8 0.015333 7 0.014918 1 0.014739 2 0.014534 17 0.013845 6 0.012852 12 0.005211 16 0.005015 15 0.10680352442427374 14 0.10461420998806434 18 0.07939334896182092 10 0.07453130315663362 13 0.05907618767920551 20 0.05835949134432237 19 0.04915876511081225 22 0.04454258154845881 21 0.04223503026521688 9 0.04043023766137193 23 0.03543031774895838 24 0.03410871997705055 11 0.03130066868478429 17 0.027622411883988708 12 0.025356532300694717 4 0.020980673835275767 5 0.02065244220514076 3 0.01977357876334111 16 0.01924497204858749 8 0.017489243744028778 0 0.01743280831646645 7 0.017262399195207962 1 0.017090743383558715 6 0.017082060330542454 2 0.016845572117579536 __DUMMY__ 0.0031821753246140095 false 1.0 141 9 0.059445 3 0.056799 4 0.054038 7 0.053594 8 0.053509 5 0.05328 1 0.053223 2 0.052778 6 0.050539 22 0.05024 18 0.045587 10 0.044113 23 0.043443 15 0.041903 24 0.041368 19 0.035934 17 0.034105 0 0.033651 20 0.032596 14 0.032067 21 0.030801 11 0.025587 16 0.019848 13 0.001553 9 0.059445 3 0.056799 4 0.054038 7 0.053594 8 0.053509 5 0.05328 1 0.053223 2 0.052778 6 0.050539 22 0.05024 18 0.045587 10 0.044113 23 0.043443 15 0.041903 24 0.041368 19 0.035934 17 0.034105 0 0.033651 20 0.032596 14 0.032067 21 0.030801 11 0.025587 16 0.019848 13 0.001553 22 0.055759703885421986 9 0.05514971070590636 18 0.054086573458376704 10 0.048567722809465544 4 0.04410642000993809 19 0.04409117184052286 3 0.044084415520591946 5 0.043482777156976855 21 0.04228097503546066 7 0.04221745253348128 8 0.042191385975920405 1 0.0419438339192978 2 0.041506494025183985 6 0.04116936281895137 23 0.04088302877856272 17 0.039988410236912963 24 0.03856404263777246 0 0.03818600075664933 11 0.03641539634185162 15 0.036246663161072785 20 0.03511013353816145 14 0.034854226108138694 16 0.025181638434012336 12 0.016648880953459743 13 0.013967089360051622 __DUMMY__ 0.003316489997858643 false 1.0 142 19 0.108304 21 0.107862 20 0.094267 18 0.089012 22 0.084129 24 0.079354 12 0.064295 23 0.062577 11 0.050989 10 0.050576 14 0.04471 9 0.034792 13 0.028366 17 0.026789 16 0.025732 5 0.011414 4 0.010929 3 0.00853 15 0.008345 0 0.007432 8 6.13E-4 6 5.13E-4 7 4.57E-4 2 1.2E-5 19 0.108304 21 0.107862 20 0.094267 18 0.089012 22 0.084129 24 0.079354 12 0.064295 23 0.062577 11 0.050989 10 0.050576 14 0.04471 9 0.034792 13 0.028366 17 0.026789 16 0.025732 5 0.011414 4 0.010929 3 0.00853 15 0.008345 0 0.007432 8 6.13E-4 6 5.13E-4 7 4.57E-4 2 1.2E-5 21 0.0888838316084516 19 0.08880340318264207 20 0.07681182869942182 18 0.07651222216888509 22 0.07237368073687082 24 0.0663537292509714 12 0.06010377235930763 23 0.05508723858907599 11 0.052115899110350916 10 0.047439473783449655 14 0.04309847634702267 17 0.034539024690002515 9 0.03421886161973163 13 0.03369832525747181 16 0.033123637862068636 0 0.019292367675823447 15 0.01803896748766617 4 0.016945693841035513 5 0.01690869462951466 3 0.013862883397512933 6 0.01007397218829657 8 0.009325734230781705 7 0.00927907587333686 1 0.008928922928060051 2 0.008755487495619855 __DUMMY__ 0.005424794986628054 false 1.0 384 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.0856718881506707 10 0.08061905591612087 21 0.0714087951667462 11 0.07033520520349498 19 0.0697631583563605 22 0.06915380776368199 14 0.05595737896934574 12 0.05543626677870036 0 0.05176194750700001 13 0.05164286556236049 17 0.04947136310885548 9 0.046776865191270715 20 0.04646708715592903 16 0.03514227102238265 15 0.030255147122452496 23 0.02707899836248993 24 0.02582319010717244 4 0.012943202430766774 5 0.012584050676441727 6 0.010431145421332621 3 0.007880744294692975 7 0.007840460981183423 8 0.0077319495742796465 1 0.007650406833191573 2 0.007268803367256415 __DUMMY__ 0.0029039449758201867 false 1.0 143 9 0.07274 22 0.067457 0 0.065091 17 0.05934 18 0.05308 10 0.052262 4 0.049984 6 0.049374 5 0.049324 7 0.04874 8 0.048599 1 0.048575 2 0.048054 3 0.047851 11 0.047204 21 0.039222 19 0.036743 16 0.028992 23 0.026773 24 0.019007 12 0.0118 15 0.010522 14 0.010164 20 0.009102 9 0.07274 22 0.067457 0 0.065091 17 0.05934 18 0.05308 10 0.052262 4 0.049984 6 0.049374 5 0.049324 7 0.04874 8 0.048599 1 0.048575 2 0.048054 3 0.047851 11 0.047204 21 0.039222 19 0.036743 16 0.028992 23 0.026773 24 0.019007 12 0.0118 15 0.010522 14 0.010164 20 0.009102 9 0.06595109095575057 22 0.06343843469895095 0 0.0567148472362379 17 0.05388424229535692 18 0.051071790979835614 4 0.04905659927072623 5 0.048473036325447014 6 0.0481022661331622 7 0.047570245196534584 8 0.04751159170617708 1 0.04740830071443402 10 0.04732258125326268 3 0.04697800068397866 2 0.046854191871199644 11 0.04378220342880916 21 0.041337554028548135 19 0.03763595488873459 23 0.03303030532858314 16 0.028395784795869287 24 0.025845277134557063 12 0.01665025704095326 20 0.015802450766991764 14 0.014997558893211124 15 0.014995384644974494 13 0.005695360539962039 __DUMMY__ 0.0014946891877519934 false 1.0 385 10 0.083737 18 0.072025 22 0.066583 9 0.064665 11 0.063711 21 0.058535 14 0.055858 0 0.053604 13 0.04994 12 0.039807 4 0.034941 17 0.0347 5 0.034275 6 0.032657 19 0.03253 7 0.029813 8 0.029748 1 0.029457 3 0.029118 2 0.028863 23 0.025702 15 0.024715 20 0.014489 24 0.010528 10 0.083737 18 0.072025 22 0.066583 9 0.064665 11 0.063711 21 0.058535 14 0.055858 0 0.053604 13 0.04994 12 0.039807 4 0.034941 17 0.0347 5 0.034275 6 0.032657 19 0.03253 7 0.029813 8 0.029748 1 0.029457 3 0.029118 2 0.028863 23 0.025702 15 0.024715 20 0.014489 24 0.010528 10 0.0704394855605028 18 0.06704533187878453 22 0.06409774034304762 11 0.05948453583984084 21 0.05889449817976527 9 0.057162714156961156 0 0.04968378692418778 14 0.04900184214636295 13 0.04501524945577396 12 0.04249505981363263 19 0.0405811597408159 17 0.03914721834628991 4 0.03346442917809548 5 0.03292639047417718 6 0.03142290513402565 23 0.030849158582364082 7 0.028949367380713284 8 0.028908559962380117 1 0.028722386961651893 3 0.028387002536715982 2 0.028211194467534256 15 0.0249671885587906 20 0.023580263792770947 24 0.020572168666271817 16 0.013181578027809886 __DUMMY__ 0.0028087838907333786 false 1.0 386 14 0.146504 15 0.120707 13 0.117334 10 0.093165 18 0.085359 12 0.061893 20 0.057363 21 0.056361 11 0.047654 19 0.042952 22 0.038269 9 0.029944 23 0.025609 24 0.020859 0 0.015812 17 0.015432 16 0.007423 4 0.005829 5 0.005567 6 0.003251 8 7.69E-4 1 7.5E-4 3 6.02E-4 7 5.93E-4 14 0.146504 15 0.120707 13 0.117334 10 0.093165 18 0.085359 12 0.061893 20 0.057363 21 0.056361 11 0.047654 19 0.042952 22 0.038269 9 0.029944 23 0.025609 24 0.020859 0 0.015812 17 0.015432 16 0.007423 4 0.005829 5 0.005567 6 0.003251 8 7.69E-4 1 7.5E-4 3 6.02E-4 7 5.93E-4 14 0.10595186036746032 13 0.08972818532231962 15 0.08389773240899337 18 0.07602055347515509 10 0.07468546269613971 12 0.06078594701455069 21 0.060458161020419954 20 0.053940578061272094 11 0.04986894359835742 19 0.049510114642758764 22 0.04623628571310977 23 0.0332410388245072 9 0.03253320175250527 24 0.030056627533103338 17 0.026290919422778326 0 0.023827940970942495 16 0.018698548347076457 4 0.013685639744294565 5 0.013364015209751237 6 0.011322419313559996 8 0.008709576548547043 7 0.008587130705168542 1 0.008585660697741977 3 0.008470937644957703 2 0.008103028338605298 __DUMMY__ 0.0034394906259237017 false 1.0 144 9 0.074319 22 0.070094 0 0.060619 17 0.056279 18 0.054418 4 0.05088 10 0.05048 5 0.049883 6 0.049467 8 0.048695 7 0.048585 1 0.048317 3 0.048078 2 0.047778 21 0.04475 11 0.044603 19 0.037068 23 0.029807 16 0.022958 24 0.022263 12 0.013781 14 0.010335 20 0.00992 15 0.006623 9 0.074319 22 0.070094 0 0.060619 17 0.056279 18 0.054418 4 0.05088 10 0.05048 5 0.049883 6 0.049467 8 0.048695 7 0.048585 1 0.048317 3 0.048078 2 0.047778 21 0.04475 11 0.044603 19 0.037068 23 0.029807 16 0.022958 24 0.022263 12 0.013781 14 0.010335 20 0.00992 15 0.006623 9 0.06662479036939223 22 0.0625786578976028 0 0.05368679296715479 17 0.051475099191693546 4 0.05146666841151537 5 0.050741259986705985 6 0.050303256681352264 8 0.0497837372280177 7 0.049744854398296415 1 0.049569020457634644 18 0.0495487547214078 3 0.049213533648633 2 0.04897537535739148 10 0.04469559058621382 21 0.04175890713534519 11 0.03996039253761918 23 0.03567506444790719 19 0.035343418295922246 24 0.02739819157642019 16 0.024674103100129033 12 0.016507964444741917 20 0.015295578832703945 14 0.014394245860266964 15 0.013692334859250766 13 0.005452740611658192 __DUMMY__ 0.0014396663950232663 false 1.0 387 10 0.10203 18 0.100604 11 0.077949 19 0.073817 22 0.072043 21 0.068798 14 0.064722 0 0.063174 13 0.056486 17 0.05602 12 0.05283 9 0.052281 20 0.043945 16 0.037834 15 0.036564 23 0.015023 24 0.011228 4 0.005267 5 0.00486 6 0.003393 7 4.97E-4 8 3.46E-4 1 2.71E-4 3 1.7E-5 10 0.10203 18 0.100604 11 0.077949 19 0.073817 22 0.072043 21 0.068798 14 0.064722 0 0.063174 13 0.056486 17 0.05602 12 0.05283 9 0.052281 20 0.043945 16 0.037834 15 0.036564 23 0.015023 24 0.011228 4 0.005267 5 0.00486 6 0.003393 7 4.97E-4 8 3.46E-4 1 2.71E-4 3 1.7E-5 18 0.08927667334034614 10 0.08775168140338839 11 0.06983929575979915 22 0.06902427008719415 19 0.06681251335650207 21 0.0655673803330888 14 0.058877822761446916 0 0.055807963217268275 17 0.051263454169617834 9 0.05110025434102195 13 0.049938662901781124 12 0.048703965910017286 20 0.042144787526383946 15 0.03526840808238987 16 0.03370926687544279 23 0.0222730229825101 24 0.018859339450960962 4 0.013444469144017446 5 0.013040278135915705 6 0.011242016809687687 7 0.00879991185390386 8 0.008721215135960513 3 0.008702204757672822 1 0.008611545182390143 2 0.00829038961020317 __DUMMY__ 0.002929206871088957 false 1.0 145 9 0.071627 22 0.066744 0 0.060703 18 0.056548 17 0.054717 10 0.050594 4 0.050446 7 0.050041 6 0.049784 5 0.049434 8 0.049324 1 0.048848 3 0.048286 2 0.047935 11 0.042584 21 0.039456 19 0.034868 23 0.032404 16 0.025152 24 0.022039 15 0.014858 14 0.013076 20 0.012803 12 0.007729 9 0.071627 22 0.066744 0 0.060703 18 0.056548 17 0.054717 10 0.050594 4 0.050446 7 0.050041 6 0.049784 5 0.049434 8 0.049324 1 0.048848 3 0.048286 2 0.047935 11 0.042584 21 0.039456 19 0.034868 23 0.032404 16 0.025152 24 0.022039 15 0.014858 14 0.013076 20 0.012803 12 0.007729 9 0.06537564095224445 22 0.06147001445438619 0 0.054181367424970664 17 0.051300150481123255 4 0.05094635102937139 18 0.050724263040340466 5 0.050212708232342994 6 0.050147588843899506 7 0.05007796591398554 8 0.04974195407368524 1 0.049473308600281485 3 0.04894745939785805 2 0.048714015734232806 10 0.04476208009630131 21 0.03966685156730586 11 0.03959082100383638 23 0.0366224112724881 19 0.03481735272393661 24 0.027279965012729016 16 0.026251678530523286 15 0.017055016824872427 20 0.016614377821067835 14 0.015266296358703838 12 0.013967104957592532 13 0.0052400941882713515 __DUMMY__ 0.001553161463649647 false 1.0 388 19 0.106964 18 0.08004 20 0.078901 16 0.077882 21 0.075306 22 0.066777 11 0.062792 17 0.062612 12 0.060596 24 0.05481 10 0.052449 23 0.047028 0 0.042612 14 0.032161 13 0.029529 9 0.026625 15 0.026536 4 0.0053 5 0.004824 6 0.002 3 0.001978 7 9.05E-4 8 7.39E-4 1 6.31E-4 19 0.106964 18 0.08004 20 0.078901 16 0.077882 21 0.075306 22 0.066777 11 0.062792 17 0.062612 12 0.060596 24 0.05481 10 0.052449 23 0.047028 0 0.042612 14 0.032161 13 0.029529 9 0.026625 15 0.026536 4 0.0053 5 0.004824 6 0.002 3 0.001978 7 9.05E-4 8 7.39E-4 1 6.31E-4 19 0.08870899444402151 21 0.07305992635686034 18 0.07217734423515891 20 0.0679392450254302 22 0.06415081351610494 16 0.06062185105641924 12 0.059637020346015264 11 0.05911021777525847 17 0.05405059144872082 24 0.05265070280655813 10 0.04861901727452556 23 0.04694238771513153 0 0.0388078395378652 14 0.035361639831383615 13 0.03476096904285542 9 0.03027417473652411 15 0.025246490795331974 4 0.013656941717927086 5 0.013197414708037229 6 0.01059601019078947 3 0.009842400186859186 7 0.009037296469995671 8 0.008943127274849414 1 0.008788613983349878 2 0.00832345635624226 __DUMMY__ 0.005495513167784513 false 1.0 146 9 0.073342 22 0.065435 0 0.059384 17 0.055941 18 0.054779 4 0.051193 7 0.050601 1 0.050455 6 0.050222 8 0.050058 5 0.049827 10 0.04932 3 0.048508 2 0.048153 11 0.04212 21 0.039313 19 0.035164 23 0.031323 16 0.024487 24 0.022593 15 0.014785 14 0.013012 20 0.011696 12 0.008292 9 0.073342 22 0.065435 0 0.059384 17 0.055941 18 0.054779 4 0.051193 7 0.050601 1 0.050455 6 0.050222 8 0.050058 5 0.049827 10 0.04932 3 0.048508 2 0.048153 11 0.04212 21 0.039313 19 0.035164 23 0.031323 16 0.024487 24 0.022593 15 0.014785 14 0.013012 20 0.011696 12 0.008292 9 0.0661577337801422 22 0.06087291775221164 0 0.05357971986586968 17 0.051858325833964034 4 0.051286975293920206 5 0.05039188013251811 6 0.05034728456641732 7 0.05033330385300192 1 0.05020616622674409 8 0.05007665090765638 18 0.04991738287898694 3 0.0490486428428844 2 0.04881337516682435 10 0.044180969158372885 21 0.039601577429763314 11 0.03937914433985458 23 0.036129335483117614 19 0.03495230564157663 24 0.027532597647318892 16 0.025948347442655423 15 0.017021699433214663 20 0.01610947125068182 14 0.015237086161109492 12 0.014223860554136948 13 0.005240087018518332 __DUMMY__ 0.001553159338538209 false 1.0 389 14 0.092172 10 0.090288 13 0.088482 18 0.08244 21 0.068777 11 0.068003 22 0.065122 12 0.063517 9 0.053565 15 0.047422 0 0.046957 19 0.038797 17 0.03186 20 0.022887 23 0.019628 4 0.01938 5 0.018983 6 0.017644 8 0.012332 7 0.012076 2 0.011698 1 0.011665 3 0.010268 24 0.00604 14 0.092172 10 0.090288 13 0.088482 18 0.08244 21 0.068777 11 0.068003 22 0.065122 12 0.063517 9 0.053565 15 0.047422 0 0.046957 19 0.038797 17 0.03186 20 0.022887 23 0.019628 4 0.01938 5 0.018983 6 0.017644 8 0.012332 7 0.012076 2 0.011698 1 0.011665 3 0.010268 24 0.00604 13 0.08025476836795786 14 0.076753172047637 18 0.07199635901161142 10 0.07150707581110594 21 0.0708977230062033 12 0.06862487007628411 11 0.06347851881828007 22 0.060307648644027316 19 0.04610612029356702 9 0.0434346494984785 0 0.04019584282346485 15 0.03961721277881728 20 0.03454086971141129 17 0.033060741652681 23 0.03110459828581677 24 0.022597702893232714 4 0.02074213536321491 5 0.020345955179900406 6 0.018991877822997303 8 0.014432398132374 7 0.014278880617567397 1 0.014035615011025907 2 0.013908744538863763 16 0.012997363184892502 3 0.012845647450503905 __DUMMY__ 0.002943508978083487 false 1.0 147 22 0.0761 9 0.073093 0 0.059517 18 0.058919 21 0.058192 11 0.055486 10 0.055379 17 0.050485 4 0.046194 5 0.045088 6 0.04405 7 0.042739 8 0.042665 1 0.042421 3 0.041778 2 0.041105 19 0.038135 23 0.030854 12 0.024433 24 0.022733 14 0.016366 16 0.013181 13 0.011098 20 0.00999 22 0.0761 9 0.073093 0 0.059517 18 0.058919 21 0.058192 11 0.055486 10 0.055379 17 0.050485 4 0.046194 5 0.045088 6 0.04405 7 0.042739 8 0.042665 1 0.042421 3 0.041778 2 0.041105 19 0.038135 23 0.030854 12 0.024433 24 0.022733 14 0.016366 16 0.013181 13 0.011098 20 0.00999 22 0.06671471764078178 9 0.0660627203691935 0 0.05385090658050604 18 0.05239556162995023 21 0.049694184833272134 17 0.04916939357544193 4 0.04833624533387638 10 0.047662341616097295 5 0.047561961204429154 11 0.0469309268269198 6 0.04678155598464974 7 0.04587504720834374 8 0.045836047456000506 1 0.045669726332815505 3 0.045123267598204043 2 0.04473434274690033 19 0.03665375000837432 23 0.03554731607516545 24 0.02745362511619136 12 0.02285254853038349 16 0.020151915590838076 14 0.017367789280933313 20 0.015133617973931809 13 0.011327549646856809 15 0.009451599572051307 __DUMMY__ 0.0016613412678920041 false 1.0 148 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06703988328034227 22 0.0577861942162563 4 0.054513422705011215 6 0.05397912912532757 7 0.053754590023787144 8 0.05367802417910476 5 0.05365210030342136 1 0.05356686084845156 0 0.05347434813052907 2 0.05249876733034341 3 0.05233568672974601 17 0.050680093867815815 18 0.04636500362857102 10 0.04298494657799761 23 0.03652991204214977 21 0.03592003274273275 11 0.03526814134792207 19 0.029808203268478207 24 0.025429579764614307 16 0.02408271576815779 15 0.017548158055755235 14 0.01496155632726177 12 0.01309713634330069 20 0.01267572226654769 13 0.006151752048664509 __DUMMY__ 0.002218039077710257 false 1.0 149 9 0.059207 3 0.058401 4 0.056291 5 0.055848 7 0.054891 1 0.054613 8 0.054551 2 0.053689 22 0.053281 6 0.051811 23 0.050421 18 0.045333 24 0.044761 10 0.040767 15 0.039042 21 0.036233 19 0.034617 14 0.032367 20 0.031873 0 0.027684 17 0.027239 11 0.025178 16 0.010174 13 0.001729 9 0.059207 3 0.058401 4 0.056291 5 0.055848 7 0.054891 1 0.054613 8 0.054551 2 0.053689 22 0.053281 6 0.051811 23 0.050421 18 0.045333 24 0.044761 10 0.040767 15 0.039042 21 0.036233 19 0.034617 14 0.032367 20 0.031873 0 0.027684 17 0.027239 11 0.025178 16 0.010174 13 0.001729 9 0.05739313880271633 22 0.055414524105089805 3 0.05104211052180238 4 0.0508248019636963 5 0.050350187921946794 7 0.04909850972736965 8 0.04895486588510891 1 0.048895483472145014 18 0.04822080979551932 2 0.04819307071611516 6 0.04767873098661044 23 0.04563767342756354 10 0.04213201625193653 21 0.04042209154381787 24 0.04031783546288829 19 0.038411473334349085 17 0.03648214826372702 0 0.035775184231189826 11 0.03211172633706254 15 0.03179452172712671 20 0.030455650343369365 14 0.028763750498557842 16 0.01927747543073098 12 0.011653529844921906 13 0.008177645063429684 __DUMMY__ 0.0025210443412086573 false 1.0 40 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058478244221544746 4 0.058453176568867 6 0.058387643382941605 7 0.05833889008924156 8 0.05821462798690034 5 0.05808659413691672 2 0.057602978486518075 9 0.05722342533378588 3 0.05700678523289562 22 0.04836674074355721 23 0.04675515841019199 17 0.04610334250817295 0 0.04448704325546357 18 0.036813283986410955 24 0.034579280315034586 21 0.032531677036659094 10 0.029275959366801486 19 0.02760096186484246 11 0.027321831523134932 16 0.026969128333155134 20 0.019069003404237925 12 0.01827224246493925 15 0.018109220248860917 14 0.011035851151989497 13 0.008486556382573673 __DUMMY__ 0.0024303535643629254 false 1.0 41 2 0.073987 3 0.073485 1 0.072767 8 0.072462 7 0.072438 5 0.072388 6 0.072073 4 0.071957 9 0.058558 23 0.053553 22 0.039749 17 0.039526 24 0.038245 0 0.037735 18 0.023509 21 0.021197 16 0.019783 15 0.017056 10 0.016651 20 0.014389 19 0.014357 11 0.012423 12 0.008547 14 0.003163 2 0.073987 3 0.073485 1 0.072767 8 0.072462 7 0.072438 5 0.072388 6 0.072073 4 0.071957 9 0.058558 23 0.053553 22 0.039749 17 0.039526 24 0.038245 0 0.037735 18 0.023509 21 0.021197 16 0.019783 15 0.017056 10 0.016651 20 0.014389 19 0.014357 11 0.012423 12 0.008547 14 0.003163 4 0.058454595502052745 5 0.05837890213590018 6 0.05833153395199548 2 0.05828035494657478 1 0.05802407587828434 8 0.05795392174040927 7 0.057933435189728634 3 0.057680913849128906 9 0.05692467569706919 22 0.048429858774565945 23 0.046641051310588245 17 0.04590990167820256 0 0.04444020613900298 18 0.03666252115854895 24 0.034533366478335006 21 0.032410604265610904 10 0.029379431162112963 19 0.027530920005522583 11 0.027413240019295917 16 0.026978883546843146 20 0.01905602198217012 12 0.01836318282447518 15 0.018209439296269215 14 0.011162047455604736 13 0.008486560319811154 __DUMMY__ 0.002430354691896723 false 1.0 42 3 0.072394 2 0.071918 1 0.070766 5 0.070705 8 0.070477 7 0.070455 4 0.070301 6 0.069576 9 0.057823 23 0.053874 24 0.041643 22 0.041029 17 0.036679 0 0.034474 18 0.024974 21 0.023847 15 0.019253 20 0.01842 16 0.018227 10 0.01786 19 0.01722 11 0.013042 12 0.008298 14 0.006745 3 0.072394 2 0.071918 1 0.070766 5 0.070705 8 0.070477 7 0.070455 4 0.070301 6 0.069576 9 0.057823 23 0.053874 24 0.041643 22 0.041029 17 0.036679 0 0.034474 18 0.024974 21 0.023847 15 0.019253 20 0.01842 16 0.018227 10 0.01786 19 0.01722 11 0.013042 12 0.008298 14 0.006745 4 0.057548223066186205 5 0.05745904769792676 2 0.05704030402883608 3 0.05703579806444448 6 0.05687402109547484 1 0.056812283643672946 8 0.05674643862319444 7 0.05673301807763752 9 0.05624300540975413 22 0.04918057120931593 23 0.04729171137374417 17 0.04363660047838637 0 0.04189248899734421 18 0.037424824589039896 24 0.03696284194261464 21 0.03448808804658128 10 0.02980245650111214 19 0.02911260592793176 11 0.027701759829538045 16 0.025418722949256067 20 0.021648799905297215 15 0.01919762594907032 12 0.018787808043771052 14 0.01351973701853223 13 0.008980935560522697 __DUMMY__ 0.00246028197081493 false 1.0 43 22 0.094702 21 0.081371 11 0.074964 9 0.062282 19 0.054844 18 0.054358 17 0.04772 0 0.047682 10 0.045286 24 0.044538 4 0.036404 5 0.035237 12 0.033631 23 0.03324 3 0.032902 6 0.030868 7 0.030085 8 0.030029 1 0.029731 2 0.029347 14 0.023502 16 0.02204 20 0.019643 13 0.005593 22 0.094702 21 0.081371 11 0.074964 9 0.062282 19 0.054844 18 0.054358 17 0.04772 0 0.047682 10 0.045286 24 0.044538 4 0.036404 5 0.035237 12 0.033631 23 0.03324 3 0.032902 6 0.030868 7 0.030085 8 0.030029 1 0.029731 2 0.029347 14 0.023502 16 0.02204 20 0.019643 13 0.005593 22 0.08099985055842232 21 0.07226185890144356 11 0.06564022376528578 18 0.05581884294203973 9 0.05568260522118846 19 0.054356635263404667 17 0.047684736921731107 0 0.046418151180655315 10 0.04570527106721086 24 0.04213290579574166 12 0.03774150783054554 23 0.03652440083973894 4 0.03508139556134215 5 0.0342566350298817 3 0.031390269218921574 6 0.031150790497211773 7 0.029954688237598087 8 0.029900220945442185 1 0.02965806048339101 2 0.02920761759525637 16 0.027428632874532156 20 0.026995922818159507 14 0.026410561474142873 13 0.015680094207787737 15 0.008394499027755083 __DUMMY__ 0.00352362174116986 false 1.0 44 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05849437320333634 4 0.05846530489953909 6 0.05840342715205295 7 0.058354831481254484 8 0.058230645024396926 5 0.05809905277158384 2 0.05761901313944597 9 0.05722324846563229 3 0.05701992002250224 22 0.0483410550118265 23 0.0467595217251317 17 0.0461069650802437 0 0.04449072873818107 18 0.036805147287207164 24 0.03456840827930783 21 0.03250080166065134 10 0.02927033387243926 19 0.027585051675520455 11 0.02729581609570668 16 0.02697483549246813 20 0.019065038852625532 12 0.018260983785658557 15 0.018120269212610514 14 0.011027307013766805 13 0.008486578232444746 __DUMMY__ 0.002431341824466007 false 1.0 45 22 0.084797 9 0.074236 0 0.066462 11 0.065736 17 0.059588 21 0.059424 18 0.057991 10 0.056053 19 0.044709 4 0.042776 5 0.041643 6 0.040365 8 0.03947 7 0.039292 1 0.039136 3 0.03912 2 0.038123 16 0.025104 24 0.024228 23 0.023474 12 0.01874 14 0.012515 20 0.006884 15 1.34E-4 22 0.084797 9 0.074236 0 0.066462 11 0.065736 17 0.059588 21 0.059424 18 0.057991 10 0.056053 19 0.044709 4 0.042776 5 0.041643 6 0.040365 8 0.03947 7 0.039292 1 0.039136 3 0.03912 2 0.038123 16 0.025104 24 0.024228 23 0.023474 12 0.01874 14 0.012515 20 0.006884 15 1.34E-4 22 0.07471083406857279 9 0.06509986848849371 0 0.06031891371989088 11 0.058569020243915304 17 0.05715178412522472 18 0.05687841739493696 21 0.0551058698084925 10 0.05194508096495494 19 0.04598430687655734 4 0.04094642879943752 5 0.04012610570835817 6 0.03924802613766448 8 0.03814483081796027 7 0.03803743991553523 1 0.037854910904035484 3 0.03749835995676089 2 0.037099590091027194 16 0.030461290318750986 23 0.029343165143046593 24 0.02730776682021385 12 0.02462437655303651 14 0.017257500294572133 20 0.015920402723701342 15 0.009047902500342656 13 0.008624256214883268 __DUMMY__ 0.002693551409634328 false 1.0 46 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05849893166057967 4 0.05846884159774414 6 0.058407880979866 7 0.058359353380642603 8 0.058235111299634566 5 0.05810279097218526 2 0.05762370119836262 9 0.05721673283248248 3 0.0570238724073392 22 0.048328643073435665 23 0.04676693865258755 17 0.04610330237202543 0 0.0444841455771687 18 0.036799573549740665 24 0.03457098533276894 21 0.03249234224130175 10 0.02926292950056329 19 0.02758067002824584 11 0.02728398580095648 16 0.026976904665992694 20 0.019070002629687617 12 0.018262767349883663 15 0.018127162256421803 14 0.011028094142693292 13 0.008491682377485293 __DUMMY__ 0.0024326541202046308 false 1.0 47 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06726760042177495 22 0.05815740137096572 0 0.054138722056248235 4 0.05409097748489428 6 0.053587381469613345 7 0.053330986195506365 8 0.05325904808589079 5 0.0532243876712263 1 0.05313542190107197 2 0.05207144016785527 3 0.05187312790930742 17 0.051248152670175906 18 0.04693943522036508 10 0.04364793969580483 21 0.036023382414186025 23 0.03601068019273174 11 0.03580681911953408 19 0.030201765527242384 24 0.02491673949125878 16 0.024508536729931214 15 0.01755960906137679 14 0.015002358791361374 12 0.013090731628898223 20 0.012531075316510898 13 0.006139951760887432 __DUMMY__ 0.002236327645380713 false 1.0 48 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0584886701189867 4 0.058459291362940424 6 0.05839856495222417 7 0.05834898965762027 8 0.05822486466380335 5 0.058093697869443794 2 0.057614072649147356 9 0.05720145577796322 3 0.05701360474823688 22 0.04832573792094125 23 0.04677294774815023 17 0.0461035862917424 0 0.04447913163970177 18 0.036801064101510336 24 0.03457924544843505 21 0.03250022308966565 10 0.02925876692055699 19 0.027592032755968294 11 0.027289936341365232 16 0.026988253225511183 20 0.019083737395244653 12 0.018280667746276458 15 0.018129351814008342 14 0.011032128517411694 13 0.008504321469870391 __DUMMY__ 0.002435655773273892 false 1.0 49 18 0.100112 19 0.085179 10 0.083378 20 0.081903 14 0.066468 21 0.060412 12 0.055048 22 0.054725 15 0.053518 13 0.053224 11 0.05315 16 0.049719 17 0.048159 24 0.038039 0 0.036906 23 0.034015 9 0.031554 4 0.004912 5 0.004546 6 0.002393 3 0.001387 7 0.001078 1 1.07E-4 8 6.7E-5 18 0.100112 19 0.085179 10 0.083378 20 0.081903 14 0.066468 21 0.060412 12 0.055048 22 0.054725 15 0.053518 13 0.053224 11 0.05315 16 0.049719 17 0.048159 24 0.038039 0 0.036906 23 0.034015 9 0.031554 4 0.004912 5 0.004546 6 0.002393 3 0.001387 7 0.001078 1 1.07E-4 8 6.7E-5 18 0.08974264082456271 10 0.07584801124235059 19 0.07514961593751845 20 0.06661622525243008 21 0.06001828851917163 14 0.05979714016690517 22 0.05855008671344689 11 0.05298952356127662 12 0.04775815691860553 15 0.04715944257184177 17 0.046524545055092105 13 0.045689168819890456 16 0.04112325241089314 9 0.03883894837013851 0 0.03854803147994893 24 0.036516819567697006 23 0.03474891253140826 4 0.01332204061697789 5 0.012903102172164393 6 0.010427630359462352 3 0.009938884555424764 7 0.009163455665928641 8 0.00870337212265517 1 0.008601415580416842 2 0.008365507687104394 __DUMMY__ 0.002955781296687755 false 1.0 390 10 0.111658 18 0.109467 19 0.087257 22 0.078679 11 0.073377 0 0.071006 17 0.068457 9 0.060218 14 0.058666 16 0.054045 21 0.053565 15 0.051206 20 0.042374 13 0.027368 12 0.02358 23 0.013449 4 0.00428 5 0.00415 24 0.003054 3 0.001601 6 0.001504 8 5.32E-4 7 3.4E-4 2 1.66E-4 10 0.111658 18 0.109467 19 0.087257 22 0.078679 11 0.073377 0 0.071006 17 0.068457 9 0.060218 14 0.058666 16 0.054045 21 0.053565 15 0.051206 20 0.042374 13 0.027368 12 0.02358 23 0.013449 4 0.00428 5 0.00415 24 0.003054 3 0.001601 6 0.001504 8 5.32E-4 7 3.4E-4 2 1.66E-4 18 0.08801244118863917 10 0.08379545184492135 19 0.07301409302909435 22 0.06948560626592437 11 0.06336966109972185 17 0.05745975267420669 0 0.056715562203976715 21 0.056176383012767894 9 0.0521878256603575 14 0.05055286067751595 16 0.044847002883072945 20 0.04322901405638795 15 0.041362050901557285 12 0.03393951797900123 13 0.03192478843513002 23 0.02617379567051871 24 0.019953411403233083 4 0.015721419269897407 5 0.015429774416154481 6 0.013247655869079372 3 0.012514446900971487 8 0.01192976434815929 7 0.011836771878390788 1 0.011583244848054033 2 0.011467620145625633 __DUMMY__ 0.00407008333764062 false 1.0 391 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.08539318120552229 10 0.08112868821324631 21 0.07128665363881465 11 0.07043004649525197 19 0.06975673923362868 22 0.06924727065331755 14 0.05615787096224241 12 0.055494743595759656 0 0.05173510891208499 13 0.05162238871050238 17 0.04941550348053415 20 0.04693969872103052 9 0.04672416256146988 16 0.035063515056719556 15 0.030264552569146563 23 0.026452750951327042 24 0.02593772029019863 4 0.012855967708774644 5 0.012521896117381942 6 0.010315157872431915 3 0.007926895422227399 8 0.007755068744873943 7 0.007733652298762673 1 0.007631854479110489 2 0.007314415301956747 __DUMMY__ 0.002894496803683177 false 1.0 392 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.08539318120552229 10 0.08112868821324631 21 0.07128665363881465 11 0.07043004649525196 19 0.06975673923362868 22 0.06924727065331757 14 0.05615787096224241 12 0.055494743595759656 0 0.05173510891208499 13 0.05162238871050238 17 0.04941550348053416 20 0.04693969872103052 9 0.04672416256146987 16 0.035063515056719556 15 0.030264552569146567 23 0.026452750951327042 24 0.025937720290198637 4 0.012855967708774648 5 0.012521896117381944 6 0.010315157872431915 3 0.007926895422227399 8 0.007755068744873944 7 0.007733652298762675 1 0.007631854479110489 2 0.007314415301956748 __DUMMY__ 0.0028944968036831776 false 1.0 150 17 0.091141 0 0.082833 16 0.078798 9 0.054677 22 0.053475 18 0.052628 11 0.048835 19 0.04804 10 0.042729 6 0.042416 8 0.039548 1 0.039404 7 0.039327 2 0.038175 4 0.037002 5 0.036512 3 0.031808 12 0.029212 21 0.028288 23 0.026214 15 0.021433 20 0.014616 13 0.01201 24 0.01088 17 0.091141 0 0.082833 16 0.078798 9 0.054677 22 0.053475 18 0.052628 11 0.048835 19 0.04804 10 0.042729 6 0.042416 8 0.039548 1 0.039404 7 0.039327 2 0.038175 4 0.037002 5 0.036512 3 0.031808 12 0.029212 21 0.028288 23 0.026214 15 0.021433 20 0.014616 13 0.01201 24 0.01088 17 0.0777966879746967 0 0.07162301606391432 16 0.06436935829664713 22 0.05425570196216157 9 0.05398049316645233 18 0.05149672013574439 11 0.046530986471260666 19 0.046091412458750036 6 0.042978907480871714 10 0.04207356710909916 8 0.040805057672297335 7 0.040654452071232965 1 0.04063858182433484 2 0.03976870248522425 4 0.03958184848771915 5 0.039097895902850226 3 0.03543053363666501 21 0.03284980562869002 23 0.03132559634651709 12 0.028356255086082416 15 0.021688263136067594 20 0.018654626349609692 24 0.018556613176072875 13 0.01289957812845875 14 0.006265774213645505 __DUMMY__ 0.0022295647349343684 false 1.0 393 10 0.102238 18 0.100642 11 0.077973 19 0.073899 22 0.071783 21 0.068922 14 0.064039 0 0.063114 13 0.056505 17 0.055886 12 0.052459 9 0.052199 20 0.043652 16 0.037655 15 0.036177 23 0.015974 24 0.010934 4 0.005507 5 0.005175 6 0.003615 7 6.85E-4 8 4.94E-4 1 4.54E-4 3 1.8E-5 10 0.102238 18 0.100642 11 0.077973 19 0.073899 22 0.071783 21 0.068922 14 0.064039 0 0.063114 13 0.056505 17 0.055886 12 0.052459 9 0.052199 20 0.043652 16 0.037655 15 0.036177 23 0.015974 24 0.010934 4 0.005507 5 0.005175 6 0.003615 7 6.85E-4 8 4.94E-4 1 4.54E-4 3 1.8E-5 18 0.08929125443688048 10 0.08784404887718335 11 0.06984662514078276 22 0.06890412994865228 19 0.06684564858843087 21 0.06561990722579944 14 0.058564698094953516 0 0.05577949872376638 17 0.05120117270962937 9 0.05106443960130509 13 0.0499438193770783 12 0.04852945124895647 20 0.042007842457982066 15 0.035093507943913346 16 0.033625124398376637 23 0.022708455727396784 24 0.018724715761096553 4 0.013557779435885252 5 0.013187820376998711 6 0.011347133069262532 7 0.008889750009761934 8 0.008792759602406523 3 0.008706624609475149 1 0.008699072287966013 2 0.008294287576286734 __DUMMY__ 0.0029304327697734526 false 1.0 151 21 0.098428 19 0.090995 12 0.080123 18 0.077258 22 0.075216 20 0.071127 11 0.069542 24 0.058284 23 0.051244 10 0.050929 13 0.04822 17 0.044579 16 0.044159 14 0.039813 0 0.034354 9 0.031492 4 0.008607 5 0.008081 15 0.007941 6 0.003915 3 0.002478 7 0.001347 8 0.001218 1 6.5E-4 21 0.098428 19 0.090995 12 0.080123 18 0.077258 22 0.075216 20 0.071127 11 0.069542 24 0.058284 23 0.051244 10 0.050929 13 0.04822 17 0.044579 16 0.044159 14 0.039813 0 0.034354 9 0.031492 4 0.008607 5 0.008081 15 0.007941 6 0.003915 3 0.002478 7 0.001347 8 0.001218 1 6.5E-4 21 0.06429326670272696 22 0.06153444525911241 19 0.05806063611940208 18 0.056504625744073396 23 0.04902352409687368 11 0.04735032014192857 12 0.04705652900697868 24 0.046564368295688795 9 0.04499072971391111 20 0.04451602671577305 17 0.044211149876197224 10 0.04014270650196126 0 0.03851459439771178 4 0.03464354521688746 5 0.0342092933688664 16 0.0339800225750402 6 0.0321023180536156 3 0.03109417225039816 7 0.030891368291256206 8 0.030788761809218045 1 0.030594472375259914 2 0.029947323583041217 13 0.027244274288462093 14 0.026045689364163172 15 0.014211009862130773 __DUMMY__ 0.0014848263893218786 false 1.0 394 18 0.094794 10 0.090482 19 0.07718 11 0.075784 21 0.075122 22 0.07181 12 0.059804 14 0.059603 0 0.055864 13 0.055613 17 0.052903 20 0.051426 9 0.046417 16 0.039655 15 0.030471 24 0.022699 23 0.022655 4 0.005974 5 0.005558 6 0.003613 7 8.87E-4 8 6.21E-4 1 5.39E-4 3 5.26E-4 18 0.094794 10 0.090482 19 0.07718 11 0.075784 21 0.075122 22 0.07181 12 0.059804 14 0.059603 0 0.055864 13 0.055613 17 0.052903 20 0.051426 9 0.046417 16 0.039655 15 0.030471 24 0.022699 23 0.022655 4 0.005974 5 0.005558 6 0.003613 7 8.87E-4 8 6.21E-4 1 5.39E-4 3 5.26E-4 18 0.08573645209233698 10 0.08073804952198414 21 0.07104612675469757 11 0.070103535728464 19 0.06948109478794517 22 0.06921775177896151 14 0.05613309060333218 12 0.05545859705027705 0 0.05164082437540283 13 0.051418704213615385 17 0.04935863262873725 20 0.04683586216682298 9 0.046752333229818546 16 0.03515133107671167 15 0.030405597955721366 23 0.026819339616317443 24 0.025921850683272324 4 0.012984745367884996 5 0.012579533442899363 6 0.010518384350378428 7 0.00798565222144131 3 0.007921094983630507 8 0.007846508267502826 1 0.0077383560488332856 2 0.007312802540011877 __DUMMY__ 0.0028937485129991018 false 1.0 152 21 0.0829 22 0.070137 12 0.062128 11 0.061082 18 0.055142 9 0.051173 13 0.050983 10 0.050824 23 0.044265 14 0.043533 19 0.041908 24 0.041305 4 0.036361 5 0.036173 0 0.034771 6 0.032052 3 0.030546 20 0.029955 7 0.02922 1 0.02902 8 0.028899 2 0.028696 17 0.024221 15 0.004705 21 0.0829 22 0.070137 12 0.062128 11 0.061082 18 0.055142 9 0.051173 13 0.050983 10 0.050824 23 0.044265 14 0.043533 19 0.041908 24 0.041305 4 0.036361 5 0.036173 0 0.034771 6 0.032052 3 0.030546 20 0.029955 7 0.02922 1 0.02902 8 0.028899 2 0.028696 17 0.024221 15 0.004705 21 0.07524138479970868 22 0.06585916840230584 12 0.059819342400731196 11 0.059338736973494365 18 0.056213417965642984 10 0.04984168967535347 13 0.048785079979136343 9 0.04741061150109523 19 0.04602408875655367 23 0.04304880687868528 14 0.04182035420308704 24 0.03957816876120529 0 0.03776766712184933 4 0.03381361266588206 5 0.033497132999883925 20 0.03311732040540398 17 0.03213518074283493 6 0.030661481471982277 3 0.028235914775833856 7 0.02785573773733647 1 0.0277047888284443 8 0.027680854390122106 2 0.027345640794200533 16 0.012870921781839014 15 0.010972856727324093 __DUMMY__ 0.003360039260063962 false 1.0 395 10 0.102054 18 0.100635 11 0.07768 19 0.073737 22 0.071674 21 0.06863 14 0.063679 0 0.062788 13 0.056266 17 0.056009 9 0.052641 12 0.052415 20 0.043697 16 0.03758 15 0.03638 23 0.016009 24 0.011083 4 0.005582 5 0.005084 6 0.003721 8 9.64E-4 7 8.89E-4 1 7.84E-4 3 1.9E-5 10 0.102054 18 0.100635 11 0.07768 19 0.073737 22 0.071674 21 0.06863 14 0.063679 0 0.062788 13 0.056266 17 0.056009 9 0.052641 12 0.052415 20 0.043697 16 0.03758 15 0.03638 23 0.016009 24 0.011083 4 0.005582 5 0.005084 6 0.003721 8 9.64E-4 7 8.89E-4 1 7.84E-4 3 1.9E-5 18 0.08928654000671618 10 0.08775870849551176 11 0.06971099105630772 22 0.06885362914970612 19 0.0667695061838853 21 0.06548446595137807 14 0.05839966300995432 0 0.05563003105600974 9 0.0512671695032018 17 0.05125682644895819 13 0.0498328909498646 12 0.04850682410964386 20 0.042026864137912096 15 0.03518715645881442 16 0.03358963951673249 23 0.022724822418701978 24 0.01879263162617959 4 0.013593840178151212 5 0.01314804230193323 6 0.011397354309773011 8 0.009009426900748477 7 0.008984861208676677 1 0.00885177083665694 3 0.008709063045177497 2 0.008296235760987 __DUMMY__ 0.0029310453784177257 false 1.0 153 17 0.091245 0 0.082998 16 0.079001 9 0.055578 22 0.053797 18 0.052564 11 0.048546 19 0.048072 10 0.042564 6 0.042214 8 0.039228 1 0.039022 7 0.03893 2 0.038165 4 0.036826 5 0.036462 3 0.031783 12 0.029774 21 0.02841 23 0.0256 15 0.022161 20 0.013953 13 0.012027 24 0.011079 17 0.091245 0 0.082998 16 0.079001 9 0.055578 22 0.053797 18 0.052564 11 0.048546 19 0.048072 10 0.042564 6 0.042214 8 0.039228 1 0.039022 7 0.03893 2 0.038165 4 0.036826 5 0.036462 3 0.031783 12 0.029774 21 0.02841 23 0.0256 15 0.022161 20 0.013953 13 0.012027 24 0.011079 17 0.0778444595261822 0 0.07169875994693198 16 0.06446252444054067 22 0.05440343885115322 9 0.05439379142492269 18 0.05146741341260359 11 0.04639847767152053 19 0.046106131719755715 6 0.04288629846440666 10 0.041997927521242255 8 0.0406583252949169 7 0.040472403070573065 1 0.04046341264388204 2 0.03976415240899448 4 0.03950116140201956 5 0.03907499898524187 3 0.03541909974621888 21 0.032905791751610396 23 0.031044010512124704 12 0.028614045573459493 15 0.022022184344886824 24 0.018647902672813504 20 0.01835055476509416 13 0.012907387107454616 14 0.006265779961311008 __DUMMY__ 0.0022295667801392987 false 1.0 396 14 0.122589 13 0.112365 15 0.083013 10 0.08117 18 0.075829 12 0.074081 21 0.068184 20 0.053895 11 0.052355 22 0.042719 19 0.042628 23 0.035053 9 0.030389 24 0.028525 0 0.014996 5 0.013777 4 0.013424 6 0.01031 17 0.009674 3 0.007482 1 0.007007 8 0.006949 7 0.006895 2 0.006689 14 0.122589 13 0.112365 15 0.083013 10 0.08117 18 0.075829 12 0.074081 21 0.068184 20 0.053895 11 0.052355 22 0.042719 19 0.042628 23 0.035053 9 0.030389 24 0.028525 0 0.014996 5 0.013777 4 0.013424 6 0.01031 17 0.009674 3 0.007482 1 0.007007 8 0.006949 7 0.006895 2 0.006689 14 0.09510315765138606 13 0.08716509536902223 18 0.07214873908235092 10 0.07011308064849858 15 0.06629649943535532 21 0.06586260723232444 12 0.0658564241524446 11 0.05224706135538784 20 0.052091122182631656 19 0.04929065655710876 22 0.048575192952138954 23 0.037280376022136505 9 0.0332807295247918 24 0.03313693876398004 0 0.02361886695137705 17 0.02334839653547435 4 0.017243157371576247 5 0.017208330031434543 6 0.014554664082424739 16 0.014546003341842957 3 0.01175876212849392 8 0.011578032284530403 7 0.011517421730734058 1 0.01149735257242557 2 0.01121783536405856 __DUMMY__ 0.0034634966760697075 false 1.0 154 19 0.106871 18 0.079289 20 0.078657 16 0.078482 21 0.075486 22 0.066678 11 0.063537 17 0.063014 12 0.061046 24 0.055592 10 0.052611 23 0.046151 0 0.043047 14 0.032121 13 0.029586 15 0.026864 9 0.026315 4 0.005284 5 0.004567 3 0.001996 6 0.001728 8 5.82E-4 7 3.23E-4 1 1.73E-4 19 0.106871 18 0.079289 20 0.078657 16 0.078482 21 0.075486 22 0.066678 11 0.063537 17 0.063014 12 0.061046 24 0.055592 10 0.052611 23 0.046151 0 0.043047 14 0.032121 13 0.029586 15 0.026864 9 0.026315 4 0.005284 5 0.004567 3 0.001996 6 0.001728 8 5.82E-4 7 3.23E-4 1 1.73E-4 19 0.08924772641250511 21 0.07292344615964828 18 0.07210538194484474 20 0.06862565517945252 22 0.06408620605770944 16 0.06111625629255511 12 0.05904169876190886 11 0.05879613813130601 17 0.054177860673213216 24 0.05362704436377208 10 0.04853563522415895 23 0.04680649554628281 0 0.038483355749417386 14 0.035207507180203976 13 0.03381961876375893 9 0.03009982593450079 15 0.025836236513405792 4 0.013638007567771806 5 0.013072567564467381 6 0.010359691431124602 3 0.009981077613912105 8 0.008867790885645701 7 0.008767362406056122 1 0.008575892323546285 2 0.008318179817644133 __DUMMY__ 0.005883341501187756 false 1.0 397 14 0.130581 15 0.117113 10 0.100321 18 0.097846 13 0.072996 20 0.060576 19 0.051285 22 0.050196 21 0.047717 9 0.044946 11 0.038687 23 0.028343 24 0.026685 12 0.025036 17 0.016907 0 0.014069 4 0.013863 5 0.012947 3 0.011336 6 0.008187 8 0.008171 7 0.008038 1 0.007297 2 0.006857 14 0.130581 15 0.117113 10 0.100321 18 0.097846 13 0.072996 20 0.060576 19 0.051285 22 0.050196 21 0.047717 9 0.044946 11 0.038687 23 0.028343 24 0.026685 12 0.025036 17 0.016907 0 0.014069 4 0.013863 5 0.012947 3 0.011336 6 0.008187 8 0.008171 7 0.008038 1 0.007297 2 0.006857 14 0.09571943345252028 18 0.08393987920975385 15 0.08276962260069229 10 0.08111629681471912 13 0.06207926510524321 20 0.054190275998490266 19 0.05355123053033066 22 0.052498590679372965 21 0.052447607369073786 11 0.044235397038852556 9 0.04297228054552972 12 0.03627641835836454 23 0.03295068013574007 24 0.030543932644600032 17 0.028788045825635666 0 0.02533314801910694 4 0.01879817144840066 5 0.01817791926787836 3 0.015582326814131036 16 0.015553305865281756 6 0.01487529709876701 8 0.013930270523477232 7 0.013844085077117223 1 0.013419815623781672 2 0.013068238015558677 __DUMMY__ 0.003338465937580564 false 1.0 155 9 0.074539 22 0.062031 0 0.058724 5 0.056702 4 0.056406 6 0.056007 7 0.055684 8 0.055644 1 0.055523 2 0.055148 3 0.055148 17 0.052398 18 0.047088 10 0.046373 11 0.036285 21 0.034512 23 0.030752 19 0.02692 16 0.021624 24 0.020718 15 0.015835 14 0.01209 12 0.007839 20 0.00601 9 0.074539 22 0.062031 0 0.058724 5 0.056702 4 0.056406 6 0.056007 7 0.055684 8 0.055644 1 0.055523 2 0.055148 3 0.055148 17 0.052398 18 0.047088 10 0.046373 11 0.036285 21 0.034512 23 0.030752 19 0.02692 16 0.021624 24 0.020718 15 0.015835 14 0.01209 12 0.007839 20 0.00601 9 0.06685674788266588 22 0.0598350961767152 0 0.05554467311074637 4 0.0523399730278153 17 0.052208136182465094 5 0.05219326329672768 6 0.051893301805743544 7 0.051401196653756885 8 0.05139642137333642 1 0.051261041532630905 2 0.05075860812293754 3 0.05057411299820561 18 0.04777205862630439 10 0.044600604170391654 11 0.03837320901271726 21 0.037302400635555 23 0.03438889572711176 19 0.03207672541961824 16 0.026483789498155084 24 0.024844269775298484 15 0.017703392725777256 14 0.014817649611798421 12 0.014522696106122448 20 0.012921306193410276 13 0.005820222881197598 __DUMMY__ 0.0021102074527955413 false 1.0 398 18 0.094719 10 0.089962 19 0.077299 11 0.076158 21 0.075374 22 0.071993 12 0.059814 14 0.059651 0 0.056012 13 0.055787 17 0.053133 20 0.051188 9 0.046381 16 0.039737 15 0.030527 24 0.022834 23 0.022126 4 0.005863 5 0.005637 6 0.003506 7 7.01E-4 8 5.97E-4 3 5.29E-4 1 4.72E-4 18 0.094719 10 0.089962 19 0.077299 11 0.076158 21 0.075374 22 0.071993 12 0.059814 14 0.059651 0 0.056012 13 0.055787 17 0.053133 20 0.051188 9 0.046381 16 0.039737 15 0.030527 24 0.022834 23 0.022126 4 0.005863 5 0.005637 6 0.003506 7 7.01E-4 8 5.97E-4 3 5.29E-4 1 4.72E-4 18 0.08570573162714042 10 0.08050563854933418 21 0.07116038880115406 11 0.07027547681738903 19 0.06953653954795101 22 0.0693017804777035 14 0.05615660125252707 12 0.05546212362519792 0 0.05171067929588062 13 0.05149866631292618 17 0.04946505424889037 9 0.04673723820304966 20 0.04672701503740915 16 0.035189422456123165 15 0.030432650830552396 23 0.02657570055276172 24 0.025980346970408692 4 0.012932472267390764 5 0.012613900102603326 6 0.010468047594988565 3 0.00792077018664514 7 0.007899272025288371 8 0.007834031023911356 1 0.007706258725502822 2 0.007311192206780621 __DUMMY__ 0.0028930012604899435 false 1.0 156 9 0.063058 4 0.056731 5 0.056679 6 0.055548 1 0.05453 7 0.054466 8 0.054444 3 0.053813 2 0.053773 10 0.049165 22 0.047827 18 0.043127 14 0.042223 0 0.040154 23 0.038924 21 0.037585 13 0.035115 15 0.032008 11 0.03087 17 0.028527 12 0.024277 24 0.022428 19 0.013578 20 0.011149 9 0.063058 4 0.056731 5 0.056679 6 0.055548 1 0.05453 7 0.054466 8 0.054444 3 0.053813 2 0.053773 10 0.049165 22 0.047827 18 0.043127 14 0.042223 0 0.040154 23 0.038924 21 0.037585 13 0.035115 15 0.032008 11 0.03087 17 0.028527 12 0.024277 24 0.022428 19 0.013578 20 0.011149 9 0.057130974365543506 22 0.05294417903690899 10 0.04917765544568939 18 0.049029152920281795 4 0.04788082867520649 5 0.047614901334201196 6 0.04653915094234983 21 0.04536004807389077 7 0.04516278543630003 1 0.045144947383132905 8 0.045143996808140026 3 0.04454421164998068 2 0.04451793920249803 0 0.04193194602228575 23 0.039292232537389865 11 0.03916772455392989 14 0.038970087966506466 17 0.03563649074496029 13 0.03416703793420758 12 0.031598137183120094 15 0.028160869602380144 19 0.027969967142488953 24 0.0275009969814267 20 0.020249731731204042 16 0.012398427247864458 __DUMMY__ 0.0027655790781121277 false 1.0 157 3 0.060996 4 0.05792 5 0.057386 8 0.057231 7 0.057131 1 0.056983 2 0.056646 9 0.056009 6 0.054066 23 0.049615 24 0.047309 22 0.046451 15 0.042013 18 0.041084 10 0.037701 20 0.035136 19 0.032908 14 0.029882 21 0.029154 17 0.029038 0 0.027107 11 0.021808 16 0.015816 13 6.11E-4 3 0.060996 4 0.05792 5 0.057386 8 0.057231 7 0.057131 1 0.056983 2 0.056646 9 0.056009 6 0.054066 23 0.049615 24 0.047309 22 0.046451 15 0.042013 18 0.041084 10 0.037701 20 0.035136 19 0.032908 14 0.029882 21 0.029154 17 0.029038 0 0.027107 11 0.021808 16 0.015816 13 6.11E-4 22 0.05448027163512919 18 0.05299667870980123 9 0.04929694612432388 19 0.047103915180767474 21 0.04657475346329982 23 0.045900351978892424 24 0.045716338444558274 10 0.043938336513267943 4 0.04262823851493776 3 0.04237465027943739 5 0.042112210233346645 20 0.04176219857647506 8 0.04006251652660088 7 0.0400078422887263 1 0.0398251801984093 2 0.03947234643193375 6 0.03919764482670319 11 0.03666464179441309 17 0.03637546248463164 14 0.0359551790744177 15 0.03579756104676971 0 0.03195443752928379 16 0.024958691856654055 12 0.023035142810011275 13 0.017679211617002498 __DUMMY__ 0.004129251860205608 false 1.0 399 14 0.123425 13 0.11298 15 0.083404 10 0.08145 18 0.076049 12 0.074536 21 0.068185 20 0.05409 11 0.052634 19 0.042966 22 0.04285 23 0.035268 9 0.030097 24 0.028557 0 0.015002 5 0.013308 4 0.013237 6 0.009946 17 0.009492 3 0.006993 8 0.006608 1 0.006391 7 0.00634 2 0.006192 14 0.123425 13 0.11298 15 0.083404 10 0.08145 18 0.076049 12 0.074536 21 0.068185 20 0.05409 11 0.052634 19 0.042966 22 0.04285 23 0.035268 9 0.030097 24 0.028557 0 0.015002 5 0.013308 4 0.013237 6 0.009946 17 0.009492 3 0.006993 8 0.006608 1 0.006391 7 0.00634 2 0.006192 14 0.09546247868743583 13 0.08745086550204832 18 0.07223458708869902 10 0.07022093216480349 15 0.06644492582708157 12 0.06608787475724442 21 0.06587452647706576 11 0.05238300405792256 20 0.05217688681190594 19 0.04944711612362898 22 0.048636323037402764 23 0.03738526037083901 24 0.0331581549292234 9 0.033139437266350456 0 0.023627261690675937 17 0.02327110816794931 4 0.01715904662874665 5 0.016995085451286484 16 0.014557441646947457 6 0.01439095008614447 3 0.011534196155719831 8 0.011423157550032708 7 0.011264376745691345 1 0.011216612644594025 2 0.010991802449069929 __DUMMY__ 0.0034665876814903036 false 1.0 158 9 0.074716 4 0.059992 22 0.059716 7 0.059651 8 0.059603 6 0.059407 1 0.059016 5 0.058474 3 0.057758 2 0.057673 0 0.055755 17 0.050481 18 0.045306 10 0.04429 23 0.034442 21 0.032562 11 0.031775 19 0.023286 24 0.021363 16 0.017223 15 0.014728 14 0.012196 20 0.005716 12 0.004873 9 0.074716 4 0.059992 22 0.059716 7 0.059651 8 0.059603 6 0.059407 1 0.059016 5 0.058474 3 0.057758 2 0.057673 0 0.055755 17 0.050481 18 0.045306 10 0.04429 23 0.034442 21 0.032562 11 0.031775 19 0.023286 24 0.021363 16 0.017223 15 0.014728 14 0.012196 20 0.005716 12 0.004873 9 0.06665828999187319 22 0.057919293949359955 4 0.0544406932504336 6 0.05392665987617515 7 0.05371782337400991 8 0.053704071948399185 0 0.053485153134374845 5 0.0534624823004113 1 0.05336713160175298 2 0.0524147772895904 3 0.05225797478843786 17 0.05070711709532375 18 0.04647913893813954 10 0.04320264288796216 23 0.03665272922935796 21 0.035844761205645996 11 0.035362156749502036 19 0.029805505212530285 24 0.02534307271159935 16 0.024031396841944455 15 0.017638835230765284 14 0.015096294256308946 12 0.013110233759505525 20 0.0129771704233106 13 0.00617598477675017 __DUMMY__ 0.0022186091765355603 false 1.0 159 6 0.073077 8 0.07249 7 0.072436 1 0.072077 2 0.071629 4 0.071541 5 0.070726 3 0.069579 9 0.06092 23 0.04986 0 0.046838 17 0.045894 22 0.040396 24 0.030256 18 0.024523 16 0.023457 10 0.019827 21 0.019515 11 0.017323 15 0.012852 19 0.011889 12 0.01185 20 0.007586 13 0.003458 6 0.073077 8 0.07249 7 0.072436 1 0.072077 2 0.071629 4 0.071541 5 0.070726 3 0.069579 9 0.06092 23 0.04986 0 0.046838 17 0.045894 22 0.040396 24 0.030256 18 0.024523 16 0.023457 10 0.019827 21 0.019515 11 0.017323 15 0.012852 19 0.011889 12 0.01185 20 0.007586 13 0.003458 6 0.05967017754459771 4 0.058919960755802525 8 0.058877975902148945 7 0.05883730064948784 1 0.0586235432008697 9 0.05829865612260851 5 0.05827552310379773 2 0.058102815942377234 3 0.05661722778005904 17 0.04975154677414089 0 0.04949373438039859 22 0.04793629305316705 23 0.04472993413621677 18 0.036533560544486296 10 0.030424860746228948 24 0.030041878460348483 21 0.029973061393824007 16 0.029589878537126767 11 0.028841847747885115 19 0.025664945770476413 12 0.01883102539148154 15 0.01650312355467414 20 0.015135865725494595 13 0.009188410852682677 14 0.008569712531208513 __DUMMY__ 0.0025671393984101456 false 1.0 50 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0584886701189867 4 0.058459291362940424 6 0.05839856495222417 7 0.05834898965762027 8 0.05822486466380335 5 0.058093697869443794 2 0.057614072649147356 9 0.05720145577796322 3 0.05701360474823688 22 0.04832573792094125 23 0.04677294774815023 17 0.0461035862917424 0 0.04447913163970177 18 0.036801064101510336 24 0.03457924544843505 21 0.03250022308966565 10 0.029258766920556997 19 0.027592032755968294 11 0.027289936341365232 16 0.026988253225511183 20 0.019083737395244653 12 0.018280667746276458 15 0.018129351814008342 14 0.011032128517411694 13 0.008504321469870391 __DUMMY__ 0.002435655773273892 false 1.0 51 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.06732978299915637 22 0.06031642490546302 0 0.05661682687045706 17 0.05359079830277305 4 0.051909379419052416 6 0.05143748169794891 7 0.05111050121737439 5 0.05105955256700843 8 0.0510376207040555 1 0.05091877994581521 2 0.04986689124265747 3 0.049623325208543116 18 0.04899471802210836 10 0.04548370748448358 11 0.039324294351274755 21 0.03761257463026232 23 0.034034871035922294 19 0.03292668780900995 16 0.02688763632406604 24 0.024212419227741845 15 0.01646855042147289 14 0.014447213688742548 12 0.0139833517472188 20 0.012872118062071104 13 0.005765063840647249 __DUMMY__ 0.002169428274673352 false 1.0 52 22 0.088834 11 0.072042 9 0.069235 21 0.06824 0 0.062045 18 0.057159 17 0.056314 10 0.054013 19 0.04876 4 0.038697 5 0.038168 6 0.035608 3 0.03473 8 0.034058 7 0.033977 1 0.033775 2 0.033165 24 0.029524 12 0.027599 16 0.025334 23 0.023829 14 0.018513 20 0.010602 13 0.005778 22 0.088834 11 0.072042 9 0.069235 21 0.06824 0 0.062045 18 0.057159 17 0.056314 10 0.054013 19 0.04876 4 0.038697 5 0.038168 6 0.035608 3 0.03473 8 0.034058 7 0.033977 1 0.033775 2 0.033165 24 0.029524 12 0.027599 16 0.025334 23 0.023829 14 0.018513 20 0.010602 13 0.005778 22 0.07854659575241334 11 0.06455900444024372 21 0.06435221842049683 9 0.06046527742223588 18 0.05766942710098617 0 0.055899902847402434 17 0.05392234953036615 10 0.05101308474771313 19 0.050963727798821495 4 0.03639014545242175 5 0.035851885415744585 6 0.03389605780353866 12 0.03314069889354039 24 0.03270797038329824 3 0.03249161408129663 8 0.0323116717337107 7 0.032273091549966625 1 0.032048270305876606 2 0.03149205308307931 23 0.030406459847190773 16 0.030174295431159525 14 0.022718900183589574 20 0.020746393323789716 13 0.01432338167096063 15 0.00831097249192139 __DUMMY__ 0.0033245502882358288 false 1.0 53 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05848055849175293 4 0.05845191331173842 6 0.058391393557877286 7 0.05834077513176871 8 0.05821677932393573 5 0.058086789451426896 2 0.057606631270449044 9 0.057184832009033605 3 0.05700553471328174 22 0.04831964125446169 23 0.04678215765110952 17 0.046100662239544114 0 0.044470292262728306 18 0.036799898623128144 24 0.03458913542255181 21 0.03250660605585079 10 0.02925179388355925 19 0.027600607635994017 11 0.02729156420642699 16 0.026997252267623374 20 0.019098149248473795 12 0.018298852706259278 15 0.018133256099218023 14 0.011037329984449234 13 0.00851857918153893 __DUMMY__ 0.002439014015818311 false 1.0 54 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.06731858732767114 22 0.06028919920343717 0 0.0565858138363234 17 0.053567606894029826 4 0.05193921953194792 6 0.05146774050339127 7 0.05114259262010066 5 0.05108993451803954 8 0.05106920685582993 1 0.05095170187464683 2 0.04989899795116191 3 0.04965539378274983 18 0.04895696708108587 10 0.04543787321721505 11 0.03928630487659882 21 0.037596419685169795 23 0.034066246824630504 19 0.03289989648043893 16 0.026871998383682715 24 0.024237207810999736 15 0.016462072414480285 14 0.014430012083478905 12 0.013980746740103385 20 0.012874838791829745 13 0.005759160991922944 __DUMMY__ 0.0021642597190338693 false 1.0 55 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.06708995447514741 22 0.05835026454699203 4 0.054134987033643917 0 0.05405355774076544 6 0.05361556754479973 5 0.05348896331064997 8 0.05334501872539734 7 0.05329053102740648 1 0.053269345930409155 2 0.05223944984573849 3 0.05203870561495857 17 0.051302395879889016 18 0.04705875712887312 10 0.04336931414392613 23 0.036016614462540335 21 0.0358782578456423 11 0.03556946443861211 19 0.030075061840127496 24 0.024887979924382426 16 0.02445752476443674 15 0.017689925267149086 14 0.014998845783912012 12 0.013126040266427242 20 0.012303074115417369 13 0.006124836838264867 __DUMMY__ 0.0022255615044912457 false 1.0 56 9 0.074038 4 0.070324 8 0.069494 5 0.069272 6 0.069182 7 0.069129 3 0.068881 1 0.068587 2 0.06836 22 0.051501 0 0.043603 23 0.043577 10 0.039475 17 0.037861 18 0.034673 21 0.026436 24 0.025626 15 0.018934 11 0.016256 14 0.014929 19 0.010745 20 0.00474 16 0.004372 13 9.0E-6 9 0.074038 4 0.070324 8 0.069494 5 0.069272 6 0.069182 7 0.069129 3 0.068881 1 0.068587 2 0.06836 22 0.051501 0 0.043603 23 0.043577 10 0.039475 17 0.037861 18 0.034673 21 0.026436 24 0.025626 15 0.018934 11 0.016256 14 0.014929 19 0.010745 20 0.00474 16 0.004372 13 9.0E-6 9 0.06428235764986413 4 0.05678159782344238 5 0.05602584378923785 6 0.055840530367400894 8 0.055503172390973674 7 0.0553288134550278 1 0.05501571162047072 3 0.05471642946389656 2 0.05460504731118913 22 0.054044178676861676 0 0.04625152659926961 17 0.04394668835555004 18 0.04347670682759744 10 0.04224320820038971 23 0.04132425303108439 21 0.03517494865772014 11 0.02931870484546484 24 0.028295463939910722 19 0.026180161280935234 15 0.021575025876321246 14 0.019829731308043785 16 0.018418553676951492 20 0.015411467395590009 12 0.013943627755331622 13 0.009787161734327919 __DUMMY__ 0.0026790879671471884 false 1.0 57 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.06733336227716495 22 0.06027535773347882 0 0.056561654961845564 17 0.05353826825426426 4 0.05196925723471575 6 0.051496048983741806 7 0.051171763208489825 5 0.0511192684148469 8 0.05109878774159175 1 0.05098043367499141 2 0.0499280057861455 3 0.04968624546158315 18 0.04893761165088394 10 0.04543071542713295 11 0.0392470938151109 21 0.03758025220148424 23 0.034080733818201696 19 0.03286245151089668 16 0.0268279043062503 24 0.02423887525646149 15 0.016467710170206335 14 0.014436709698427704 12 0.01395743606030583 20 0.0128617460971025 13 0.005753222267337747 __DUMMY__ 0.002159083987337892 false 1.0 58 9 0.074959 22 0.062954 4 0.061886 5 0.060927 6 0.060195 8 0.059712 7 0.059507 1 0.059302 3 0.058889 2 0.058432 0 0.050593 10 0.04572 18 0.043113 21 0.041437 17 0.039375 23 0.036655 11 0.036379 24 0.021658 14 0.018869 19 0.015641 12 0.013042 13 0.009938 15 0.009909 16 9.07E-4 9 0.074959 22 0.062954 4 0.061886 5 0.060927 6 0.060195 8 0.059712 7 0.059507 1 0.059302 3 0.058889 2 0.058432 0 0.050593 10 0.04572 18 0.043113 21 0.041437 17 0.039375 23 0.036655 11 0.036379 24 0.021658 14 0.018869 19 0.015641 12 0.013042 13 0.009938 15 0.009909 16 9.07E-4 9 0.06564717801013195 22 0.060392578731016035 4 0.053649836017529436 5 0.052939758029899926 6 0.05220681391353658 8 0.05144818962031364 7 0.051363269383814913 1 0.05121298396147153 3 0.05075520962975456 2 0.05049208523599872 0 0.048809155470057514 18 0.046803493496819844 10 0.04544903528214245 21 0.0438711076978689 17 0.04258116298044539 11 0.039529204693582023 23 0.0381121896398285 19 0.02699037923583225 24 0.026522966087713134 14 0.022192099546506402 12 0.020796130720598494 13 0.015308802725474389 15 0.015245273147042564 16 0.013324628954747881 20 0.011876910312046138 __DUMMY__ 0.002479557475826813 false 1.0 59 19 0.069385 17 0.068642 18 0.066784 22 0.066426 0 0.060808 16 0.059642 9 0.054969 10 0.052978 11 0.049837 21 0.044523 20 0.03738 23 0.034625 4 0.032012 5 0.031592 7 0.031109 1 0.031082 8 0.031037 6 0.030974 3 0.030877 24 0.030429 2 0.030292 15 0.022057 12 0.020019 14 0.012524 19 0.069385 17 0.068642 18 0.066784 22 0.066426 0 0.060808 16 0.059642 9 0.054969 10 0.052978 11 0.049837 21 0.044523 20 0.03738 23 0.034625 4 0.032012 5 0.031592 7 0.031109 1 0.031082 8 0.031037 6 0.030974 3 0.030877 24 0.030429 2 0.030292 15 0.022057 12 0.020019 14 0.012524 22 0.06436489812584134 19 0.06383681078311716 18 0.0637874334803784 17 0.061527453392071926 0 0.0551068248615839 9 0.05197369184837825 16 0.05154711907684528 10 0.05132453914528767 11 0.05047695062899418 21 0.048640133750833765 20 0.037386372980653865 23 0.036480384402529514 24 0.03296932512569767 4 0.03229780818605061 5 0.03185189129223775 6 0.031001907747414133 7 0.030487965440811303 8 0.030479687722870567 1 0.03036670706144896 3 0.030273904972194038 2 0.029779856036588854 12 0.027198175993098313 15 0.023350711725531496 14 0.01981382244029304 13 0.010192120692833715 __DUMMY__ 0.0034835030864144214 false 1.0 160 9 0.076328 4 0.060089 7 0.059566 8 0.059441 6 0.059439 22 0.059251 1 0.059214 5 0.059172 3 0.058276 2 0.058195 0 0.055201 17 0.049745 18 0.04408 10 0.043945 23 0.033582 21 0.032527 11 0.031571 19 0.023096 24 0.021546 16 0.017556 15 0.015636 14 0.012364 12 0.005393 20 0.004787 9 0.076328 4 0.060089 7 0.059566 8 0.059441 6 0.059439 22 0.059251 1 0.059214 5 0.059172 3 0.058276 2 0.058195 0 0.055201 17 0.049745 18 0.04408 10 0.043945 23 0.033582 21 0.032527 11 0.031571 19 0.023096 24 0.021546 16 0.017556 15 0.015636 14 0.012364 12 0.005393 20 0.004787 9 0.06739947884907696 22 0.05768934074317225 4 0.05450243843522017 6 0.0539606183854119 5 0.053801284455911126 7 0.05369736839978169 8 0.05364813568381103 1 0.0534770533553503 0 0.05322585198908186 2 0.05267436473405336 3 0.05251366292751476 17 0.05036547393149093 18 0.045893452319559186 10 0.0430218073653744 23 0.03626728416881971 21 0.03581272420063809 11 0.03525047716969396 19 0.029700025137958865 24 0.025429875118570543 16 0.02418453100037126 15 0.01805113358641513 14 0.0151573026891504 12 0.013347686964344668 20 0.012541079117730895 13 0.006171790630569721 __DUMMY__ 0.0022157586409267496 false 1.0 161 20 0.102961 19 0.099234 21 0.083902 12 0.078846 18 0.078706 24 0.076404 23 0.059355 16 0.056119 22 0.054326 13 0.053098 14 0.048478 11 0.047942 10 0.041654 17 0.039909 15 0.033762 0 0.014057 9 0.01317 5 0.006316 4 0.006224 3 0.00323 6 0.001616 7 3.16E-4 8 2.96E-4 2 7.8E-5 20 0.102961 19 0.099234 21 0.083902 12 0.078846 18 0.078706 24 0.076404 23 0.059355 16 0.056119 22 0.054326 13 0.053098 14 0.048478 11 0.047942 10 0.041654 17 0.039909 15 0.033762 0 0.014057 9 0.01317 5 0.006316 4 0.006224 3 0.00323 6 0.001616 7 3.16E-4 8 2.96E-4 2 7.8E-5 19 0.08706914213809894 20 0.08513185454249197 21 0.07802083744639253 18 0.07356597287962674 12 0.06835910706946381 24 0.06678203204970264 22 0.05731315789356101 23 0.054318211864558985 11 0.04980753898057601 16 0.04883208097571258 13 0.0467739447034547 14 0.046681204569561596 10 0.04351639411247867 17 0.04043109020516811 15 0.03226473268130847 9 0.02205129455593391 0 0.02051764448027572 4 0.01300712686324568 5 0.01279351869741849 3 0.00971734318617421 6 0.008742233473604541 7 0.007406276797249652 8 0.007378126826373391 1 0.007119715300855187 2 0.0070023088552191685 __DUMMY__ 0.005397108851493393 false 1.0 162 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.0665417227806014 22 0.058284507892712716 4 0.054274024982425645 6 0.053756658880005935 5 0.05373343522651821 8 0.05351061655702127 7 0.05346434141326943 0 0.05346252076636976 1 0.05318958238949015 2 0.05260697741512748 3 0.05244627568273516 17 0.05045034654845621 18 0.046604433931363126 10 0.0432331043722799 23 0.03651134301890105 21 0.03590221743727351 11 0.03527998989854238 19 0.029868418973332752 24 0.025343121968282225 16 0.024168371173765038 15 0.01787302851825366 14 0.015062249249224627 12 0.013251711578324546 20 0.012793453944163195 13 0.006171787782964052 __DUMMY__ 0.0022157576185967255 false 1.0 163 21 0.081615 22 0.069049 12 0.061134 11 0.060893 18 0.054893 10 0.052483 9 0.050785 13 0.049939 23 0.044785 14 0.043445 19 0.041698 24 0.041575 4 0.036488 5 0.03584 0 0.034185 6 0.032281 20 0.031322 3 0.030592 8 0.029525 7 0.029507 1 0.029221 2 0.028775 17 0.025037 15 0.004933 21 0.081615 22 0.069049 12 0.061134 11 0.060893 18 0.054893 10 0.052483 9 0.050785 13 0.049939 23 0.044785 14 0.043445 19 0.041698 24 0.041575 4 0.036488 5 0.03584 0 0.034185 6 0.032281 20 0.031322 3 0.030592 8 0.029525 7 0.029507 1 0.029221 2 0.028775 17 0.025037 15 0.004933 21 0.07463208594150955 22 0.06535263724090966 12 0.059340763725374765 11 0.05923552833681562 18 0.05609217158883232 10 0.05060152070648125 13 0.0482956272371788 9 0.047244387635174814 19 0.045908748547296124 23 0.0432844833962407 14 0.0417787891018479 24 0.039692346595187035 0 0.03750075463945169 4 0.03388618251834811 20 0.03372947253307092 5 0.033359196659998445 17 0.03250600292938433 6 0.03078150256015552 3 0.028273210009404717 7 0.028003571819500916 8 0.027983955903910895 1 0.0278133225238812 2 0.027398095318529356 16 0.012860821130253943 15 0.011087838059006904 __DUMMY__ 0.003356983342254309 false 1.0 164 10 0.103051 18 0.097812 22 0.082571 11 0.077805 9 0.070575 0 0.06937 21 0.068633 19 0.056846 17 0.054493 14 0.053349 13 0.042355 12 0.038289 15 0.02052 20 0.019409 4 0.018507 5 0.017894 6 0.01608 16 0.015028 1 0.013462 7 0.013393 8 0.013087 3 0.012525 23 0.012501 2 0.012442 10 0.103051 18 0.097812 22 0.082571 11 0.077805 9 0.070575 0 0.06937 21 0.068633 19 0.056846 17 0.054493 14 0.053349 13 0.042355 12 0.038289 15 0.02052 20 0.019409 4 0.018507 5 0.017894 6 0.01608 16 0.015028 1 0.013462 7 0.013393 8 0.013087 3 0.012525 23 0.012501 2 0.012442 10 0.08364274576553225 18 0.08303745015678193 22 0.07253896199123658 11 0.06598599719851655 21 0.061833157897539834 9 0.06167614990377556 0 0.058910324258672174 19 0.054245932475358305 17 0.050468041380649704 14 0.04833481138608617 13 0.03844466753137114 12 0.03778680027024663 20 0.026696762143204333 15 0.02536673820336959 4 0.024511476121784465 5 0.02399887045919364 23 0.02255383787399891 6 0.02230188605448594 16 0.021735668471165735 7 0.02018182469207393 1 0.02014632297108741 8 0.020032029867573693 3 0.019746020905994362 2 0.01943038917317986 24 0.013697179551584983 __DUMMY__ 0.002695953295536261 false 1.0 165 10 0.103841 18 0.090619 11 0.090341 22 0.077989 21 0.074653 13 0.070606 14 0.069492 0 0.068812 12 0.062341 9 0.058854 19 0.054483 17 0.048782 15 0.025969 20 0.02013 16 0.019164 4 0.011281 5 0.010684 23 0.010672 6 0.009571 8 0.00473 7 0.004655 2 0.004561 1 0.00447 3 0.003301 10 0.103841 18 0.090619 11 0.090341 22 0.077989 21 0.074653 13 0.070606 14 0.069492 0 0.068812 12 0.062341 9 0.058854 19 0.054483 17 0.048782 15 0.025969 20 0.02013 16 0.019164 4 0.011281 5 0.010684 23 0.010672 6 0.009571 8 0.00473 7 0.004655 2 0.004561 1 0.00447 3 0.003301 10 0.08540845414266483 18 0.08152990258599475 11 0.07553616048510559 22 0.07120804704093184 21 0.06871015405927768 14 0.059581876202045324 0 0.057956405697086696 13 0.057383074769305785 19 0.05586063029915853 12 0.05491582181910163 9 0.0533905583304731 17 0.04724085921511964 20 0.029527525447041927 15 0.028384782060272944 16 0.02450708703967352 23 0.021635946578478876 4 0.01758433564244683 5 0.017080380802241554 6 0.015631980209412973 24 0.0144115716727758 8 0.012090454857275154 7 0.012060447883522039 1 0.011889121446814857 2 0.011734333451025532 3 0.0113111112543135 __DUMMY__ 0.0034289770084390773 false 1.0 166 10 0.104414 18 0.098683 11 0.089184 22 0.079386 0 0.072816 21 0.068076 19 0.067519 17 0.060534 14 0.060099 9 0.05729 13 0.054771 12 0.051365 16 0.034177 15 0.028674 20 0.02603 23 0.010646 4 0.008585 5 0.008153 6 0.006971 2 0.003031 8 0.002708 1 0.002666 7 0.002516 3 0.001706 10 0.104414 18 0.098683 11 0.089184 22 0.079386 0 0.072816 21 0.068076 19 0.067519 17 0.060534 14 0.060099 9 0.05729 13 0.054771 12 0.051365 16 0.034177 15 0.028674 20 0.02603 23 0.010646 4 0.008585 5 0.008153 6 0.006971 2 0.003031 8 0.002708 1 0.002666 7 0.002516 3 0.001706 10 0.08742137185222876 18 0.086092672621399 11 0.07447126941952249 22 0.07284916302272894 21 0.0636254848236217 0 0.061670325843602304 19 0.061344719421291154 9 0.055322715647366384 14 0.054157492305210005 17 0.05402733071616027 13 0.046277387697442565 12 0.04539582106340023 16 0.031382896341232196 20 0.030355791140654304 15 0.030231313042212882 23 0.01987587525699804 4 0.01725067098783867 5 0.016816228401293775 6 0.01532004978164949 24 0.012589146457258202 8 0.01231938613567414 7 0.012229145620504759 1 0.012207227362624548 2 0.012155305687666674 3 0.011849940389842877 __DUMMY__ 0.0027612689605756888 false 1.0 167 0 0.089632 17 0.082228 9 0.061514 11 0.061152 16 0.059445 22 0.058759 10 0.056259 18 0.053163 6 0.04423 2 0.040981 8 0.040969 7 0.040799 1 0.040771 4 0.039515 5 0.039197 19 0.03798 3 0.035126 21 0.031547 12 0.02927 23 0.021144 13 0.017715 15 0.013488 14 0.004309 24 8.07E-4 0 0.089632 17 0.082228 9 0.061514 11 0.061152 16 0.059445 22 0.058759 10 0.056259 18 0.053163 6 0.04423 2 0.040981 8 0.040969 7 0.040799 1 0.040771 4 0.039515 5 0.039197 19 0.03798 3 0.035126 21 0.031547 12 0.02927 23 0.021144 13 0.017715 15 0.013488 14 0.004309 24 8.07E-4 0 0.07469515486419795 17 0.07183622619299632 9 0.059072642241816894 22 0.058016927397877414 11 0.052838032836648514 18 0.05174618001073767 16 0.051520006400973914 10 0.04963388182934266 6 0.04459009774699353 8 0.042290395258035546 7 0.042171498448770516 1 0.04209445365421954 2 0.04188126950644643 4 0.04179863259579837 5 0.04137624177756653 19 0.039780897886236975 3 0.03804336997961331 21 0.03521918957080199 23 0.02838083461510291 12 0.027449426574329094 15 0.016352185882401178 13 0.015293753985657636 24 0.013135838684810735 20 0.009946662738405845 14 0.008777724874514696 __DUMMY__ 0.0020584744457037697 false 1.0 168 10 0.115086 18 0.109108 11 0.088827 22 0.088704 21 0.08505 14 0.069127 9 0.066982 0 0.064592 19 0.062372 13 0.061741 12 0.055494 17 0.046179 20 0.02479 15 0.019545 23 0.012131 4 0.008844 5 0.008581 6 0.005 16 0.004125 1 8.73E-4 24 8.49E-4 8 7.09E-4 7 6.57E-4 3 6.35E-4 10 0.115086 18 0.109108 11 0.088827 22 0.088704 21 0.08505 14 0.069127 9 0.066982 0 0.064592 19 0.062372 13 0.061741 12 0.055494 17 0.046179 20 0.02479 15 0.019545 23 0.012131 4 0.008844 5 0.008581 6 0.005 16 0.004125 1 8.73E-4 24 8.49E-4 8 7.09E-4 7 6.57E-4 3 6.35E-4 10 0.08878926774363155 18 0.08797099206552848 22 0.07508136926953071 11 0.07168220486567874 21 0.07077669714068481 9 0.05882659130600561 19 0.05699321620207165 14 0.05681664332884822 0 0.055731767790098335 13 0.04971493022524883 12 0.04808223247587412 17 0.045656789623211604 20 0.03003934307450098 15 0.024838279768522924 23 0.02296725379667407 4 0.019435419048139498 5 0.019096583136818744 6 0.01653411920374157 16 0.01631331513033978 24 0.014882257756230702 1 0.013561605027079352 8 0.013532516331377302 7 0.013522909375239827 3 0.013473717378008834 2 0.012928717699451803 __DUMMY__ 0.0027512612374618805 false 1.0 169 0 0.086305 17 0.077722 10 0.06726 11 0.064106 18 0.06236 9 0.061206 22 0.060599 16 0.05505 19 0.042773 6 0.037471 21 0.035586 8 0.034354 7 0.034195 1 0.034077 4 0.033778 2 0.033715 5 0.033307 12 0.031273 3 0.028812 13 0.024724 15 0.020015 23 0.018292 14 0.016747 20 0.006275 0 0.086305 17 0.077722 10 0.06726 11 0.064106 18 0.06236 9 0.061206 22 0.060599 16 0.05505 19 0.042773 6 0.037471 21 0.035586 8 0.034354 7 0.034195 1 0.034077 4 0.033778 2 0.033715 5 0.033307 12 0.031273 3 0.028812 13 0.024724 15 0.020015 23 0.018292 14 0.016747 20 0.006275 0 0.07259767635903462 17 0.06837726200776567 9 0.0596960776738797 22 0.05953182197454893 18 0.05696482707064936 10 0.056458163851046246 11 0.054624296092163994 16 0.04723494956138414 19 0.041691012843451565 6 0.04106676438766999 4 0.03898990398772383 8 0.03887818106954209 7 0.038771853097529195 1 0.03865050854553289 5 0.03849825921289614 2 0.03817499393838282 21 0.037807783245198 3 0.035003742962922066 12 0.02803927339906027 23 0.02651866033325394 15 0.019786380688416504 13 0.019274882461874854 14 0.01640820015798363 20 0.012673591749767444 24 0.012351100868794169 __DUMMY__ 0.0019298324595279893 false 1.0 60 9 0.07489 4 0.060087 22 0.060029 8 0.059432 6 0.059338 5 0.059335 7 0.059143 1 0.059045 3 0.058372 2 0.05829 0 0.055621 17 0.050142 18 0.044819 10 0.043743 23 0.033566 21 0.032162 11 0.031611 19 0.023303 24 0.021719 16 0.01739 15 0.015435 14 0.012401 12 0.005172 20 0.004954 9 0.07489 4 0.060087 22 0.060029 8 0.059432 6 0.059338 5 0.059335 7 0.059143 1 0.059045 3 0.058372 2 0.05829 0 0.055621 17 0.050142 18 0.044819 10 0.043743 23 0.033566 21 0.032162 11 0.031611 19 0.023303 24 0.021719 16 0.01739 15 0.015435 14 0.012401 12 0.005172 20 0.004954 9 0.06696490132678855 22 0.05835985569919064 4 0.054167543932427425 0 0.05404034764814886 6 0.053615613628830903 5 0.053539086988133304 8 0.053320297242317294 7 0.05317435563625185 1 0.053065400548865396 2 0.052387758024610036 3 0.052188001476586324 17 0.05108147928706606 18 0.04671197830012925 10 0.04349090130797085 23 0.03580138736019017 11 0.03570672991417259 21 0.03568881885021366 19 0.030098542786436578 24 0.025022225126339125 16 0.02449296925878806 15 0.01793800859287533 14 0.015148609661231022 12 0.013209874707792772 20 0.012437905065556509 13 0.006124646859264001 __DUMMY__ 0.0022227607698234284 false 1.0 61 4 0.074279 6 0.073582 5 0.07322 7 0.072778 8 0.072736 1 0.07238 2 0.072131 3 0.071944 9 0.059659 23 0.054987 22 0.041626 24 0.04016 17 0.037219 0 0.035706 21 0.023833 18 0.023712 10 0.016165 16 0.015779 15 0.014126 19 0.014091 20 0.01405 11 0.012892 12 0.0095 14 0.003447 4 0.074279 6 0.073582 5 0.07322 7 0.072778 8 0.072736 1 0.07238 2 0.072131 3 0.071944 9 0.059659 23 0.054987 22 0.041626 24 0.04016 17 0.037219 0 0.035706 21 0.023833 18 0.023712 10 0.016165 16 0.015779 15 0.014126 19 0.014091 20 0.01405 11 0.012892 12 0.0095 14 0.003447 4 0.06039886539748888 5 0.059632578875548514 6 0.059631648736994135 7 0.058834985245760765 8 0.058814692209180536 1 0.05858804088072839 2 0.058160697761742756 3 0.0579917202877404 9 0.057960160687178214 22 0.04939916749037789 23 0.04788948119395124 17 0.043038100302538594 0 0.04200441426986771 18 0.03639874507139836 24 0.03621062670389673 21 0.033874595327079995 10 0.028993579592511972 11 0.026716136784457858 19 0.026578416395669744 16 0.022760291977020675 20 0.01892498729706169 12 0.017906755317701216 15 0.01686589739604069 14 0.01197609415335114 13 0.008065308010852118 __DUMMY__ 0.0023840126338597147 false 1.0 62 5 0.074675 4 0.073613 6 0.073188 2 0.072978 3 0.072785 1 0.072563 8 0.072472 7 0.072404 9 0.059185 23 0.054663 22 0.041665 24 0.039706 17 0.036896 0 0.035556 18 0.023844 21 0.023715 10 0.016053 16 0.015768 15 0.014428 19 0.014079 20 0.013861 11 0.012819 12 0.009518 14 0.003566 5 0.074675 4 0.073613 6 0.073188 2 0.072978 3 0.072785 1 0.072563 8 0.072472 7 0.072404 9 0.059185 23 0.054663 22 0.041665 24 0.039706 17 0.036896 0 0.035556 18 0.023844 21 0.023715 10 0.016053 16 0.015768 15 0.014428 19 0.014079 20 0.013861 11 0.012819 12 0.009518 14 0.003566 5 0.06030520144617683 4 0.060091065623626566 6 0.059449579074399767 8 0.0586927137276107 1 0.05867268600133913 7 0.058662159759933885 2 0.05855227360804047 3 0.058380522503837115 9 0.057741109826203785 22 0.049417240740367956 23 0.04773975787229069 17 0.042888834741482286 0 0.0419351162530147 18 0.036459795149343874 24 0.03600080064894272 21 0.03382008165552142 10 0.028941834882479468 11 0.02668241754983736 19 0.026572894019219622 16 0.022755228316411445 20 0.01883764036259047 12 0.017915092294289576 15 0.017005511178883603 14 0.0120311124591383 13 0.008065315467159426 __DUMMY__ 0.002384014837858719 false 1.0 63 1 0.072835 7 0.072641 3 0.072462 8 0.072175 4 0.07201 5 0.071812 2 0.071487 6 0.070884 23 0.068309 24 0.052908 9 0.05161 22 0.03681 17 0.031201 20 0.028423 21 0.027103 0 0.023692 18 0.022831 19 0.022054 16 0.017612 15 0.014153 12 0.013647 10 0.007809 11 0.00321 14 0.002321 1 0.072835 7 0.072641 3 0.072462 8 0.072175 4 0.07201 5 0.071812 2 0.071487 6 0.070884 23 0.068309 24 0.052908 9 0.05161 22 0.03681 17 0.031201 20 0.028423 21 0.027103 0 0.023692 18 0.022831 19 0.022054 16 0.017612 15 0.014153 12 0.013647 10 0.007809 11 0.00321 14 0.002321 4 0.05884834267962623 5 0.058491887807990764 1 0.058011324097185984 7 0.05799529389021243 23 0.05794330720461364 8 0.057745729969854824 6 0.05772028114669259 3 0.05752809840728427 2 0.05709115137343456 9 0.05073440168721278 24 0.045701286520740944 22 0.04546228467339447 17 0.03781283255831912 21 0.03724338669786917 18 0.03508435080973081 0 0.03248848158395146 19 0.03167098075621555 20 0.029291625341093436 12 0.023565461963517446 16 0.02353065617326573 10 0.02222370820575991 11 0.020895942377606464 15 0.01694766385959438 14 0.012505000423872759 13 0.010936439835808831 __DUMMY__ 0.0025300799551514794 false 1.0 64 22 0.092359 21 0.088793 11 0.078285 19 0.056179 18 0.054498 9 0.054392 24 0.049211 12 0.046069 10 0.042987 0 0.041917 17 0.04143 23 0.041251 4 0.032284 5 0.031194 14 0.030006 3 0.027722 6 0.02701 20 0.025702 7 0.025404 8 0.02526 1 0.024585 2 0.02432 16 0.020828 13 0.018314 22 0.092359 21 0.088793 11 0.078285 19 0.056179 18 0.054498 9 0.054392 24 0.049211 12 0.046069 10 0.042987 0 0.041917 17 0.04143 23 0.041251 4 0.032284 5 0.031194 14 0.030006 3 0.027722 6 0.02701 20 0.025702 7 0.025404 8 0.02526 1 0.024585 2 0.02432 16 0.020828 13 0.018314 22 0.07972551902208401 21 0.07710096982774069 11 0.06647862141496423 18 0.05590760977038142 19 0.05587605836974511 9 0.050864988462613316 24 0.04655444375554485 12 0.04467906610496453 10 0.0436710358137993 17 0.04309091958613195 23 0.04163023218479418 0 0.041330030326283025 4 0.0328562265038943 5 0.032064920580945094 20 0.03200463050043225 14 0.030508143792373023 6 0.028762984369538627 3 0.028704505531850694 7 0.02723700197059649 8 0.02713683149329919 1 0.02672137058499861 2 0.026333268218129494 16 0.025955132986259503 13 0.022411540102125094 15 0.008622901343154764 __DUMMY__ 0.0037710473833564265 false 1.0 65 23 0.087572 24 0.067345 4 0.060175 5 0.059431 6 0.059138 7 0.058388 2 0.058132 3 0.057979 8 0.057946 1 0.057943 20 0.051511 12 0.046023 21 0.040591 19 0.040212 16 0.030841 9 0.029352 22 0.027229 17 0.02704 18 0.024537 13 0.024248 15 0.012075 0 0.011175 14 0.007887 11 0.003231 23 0.087572 24 0.067345 4 0.060175 5 0.059431 6 0.059138 7 0.058388 2 0.058132 3 0.057979 8 0.057946 1 0.057943 20 0.051511 12 0.046023 21 0.040591 19 0.040212 16 0.030841 9 0.029352 22 0.027229 17 0.02704 18 0.024537 13 0.024248 15 0.012075 0 0.011175 14 0.007887 11 0.003231 23 0.06987550685635742 24 0.05553436785721037 4 0.05078161726127064 5 0.05018519304542513 6 0.04941404849911144 7 0.04829328155063198 8 0.048033656480603454 1 0.04798436088178543 3 0.047861371394736 2 0.04781868103511394 21 0.04720214815712385 20 0.044625574381186084 12 0.04363770462625731 19 0.04357422597457959 22 0.04070495949780097 18 0.037282286744854065 9 0.03667301892900498 17 0.03397975868739978 16 0.0301386638233413 13 0.026434283040244352 0 0.023433660811243366 11 0.0216262194950776 10 0.01801422408097229 14 0.017855621095703246 15 0.016516405596522832 __DUMMY__ 0.0025191601964422686 false 1.0 66 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.06706514446989917 22 0.05833867570736173 4 0.05418402848070178 0 0.05395212498598666 6 0.05365467435615777 5 0.05353832488877871 8 0.05338269202252907 7 0.05332817111035755 1 0.05330588590510689 2 0.05227858081755258 3 0.05208594093346014 17 0.0512139136147124 18 0.04699517205274887 10 0.04328763283722587 23 0.03609399878581444 21 0.03591281378308966 11 0.03552086812329773 19 0.030037982733446475 24 0.024972170288056435 16 0.02437628353972008 15 0.017659573854223946 14 0.01500178588457035 12 0.013147303686104839 20 0.01232545211766114 13 0.006127805478038466 __DUMMY__ 0.0022129995433971244 false 1.0 67 23 0.072906 5 0.066284 3 0.065838 4 0.065386 2 0.063622 1 0.062304 7 0.061898 6 0.061818 8 0.061473 24 0.058335 9 0.049597 22 0.048262 21 0.042816 19 0.034167 20 0.034111 18 0.032522 17 0.027958 12 0.022122 0 0.019436 16 0.013386 10 0.011989 11 0.011784 15 0.007676 14 0.004314 23 0.072906 5 0.066284 3 0.065838 4 0.065386 2 0.063622 1 0.062304 7 0.061898 6 0.061818 8 0.061473 24 0.058335 9 0.049597 22 0.048262 21 0.042816 19 0.034167 20 0.034111 18 0.032522 17 0.027958 12 0.022122 0 0.019436 16 0.013386 10 0.011989 11 0.011784 15 0.007676 14 0.004314 23 0.05852697188225044 5 0.05440962167048026 4 0.054264891899684316 22 0.053190187782789645 3 0.05270057379920541 6 0.051706074457973414 2 0.05149250689917692 1 0.05116962743293478 7 0.051064939084899424 8 0.05083604716495312 9 0.05032109490444533 24 0.047907123493555595 21 0.04789490937472954 18 0.04090008047410015 19 0.03787098897223083 17 0.03541912700296769 20 0.031481185278195746 0 0.030730953447354322 12 0.0295081945211766 11 0.02805247068010614 10 0.026269327246634527 16 0.019614887217848317 14 0.015799463662749716 15 0.013082219530626927 13 0.013062983855766007 __DUMMY__ 0.00272354826316482 false 1.0 68 21 0.06978 23 0.063933 22 0.061756 24 0.05484 12 0.054295 4 0.050467 5 0.049882 6 0.046593 9 0.045366 11 0.044095 3 0.043991 8 0.043677 7 0.043221 1 0.043153 2 0.042891 18 0.037741 19 0.035756 13 0.032759 20 0.027723 0 0.026232 17 0.02573 10 0.024386 14 0.023787 16 0.007945 21 0.06978 23 0.063933 22 0.061756 24 0.05484 12 0.054295 4 0.050467 5 0.049882 6 0.046593 9 0.045366 11 0.044095 3 0.043991 8 0.043677 7 0.043221 1 0.043153 2 0.042891 18 0.037741 19 0.035756 13 0.032759 20 0.027723 0 0.026232 17 0.02573 10 0.024386 14 0.023787 16 0.007945 21 0.06521613672867323 22 0.06070786392844627 23 0.05498345205843799 12 0.05054775694966671 24 0.047517246820228606 11 0.04730140391170434 18 0.04629059701568916 9 0.045086656361033754 4 0.04309711328085361 19 0.042767973186744954 5 0.04258159645542316 6 0.04017089285908611 3 0.037760183621611904 8 0.037698218835277846 7 0.037535318640689805 1 0.03740123901109627 2 0.037055815501617885 10 0.03428127277942194 13 0.03382098890688468 17 0.03361586839301323 0 0.032820786934039343 20 0.03210677189116791 14 0.02874648531366498 16 0.01812192156358378 15 0.009841789614584344 __DUMMY__ 0.0029246494373581294 false 1.0 69 21 0.100829 19 0.094446 22 0.085236 20 0.078615 18 0.076847 24 0.074857 11 0.07322 12 0.067331 23 0.049273 10 0.043861 16 0.043534 17 0.042619 14 0.042528 13 0.032436 9 0.029153 0 0.022558 15 0.016652 4 0.009139 5 0.008447 3 0.004887 6 0.001979 8 8.62E-4 7 5.66E-4 1 1.27E-4 21 0.100829 19 0.094446 22 0.085236 20 0.078615 18 0.076847 24 0.074857 11 0.07322 12 0.067331 23 0.049273 10 0.043861 16 0.043534 17 0.042619 14 0.042528 13 0.032436 9 0.029153 0 0.022558 15 0.016652 4 0.009139 5 0.008447 3 0.004887 6 0.001979 8 8.62E-4 7 5.66E-4 1 1.27E-4 21 0.087530979640398 19 0.08182411126688874 22 0.07634088509754204 18 0.07128342274529527 20 0.06701636198718909 11 0.0655174843316772 24 0.06369867632943492 12 0.06055343885255779 23 0.04721942771777153 10 0.04518218612667286 17 0.04258533727202903 14 0.04146333355969564 16 0.04002880127542345 13 0.033692564666800075 9 0.0335364416181223 0 0.027770071671895033 15 0.020007613967829317 4 0.01618020663475856 5 0.015576455206756924 3 0.012060334587816648 6 0.010637565911764235 8 0.009259030509205665 7 0.009160405393956975 1 0.008784450166617035 2 0.00851377945617038 __DUMMY__ 0.004576634005731389 false 1.0 170 10 0.101307 18 0.087733 11 0.072463 22 0.071841 9 0.067435 14 0.064352 0 0.063118 21 0.060041 13 0.053981 17 0.043715 19 0.043235 12 0.039862 15 0.03145 4 0.024216 5 0.02374 6 0.022058 1 0.018991 7 0.018938 8 0.018914 2 0.018288 3 0.018144 20 0.015919 23 0.013512 16 0.006748 10 0.101307 18 0.087733 11 0.072463 22 0.071841 9 0.067435 14 0.064352 0 0.063118 21 0.060041 13 0.053981 17 0.043715 19 0.043235 12 0.039862 15 0.03145 4 0.024216 5 0.02374 6 0.022058 1 0.018991 7 0.018938 8 0.018914 2 0.018288 3 0.018144 20 0.015919 23 0.013512 16 0.006748 10 0.08264938220486472 18 0.0782940148174427 22 0.06750614329299436 11 0.0641917017155809 9 0.05926597446010272 21 0.059082770499659196 0 0.05518954621276973 14 0.054711963077851034 19 0.04808473909022172 13 0.045848256240463695 17 0.044645690332865015 12 0.04044486731949627 15 0.03058585729000488 4 0.02654032443206323 5 0.026093948914179734 20 0.025716683011968382 6 0.02440784839736505 23 0.023422626239590037 7 0.02196493564106843 8 0.02194377290547547 1 0.021920929358341647 3 0.02155770769918425 2 0.021363382488778362 16 0.017429286600257058 24 0.01429198094037059 __DUMMY__ 0.002845666817040953 false 1.0 171 14 0.104884 13 0.102647 10 0.098735 18 0.088126 12 0.07197 11 0.069997 21 0.066502 15 0.064294 22 0.053356 19 0.051178 0 0.043585 20 0.041856 9 0.040241 17 0.031642 23 0.018869 16 0.015987 24 0.009074 4 0.007481 5 0.007298 6 0.006167 8 0.00171 7 0.001571 1 0.001553 2 0.00128 14 0.104884 13 0.102647 10 0.098735 18 0.088126 12 0.07197 11 0.069997 21 0.066502 15 0.064294 22 0.053356 19 0.051178 0 0.043585 20 0.041856 9 0.040241 17 0.031642 23 0.018869 16 0.015987 24 0.009074 4 0.007481 5 0.007298 6 0.006167 8 0.00171 7 0.001571 1 0.001553 2 0.00128 14 0.0842232035825546 10 0.08421207521058868 18 0.08168040619223667 13 0.07900370385448517 21 0.06512895624076485 11 0.0640811534424876 12 0.06189501701496143 22 0.05698101736627999 19 0.05448602991168998 15 0.05363038154341466 20 0.04348258863317241 0 0.04211202195115374 9 0.041933241579438334 17 0.03622647639068791 23 0.025970232183958247 16 0.021766609905847008 24 0.019689052116280876 4 0.013784517452450814 5 0.013500861969032336 6 0.011889705313685772 8 0.008479626524196378 7 0.008408419867076529 1 0.008327821232611688 2 0.008036305545987273 3 0.007696744056890088 __DUMMY__ 0.0033738309180669493 false 1.0 172 22 0.101339 11 0.100729 10 0.097716 18 0.094949 21 0.089539 19 0.071033 0 0.068933 9 0.064978 17 0.057559 14 0.055875 12 0.047198 13 0.037996 16 0.026396 20 0.022312 15 0.015481 24 0.013642 23 0.009003 4 0.008345 5 0.007676 6 0.004119 3 0.001708 7 0.001345 1 0.001107 8 0.001022 22 0.101339 11 0.100729 10 0.097716 18 0.094949 21 0.089539 19 0.071033 0 0.068933 9 0.064978 17 0.057559 14 0.055875 12 0.047198 13 0.037996 16 0.026396 20 0.022312 15 0.015481 24 0.013642 23 0.009003 4 0.008345 5 0.007676 6 0.004119 3 0.001708 7 0.001345 1 0.001107 8 0.001022 22 0.0850314530900535 11 0.08112118073721024 18 0.08099371622124305 10 0.0780653752531769 21 0.07757802061520633 19 0.06469700309757795 0 0.05791636466811481 9 0.056885133189121945 17 0.052560707735134084 14 0.04798391430258647 12 0.04617087426803464 13 0.03610516755731558 20 0.029959387833814792 16 0.029266088639116748 24 0.024198991255695204 23 0.021932370263694854 15 0.019304011869079426 4 0.01757230338209977 5 0.01699937819109414 6 0.014164385459619719 3 0.012136705954455183 7 0.011816459513342937 8 0.011646566010876293 1 0.011582027740440579 2 0.010832848993517708 __DUMMY__ 0.003479564158377071 false 1.0 173 21 0.107147 22 0.096631 19 0.094047 11 0.087032 18 0.075276 12 0.064297 24 0.063481 20 0.060853 10 0.054584 17 0.043782 23 0.04203 16 0.039501 14 0.039333 9 0.038263 0 0.03467 13 0.02609 5 0.010223 4 0.009985 3 0.0056 15 0.004205 6 0.002238 8 2.55E-4 2 2.43E-4 7 2.33E-4 21 0.107147 22 0.096631 19 0.094047 11 0.087032 18 0.075276 12 0.064297 24 0.063481 20 0.060853 10 0.054584 17 0.043782 23 0.04203 16 0.039501 14 0.039333 9 0.038263 0 0.03467 13 0.02609 5 0.010223 4 0.009985 3 0.0056 15 0.004205 6 0.002238 8 2.55E-4 2 2.43E-4 7 2.33E-4 21 0.09309673908594754 22 0.08496017913962096 19 0.0798953098339385 11 0.07576110122303936 18 0.06897145970546872 12 0.059492394708184564 24 0.05682732350682785 20 0.05393526156086082 10 0.050654363453066883 17 0.04303795903015195 23 0.042359414674543135 9 0.03990934135183685 14 0.03900323649875091 16 0.03598014653797655 0 0.035590602128911915 13 0.030222927079797457 4 0.0172315285554102 5 0.017064923859347953 3 0.01279618796674108 6 0.01131866005457964 15 0.010365669967903 7 0.009417402117361697 8 0.009366546718773114 1 0.009132434740559615 2 0.009021070939209584 __DUMMY__ 0.00458781556119014 false 1.0 174 18 0.093384 10 0.089569 19 0.077659 11 0.076796 21 0.075305 22 0.072475 14 0.061194 12 0.060501 0 0.056207 13 0.056018 17 0.053058 20 0.050501 9 0.046018 16 0.040062 15 0.030524 24 0.023766 23 0.020478 4 0.006098 5 0.00608 6 0.003428 3 6.36E-4 7 1.14E-4 2 9.8E-5 8 3.1E-5 18 0.093384 10 0.089569 19 0.077659 11 0.076796 21 0.075305 22 0.072475 14 0.061194 12 0.060501 0 0.056207 13 0.056018 17 0.053058 20 0.050501 9 0.046018 16 0.040062 15 0.030524 24 0.023766 23 0.020478 4 0.006098 5 0.00608 6 0.003428 3 6.36E-4 7 1.14E-4 2 9.8E-5 8 3.1E-5 18 0.0863180055409821 10 0.08167460093509622 19 0.06984523704214814 21 0.06938518327338232 11 0.06920283128156243 22 0.06916221156605797 14 0.05732400082928416 12 0.05311487523467767 0 0.05190439241370503 13 0.05002139121767143 17 0.04977833137484443 9 0.047449116387648975 20 0.04671419934237422 16 0.03538420329627211 15 0.032350457203754804 24 0.02568855088585793 23 0.02526640439177658 4 0.013184939465158665 5 0.012964385892634057 6 0.010534751240214309 3 0.008386661306234028 7 0.007927059798887257 8 0.007880849710871655 1 0.007790117634642955 2 0.00764680689414154 __DUMMY__ 0.003100435840119012 false 1.0 175 10 0.100058 18 0.092596 11 0.09024 21 0.086632 22 0.086244 13 0.069559 12 0.067192 14 0.064352 9 0.06328 0 0.062392 19 0.050804 17 0.040586 23 0.016881 20 0.016874 4 0.015526 5 0.015234 6 0.012202 15 0.010096 8 0.007077 1 0.006983 7 0.006889 2 0.006644 3 0.006245 24 0.005415 10 0.100058 18 0.092596 11 0.09024 21 0.086632 22 0.086244 13 0.069559 12 0.067192 14 0.064352 9 0.06328 0 0.062392 19 0.050804 17 0.040586 23 0.016881 20 0.016874 4 0.015526 5 0.015234 6 0.012202 15 0.010096 8 0.007077 1 0.006983 7 0.006889 2 0.006644 3 0.006245 24 0.005415 10 0.07974782177789347 18 0.07840670116744468 22 0.0742236691402927 21 0.07377907365673493 11 0.07371943744071792 12 0.056904333108471115 9 0.05596148986634429 13 0.055531825651672855 14 0.054174612165660524 0 0.054096996751242916 19 0.05102722606025008 17 0.04213354886028935 23 0.026124501691029974 20 0.025887611301631013 4 0.022596409419488688 5 0.022241401052461824 6 0.019965517594390858 24 0.018113434266603192 15 0.018040076255671413 8 0.016326358191975095 7 0.016259275892358583 1 0.016238616209342152 2 0.015856446050632408 3 0.01578478271706832 16 0.013766121163424077 __DUMMY__ 0.003092712546907561 false 1.0 176 11 0.09749 21 0.084183 10 0.079948 18 0.079358 22 0.077367 12 0.074467 19 0.069817 13 0.063841 14 0.058794 0 0.058492 17 0.049419 20 0.04115 9 0.038998 16 0.037985 24 0.027607 23 0.022299 15 0.02045 5 0.006736 4 0.006598 6 0.004325 2 3.02E-4 7 2.41E-4 1 9.2E-5 3 4.3E-5 11 0.09749 21 0.084183 10 0.079948 18 0.079358 22 0.077367 12 0.074467 19 0.069817 13 0.063841 14 0.058794 0 0.058492 17 0.049419 20 0.04115 9 0.038998 16 0.037985 24 0.027607 23 0.022299 15 0.02045 5 0.006736 4 0.006598 6 0.004325 2 3.02E-4 7 2.41E-4 1 9.2E-5 3 4.3E-5 11 0.0810167397055845 21 0.07826233317745575 18 0.0737439589431018 22 0.07306155262477666 10 0.06870078547934161 19 0.06632769313459727 12 0.0646320661331349 13 0.05283570093683084 14 0.05106750575025021 0 0.05084452451217795 17 0.0472125749886053 20 0.04217451135067346 9 0.041322550053971334 16 0.03536494102131889 24 0.033084738915709816 23 0.02998710611267657 15 0.020944719932891324 4 0.014713733471051892 5 0.014542327397695903 6 0.012120033033292704 3 0.008950467952350704 7 0.00888516343742642 8 0.008742444888801201 1 0.008702361711692056 2 0.008607555970781814 __DUMMY__ 0.004151909363808949 false 1.0 177 11 0.089892 22 0.08369 21 0.077353 10 0.069616 9 0.062527 0 0.060813 18 0.058336 12 0.054962 13 0.045753 14 0.040427 17 0.038432 4 0.034888 5 0.034439 19 0.033065 6 0.031926 8 0.027874 1 0.027617 7 0.027605 23 0.027591 2 0.027013 3 0.026875 24 0.015574 16 0.002482 15 0.00125 11 0.089892 22 0.08369 21 0.077353 10 0.069616 9 0.062527 0 0.060813 18 0.058336 12 0.054962 13 0.045753 14 0.040427 17 0.038432 4 0.034888 5 0.034439 19 0.033065 6 0.031926 8 0.027874 1 0.027617 7 0.027605 23 0.027591 2 0.027013 3 0.026875 24 0.015574 16 0.002482 15 0.00125 11 0.07616760721775413 22 0.07428061909958801 21 0.07195926988690607 10 0.06275479508389259 18 0.060655077508844434 12 0.05457203372938774 9 0.05416562495600736 0 0.05399733060951664 13 0.0449831849041429 19 0.043516804560465576 17 0.0421413047355617 14 0.04068179043326074 23 0.03195398588149817 4 0.031143805719383286 5 0.030691079398993928 6 0.028804192003337527 8 0.025369961811652356 7 0.025254892909215124 1 0.02517352332332323 2 0.0246853457537729 3 0.02449216452793552 24 0.024256875079738185 20 0.0175806949905573 16 0.016669618241655457 15 0.010644976872438592 __DUMMY__ 0.0034034407611703136 false 1.0 178 0 0.090843 17 0.090033 11 0.081071 22 0.073566 16 0.072126 18 0.055697 9 0.055395 21 0.054587 19 0.053398 10 0.051192 12 0.050571 6 0.032365 4 0.028064 5 0.027272 8 0.027177 7 0.027154 1 0.026926 2 0.02597 13 0.023686 23 0.022268 3 0.019436 24 0.006633 20 0.002758 14 0.001811 0 0.090843 17 0.090033 11 0.081071 22 0.073566 16 0.072126 18 0.055697 9 0.055395 21 0.054587 19 0.053398 10 0.051192 12 0.050571 6 0.032365 4 0.028064 5 0.027272 8 0.027177 7 0.027154 1 0.026926 2 0.02597 13 0.023686 23 0.022268 3 0.019436 24 0.006633 20 0.002758 14 0.001811 17 0.07596331748534454 0 0.0743843007263837 22 0.06568347991855414 11 0.0642479589668363 16 0.05988933473549409 18 0.05414116934829616 9 0.05374270284053708 19 0.05022141488179309 21 0.04867116208422887 10 0.04712694049497832 12 0.04061296235352015 6 0.03628403963227002 4 0.033800257989607896 5 0.03317119665854229 8 0.032926001114369434 7 0.032876876487882296 1 0.03270208129161526 2 0.031973269860469625 23 0.02938237661022785 3 0.027848374524004557 13 0.020069871273015173 24 0.017714095046372447 20 0.014182551734296911 15 0.010797829413057248 14 0.009089227406352863 __DUMMY__ 0.002497207121949727 false 1.0 179 10 0.100327 18 0.089075 11 0.084883 13 0.076218 14 0.071196 0 0.069237 22 0.064004 21 0.062407 12 0.062322 19 0.05752 17 0.054822 9 0.049017 15 0.03991 16 0.035522 20 0.028326 23 0.010666 6 0.008852 5 0.00834 4 0.008306 1 0.004683 8 0.004516 7 0.004457 2 0.004089 3 0.001304 10 0.100327 18 0.089075 11 0.084883 13 0.076218 14 0.071196 0 0.069237 22 0.064004 21 0.062407 12 0.062322 19 0.05752 17 0.054822 9 0.049017 15 0.03991 16 0.035522 20 0.028326 23 0.010666 6 0.008852 5 0.00834 4 0.008306 1 0.004683 8 0.004516 7 0.004457 2 0.004089 3 0.001304 10 0.08488225144038251 18 0.08145575879448859 11 0.07215324099468115 22 0.06443701181048814 21 0.06083987886544248 14 0.05986670237179242 0 0.059678980123923545 13 0.058271119247137446 19 0.05683980106358717 12 0.05235022766985571 17 0.051509622376507753 9 0.05006960072187595 15 0.036145667460054605 16 0.03300533098703203 20 0.032355301612846124 23 0.020437104118703087 4 0.016579508410844775 5 0.016367708501428713 6 0.015849104649659485 24 0.012786146910780111 8 0.012664928536827007 1 0.012655951429691338 7 0.012631872634895921 2 0.012171775102379559 3 0.010949428478270686 __DUMMY__ 0.003045975686423767 false 1.0 70 6 0.07578 4 0.075065 7 0.074746 8 0.074514 5 0.07426 1 0.074094 2 0.073703 3 0.072557 9 0.060187 23 0.054208 17 0.040624 22 0.039951 0 0.039412 24 0.036585 18 0.022517 21 0.020563 16 0.018644 10 0.015318 15 0.013225 11 0.012162 19 0.011674 20 0.01073 12 0.009322 14 1.59E-4 6 0.07578 4 0.075065 7 0.074746 8 0.074514 5 0.07426 1 0.074094 2 0.073703 3 0.072557 9 0.060187 23 0.054208 17 0.040624 22 0.039951 0 0.039412 24 0.036585 18 0.022517 21 0.020563 16 0.018644 10 0.015318 15 0.013225 11 0.012162 19 0.011674 20 0.01073 12 0.009322 14 1.59E-4 6 0.0606853987380661 4 0.06058513572963333 5 0.05993694951362232 7 0.05971576404847986 8 0.05961514563699733 1 0.059352888956145065 2 0.058856539986750674 9 0.05848307552411928 3 0.05803689406604908 22 0.04861465659004706 23 0.04676908814060439 17 0.045990112348998115 0 0.0452033697070327 18 0.03599909346239034 24 0.03339223032049651 21 0.031645513696555536 10 0.028989696587080838 11 0.02683169290003218 19 0.025452142979200832 16 0.025374007042002166 12 0.017611240009193438 20 0.016587212617215033 15 0.016379889341167405 14 0.009711209958385952 13 0.007800481007428378 __DUMMY__ 0.0023805710923060085 false 1.0 71 23 0.090307 24 0.065106 5 0.060886 2 0.060863 3 0.060643 4 0.060503 6 0.059745 1 0.059251 7 0.059223 8 0.058865 20 0.051009 12 0.040442 19 0.039543 21 0.039055 16 0.030307 9 0.030044 22 0.028549 17 0.028461 18 0.027329 13 0.019286 15 0.012431 0 0.012301 14 0.005029 11 8.2E-4 23 0.090307 24 0.065106 5 0.060886 2 0.060863 3 0.060643 4 0.060503 6 0.059745 1 0.059251 7 0.059223 8 0.058865 20 0.051009 12 0.040442 19 0.039543 21 0.039055 16 0.030307 9 0.030044 22 0.028549 17 0.028461 18 0.027329 13 0.019286 15 0.012431 0 0.012301 14 0.005029 11 8.2E-4 23 0.0694482155385992 4 0.05400379195475463 5 0.05392284208742751 6 0.05299647488045425 2 0.052614832462138154 3 0.05254293808409939 7 0.05223238392831229 1 0.05217011968367266 24 0.05213163655326785 8 0.05202432295122592 21 0.04252125275243518 22 0.040818334531168385 20 0.040460742630000254 9 0.04020620953092692 19 0.03964264590369844 18 0.03678408496967172 12 0.03607641380506271 17 0.0356475010566511 16 0.028917346258824028 0 0.02601840062000825 13 0.020112613875367457 11 0.01849539560076113 10 0.017861620914276226 15 0.016420997707083062 14 0.013895834849258668 __DUMMY__ 0.002033046870854663 false 1.0 72 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06722552636997868 22 0.05807322539535957 4 0.05423392233519636 0 0.053969672385885285 6 0.05372337658646126 7 0.053469243436023994 8 0.053396150394417904 5 0.05336895392979225 1 0.05327423718668282 2 0.05221092316323599 3 0.05201905692806537 17 0.0511077210339442 18 0.0467655140841656 10 0.04344158942084407 23 0.03615777456208872 21 0.03599572516646204 11 0.035655157074889504 19 0.030075058194880766 24 0.025053707611943976 16 0.024385782385537624 15 0.017510047636748845 14 0.014944122594407807 12 0.013085440514345355 20 0.012538158628036243 13 0.006109009023597198 __DUMMY__ 0.002210903957008619 false 1.0 73 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.07542159041145216 0 0.0718560390105374 16 0.058144437446519516 9 0.05790622145991911 22 0.05784036943025536 18 0.052625716766685614 11 0.04717469687692511 6 0.04419618487862054 10 0.04415155062649583 19 0.04412266346272573 8 0.042235277520033865 7 0.042036989949818436 1 0.041919300977696736 4 0.041403568043087334 2 0.041378443585436506 5 0.04106354239154855 3 0.03766748835358068 21 0.03391407763471672 23 0.029897223916963884 12 0.024857826878909955 15 0.018835837280186674 24 0.01775785510192712 20 0.01545013377846198 13 0.009901763948291474 14 0.0061230755613297305 __DUMMY__ 0.002118124707874036 false 1.0 74 17 0.089417 0 0.083846 16 0.0731 9 0.059227 22 0.055355 18 0.053398 11 0.047712 10 0.045173 19 0.045027 6 0.044097 8 0.041444 1 0.041179 7 0.041165 2 0.040303 4 0.039063 5 0.038517 3 0.034356 21 0.027444 23 0.024749 12 0.024677 15 0.021379 20 0.011056 24 0.009276 13 0.009039 17 0.089417 0 0.083846 16 0.0731 9 0.059227 22 0.055355 18 0.053398 11 0.047712 10 0.045173 19 0.045027 6 0.044097 8 0.041444 1 0.041179 7 0.041165 2 0.040303 4 0.039063 5 0.038517 3 0.034356 21 0.027444 23 0.024749 12 0.024677 15 0.021379 20 0.011056 24 0.009276 13 0.009039 17 0.0771724438126024 0 0.07263154431879283 16 0.06146897122144424 9 0.056584754063410764 22 0.055497391119118646 18 0.052084382915866076 11 0.046398341982754825 19 0.04454457484874676 6 0.04375759345099129 10 0.04374796609897307 8 0.04167063908772503 7 0.04148990788573434 1 0.04143967434436155 2 0.04073087997005928 4 0.04053290764276803 5 0.040013985234404734 3 0.03658065777475161 21 0.0325088067183137 23 0.030181048497022526 12 0.02603308475020572 15 0.021352329005693456 24 0.01726100766153277 20 0.01643970412523582 13 0.011412185637258316 14 0.006220675105630769 __DUMMY__ 0.0022445427266014764 false 1.0 75 3 0.060027 9 0.05967 4 0.058793 8 0.058612 7 0.058514 5 0.058477 2 0.058433 1 0.058271 6 0.057296 22 0.048172 23 0.046097 17 0.042559 0 0.040349 24 0.038921 18 0.037915 10 0.032765 19 0.0314 21 0.029245 15 0.027837 16 0.026925 20 0.02564 11 0.02151 14 0.015781 12 0.006793 3 0.060027 9 0.05967 4 0.058793 8 0.058612 7 0.058514 5 0.058477 2 0.058433 1 0.058271 6 0.057296 22 0.048172 23 0.046097 17 0.042559 0 0.040349 24 0.038921 18 0.037915 10 0.032765 19 0.0314 21 0.029245 15 0.027837 16 0.026925 20 0.02564 11 0.02151 14 0.015781 12 0.006793 9 0.05863600081191787 4 0.05359482595053368 3 0.05316989701642054 5 0.0531639883229219 8 0.05278327928996475 7 0.05272869993203858 1 0.05254456406166904 6 0.05235859417542659 2 0.052314318892806584 22 0.052300955155321585 17 0.04562045189509911 0 0.043974502808028566 23 0.04339298754626681 18 0.04324650094790557 10 0.03701387416922874 24 0.03563953400058522 21 0.03506797836462828 19 0.03469250615779778 11 0.02960215248412452 16 0.028047918527178757 15 0.024773555592439066 20 0.02458521801212343 14 0.0178255404554116 12 0.014197441152700345 13 0.006220902173831493 __DUMMY__ 0.0025038121036295075 false 1.0 76 0 0.085463 17 0.0793 9 0.063325 22 0.059148 16 0.056145 11 0.056037 10 0.051289 18 0.050028 6 0.047917 8 0.044708 7 0.044611 2 0.044383 1 0.044261 4 0.043688 5 0.043578 3 0.039159 19 0.036252 21 0.030755 12 0.02597 23 0.024427 13 0.01203 15 0.011661 24 0.004744 14 0.00112 0 0.085463 17 0.0793 9 0.063325 22 0.059148 16 0.056145 11 0.056037 10 0.051289 18 0.050028 6 0.047917 8 0.044708 7 0.044611 2 0.044383 1 0.044261 4 0.043688 5 0.043578 3 0.039159 19 0.036252 21 0.030755 12 0.02597 23 0.024427 13 0.01203 15 0.011661 24 0.004744 14 0.00112 0 0.07294836971688683 17 0.0706141124554162 9 0.059987238798136236 22 0.05839527104861315 11 0.050714119069738085 18 0.05058969374537236 16 0.050089083507539274 10 0.0476683312546372 6 0.04606863076049775 8 0.04379590690887639 7 0.043706179147131756 4 0.04351826277465079 1 0.04347708818073774 2 0.043235880402867806 5 0.043193457515623306 3 0.03970893984065472 19 0.03922055758145001 21 0.03495329724272965 23 0.029669850298328856 12 0.025857565811677363 15 0.01560890792574088 24 0.014838941383289336 13 0.012634519409314657 20 0.01001274896701631 14 0.007445425530513573 __DUMMY__ 0.002047620722559726 false 1.0 77 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.06000005868749421 22 0.05897469430000321 4 0.05029611723764158 5 0.04989347324978328 17 0.049700412175904554 0 0.04928463200967523 6 0.049196056245080215 8 0.048897246796460646 7 0.04881585414604871 3 0.04874348671230235 1 0.04855768798800552 2 0.04829782211723125 18 0.04576729630628526 21 0.04186559927261212 23 0.03965709527771887 10 0.03848805698653035 11 0.038068867424472665 19 0.03792278795856116 24 0.03400252198687798 16 0.029454169910802974 20 0.021704662117651274 12 0.019924526981851355 15 0.017057993683322146 14 0.015196877759914318 13 0.0076269349536850954 __DUMMY__ 0.0026050677140835414 false 1.0 78 9 0.067768 22 0.062144 0 0.056307 4 0.053584 5 0.05337 17 0.053197 6 0.052756 3 0.052665 8 0.052644 7 0.052528 2 0.052229 1 0.052159 18 0.046116 10 0.04234 11 0.038935 21 0.037805 19 0.03447 23 0.033818 24 0.028168 16 0.027599 20 0.014017 15 0.013089 12 0.012147 14 0.010146 9 0.067768 22 0.062144 0 0.056307 4 0.053584 5 0.05337 17 0.053197 6 0.052756 3 0.052665 8 0.052644 7 0.052528 2 0.052229 1 0.052159 18 0.046116 10 0.04234 11 0.038935 21 0.037805 19 0.03447 23 0.033818 24 0.028168 16 0.027599 20 0.014017 15 0.013089 12 0.012147 14 0.010146 9 0.06277317733555994 22 0.06211626752485942 0 0.05482562457422761 17 0.053461090595760305 18 0.04955768423596368 4 0.048305900753333054 5 0.047908685168558604 6 0.047462519471116 8 0.04692502577786916 7 0.046837543975235374 1 0.04657633492060362 3 0.04643838569278013 2 0.04631811740389923 10 0.04396728484744854 11 0.0427058979833084 21 0.04211739141122856 19 0.03885149461974544 23 0.035027605682924866 16 0.030617069410451978 24 0.029120326002741417 12 0.019076683746456827 20 0.018462955925624722 15 0.015913014859862983 14 0.015091568044168481 13 0.007132059787438584 __DUMMY__ 0.0024102902488331566 false 1.0 79 22 0.095564 21 0.09086 11 0.084046 19 0.058465 18 0.055341 9 0.055161 12 0.04882 24 0.047317 10 0.04676 0 0.046216 17 0.043758 23 0.033145 14 0.032419 4 0.029648 5 0.02888 3 0.02451 6 0.024175 20 0.024052 16 0.022932 8 0.022079 7 0.022052 1 0.021396 2 0.021222 13 0.021182 22 0.095564 21 0.09086 11 0.084046 19 0.058465 18 0.055341 9 0.055161 12 0.04882 24 0.047317 10 0.04676 0 0.046216 17 0.043758 23 0.033145 14 0.032419 4 0.029648 5 0.02888 3 0.02451 6 0.024175 20 0.024052 16 0.022932 8 0.022079 7 0.022052 1 0.021396 2 0.021222 13 0.021182 22 0.0821080950072932 21 0.0792236372605511 11 0.07110155005718974 19 0.05816877981564413 18 0.05738978586295173 9 0.05086413422291895 12 0.0473389824402691 10 0.04652949969278028 17 0.04513827796123775 24 0.04511737875544753 0 0.04438520260543594 23 0.03704538498893379 14 0.0321183963931717 20 0.031409942699364264 4 0.030227002165686127 5 0.029584746363628605 16 0.02805340626765001 6 0.02609240470121304 3 0.025608263777531882 13 0.024768738680541056 7 0.02417898773437377 8 0.024161235904685618 1 0.023731767454455543 2 0.02339446784537078 15 0.008412512564115963 __DUMMY__ 0.0038474187775585952 false 1.0 180 11 0.09161 0 0.089166 22 0.081587 17 0.074101 10 0.072559 18 0.065804 9 0.062094 21 0.059121 19 0.048849 16 0.045814 12 0.043622 6 0.028197 13 0.027772 4 0.026804 5 0.02637 8 0.024161 7 0.023911 1 0.023847 2 0.023466 3 0.019983 14 0.018125 23 0.016244 15 0.004368 24 0.002424 11 0.09161 0 0.089166 22 0.081587 17 0.074101 10 0.072559 18 0.065804 9 0.062094 21 0.059121 19 0.048849 16 0.045814 12 0.043622 6 0.028197 13 0.027772 4 0.026804 5 0.02637 8 0.024161 7 0.023911 1 0.023847 2 0.023466 3 0.019983 14 0.018125 23 0.016244 15 0.004368 24 0.002424 0 0.07455099972695814 11 0.07369738679286654 22 0.07212482363614241 17 0.06697536901063593 10 0.06258150933483102 18 0.0623258423228607 9 0.0579025840807463 21 0.05427018551304187 19 0.04885387328105222 16 0.04412354801902788 12 0.039660884123062734 6 0.03160137034878552 4 0.030833031236660587 5 0.030367403893638265 8 0.02856037902004263 7 0.02840811558449193 1 0.028295127049779694 2 0.027865636130409953 13 0.025860810306309198 3 0.02537105912097735 23 0.02416682006702575 14 0.02100011229410557 24 0.013519790965161852 15 0.0122897803521939 20 0.012157289941006337 __DUMMY__ 0.0026362678481858374 false 1.0 181 10 0.107119 18 0.093166 11 0.069976 22 0.067664 0 0.06725 14 0.064783 9 0.062242 19 0.054491 17 0.052885 21 0.050306 13 0.047151 15 0.04476 12 0.032066 20 0.027651 16 0.026692 4 0.017667 5 0.017145 6 0.01637 7 0.014075 8 0.014 2 0.01374 1 0.01365 3 0.013496 23 0.011656 10 0.107119 18 0.093166 11 0.069976 22 0.067664 0 0.06725 14 0.064783 9 0.062242 19 0.054491 17 0.052885 21 0.050306 13 0.047151 15 0.04476 12 0.032066 20 0.027651 16 0.026692 4 0.017667 5 0.017145 6 0.01637 7 0.014075 8 0.014 2 0.01374 1 0.01365 3 0.013496 23 0.011656 10 0.08715255061121452 18 0.08258840419782867 22 0.06568359058144198 11 0.06276982019814233 0 0.05778298831971722 9 0.05737075780138284 14 0.0556424280302213 19 0.05439040211589709 21 0.0534573623473553 17 0.04988229013640978 13 0.0416745330558271 15 0.038673194644663074 12 0.035049505835948486 20 0.031764991119280515 16 0.027689139965783965 4 0.022763468544641265 5 0.022280869719594712 23 0.02167175586380265 6 0.021013736127609657 7 0.019062672380099285 8 0.019028361348107502 3 0.018813912926478316 1 0.018779763394838132 2 0.018593498858541755 24 0.01340534025614796 __DUMMY__ 0.0030146616190245817 false 1.0 182 10 0.111189 18 0.103961 11 0.075189 14 0.070048 22 0.069582 0 0.065983 19 0.063658 21 0.057444 9 0.057403 13 0.055533 17 0.054808 15 0.045966 12 0.041493 20 0.0348 16 0.030505 23 0.012814 4 0.009541 5 0.009046 6 0.008253 7 0.005252 8 0.004849 1 0.004741 2 0.004251 3 0.00369 10 0.111189 18 0.103961 11 0.075189 14 0.070048 22 0.069582 0 0.065983 19 0.063658 21 0.057444 9 0.057403 13 0.055533 17 0.054808 15 0.045966 12 0.041493 20 0.0348 16 0.030505 23 0.012814 4 0.009541 5 0.009046 6 0.008253 7 0.005252 8 0.004849 1 0.004741 2 0.004251 3 0.00369 10 0.09077648585762076 18 0.08935349827971839 22 0.0671968832078784 11 0.06655844690168246 19 0.06022476368841419 14 0.05994774101238438 21 0.05816531833170036 0 0.057140479136552576 9 0.054594600137679195 17 0.050703368631612906 13 0.04720411962172817 12 0.0407545875074393 15 0.03993571850364742 20 0.03639809432254754 16 0.029696834485271998 23 0.021540224291846103 4 0.017333361633041833 5 0.016871210054142063 6 0.01547395755736314 24 0.01334933872486258 7 0.013141687972058584 8 0.012956349217053763 1 0.012820413966238103 3 0.012531090550605719 2 0.012379901022819696 __DUMMY__ 0.002951525384090483 false 1.0 183 21 0.102645 12 0.090318 11 0.0858 19 0.081169 22 0.079477 18 0.071418 13 0.063684 20 0.056585 10 0.055679 24 0.050121 14 0.04798 23 0.043807 17 0.039736 0 0.03829 16 0.035929 9 0.030217 4 0.008935 5 0.008486 6 0.004532 15 0.002644 3 0.001383 8 5.14E-4 7 4.53E-4 1 1.97E-4 21 0.102645 12 0.090318 11 0.0858 19 0.081169 22 0.079477 18 0.071418 13 0.063684 20 0.056585 10 0.055679 24 0.050121 14 0.04798 23 0.043807 17 0.039736 0 0.03829 16 0.035929 9 0.030217 4 0.008935 5 0.008486 6 0.004532 15 0.002644 3 0.001383 8 5.14E-4 7 4.53E-4 1 1.97E-4 21 0.09071678779949616 12 0.0801290627166691 11 0.07610470314965923 22 0.072463834736414 19 0.07024145411823507 18 0.06681760865016702 13 0.060050465044165224 10 0.053644425099482376 20 0.05032869043496955 14 0.04743797880384746 24 0.04596997015442174 23 0.042778610767129105 17 0.039345482086062165 0 0.038482291129252395 9 0.033879932646046655 16 0.03235832719980905 4 0.015735598872119814 5 0.01528340991190464 6 0.012230470981143608 15 0.009633553685997314 3 0.008805109377341452 7 0.008478042160282416 8 0.00847284708954582 1 0.008254570991850575 2 0.008007425945154772 __DUMMY__ 0.004349346448833341 false 1.0 184 10 0.08339 18 0.076114 0 0.071602 11 0.068762 22 0.061411 17 0.059916 13 0.057918 9 0.056341 14 0.053387 21 0.05073 12 0.047772 19 0.044747 15 0.035545 16 0.034687 6 0.024451 4 0.022731 5 0.022245 8 0.020305 7 0.020134 1 0.020018 2 0.019539 23 0.016294 20 0.016124 3 0.015836 10 0.08339 18 0.076114 0 0.071602 11 0.068762 22 0.061411 17 0.059916 13 0.057918 9 0.056341 14 0.053387 21 0.05073 12 0.047772 19 0.044747 15 0.035545 16 0.034687 6 0.024451 4 0.022731 5 0.022245 8 0.020305 7 0.020134 1 0.020018 2 0.019539 23 0.016294 20 0.016124 3 0.015836 10 0.07056045995831439 18 0.0681839057545454 0 0.06303846885455812 22 0.06081869884568608 11 0.06044264228819678 9 0.05586797507890843 17 0.05559473354813894 21 0.0495374565710404 19 0.044388104242650064 13 0.04374046785573181 14 0.04349245862301453 12 0.04076242745811212 16 0.03305936966605508 15 0.03068396349595582 6 0.030207739720817438 4 0.029653041326197314 5 0.029199952275293314 8 0.027272558770075343 7 0.0271806390038576 1 0.027074979549601082 2 0.026589310381591607 3 0.024371859350302474 23 0.024282675170288773 20 0.020250540771438324 24 0.011616406897557505 __DUMMY__ 0.002129164542071189 false 1.0 185 11 0.124029 22 0.094357 21 0.083505 0 0.081907 10 0.076643 18 0.07571 17 0.071402 12 0.066266 19 0.063777 16 0.048853 9 0.048126 13 0.045782 14 0.035634 20 0.015566 24 0.013667 23 0.010149 4 0.00945 6 0.009187 5 0.008452 15 0.005099 8 0.003441 7 0.003322 2 0.002846 1 0.00283 11 0.124029 22 0.094357 21 0.083505 0 0.081907 10 0.076643 18 0.07571 17 0.071402 12 0.066266 19 0.063777 16 0.048853 9 0.048126 13 0.045782 14 0.035634 20 0.015566 24 0.013667 23 0.010149 4 0.00945 6 0.009187 5 0.008452 15 0.005099 8 0.003441 7 0.003322 2 0.002846 1 0.00283 11 0.0906284041934407 22 0.07993230998926751 21 0.07298835584836615 18 0.06799544025110911 10 0.06395751395406911 0 0.06372501846603382 17 0.058933104491701964 19 0.05889590801013147 12 0.055406432311390356 9 0.048139710527764994 16 0.04028965091327584 13 0.03872321462224312 14 0.03488688155410699 20 0.025223378281888892 24 0.025042390861327205 23 0.024655809459775767 4 0.020599835384139255 5 0.019892627972412067 6 0.019365712913838175 8 0.015531749983626216 7 0.015489964724968719 1 0.015166445547604098 2 0.014940658473763746 3 0.013788059458243882 15 0.01237887181558093 __DUMMY__ 0.0034225499899298573 false 1.0 186 11 0.103086 10 0.084946 21 0.081566 18 0.079092 22 0.078022 12 0.073011 13 0.066195 19 0.065539 0 0.063926 14 0.060474 17 0.050858 9 0.041697 16 0.036202 20 0.033324 15 0.022521 24 0.020864 23 0.017788 5 0.006902 4 0.006861 6 0.004984 2 7.83E-4 1 5.69E-4 7 4.63E-4 8 3.28E-4 11 0.103086 10 0.084946 21 0.081566 18 0.079092 22 0.078022 12 0.073011 13 0.066195 19 0.065539 0 0.063926 14 0.060474 17 0.050858 9 0.041697 16 0.036202 20 0.033324 15 0.022521 24 0.020864 23 0.017788 5 0.006902 4 0.006861 6 0.004984 2 7.83E-4 1 5.69E-4 7 4.63E-4 8 3.28E-4 11 0.08299187300058496 21 0.07551664065629612 18 0.07350005138224237 22 0.07319937615885563 10 0.07142936651081044 19 0.06315885734641681 12 0.062067991539585414 0 0.05403418223673262 13 0.05271820143082188 14 0.05142290167591426 17 0.048217255523541856 9 0.04358876781160351 20 0.03725014473881403 16 0.034101191916330854 24 0.02892021660418449 23 0.02743543516306102 15 0.02242571114138811 4 0.01569974631051468 5 0.01547618440050332 6 0.013369774453223262 7 0.00999342899075804 1 0.009929670332586358 8 0.009907278466395747 3 0.009884023818827936 2 0.009828226790430125 __DUMMY__ 0.003933501599576174 false 1.0 187 10 0.101415 18 0.088737 11 0.071808 22 0.071644 9 0.066926 14 0.064025 0 0.0628 21 0.059275 13 0.053337 17 0.043502 19 0.042892 12 0.039682 15 0.031586 4 0.023954 5 0.023756 6 0.022005 7 0.019096 1 0.019077 8 0.018985 2 0.018485 3 0.018339 20 0.017143 23 0.01439 16 0.00714 10 0.101415 18 0.088737 11 0.071808 22 0.071644 9 0.066926 14 0.064025 0 0.0628 21 0.059275 13 0.053337 17 0.043502 19 0.042892 12 0.039682 15 0.031586 4 0.023954 5 0.023756 6 0.022005 7 0.019096 1 0.019077 8 0.018985 2 0.018485 3 0.018339 20 0.017143 23 0.01439 16 0.00714 10 0.08267217356096436 18 0.07871229638651225 22 0.06746057757749863 11 0.06399881744449622 9 0.059015503358564925 21 0.05879453410886413 0 0.05508361195746872 14 0.05453220555624221 19 0.04791559096824214 13 0.04558879243279506 17 0.04456049579737654 12 0.040444331081755665 15 0.030571885864094952 4 0.026408492463375993 20 0.026223674853140904 5 0.026090372398746328 6 0.02437463109550602 23 0.02381896096527723 7 0.02202036698395933 8 0.02195972325719933 1 0.021943701930931227 3 0.0216248696815595 2 0.021437531967218128 16 0.017618461708874822 24 0.014288989749198388 __DUMMY__ 0.0028394068501368295 false 1.0 188 11 0.107445 0 0.083452 22 0.079362 17 0.077073 10 0.074602 18 0.072384 21 0.07031 19 0.069936 16 0.067195 12 0.064817 13 0.048399 9 0.041962 14 0.03554 20 0.021572 15 0.017222 23 0.015047 24 0.012149 6 0.009419 4 0.007763 5 0.007581 8 0.004333 7 0.004267 1 0.004161 2 0.00401 11 0.107445 0 0.083452 22 0.079362 17 0.077073 10 0.074602 18 0.072384 21 0.07031 19 0.069936 16 0.067195 12 0.064817 13 0.048399 9 0.041962 14 0.03554 20 0.021572 15 0.017222 23 0.015047 24 0.012149 6 0.009419 4 0.007763 5 0.007581 8 0.004333 7 0.004267 1 0.004161 2 0.00401 11 0.0804221658620269 22 0.07017500214297934 18 0.06583591066535868 0 0.06552633047135321 17 0.06478146545184839 21 0.06399883691006027 19 0.0633369317174273 10 0.06079676521658431 12 0.05493668724831058 16 0.054623313467188274 9 0.04339518996806341 13 0.039337389973105034 14 0.03248569075037059 20 0.02980971098147103 23 0.02780137827998883 24 0.02442725105507231 6 0.019614303231337834 15 0.019587712452224598 4 0.019354093323018785 5 0.019023256670977054 8 0.01606423547165852 7 0.016029868398338594 1 0.015887460944933856 2 0.015590436504197416 3 0.013387151266787623 __DUMMY__ 0.003771461575317178 false 1.0 189 22 0.084034 18 0.083545 10 0.079442 9 0.073926 0 0.069319 17 0.064562 11 0.063871 19 0.061141 21 0.053019 4 0.032183 16 0.031197 5 0.031068 6 0.029126 3 0.028867 8 0.028514 7 0.028149 1 0.027946 2 0.027402 14 0.022733 20 0.019924 23 0.019465 24 0.014241 15 0.013987 12 0.01234 22 0.084034 18 0.083545 10 0.079442 9 0.073926 0 0.069319 17 0.064562 11 0.063871 19 0.061141 21 0.053019 4 0.032183 16 0.031197 5 0.031068 6 0.029126 3 0.028867 8 0.028514 7 0.028149 1 0.027946 2 0.027402 14 0.022733 20 0.019924 23 0.019465 24 0.014241 15 0.013987 12 0.01234 22 0.0748329405332779 18 0.07194147760248511 10 0.06802012559099181 9 0.06545649999256084 0 0.06010910988880208 11 0.05883918546220795 17 0.0564619292837417 19 0.05406683531224392 21 0.05326590981669776 4 0.03437487385419858 5 0.03359289040042735 6 0.03188195072317418 3 0.031229945670910624 8 0.031013034674295857 7 0.030833613312741516 1 0.030622620087201298 2 0.030128937183961802 16 0.02969767318543161 14 0.028170339979784877 23 0.026174677590204372 20 0.02323170557654725 24 0.021571072336015566 12 0.021521402695194182 15 0.018960131253454807 13 0.011856051861852351 __DUMMY__ 0.002145066131594488 false 1.0 80 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.05999557619654416 22 0.058973618185308566 4 0.05029303467662152 5 0.04989026884462378 17 0.0496990810332321 0 0.04928149859622102 6 0.049192854733619056 8 0.04889380343371029 7 0.04881244005240996 3 0.04873983028548213 1 0.048554347802967524 2 0.048294267817664716 18 0.04576853302211868 21 0.04186867963901191 23 0.039659488657897125 10 0.038487432053964196 11 0.03806997048052008 19 0.037925446572880696 24 0.03400487143972022 16 0.029455513558838985 20 0.021708918018036018 12 0.019929830549319415 15 0.017060519488083337 14 0.015200782417977688 13 0.0076324282939465 __DUMMY__ 0.002606964149280418 false 1.0 81 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058402479291401035 4 0.05836539861956365 6 0.05831681722056578 7 0.05826116939085558 8 0.05813821247831343 5 0.05800002991677645 2 0.05752542799581979 9 0.057146763638523064 3 0.05691164961478274 22 0.048299485515641366 23 0.04668754899053479 17 0.04617270503771771 0 0.04454485025077913 18 0.03686818107336753 24 0.034510854051970005 21 0.032482125247224145 10 0.029346419722695055 19 0.027640226523365983 11 0.027374915628140966 16 0.027094692850116883 20 0.019119702222429927 12 0.018347407847591063 15 0.018223441997580393 14 0.0111058887224268 13 0.008610010579284623 __DUMMY__ 0.0025035955725320994 false 1.0 82 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058402479291401035 4 0.05836539861956365 6 0.058316817220565774 7 0.05826116939085557 8 0.05813821247831343 5 0.05800002991677645 2 0.05752542799581979 9 0.057146763638523064 3 0.05691164961478273 22 0.04829948551564136 23 0.04668754899053479 17 0.04617270503771771 0 0.04454485025077913 18 0.03686818107336753 24 0.03451085405197 21 0.03248212524722415 10 0.029346419722695055 19 0.027640226523365983 11 0.02737491562814096 16 0.027094692850116883 20 0.019119702222429924 12 0.01834740784759106 15 0.018223441997580393 14 0.011105888722426797 13 0.008610010579284622 __DUMMY__ 0.0025035955725320994 false 1.0 83 1 0.070539 3 0.070211 7 0.069993 8 0.069629 4 0.069341 5 0.069254 2 0.069251 6 0.068176 9 0.063917 23 0.04988 22 0.045172 24 0.036917 17 0.036386 0 0.036381 18 0.029367 21 0.026302 10 0.024811 15 0.02024 19 0.016301 20 0.014376 11 0.014342 16 0.012893 14 0.011329 12 0.004992 1 0.070539 3 0.070211 7 0.069993 8 0.069629 4 0.069341 5 0.069254 2 0.069251 6 0.068176 9 0.063917 23 0.04988 22 0.045172 24 0.036917 17 0.036386 0 0.036381 18 0.029367 21 0.026302 10 0.024811 15 0.02024 19 0.016301 20 0.014376 11 0.014342 16 0.012893 14 0.011329 12 0.004992 9 0.05918894121654386 4 0.05711826676360715 5 0.05680464430361085 1 0.05667283670613638 7 0.056481242218302086 8 0.056312326486281344 6 0.056123942896973304 3 0.05611220644822977 2 0.055766686789763924 22 0.051029348828035656 23 0.0453897934918326 17 0.04272565183159666 0 0.04212766386773109 18 0.039685857269840544 21 0.035654155865511926 24 0.03486940460897463 10 0.03350487683578221 19 0.02848608696452614 11 0.02802954808732382 16 0.022053720313255955 15 0.02042136193650194 20 0.020018203012451663 12 0.01688983310535637 14 0.016656860839180734 13 0.009241090244407993 __DUMMY__ 0.0026354490682414396 false 1.0 84 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05840064163588793 4 0.05836372537345296 6 0.05831525624058868 7 0.05825938017979443 8 0.05813645341472874 5 0.0579983249962721 2 0.05752364217087437 9 0.0571461518836015 3 0.05690969317275836 22 0.04830024438824278 23 0.046686777030744475 17 0.04617411828280602 0 0.0445461639813859 18 0.0368695253398929 24 0.034510267839428815 21 0.03248313537024112 10 0.029347532453238113 19 0.027641901344846176 11 0.027376899280521737 16 0.0270965144654933 20 0.019120206219955804 12 0.018349020619696333 15 0.018223279372553008 14 0.01110612898514179 13 0.00861109636037915 __DUMMY__ 0.0025039195974735527 false 1.0 85 17 0.085326 0 0.080392 16 0.067003 9 0.062091 22 0.058208 18 0.0536 11 0.048531 10 0.045323 19 0.044962 6 0.044807 1 0.042372 7 0.042369 8 0.04223 2 0.04118 4 0.04063 5 0.040373 3 0.036137 21 0.030766 23 0.024936 12 0.023412 15 0.017654 20 0.010899 24 0.010628 13 0.006168 17 0.085326 0 0.080392 16 0.067003 9 0.062091 22 0.058208 18 0.0536 11 0.048531 10 0.045323 19 0.044962 6 0.044807 1 0.042372 7 0.042369 8 0.04223 2 0.04118 4 0.04063 5 0.040373 3 0.036137 21 0.030766 23 0.024936 12 0.023412 15 0.017654 20 0.010899 24 0.010628 13 0.006168 17 0.07461980083100778 0 0.07086017192582168 9 0.058591033790690514 16 0.0573077136066734 22 0.05719199934249267 18 0.051885805553697595 11 0.0467110358214593 6 0.044586100177867904 10 0.04387638223965585 19 0.043777835231082154 7 0.042598321389229615 8 0.04258201999870092 1 0.04254413406098338 4 0.04185515842318898 2 0.041683367144301056 5 0.04146812195409489 3 0.03805401202256071 21 0.034193610523878315 23 0.030184523550056897 12 0.024894865250859214 15 0.019058310141827593 24 0.01784378016236902 20 0.015664617621845713 13 0.009693555522580884 14 0.006188210251702276 __DUMMY__ 0.0020855134613715796 false 1.0 86 10 0.093126 18 0.081863 9 0.07168 22 0.070247 0 0.069866 11 0.064476 17 0.055453 14 0.050379 19 0.046297 21 0.045905 15 0.035836 13 0.031531 5 0.02859 4 0.028249 6 0.027252 7 0.025526 8 0.02545 1 0.025288 2 0.025152 3 0.025056 16 0.024295 12 0.022298 20 0.01497 23 0.011213 10 0.093126 18 0.081863 9 0.07168 22 0.070247 0 0.069866 11 0.064476 17 0.055453 14 0.050379 19 0.046297 21 0.045905 15 0.035836 13 0.031531 5 0.02859 4 0.028249 6 0.027252 7 0.025526 8 0.02545 1 0.025288 2 0.025152 3 0.025056 16 0.024295 12 0.022298 20 0.01497 23 0.011213 10 0.07920592553707582 18 0.07593449018756324 22 0.06719979329472535 9 0.06282872991152134 0 0.06071471199474286 11 0.05996214448401407 17 0.05271055774297168 21 0.0501836811339064 19 0.049639934398034685 14 0.04568503897902793 15 0.03269793102286081 13 0.031682539939700535 4 0.029001862814142566 12 0.02893250423384514 5 0.02890074564773419 6 0.027609587732940227 16 0.02760442095781854 7 0.02595200926738957 8 0.025927969836492728 1 0.02575282085000286 3 0.025562816138908092 2 0.025444836239493493 20 0.023886208983698323 23 0.021212641452263873 24 0.012841279224754813 __DUMMY__ 0.002924817994370694 false 1.0 87 20 0.128408 19 0.124824 18 0.108166 24 0.089645 21 0.07411 23 0.07007 16 0.064041 22 0.063258 17 0.0555 12 0.048813 10 0.036487 15 0.029607 11 0.024909 14 0.021676 9 0.0214 4 0.008655 5 0.007767 0 0.006138 3 0.005363 13 0.004834 8 0.002252 7 0.001868 6 0.001751 1 4.59E-4 20 0.128408 19 0.124824 18 0.108166 24 0.089645 21 0.07411 23 0.07007 16 0.064041 22 0.063258 17 0.0555 12 0.048813 10 0.036487 15 0.029607 11 0.024909 14 0.021676 9 0.0214 4 0.008655 5 0.007767 0 0.006138 3 0.005363 13 0.004834 8 0.002252 7 0.001868 6 0.001751 1 4.59E-4 19 0.09818139963397754 20 0.09803912844478974 18 0.08817304058018569 24 0.07302115524149934 21 0.069724327213279 22 0.06008889608879985 23 0.059433364902729886 16 0.052334752999487436 12 0.05009931177707497 17 0.047946978324308755 10 0.041349514803747274 11 0.03584871002202227 14 0.03341942460363179 15 0.03281476980898455 9 0.026985476994884634 13 0.02103683735506205 0 0.016189354979193576 4 0.015672792974838916 5 0.014991245151119097 3 0.0127025386963205 6 0.010326012702030403 8 0.010152376583783963 7 0.00998213490142274 1 0.009180135949386665 2 0.008799601263055647 __DUMMY__ 0.003506718004383649 false 1.0 88 18 0.078259 19 0.076924 22 0.066384 20 0.061935 17 0.058079 21 0.05531 9 0.051346 24 0.051239 23 0.04519 16 0.0449 10 0.044359 0 0.038125 11 0.036389 5 0.031724 4 0.031514 3 0.029134 12 0.028144 6 0.027948 8 0.027486 7 0.027307 1 0.026794 2 0.026709 15 0.019983 14 0.014816 18 0.078259 19 0.076924 22 0.066384 20 0.061935 17 0.058079 21 0.05531 9 0.051346 24 0.051239 23 0.04519 16 0.0449 10 0.044359 0 0.038125 11 0.036389 5 0.031724 4 0.031514 3 0.029134 12 0.028144 6 0.027948 8 0.027486 7 0.027307 1 0.026794 2 0.026709 15 0.019983 14 0.014816 18 0.07264001456550634 19 0.06996242258312842 22 0.06486169097111681 21 0.05811581731873378 20 0.056923498912201324 17 0.051311901265522056 24 0.049263992096822924 9 0.0482874644643192 10 0.04668427377033627 23 0.04418386278768348 11 0.04215103891699163 16 0.03924481453208507 0 0.03690391410518537 12 0.03363664944966704 4 0.030833337101404585 5 0.03061186971296268 3 0.02828676954830539 6 0.02728183816464698 8 0.026734377561239784 7 0.026629479288807354 1 0.02623347749238377 2 0.02595858833336254 14 0.024995513173164213 15 0.02323433517760789 13 0.012311342319345584 __DUMMY__ 0.002717716387469666 false 1.0 89 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.07502773025483357 0 0.07151248950957492 9 0.057968281385944814 22 0.05783838147510053 16 0.0576698246374869 18 0.05244829165532757 11 0.046978714991072604 6 0.044363186709393265 10 0.04398542511160054 19 0.04392951891719869 8 0.0424260514152011 7 0.04223052511295702 1 0.04211352318752356 4 0.04162170443027687 2 0.04157279185098057 5 0.04128418682596789 3 0.03791593329941056 21 0.033991348679855184 23 0.030068925829898792 12 0.024753601151616192 15 0.018744201705941904 24 0.017990009394473837 20 0.015459638751493117 13 0.009832005177852928 14 0.00618819890248916 __DUMMY__ 0.0020855096365279217 false 1.0 190 12 0.095073 21 0.093075 11 0.086539 13 0.07969 22 0.070339 18 0.057498 10 0.055974 19 0.054214 0 0.049246 14 0.049173 17 0.039055 9 0.036421 23 0.035513 24 0.033077 20 0.032423 16 0.026167 4 0.018108 5 0.017728 6 0.016898 8 0.01131 7 0.011224 1 0.011083 2 0.01104 3 0.009132 12 0.095073 21 0.093075 11 0.086539 13 0.07969 22 0.070339 18 0.057498 10 0.055974 19 0.054214 0 0.049246 14 0.049173 17 0.039055 9 0.036421 23 0.035513 24 0.033077 20 0.032423 16 0.026167 4 0.018108 5 0.017728 6 0.016898 8 0.01131 7 0.011224 1 0.011083 2 0.01104 3 0.009132 21 0.08501879573072235 12 0.0843270175199739 11 0.07526381320613536 13 0.071162858194696 22 0.06590151724313152 18 0.05926850470189268 19 0.05544368915929678 10 0.05308157516255449 14 0.04909024730141856 0 0.043607581902445854 23 0.039424438102307426 17 0.038740880972308094 20 0.03793782339915612 24 0.03663904791212987 9 0.035965912743346914 16 0.027353278914161533 4 0.020570136212751933 5 0.02015585953928049 6 0.0190025088277378 8 0.014215589863675474 7 0.014192526343278564 1 0.014038735014584669 2 0.013854722574237777 3 0.012585512265328199 15 0.009265330292794503 __DUMMY__ 0.0038920969006529835 false 1.0 191 11 0.125519 22 0.096459 21 0.086121 0 0.080362 10 0.079764 18 0.077842 17 0.067836 19 0.065594 12 0.065153 9 0.049113 13 0.04467 16 0.044045 14 0.03723 20 0.015625 24 0.015245 23 0.011483 4 0.009119 5 0.008568 6 0.007895 15 0.003729 8 0.002443 7 0.002241 2 0.002006 1 0.001937 11 0.125519 22 0.096459 21 0.086121 0 0.080362 10 0.079764 18 0.077842 17 0.067836 19 0.065594 12 0.065153 9 0.049113 13 0.04467 16 0.044045 14 0.03723 20 0.015625 24 0.015245 23 0.011483 4 0.009119 5 0.008568 6 0.007895 15 0.003729 8 0.002443 7 0.002241 2 0.002006 1 0.001937 11 0.09303972511743479 22 0.08196067448870933 21 0.0768556565937971 18 0.07016572944407778 10 0.06604230427478215 0 0.06261453139106513 19 0.06163352473273629 12 0.05748385758687382 17 0.057111260049676656 9 0.047611819127319384 13 0.04026328926049753 16 0.038434685419157684 14 0.037120107211651474 20 0.026726100097638445 24 0.026554542936787457 23 0.02511275933678302 4 0.01859967078816488 5 0.018082608280450385 6 0.0167820684171034 8 0.012939184934419602 7 0.0128664592988258 1 0.012603885048416431 2 0.012409754864162228 3 0.011712565824256086 15 0.011404715780995446 __DUMMY__ 0.0038685196942178255 false 1.0 192 21 0.097017 12 0.083564 11 0.082491 19 0.080269 18 0.076825 22 0.07596 13 0.059793 10 0.058452 20 0.05616 14 0.047985 24 0.046872 17 0.044458 23 0.042742 0 0.039865 16 0.036465 9 0.033015 15 0.010146 4 0.008918 5 0.008033 6 0.005213 1 0.001954 7 0.001759 8 0.001197 3 8.47E-4 21 0.097017 12 0.083564 11 0.082491 19 0.080269 18 0.076825 22 0.07596 13 0.059793 10 0.058452 20 0.05616 14 0.047985 24 0.046872 17 0.044458 23 0.042742 0 0.039865 16 0.036465 9 0.033015 15 0.010146 4 0.008918 5 0.008033 6 0.005213 1 0.001954 7 0.001759 8 0.001197 3 8.47E-4 21 0.08497852560992226 11 0.07461171853888089 22 0.07329283218618227 18 0.0694395887698708 12 0.06860678549142726 19 0.06799723634994512 10 0.05670250646254941 13 0.050307121969090596 20 0.04626188449889831 14 0.04510839050026687 17 0.0427838771338735 24 0.04271314900175508 0 0.04146519433485107 23 0.04016132423360196 9 0.03950038667450448 16 0.03126110760272844 4 0.0181388872973463 5 0.01751615673387371 6 0.014689995452641068 15 0.013908036613988388 7 0.011726585846273091 1 0.011701762242527027 3 0.011682075984574037 8 0.011462794250068556 2 0.01067998261535217 __DUMMY__ 0.0033020936050072573 false 1.0 193 21 0.0964 12 0.095853 11 0.086072 13 0.076856 22 0.07247 18 0.062201 19 0.061534 10 0.056804 14 0.049116 0 0.047016 20 0.039965 17 0.039828 24 0.037464 23 0.036553 9 0.034791 16 0.029287 4 0.014777 5 0.014501 6 0.012982 7 0.007608 8 0.007421 1 0.007323 2 0.007213 3 0.005966 21 0.0964 12 0.095853 11 0.086072 13 0.076856 22 0.07247 18 0.062201 19 0.061534 10 0.056804 14 0.049116 0 0.047016 20 0.039965 17 0.039828 24 0.037464 23 0.036553 9 0.034791 16 0.029287 4 0.014777 5 0.014501 6 0.012982 7 0.007608 8 0.007421 1 0.007323 2 0.007213 3 0.005966 21 0.0875749093786106 12 0.08408781412871087 11 0.07559452550742339 13 0.06838002300184397 22 0.06806958693108704 18 0.062484087144602976 19 0.06055181668333801 10 0.05399753855202928 14 0.048853310299411014 20 0.042575189729358635 0 0.042453167695332604 23 0.03957292357369406 24 0.03952289605921759 17 0.039416029282315294 9 0.0354293263877927 16 0.029330904512814664 4 0.018271424716293 5 0.017911007810520053 6 0.016201663766834642 7 0.011673841091530517 8 0.01155947001520063 1 0.011446471370066214 2 0.011233461343657974 3 0.010536144062123285 15 0.00900840647423289 __DUMMY__ 0.00426406048195821 false 1.0 194 10 0.091342 18 0.089241 22 0.082903 21 0.075808 11 0.073228 9 0.062383 14 0.057867 19 0.057373 0 0.045649 12 0.040231 13 0.039318 17 0.033484 23 0.031067 20 0.029718 4 0.024286 5 0.023319 24 0.021843 15 0.021239 3 0.018437 6 0.018125 1 0.016153 7 0.016055 8 0.015923 2 0.015006 10 0.091342 18 0.089241 22 0.082903 21 0.075808 11 0.073228 9 0.062383 14 0.057867 19 0.057373 0 0.045649 12 0.040231 13 0.039318 17 0.033484 23 0.031067 20 0.029718 4 0.024286 5 0.023319 24 0.021843 15 0.021239 3 0.018437 6 0.018125 1 0.016153 7 0.016055 8 0.015923 2 0.015006 18 0.0743438319038231 10 0.07317851501535876 22 0.07266891565286396 21 0.06652355999827446 11 0.06385309650543455 9 0.057073723955181795 19 0.05193291884297825 14 0.04796763852010274 0 0.04627136765164559 12 0.04043910100764491 17 0.038943367771871934 13 0.03682313484967509 23 0.0334671279881207 20 0.029778060424240776 4 0.029533246705211236 5 0.02885276630817919 24 0.026340419093876175 6 0.025558200641422526 3 0.024669447960006866 7 0.023623236541997567 1 0.023602058005982047 8 0.02354798699289577 2 0.022830601720719126 15 0.022380635936145143 16 0.013127942440062297 __DUMMY__ 0.0026690975662855398 false 1.0 195 11 0.102364 10 0.085184 21 0.081262 18 0.079226 22 0.077554 12 0.071927 13 0.065872 19 0.065373 0 0.063681 14 0.060077 17 0.050637 9 0.04184 16 0.03635 20 0.033896 15 0.022653 24 0.02099 23 0.018954 4 0.006863 5 0.006748 6 0.005231 7 9.89E-4 1 7.81E-4 8 7.79E-4 2 7.69E-4 11 0.102364 10 0.085184 21 0.081262 18 0.079226 22 0.077554 12 0.071927 13 0.065872 19 0.065373 0 0.063681 14 0.060077 17 0.050637 9 0.04184 16 0.03635 20 0.033896 15 0.022653 24 0.02099 23 0.018954 4 0.006863 5 0.006748 6 0.005231 7 9.89E-4 1 7.81E-4 8 7.79E-4 2 7.69E-4 11 0.082654683058135 21 0.07537981247512683 18 0.07353073111673238 22 0.0729524080655832 10 0.07149130867412638 19 0.06309722360495815 12 0.06161960951518946 0 0.053906649462260425 13 0.05260981525148992 14 0.05124252292283122 17 0.04812361560851394 9 0.04360197708616224 20 0.03755001756717566 16 0.0342272397203767 24 0.029009272003633155 23 0.027991382965922667 15 0.02250302806693692 4 0.015682897542622438 5 0.01538863438902726 6 0.013471421918322126 7 0.010220944992209121 8 0.010100463561007479 1 0.010011483443783508 3 0.009865496919600775 2 0.009808246870926622 __DUMMY__ 0.003959113197346248 false 1.0 196 10 0.099199 11 0.095465 18 0.092225 22 0.084713 21 0.081534 0 0.068576 19 0.064731 12 0.062847 14 0.062426 13 0.061761 9 0.056637 17 0.054194 16 0.027273 20 0.025238 15 0.020043 23 0.010843 4 0.007899 24 0.007633 5 0.007484 6 0.005658 8 0.001172 7 9.14E-4 1 8.87E-4 2 6.5E-4 10 0.099199 11 0.095465 18 0.092225 22 0.084713 21 0.081534 0 0.068576 19 0.064731 12 0.062847 14 0.062426 13 0.061761 9 0.056637 17 0.054194 16 0.027273 20 0.025238 15 0.020043 23 0.010843 4 0.007899 24 0.007633 5 0.007484 6 0.005658 8 0.001172 7 9.14E-4 1 8.87E-4 2 6.5E-4 10 0.0848714565547967 18 0.08369366149794148 11 0.07852553433517041 22 0.07551995373955189 21 0.07170181275368463 19 0.061466979942658956 0 0.05892567223723414 14 0.056011434656542326 9 0.05357125409629633 12 0.0532888492022262 13 0.05136615882935803 17 0.05070909898618237 20 0.031664660453218814 16 0.02861966705187684 15 0.025773888367723236 23 0.020528846295841417 24 0.017250140886042875 4 0.015664535130112157 5 0.015239408018442226 6 0.013367717486748306 8 0.01012554843446531 7 0.010013781502949248 1 0.009909444281727204 3 0.009598218536621423 2 0.00958952160708053 __DUMMY__ 0.003002755115506853 false 1.0 197 0 0.087185 17 0.079165 9 0.065315 22 0.062363 11 0.059799 10 0.056762 18 0.054132 16 0.05319 6 0.045493 8 0.042881 7 0.042505 1 0.042318 2 0.04203 4 0.041815 5 0.041247 19 0.037414 3 0.037233 21 0.032703 12 0.024317 23 0.020879 13 0.012058 15 0.01146 14 0.003978 24 0.003758 0 0.087185 17 0.079165 9 0.065315 22 0.062363 11 0.059799 10 0.056762 18 0.054132 16 0.05319 6 0.045493 8 0.042881 7 0.042505 1 0.042318 2 0.04203 4 0.041815 5 0.041247 19 0.037414 3 0.037233 21 0.032703 12 0.024317 23 0.020879 13 0.012058 15 0.01146 14 0.003978 24 0.003758 0 0.07313306978566472 17 0.0694385057397951 9 0.06152735778933198 22 0.06044671877082168 11 0.05255624634233352 18 0.05248926468539899 10 0.050570350444756766 16 0.04691243513899421 6 0.04512799323783828 8 0.04318441816690832 4 0.04301861473608588 7 0.04297422226346964 1 0.04281792519619752 5 0.04247801264444648 2 0.04237259321053724 3 0.03922283349173776 19 0.03919984942258671 21 0.036453750798315754 23 0.02796697473544619 12 0.02474593140929432 15 0.015177237307201634 24 0.014541404672202335 13 0.012637857632524395 20 0.009614573911575022 14 0.009418415288474034 __DUMMY__ 0.0019734431780614728 false 1.0 198 11 0.102584 0 0.092769 17 0.091027 22 0.08381 16 0.078061 18 0.076926 19 0.076763 10 0.071608 21 0.068101 12 0.058969 9 0.047709 13 0.032309 20 0.018704 23 0.017531 14 0.016918 6 0.011079 24 0.008936 4 0.008739 5 0.007865 15 0.007133 8 0.006097 7 0.005801 1 0.005663 2 0.004899 11 0.102584 0 0.092769 17 0.091027 22 0.08381 16 0.078061 18 0.076926 19 0.076763 10 0.071608 21 0.068101 12 0.058969 9 0.047709 13 0.032309 20 0.018704 23 0.017531 14 0.016918 6 0.011079 24 0.008936 4 0.008739 5 0.007865 15 0.007133 8 0.006097 7 0.005801 1 0.005663 2 0.004899 11 0.07730944696903651 17 0.07378801225529187 0 0.07271675738256461 22 0.07192886679665868 18 0.06644707695457952 19 0.06458437431883522 16 0.06128997877296863 21 0.059696680271351506 10 0.05863590299863482 12 0.04879572934014863 9 0.04795464057348086 13 0.02810860521729506 23 0.02784376084129497 20 0.02532894964371441 6 0.02271172350172325 4 0.021728425966966784 5 0.021078200851526705 24 0.02090630917663593 14 0.020182998366325974 8 0.019324313587510026 7 0.019170270733598126 1 0.019028153926393346 2 0.018430658603286965 3 0.015517445400761404 15 0.014133404096833339 __DUMMY__ 0.0033593134525828597 false 1.0 199 11 0.095226 0 0.094973 17 0.090821 18 0.07572 16 0.075289 10 0.075052 22 0.07278 19 0.063734 12 0.06208 21 0.058224 9 0.047604 13 0.044543 14 0.024364 6 0.015627 15 0.015241 20 0.014238 23 0.014071 4 0.011309 5 0.010729 8 0.009288 7 0.00928 1 0.009021 2 0.008934 3 0.001853 11 0.095226 0 0.094973 17 0.090821 18 0.07572 16 0.075289 10 0.075052 22 0.07278 19 0.063734 12 0.06208 21 0.058224 9 0.047604 13 0.044543 14 0.024364 6 0.015627 15 0.015241 20 0.014238 23 0.014071 4 0.011309 5 0.010729 8 0.009288 7 0.00928 1 0.009021 2 0.008934 3 0.001853 0 0.07771686469043383 17 0.07685957211634857 11 0.07473480512985735 22 0.06652161682070981 18 0.0663066630112504 10 0.06198438391308076 16 0.06197760522521053 19 0.05694995776399345 21 0.05246002524676258 9 0.0493757538735411 12 0.04884010027646181 13 0.0334030448634896 6 0.025535105627135925 23 0.023791008447185756 4 0.023044457071310486 14 0.022603633529991007 5 0.02252588245284552 8 0.021367473835882184 7 0.021320490260986296 1 0.02112788231132106 2 0.020843636864293018 20 0.020155703554401997 15 0.018671854982785598 3 0.016348425649388442 24 0.012989829665779488 __DUMMY__ 0.0025442228155535622 false 1.0 90 20 0.128899 19 0.12713 18 0.108503 24 0.091388 21 0.075695 23 0.069717 16 0.06464 22 0.063606 17 0.055844 12 0.050186 10 0.03422 15 0.031492 9 0.02369 11 0.022164 14 0.020898 5 0.00946 4 0.008758 3 0.005643 0 0.003203 13 0.001849 6 0.001356 8 9.01E-4 7 7.05E-4 2 5.3E-5 20 0.128899 19 0.12713 18 0.108503 24 0.091388 21 0.075695 23 0.069717 16 0.06464 22 0.063606 17 0.055844 12 0.050186 10 0.03422 15 0.031492 9 0.02369 11 0.022164 14 0.020898 5 0.00946 4 0.008758 3 0.005643 0 0.003203 13 0.001849 6 0.001356 8 9.01E-4 7 7.05E-4 2 5.3E-5 19 0.09923414463083093 20 0.09831168175315934 18 0.08832101735784587 24 0.07383420614368837 21 0.07045981806173075 22 0.06022061088807695 23 0.05929666285729123 16 0.05261419268626663 12 0.050770939299236754 17 0.04806974852248055 10 0.040330594740106085 11 0.0346289858079838 15 0.033698226313179445 14 0.033130183964500556 9 0.027955824250990052 13 0.019772808477778684 5 0.015717327958736385 4 0.015688243363513696 0 0.014835204165172526 3 0.012796681210957513 6 0.010116903348111153 8 0.009514836307333522 7 0.009429090458535858 1 0.008942457134745401 2 0.008790925690011869 __DUMMY__ 0.0035186846077361806 false 1.0 91 22 0.067539 18 0.066248 9 0.062263 17 0.058994 19 0.055856 0 0.053285 10 0.049058 21 0.046942 11 0.042896 4 0.040907 5 0.040203 6 0.039 8 0.038605 7 0.038577 3 0.038494 1 0.037768 2 0.037425 16 0.036628 23 0.035627 20 0.034357 24 0.034259 12 0.018475 15 0.014167 14 0.012425 22 0.067539 18 0.066248 9 0.062263 17 0.058994 19 0.055856 0 0.053285 10 0.049058 21 0.046942 11 0.042896 4 0.040907 5 0.040203 6 0.039 8 0.038605 7 0.038577 3 0.038494 1 0.037768 2 0.037425 16 0.036628 23 0.035627 20 0.034357 24 0.034259 12 0.018475 15 0.014167 14 0.012425 22 0.06637489883608592 18 0.0634162859935637 9 0.05868023268303952 17 0.05458006527420453 19 0.05382308651597316 0 0.05032481489980021 21 0.050076751403531364 10 0.04953421236122914 11 0.04587160902083471 4 0.039133039992478254 5 0.038499015074178675 6 0.03704323488475312 3 0.03660492519771288 8 0.03648597728883177 7 0.0364399847279857 23 0.03631524309543618 1 0.03593916338139698 2 0.03550879333115039 24 0.0349777895862662 16 0.03433100718758863 20 0.03380541963804229 12 0.023869398780773137 14 0.019713456008050592 15 0.01791292705911621 13 0.00835565151725791 __DUMMY__ 0.0023830162607188995 false 1.0 92 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058406690186564136 4 0.058375342539263686 6 0.05831890704680699 7 0.058265522072494344 8 0.058142426448786054 5 0.058009536343319075 2 0.05753003216727189 9 0.05713835885114469 3 0.05692373311809509 22 0.04829651521279402 23 0.04671342977574459 17 0.04611375116434958 0 0.044492181403094494 18 0.03686008134359143 24 0.034544703636883264 21 0.032504802631484246 10 0.02933968557122923 19 0.027630295134855837 11 0.027361504221046325 16 0.027034175989270947 20 0.019140559972619372 12 0.018355539942862653 15 0.01822475170609628 14 0.011138286060851842 13 0.008628295032948843 __DUMMY__ 0.002510892426531171 false 1.0 93 1 0.068425 7 0.068412 8 0.068256 4 0.067688 6 0.067276 5 0.066665 3 0.066486 2 0.06643 9 0.064095 23 0.049344 22 0.045277 17 0.041254 0 0.041068 18 0.034202 24 0.033994 10 0.027804 21 0.024247 19 0.01896 15 0.018471 11 0.016983 16 0.016644 20 0.014512 14 0.00769 12 0.005817 1 0.068425 7 0.068412 8 0.068256 4 0.067688 6 0.067276 5 0.066665 3 0.066486 2 0.06643 9 0.064095 23 0.049344 22 0.045277 17 0.041254 0 0.041068 18 0.034202 24 0.033994 10 0.027804 21 0.024247 19 0.01896 15 0.018471 11 0.016983 16 0.016644 20 0.014512 14 0.00769 12 0.005817 9 0.060590031610845786 4 0.05687442155564151 7 0.05646679337153907 1 0.05641650705475744 8 0.05639417139302901 6 0.056390812510637836 5 0.05612674934305561 2 0.055167902586246535 3 0.05497195512101207 22 0.051258948658155924 17 0.04612196426531149 0 0.04600545671233739 23 0.044047018418612895 18 0.042226818855584214 10 0.03586188399931253 21 0.033303847025104624 24 0.031779052061264045 11 0.029229409111360675 19 0.028978181890315525 16 0.02402707190875743 15 0.01939987218073366 20 0.018473537232363127 12 0.015572692780196806 14 0.014004528771514141 13 0.007933398112031574 __DUMMY__ 0.002376973470279126 false 1.0 94 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06718117857659182 22 0.05796758217350095 4 0.05442001690606117 6 0.05388294290376875 0 0.05366736568505073 7 0.053650508883602746 8 0.05357446182774448 5 0.053554949115539874 1 0.0534589260788173 2 0.05239071251394598 3 0.052227629389517444 17 0.050826622553332854 18 0.04655788361959636 10 0.04319837327860992 23 0.036369996230692446 21 0.03598850376017844 11 0.03543114532104826 19 0.02991634010246186 24 0.025280029855291576 16 0.02411989924724373 15 0.017478271090748614 14 0.014941880129231764 12 0.013040342582227124 20 0.012595492669163445 13 0.006070728845345879 __DUMMY__ 0.0022082166606863874 false 1.0 95 7 0.073564 1 0.073132 8 0.073007 6 0.072614 4 0.072151 2 0.07202 3 0.071527 5 0.071431 9 0.059352 23 0.05384 17 0.039934 22 0.039817 24 0.03835 0 0.037933 18 0.023848 21 0.02135 16 0.019917 15 0.016854 10 0.016639 20 0.014549 19 0.014506 11 0.012338 12 0.008348 14 0.002977 7 0.073564 1 0.073132 8 0.073007 6 0.072614 4 0.072151 2 0.07202 3 0.071527 5 0.071431 9 0.059352 23 0.05384 17 0.039934 22 0.039817 24 0.03835 0 0.037933 18 0.023848 21 0.02135 16 0.019917 15 0.016854 10 0.016639 20 0.014549 19 0.014506 11 0.012338 12 0.008348 14 0.002977 6 0.05849285970025194 4 0.05844542301247885 7 0.05835926191692713 8 0.05811168045245403 1 0.05809898616207484 5 0.05783741145055412 2 0.05727329431733173 9 0.057186160088442684 3 0.056666655572885145 22 0.04839276439132653 23 0.046734771283773215 17 0.04611591320751629 0 0.044536766290581446 18 0.03687479403087605 24 0.034555267113887705 21 0.032472120850554426 10 0.029438532944245904 19 0.027652181179659837 11 0.027431880716564317 16 0.027128325598510902 20 0.019221376354049243 12 0.018385231944170667 15 0.018233971324195786 14 0.011187143018569387 13 0.008650542995115208 __DUMMY__ 0.0025166840830026906 false 1.0 96 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058383619075105794 4 0.05835406368472244 6 0.05829811411884006 7 0.058242403782742036 8 0.058119534972591314 5 0.05798898686832011 2 0.0575083207665834 9 0.057116591267765277 3 0.05690075507260662 22 0.048298164416417 23 0.04671574138588048 17 0.04612006436596688 0 0.044491774949954724 18 0.03686828631971336 24 0.034552469401202365 21 0.03252217625795086 10 0.029340696449089394 19 0.027653095590460353 11 0.02737994307519641 16 0.027056452636164994 20 0.019160170211425034 12 0.018386614266660085 15 0.01822747225520535 14 0.011147266908616083 13 0.008650538984590355 __DUMMY__ 0.0025166829162292215 false 1.0 97 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0583836190751058 4 0.05835406368472245 6 0.05829811411884006 7 0.05824240378274204 8 0.05811953497259132 5 0.057988986868320117 2 0.05750832076658341 9 0.057116591267765277 3 0.05690075507260663 22 0.04829816441641701 23 0.046715741385880485 17 0.046120064365966884 0 0.04449177494995473 18 0.03686828631971336 24 0.03455246940120237 21 0.032522176257950876 10 0.029340696449089394 19 0.027653095590460357 11 0.027379943075196412 16 0.027056452636164997 20 0.019160170211425034 12 0.018386614266660085 15 0.01822747225520535 14 0.011147266908616088 13 0.008650538984590355 __DUMMY__ 0.002516682916229222 false 1.0 98 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0583836190751058 4 0.05835406368472246 6 0.05829811411884007 7 0.05824240378274204 8 0.05811953497259132 5 0.057988986868320117 2 0.05750832076658341 9 0.057116591267765277 3 0.056900755072606626 22 0.048298164416417017 23 0.046715741385880485 17 0.046120064365966884 0 0.04449177494995473 18 0.03686828631971336 24 0.03455246940120237 21 0.032522176257950876 10 0.029340696449089394 19 0.027653095590460357 11 0.027379943075196412 16 0.027056452636164997 20 0.019160170211425034 12 0.01838661426666009 15 0.01822747225520535 14 0.011147266908616088 13 0.008650538984590355 __DUMMY__ 0.002516682916229222 false 1.0 99 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.06668124513223064 22 0.058405208971616863 4 0.054266696265529026 6 0.0537545311951046 5 0.053723835816817875 0 0.05362867285821163 8 0.053502801399428306 7 0.05345776412885335 1 0.05318094537392115 2 0.0525954118544781 3 0.0524281833699789 17 0.05058286122354839 18 0.04669796246714746 10 0.04333183843508269 23 0.03640769676163411 21 0.03590625253327468 11 0.0353512690663398 19 0.029895175675524674 24 0.025218162913030022 16 0.0241923308052007 15 0.017758540619474586 14 0.014951336969438001 12 0.013167967422773366 20 0.012676073139898334 13 0.0060447269144563096 __DUMMY__ 0.0021925086870065173 false 1.0