diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AGIExecEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AGIExecEvent.cs index d4910e7..2299452 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AGIExecEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AGIExecEvent.cs @@ -13,15 +13,29 @@ namespace AsterNET.Manager.Event : base(source) { } - + /// + /// Get/Set the command ID + /// Available since : Asterisk 12. + /// public long CommandId { get; set; } - + /// + /// Get/Set the command + /// Available since : Asterisk 12. + /// public string Command { get; set; } - + /// + /// Available since : Asterisk 12. + /// public string SubEvent { get; set; } - + /// + /// Get/Set the result + /// Available since : Asterisk 12. + /// public string Result { get; set; } - + /// + /// Get/Set the result number + /// Available since : Asterisk 12. + /// public int ResultCode { get; set; } } } \ No newline at end of file diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractConfbridgeEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractConfbridgeEvent.cs index c0bd36b..47bb853 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractConfbridgeEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractConfbridgeEvent.cs @@ -9,7 +9,7 @@ namespace AsterNET.Manager.Event public class AbstractConfbridgeEvent : ManagerEvent { /// - /// + /// Available since : Asterisk 10. /// public string Conference { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractMeetmeEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractMeetmeEvent.cs index e9523e6..e9aeec7 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractMeetmeEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AbstractMeetmeEvent.cs @@ -12,9 +12,13 @@ namespace AsterNET.Manager.Event /// /// Get/Set the conference number. + /// Available since : Asterisk 12. /// public string Meetme { get; set; } - + /// + /// Get/Set the conference user number + /// Available since : Asterisk 12. + /// public int Usernum { get; set; } } } \ No newline at end of file diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AsyncAGIEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AsyncAGIEvent.cs index cc0388f..97d13d0 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AsyncAGIEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AsyncAGIEvent.cs @@ -2,10 +2,19 @@ namespace AsterNET.Manager.Event { public class AsyncAGIEvent : ManagerEvent { + /// + /// Get/Set the Result + /// Available since : Asterisk 12. + /// public string Result { get; set; } - + /// + /// Get/Set the command ID + /// Available since : Asterisk 12. + /// public string CommandId { get; set; } - + /// + /// Available since : Asterisk 12. + /// public string SubEvent { get; set; } public string Env { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/AttendedTransferEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/AttendedTransferEvent.cs index 026e089..39100c7 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/AttendedTransferEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/AttendedTransferEvent.cs @@ -7,58 +7,200 @@ namespace AsterNET.Manager.Event public class AttendedTransferEvent : ManagerEvent { public bool Result { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererChannel { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererChannelState { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererChannelStatedesc { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererCalleridNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererCalleridName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererConnectedLineNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererConnectedLineName { get; set; } public string OrigTransfererLanguage { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererAccountCode { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererContext { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererPriority { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigTransfererUniqueId { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigBridgeUniqueId { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigBridgeType { get; set; } + /// + /// Get/Set the identifier of the remote fax station. + /// Available since : Asterisk 12. + /// public string OrigBridgetechnology { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigBridgeCreator { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigBridgeName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string OrigBridgeNumChannels { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererChannel { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererChannelState { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererChannelStatedesc { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererCalleridNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererCalleridName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererConnectedLineNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererConnectedLineName { get; set; } public string SecondTransfererLanguage { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererAccountCode { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererContext { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererExten { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererPriority { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondTransfererUniqueId { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondBridgeUniqueId { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondBridgeType { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondBridgeTechnology { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondBridgeCreator { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondBridgeName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string SecondBridgeNumChannels { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeChannel { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeChannelState { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeChannelStatedesc { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeCalleridNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeCalleridName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeConnectedLineNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeConnectedLineName { get; set; } public string TransfereeLanguage { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeAccountCode { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeContext { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeExten { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereePriority { get; set; } + /// + /// Available since : Asterisk 12. + /// public string TransfereeUniqueId { get; set; } public string TransferTargetChannel { get; set; } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/BridgeActivityEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/BridgeActivityEvent.cs index 8c6e16e..2492461 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/BridgeActivityEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/BridgeActivityEvent.cs @@ -7,22 +7,77 @@ namespace AsterNET.Manager.Event /// public abstract class BridgeActivityEvent : ManagerEvent { + /// + /// Available since : Asterisk 12. + /// public string BridgeUniqueId { get; set; } + /// + /// Available since : Asterisk 12. + /// public string BridgeType { get; set; } + /// + /// Available since : Asterisk 12. + /// public string BridgeTechnology { get; set; } + /// + /// Available since : Asterisk 12. + /// public string BridgeCreator { get; set; } + /// + /// Available since : Asterisk 12. + /// public string BridgeName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string BridgeNumChannels { get; set; } + /// + /// Available since : Asterisk 12. + /// public string ChannelState { get; set; } + /// + /// Available since : Asterisk 12. + /// public string ChannelStatedDesc { get; set; } + /// + /// Available since : Asterisk 12. + /// public string CallerIdNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string CallerIdName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string ConnectedLineNum { get; set; } + /// + /// Available since : Asterisk 12. + /// public string ConnectedLineName { get; set; } + /// + /// Available since : Asterisk 12. + /// public string Language { get; set; } + /// + /// Available since : Asterisk 12. + /// public string AccountCode { get; set; } + /// + /// Available since : Asterisk 12. + /// public string Context { get; set; } + /// + /// Available since : Asterisk 12. + /// public string Exten { get; set; } + /// + /// Available since : Asterisk 13. + /// + public string Linkedid{ get; set; } + /// + /// Available since : Asterisk 12. + /// public string Priority { get; set; } #region Constructors diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/FailedACLEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/FailedACLEvent.cs index 3d801ad..522ce2d 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/FailedACLEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/FailedACLEvent.cs @@ -3,6 +3,9 @@ using System.Collections.Generic; using System.Linq; using System.Text; +/// +/// + namespace AsterNET.Manager.Event { public class FailedACLEvent : ManagerEvent @@ -14,8 +17,17 @@ namespace AsterNET.Manager.Event public FailedACLEvent(ManagerConnection source) : base(source) { } + /// + /// Available since : Asterisk 12. + /// public string LocalAddress { get; set; } + /// + /// Available since : Asterisk 12. + /// public string RemoteAddress { get; set; } + /// + /// Available since : Asterisk 12. + /// public string ACLName { get; set; } } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs index 7f9b299..adc4af2 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/FaxReceivedEvent.cs @@ -15,41 +15,49 @@ namespace AsterNET.Manager.Event /// /// Get/Set the extension in Asterisk's dialplan the fax was received + /// Available since : Asterisk 12. /// public string Exten { get; set; } /// /// Get/Set the Caller*ID of the calling party or an empty string if none is + /// Available since : Asterisk 12. /// public string CallerId { get; set; } /// /// Get/Set the identifier of the remote fax station. + /// Available since : Asterisk 12. /// public string RemoteStationId { get; set; } /// /// Get/Set the identifier of the local fax station. + /// Available since : Asterisk 12. /// public string LocalStationId { get; set; } /// /// Get/Set the number of pages transferred. + /// Available since : Asterisk 12. /// public int PagesTransferred { get; set; } /// /// Get/Set the row resolution of the received fax. + /// Available since : Asterisk 12. /// public int Resolution { get; set; } /// /// Get/Set the transfer rate in bits/s. + /// Available since : Asterisk 12. /// public int TransferRate { get; set; } /// /// Get/Set the filename of the received fax including its full path on the Asterisk server. + /// Available since : Asterisk 12. /// public string Filename { get; set; } } diff --git a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs index 2ada4c6..a1c20b5 100644 --- a/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs +++ b/Asterisk.2013/Asterisk.NET/Manager/Event/ParkedCallGiveUpEvent.cs @@ -9,7 +9,8 @@ namespace AsterNET.Manager.Event { public ParkedCallGiveUpEvent(ManagerConnection source) : base(source) - { + { + } } } \ No newline at end of file diff --git a/docs/WebKI.xml b/docs/WebKI.xml index aee86b8..7c648e6 100644 --- a/docs/WebKI.xml +++ b/docs/WebKI.xml @@ -239,6 +239,7 @@ + @@ -264,6 +265,7 @@ + @@ -277,6 +279,7 @@ + @@ -298,6 +301,7 @@ + @@ -310,6 +314,7 @@ + @@ -322,6 +327,7 @@ + @@ -331,6 +337,7 @@ + @@ -342,6 +349,7 @@ + @@ -365,6 +373,7 @@ + @@ -375,6 +384,7 @@ + @@ -447,6 +457,7 @@ + @@ -608,10 +619,12 @@ + + @@ -1094,6 +1107,7 @@ + @@ -1204,6 +1218,7 @@ + @@ -1248,6 +1263,7 @@ + @@ -1284,7 +1300,9 @@ + + @@ -1300,6 +1318,7 @@ + @@ -1309,6 +1328,7 @@ + @@ -1340,6 +1360,7 @@ + @@ -1458,27 +1479,28 @@ + + + + - + + - - - - - - + + @@ -1496,7 +1518,6 @@ - @@ -1515,6 +1536,7 @@ + @@ -1743,6 +1765,7 @@ + @@ -1752,6 +1775,7 @@ + @@ -1774,6 +1798,7 @@ + @@ -1877,6 +1902,7 @@ + @@ -1906,6 +1932,7 @@ + @@ -1954,8 +1981,8 @@ - + @@ -1965,6 +1992,7 @@ + @@ -2146,6 +2174,7 @@ + @@ -2197,6 +2226,8 @@ + + @@ -2206,6 +2237,7 @@ + @@ -2250,8 +2282,9 @@ - + + @@ -2266,6 +2299,7 @@ + @@ -2393,6 +2427,7 @@ + @@ -2408,6 +2443,7 @@ + @@ -2610,6 +2646,7 @@ + @@ -2652,6 +2689,8 @@ + + @@ -2799,6 +2838,7 @@ + @@ -2842,6 +2882,7 @@ + @@ -2859,7 +2900,9 @@ + + @@ -2905,6 +2948,7 @@ + @@ -3057,41 +3101,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3196,6 +3324,7 @@ + @@ -3207,6 +3336,7 @@ + @@ -3236,6 +3366,7 @@ + @@ -3281,6 +3412,7 @@ + @@ -3371,6 +3503,7 @@ + @@ -3385,6 +3518,7 @@ + @@ -3394,6 +3528,7 @@ + @@ -3412,6 +3547,7 @@ + @@ -3505,6 +3641,7 @@ + @@ -3566,6 +3703,7 @@ + @@ -3581,6 +3719,7 @@ + @@ -3600,6 +3739,7 @@ + @@ -3609,6 +3749,7 @@ + @@ -3650,6 +3791,7 @@ + @@ -3671,6 +3813,7 @@ + @@ -3682,6 +3825,7 @@ + @@ -3801,6 +3945,7 @@ + @@ -3814,6 +3959,7 @@ + @@ -3824,6 +3970,7 @@ + @@ -3834,6 +3981,7 @@ + @@ -3872,6 +4020,8 @@ + + @@ -3907,6 +4057,8 @@ + + @@ -3938,6 +4090,7 @@ + @@ -3957,6 +4110,7 @@ + @@ -3975,6 +4129,7 @@ + @@ -4074,6 +4229,7 @@ + @@ -4157,6 +4313,7 @@ + @@ -4203,6 +4360,7 @@ + @@ -4808,6 +4966,7 @@ + @@ -4836,6 +4995,7 @@ + @@ -4987,6 +5147,7 @@ + @@ -5005,8 +5166,8 @@ - + @@ -5082,6 +5243,8 @@ + + @@ -5118,6 +5281,7 @@ + @@ -5127,6 +5291,7 @@ + @@ -5176,6 +5341,7 @@ + @@ -5207,6 +5373,7 @@ + @@ -5317,6 +5484,7 @@ + @@ -5327,6 +5495,7 @@ + diff --git a/docs/WebTOC.xml b/docs/WebTOC.xml index 5c34a5e..29d16f3 100644 --- a/docs/WebTOC.xml +++ b/docs/WebTOC.xml @@ -2,12 +2,12 @@ - + - - - + + + @@ -35,22 +35,22 @@ - + - - + + - + - + @@ -58,11 +58,11 @@ - + - + @@ -72,27 +72,27 @@ - - - + + + - + - + - + - + - - + + @@ -101,31 +101,31 @@ - + - + - + - + - - + + - + @@ -133,7 +133,7 @@ - + @@ -142,15 +142,15 @@ - + - + - + @@ -177,74 +177,74 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -253,31 +253,31 @@ - + - + - + - + - + - - + + @@ -286,98 +286,98 @@ - + - + - + - - + + - + - + - + - - + + - + - + - - + + - + - + - + - - + + - + - + - - + + - + - + - + @@ -386,168 +386,168 @@ - - + + - + - + - - + + - + - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - + - + - + - - + + - + - + - + - + - - + + - + - + - - + + - + - + - - + + - + - + @@ -556,263 +556,263 @@ - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - - + + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - - + + - + - + - - - + + + - + - - + + - + - + - + - + - + @@ -820,23 +820,23 @@ - - + + - + - + - + - + @@ -849,7 +849,7 @@ - + @@ -865,8 +865,8 @@ - - + + @@ -893,10 +893,10 @@ - + - + @@ -906,12 +906,12 @@ - - + + - + @@ -920,18 +920,18 @@ - - + + - + - - + + @@ -939,23 +939,23 @@ - + - + - + - + @@ -975,10 +975,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + @@ -986,7 +1071,7 @@ - + @@ -998,15 +1083,15 @@ - + - + - + @@ -1040,37 +1125,37 @@ - + - + - + - + - + - + - + - + - + @@ -1078,7 +1163,7 @@ - + @@ -1093,27 +1178,27 @@ - - - + + + - + - - + + - + @@ -1122,44 +1207,44 @@ - - + + - + - + - + - + - + - + - - + + - + @@ -1177,13 +1262,13 @@ - - + + - + @@ -1191,316 +1276,316 @@ - - + + - + - - + + - + - - + + - + - - + + - + - + - - + + - + - + - + - + - + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - + - + - + - + - + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - + - - + + - + - - + + - + - + - + - - + + - + - + - - + + - + - - + + - + - - + + - + @@ -1509,70 +1594,70 @@ - + - + - - + + - + - - + + - + - + - + - + - + - + - + - + - - + + - + @@ -1580,16 +1665,16 @@ - + - + - + @@ -1604,13 +1689,13 @@ - - + + - + @@ -1618,36 +1703,36 @@ - + - + - + - + - + - + - - + + - + @@ -1656,13 +1741,13 @@ - - + + - + @@ -1671,8 +1756,8 @@ - - + + @@ -1680,33 +1765,33 @@ - + - - + + - + - - + + - + @@ -1714,59 +1799,59 @@ - - + + - + - - + + - + - - + + - + - + - + - + - - + + - + @@ -1775,89 +1860,89 @@ - - + + - + - - + + - + - + - + - + - + - - + + - + - + - + - + - + - - + + - + - - + + - + @@ -1865,9 +1950,9 @@ - + - + @@ -1876,7 +1961,7 @@ - + @@ -1884,95 +1969,95 @@ - - + + - + - - + + - + - - + + - + - - + + - + - + - + - + - + - + - - + + - + - + - + - + - + - + @@ -1984,38 +2069,38 @@ - - + + - + - + - + - + - + - + - + @@ -2032,28 +2117,28 @@ - + - + - + - + - + - + @@ -2067,54 +2152,54 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -2123,10 +2208,10 @@ - + - + @@ -2134,32 +2219,32 @@ - + - + - + - + - + - + - + @@ -2228,10 +2313,10 @@ - + - + @@ -2269,10 +2354,10 @@ - + - + @@ -2289,30 +2374,31 @@ + - + - + - + - + - + - + @@ -2327,15 +2413,15 @@ - + - + - + @@ -2344,10 +2430,10 @@ - + - + @@ -2366,10 +2452,10 @@ - + - + @@ -2377,10 +2463,10 @@ - + - + @@ -2391,107 +2477,107 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2504,55 +2590,55 @@ - + - + - + - + - + - + - + - - + + - + - + - + @@ -2563,43 +2649,43 @@ - + - + - + - + - + - + - + - + - + - + @@ -2618,45 +2704,45 @@ - + - + - + - + - + - + - - + + - + - + @@ -2667,103 +2753,103 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -2771,15 +2857,15 @@ - + - + - + @@ -2788,15 +2874,15 @@ - + - + - + @@ -2806,10 +2892,10 @@ - + - + @@ -2818,25 +2904,25 @@ - + - + - + - + - + @@ -2851,17 +2937,17 @@ - + - + - + - + @@ -2869,44 +2955,44 @@ - + - + - + - + - + - + - + - + - + - + @@ -2914,18 +3000,18 @@ - + - + - + - + @@ -2935,10 +3021,10 @@ - + - + @@ -2951,47 +3037,47 @@ - + - + - + - + - + - + - + - + - + - + - + - + @@ -3003,10 +3089,10 @@ - + - + @@ -3019,15 +3105,15 @@ - + - + - + @@ -3036,39 +3122,39 @@ - + - + - + - + - + - + - + - + - + @@ -3083,10 +3169,10 @@ - + - + @@ -3101,10 +3187,10 @@ - + - + @@ -3113,10 +3199,10 @@ - + - + @@ -3125,10 +3211,10 @@ - + - + @@ -3136,10 +3222,10 @@ - + - + @@ -3148,17 +3234,17 @@ - + - + - + - + @@ -3171,10 +3257,10 @@ - + - + @@ -3185,41 +3271,41 @@ - + - + - + - + - + - + - + - + - + - + @@ -3228,82 +3314,82 @@ - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + @@ -3311,22 +3397,22 @@ - - + + - + - + - + @@ -3337,13 +3423,13 @@ - + - + - + @@ -3355,41 +3441,41 @@ - - + + - - + + - + - - + + - + - + - + - + diff --git a/docs/fti/FTI_100.json b/docs/fti/FTI_100.json index 12dd2d0..effc1e8 100644 --- a/docs/fti/FTI_100.json +++ b/docs/fti/FTI_100.json @@ -1 +1 @@ -{"default":[1,917507,983042,1310721,2031617,2097153,2555905,3538945,3604481,4456449,5242882,21626881,25821185,26083329,29687809,29753345,29818881,29884417,30867457,31326209,31981569,32178177,34799617,34865153,35848193,41484289,41549825,44040193,44171265,59834369,63766533,63897602,64028674,64159745,64880641,64946177,65798148,66060289,66191361,66322433,66387969,66912258,67108865,68550658,71368705,72351747,75169793,77398017,77463553,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410370,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080396,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,91291649,91357185,91422721,95223809,97910786,104267777,104398849,105709569,132055041,133103617,146604033,146669569,146735105,146800641,146931713,147128321,147193857,147259393,147324929,147390465,147456001,147521537,148242433,149749761,150994947,151060481,151453697,151584769,151650306,151715841,151781381,152043524,152436737,152567809,152829953,152895489,153878530,154271745,154533889,154599425,154730497,155189249,156172290,157417473,157483009,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789122,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,171048975,171245569,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"documentation":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900546,1966082,2031617,2097153,2162690,2228226,2293762,2359298,2424834,2490370,2555905,2621442,2686978,2752514,2818050,2883586,2949122,3014657,3080193,3145730,3211265,3276802,3342338,3407874,3473410,3538945,3604481,3670018,3735553,3801089,3866625,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456449,4521986,4587522,4653058,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937604,23003141,23068676,23134210,23199747,23265281,23330817,23396353,23461889,23527427,23592963,23658499,23724034,23789569,23855105,23920641,23986177,24051713,24117251,24182785,24248322,24313860,24379395,24444932,24510467,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165826,25231361,25296897,25362433,25427971,25493505,25559041,25624577,25690113,25755650,25821185,25886721,25952257,26017793,26083329,26148867,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262980,27328514,27394051,27459586,27525122,27590658,27656194,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180483,28246018,28311554,28377090,28442625,28508162,28573701,28639233,28704770,28770305,28835846,28901379,28966916,29032451,29097985,29163523,29229057,29294595,29360129,29425665,29491203,29556737,29622273,29687809,29753345,29818881,29884417,29949955,30015489,30081025,30146563,30212097,30277633,30343171,30408705,30474243,30539777,30605315,30670849,30736385,30801923,30867457,30932993,30998529,31064067,31129601,31195137,31260675,31326209,31391745,31457283,31522817,31588355,31653889,31719425,31784963,31850497,31916035,31981569,32047105,32112643,32178177,32243714,32309251,32374785,32440321,32505859,32571393,32636929,32702467,32768002,32833537,32899073,32964609,33030147,33095681,33161217,33226755,33292289,33357825,33423363,33488897,33554433,33619971,33685505,33751041,33816579,33882113,33947651,34013185,34078723,34144257,34209795,34275329,34340867,34406401,34471939,34537473,34603011,34668545,34734083,34799617,34865153,34930691,34996225,35061761,35127299,35192834,35258371,35323905,35389441,35454977,35520515,35586050,35651587,35717121,35782659,35848193,35913729,35979268,36044802,36110337,36175873,36241412,36306946,36372481,36438018,36503554,36569092,36634626,36700161,36765698,36831236,36896772,36962305,37027844,37093378,37158913,37224450,37289987,37355522,37421060,37486593,37552129,37617665,37683201,37748737,37814275,37879811,37945348,38010884,38076419,38141955,38207492,38273028,38338563,38404099,38469636,38535172,38600705,38666244,38731777,38797313,38862851,38928387,38993924,39059460,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714819,39780353,39845891,39911425,39976975,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763395,40828931,40894466,40960003,41025537,41091073,41156610,41222145,41287683,41353217,41418755,41484289,41549826,41615361,41680898,41746433,41811970,41877505,41943043,42008577,42074113,42139649,42205185,42270722,42336257,42401793,42467329,42532865,42598403,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122691,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236802,44302337,44367874,44433409,44498947,44564481,44630017,44695553,44761089,44826625,44892163,44957699,45023234,45088771,45154306,45219841,45285380,45350913,45416451,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006278,46071809,46137345,46202881,46268417,46333953,46399489,46465028,46530561,46596101,46661633,46727169,46792705,46858242,46923777,46989314,47054851,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775747,47841281,47906819,47972353,48037890,48103427,48168961,48234497,48300034,48365571,48431106,48496643,48562180,48627717,48693254,48758785,48824321,48889859,48955396,49020932,49086465,49152003,49217537,49283074,49348609,49414146,49479681,49545218,49610755,49676289,49741825,49807361,49872897,49938433,50003970,50069507,50135042,50200579,50266114,50331650,50397186,50462721,50528258,50593794,50659330,50724865,50790402,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101121,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673986,53739522,53805057,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591489,54657025,54722561,54788097,54853633,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574530,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950785,57016322,57081857,57147393,57212929,57278465,57344001,57409537,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720261,58785794,58851330,58916866,58982402,59047938,59113473,59179012,59244549,59310083,59375619,59441155,59506689,59572225,59637761,59703297,59768834,59834371,59899909,59965443,60030980,60096516,60162049,60227585,60293122,60358657,60424193,60489730,60555267,60620802,60686339,60751874,60817409,60882946,60948483,61014019,61079556,61145089,61210625,61276162,61341699,61407235,61472769,61538305,61603841,61669379,61734913,61800449,61865985,61931521,61997058,62062593,62128130,62193665,62259201,62324739,62390273,62455810,62521346,62586883,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504386,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094210,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391106,89456642,89522177,89587713,89653249,89718786,89784322,89849858,89915394,89980930,90046466,90112001,90177537,90243074,90308609,90374145,90439681,90505218,90570754,90636289,90701826,90767362,90832898,90898434,90963969,91029505,91095041,91160577,91226114,91291649,91357185,91422721,91488258,91553794,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257730,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206850,96272386,96337921,96403457,96468993,96534530,96600066,96665602,96731137,96796674,96862210,96927746,96993282,97058818,97124354,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287041,99352577,99418113,99483649,99549186,99614722,99680258,99745794,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170625,102236161,102301698,102367233,102432769,102498306,102563841,102629377,102694914,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529922,104595458,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692610,106758146,106823682,106889218,106954754,107020290,107085825,107151361,107216897,107282433,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937793,108003329,108068865,108134402,108199938,108265474,108331010,108396545,108462081,108527617,108593153,108658690,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510658,109576194,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476738,111542273,111607809,111673345,111738882,111804418,111869954,111935490,112001025,112066562,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377282,113442817,113508354,113573890,113639425,113704962,113770498,113836034,113901569,113967105,114032642,114098178,114163714,114229250,114294786,114360322,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884610,114950145,115015682,115081217,115146753,115212289,115277825,115343361,115408897,115474434,115539970,115605506,115671042,115736578,115802113,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863041,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960193,126025730,126091266,126156801,126222338,126287873,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598593,127664129,127729665,127795201,127860737,127926274,127991809,128057345,128122881,128188417,128253953,128319490,128385026,128450561,128516097,128581634,128647169,128712705,128778242,128843778,128909314,128974850,129040385,129105921,129171457,129236993,129302530,129368066,129433602,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103617,133169153,133234689,133300225,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824513,133890050,133955585,134021121,134086657,134152193,134217730,134283265,134348801,134414337,134479873,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004161,135069697,135135233,135200769,135266305,135331841,135397378,135462913,135528449,135593986,135659521,135725058,135790594,135856130,135921666,135987201,136052738,136118274,136183809,136249345,136314881,136380417,136445953,136511489,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543106,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244737,144310274,144375809,144441346,144506881,144572417,144637953,144703489,144769026,144834562,144900097,144965634,145031169,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555457,145620993,145686529,145752066,145817602,145883138,145948674,146014210,146079745,146145281,146210817,146276353,146341890,146407426,146472962,146538498,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652610,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307970,148373506,148439042,148504577,148570114,148635650,148701186,148766722,148832258,148897793,148963329,149028866,149094402,149159938,149225474,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732801,150798337,150863873,150929409,150994946,151060481,151126017,151191553,151257089,151322625,151388162,151453697,151519234,151584769,151650305,151715841,151781378,151846914,151912450,151977986,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337282,154402817,154468353,154533889,154599425,154664962,154730497,154796033,154861570,154927105,154992642,155058177,155123713,155189249,155254785,155320321,155385858,155451394,155516930,155582465,155648001,155713537,155779074,155844609,155910145,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072834,158138369,158203906,158269441,158334978,158400514,158466049,158531586,158597122,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497666,160563202,160628737,160694274,160759810,160825346,160890882,160956418,161021954,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546242,161611777,161677313,161742849,161808385,161873922,161939457,162004993,162070530,162136065,162201602,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774465,163840002,163905538,163971074,164036610,164102145,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412866,165478401,165543938,165609473,165675009,165740545,165806081,165871618,165937154,166002689,166068225,166133761,166199297,166264833,166330370,166395905,166461441,166526978,166592513,166658049,166723586,166789121,166854658,166920194,166985730,167051266,167116802,167182337,167247873,167313409,167378945,167444482,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968770,168034306,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279490,169345026,169410562,169476098,169541634,169607169,169672705,169738241,169803778,169869313,169934849,170000385,170065921,170131457,170196994,170262529,170328065,170393601,170459138,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425218,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670402,173735937,173801473,173867009,173932545,173998081,174063618,174129153,174194690,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"describe":[131073],"description":[131073,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,63700994,63766531,63832065,63897601,63963137,64028676,64094209,64159746,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645506,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888386,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296258,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869122,84934657,85000194,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,96141314,111673345,150994945,151060483,151126018,151191556,151257092,151322628,151388162,151453699,151519233,151584771,151650307,151715842,151781380,151846914,151912450,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698883,152764418,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616387,153681923,153747459,153812994,153878531,153944067,154009603,154075139,154140675,154206211,154271747,154337281,154402821,154468356,154533890,154599427,154664963,154730499,154796034,154861571,154927106,154992641,155058179,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713540,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827651,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859268,158924803,158990339,159055875,159121411,159186948,159252483,159318019,159383555,159449091,159514627,159580163,160497665,160628740,161939460,162004995,162070531,162136068,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840001,163905537,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675012,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247876,167313411,167378948,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148420,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170721282,171048964,171180036,171245570,171835395,173342723,173408259,173473795,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063619,174260228,174850051,174915587,174981122],"date":[262145],"data":[327681,393217,458753,524289,589825,655361,720897,786433,851969,22740994,30932993,30998529,40501250,44695554,44761090,44826626,62914562,63832065,64028673,64094210,64159747,68157441,69599235,71958529,72024065,72089601,72876033,74645505,74711041,75628545,77725697,77791235,79626241,79691777,88145921,88211457,89063425,89128961,92864513,100073473,104857601,105185281,105512966,148045829,150732801,151191554,151257090,151322626,152436738,154402818,154468354,155648002,155910145,157745156,157810692,160628738,161939458,166133761,166264833,170131457,170917889,171180034,171835393,174260226,174850051],"default_hostname":[917505,3014661,150994945],"default_port":[917505,3080197,150994945],"dead":[983041,3538945,151519233,151781377],"dll":[1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"dictionary":[4653061,11337731,13303811,13369347,13893635,13959171,14024707,14090243,15073281,16777219,21823491,24379397,45023239,45088769,45154312,50135047,50200577,50266120,52101134,54657038,60620806,60686337,60751879,61669381,61997063,62259214,62455815,71630849,71696385,79167489,109969415,132055048,149291014,149749767,157810691,159186945,162004995,162070531,162594819,162660355,162725891,162791427,163774465,165609475,171835395,173932545,173998081],"determines":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"derived":[4849666,4915202,4980738,7995394,8060930,13172738,13238274,21692418,22675458,64159745,151191554,151257090,151322626,154402818,154468354,160628738,161939458,166264833,171180034,174260226],"directly":[5111809,23855105,64094209,64159747,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132186113,151453697,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774466,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281794,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"different":[5111810,23986177,24051713,151453698],"digits":[5242900,5636098,24707073,24772610,24838146,24903682,25493506,25559042,25624580,25821187,25886724,26214402,26279939,26411009,26542082,26607618,26673154,26738693,26804230,26935297,27066369,27197441,27918337,29556737,29622273,29753345,29818881,29884417,30998529,31326209,31391746,32374785,32440322,32636929,32833538,32899074,32964610,33095686,33161223,33554433,33751041,35389441,35454977,63832077,64552964,64749575,64880644,65011714,65142787,65732610,66584579,72482817,72876034,73007106,73334785,73400321,73465857,73531395,73662465,73728001,74383361,91619329,92798978,93061121,93192193,93585409,93913089,94109697,94306310,94371841,94568449,94699521,95551489,151650324,152043524,152436741,152567812,152961026,153026562,153092101,153157636,153288706,153354242,154075138],"digit":[5242895,24707074,24772610,24838146,24903685,25821186,25886722,26214401,26279937,26411009,26542081,26607617,26673153,26738690,26804226,26935297,27066369,27197441,27918338,28049411,29556738,29622275,29687809,29753345,29818881,29884420,35913729,63832088,64552968,64880642,65011714,65208321,65536001,65798148,72482819,74579969,83034113,91750401,91881473,91947009,96010241,128843782,151650319,152043529,152567811,152961025,153026562,153092098,153157635,153223170,153288706,153354242,154075138,154271748,165412865],"disconnected":[5242884,24707073,24772609,24838145,24903681,63832067,64552964,151650308,152043521,152567809,154075137],"databasedel":[5242881,24969221,151650305],"deletes":[5242883,24969217,25034753,25100289,42401793,42532865,63832066,64618498,68878337,68943873,151650307,152109057,152174593,156696577,156762113],"database":[5242885,24969217,25034753,25100289,25165825,25231361,42401793,42532865,42729473,42860545,63832068,64094210,64618498,68878337,68943873,69009409,69074945,82640899,127729665,127795201,127860737,151650309,152109057,152174593,152240129,152305665,156696577,156762113,156827650,156893186,165019651],"databasedeltree":[5242882,25034758,25100294,64618499,151650306],"databaseget":[5242881,25165830,151650305],"databaseput":[5242881,25231365,151650305],"dtmf":[5242893,25493506,25559042,25624578,25821185,25886721,26214402,26279939,26411011,26542081,26607617,26673153,26804227,26935299,27066371,27197443,27918338,28049411,32440321,35913729,63832074,64749571,65011716,65077249,65208321,65273857,65339393,65404929,74579969,96010241,151650317,152436737,152961026,153026561,153092097,153157633,153223169,153288705,153354241,154271746],"despite":[5242882,26214401,26279938,32440321,63832065,65011714,151650306,152961025],"disables":[5242881,27328513,34144257,49283073,70778881,151650305,159318017],"databasedelcommand":[5701635,29949956,30015495,30081031,30212097,30277633,63832065,65863686,65929218,72548355,92012546,92078082,151846913,152109067,152174594],"databasedeltreecommand":[5767171,30146564,30212102,30277638,63832065,65929220,72613891,92143618,92209154,151846913,152174601],"databasegetcommand":[5832707,30343172,30408710,63832065,72679427,92274690,92340226,151846913,152240137],"databaseputcommand":[5898243,30474244,30539782,63832065,72744963,92405762,92471298,92536834,151846913,152305673],"determinescript":[7929857,8126465,8192001,8323073,35979272,36241418,36569098,37027850,154337281,154533889,154599425,154730497],"debug":[8519684,37814280,37879816,37945353,38010889,67371013,154927108,154992641],"dbdelaction":[10223619,42336263,42401799,64094209,68878342,76677123,102105091,102170626,102236162,156696588,157548545],"dbdeltreeaction":[10289155,42467335,42532871,64094209,68943878,76742659,102301699,102367234,102432770,156762124,157548545],"dbgetaction":[10354691,42598404,42663943,42729479,64094209,64159745,69009414,76808195,102498307,102563842,102629378,156827659,157614081,165019650],"dbputaction":[10420227,42795015,42860551,64094209,69074950,76873731,102694915,102760450,102825986,102891522,156893195,157548545],"details":[12713985,48037889,48758785,49938433,54722561,62717953,63700993,64028673,64094211,64159746,64225282,70451201,70582273,154927105,158924801,158990339,159186945,165609473,167837697,172294145,173604865,173735937],"dbgetresponseevent":[16187395,53280775,64094209,64159746,82640899,127729666,127795202,127860738,156827650,161546245,165019658,169213953],"dialbeginevent":[16252931,53346311,64159745,82706435,161611781,165085193,165216257],"dialendevent":[16318467,53411847,64159745,82771971,127926275,161677317,165150729,165216257],"dialevent":[16384003,53477383,53673985,64159745,82706442,82771978,82837507,127991810,128057346,128122882,128188418,128253954,128319491,128385027,128450562,128516098,128581635,161742853,165085199,165150735,165216265,165412865,166264833],"disconnectevent":[16449539,53542919,64159746,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903044,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132186113,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954114,165019649,165085185,165150721,165216257,165281803,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"dndstateevent":[16515075,53608455,56557569,56623105,64028673,64159746,82968579,128647170,128712706,161808390,165347338,166264833,167968769,168034305],"dtmfevent":[16580611,53673990,64159745,83034115,128778243,128843779,128909315,128974851,161873925,165412873,166264833],"determineversion":[21626881,59375623,171048961],"delayed":[21626882,59572225,59637761,71303170,171048962],"disconnects":[21626881,59703297,171048961],"dependent":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"duration":[22609922,62521346,81723393,84082689,125501446,132841478,164102145,166461441,174063618],"digest":[22740993,40370178,43778050,43843586,62914561,62980097,64290817,68091905,75563009,77266946,89128961,99876865,103809026,150732801,155582466,157286402,174850052],"determine":[23199745],"decribing":[23330817,23396353],"delete":[24969218,25034753,25100290,30015490,30081027,30212097,30277634,48758785,64094209,65863682,72548354,72613890,76677122,76742658,92012545,92078081,92143617,92209153,102170625,102236161,102367233,102432769,152109060,152174594,156696578,156762114,159186945],"dial":[25296897,25362433,64028676,64159750,72220675,77791233,79233025,90177537,90374145,90636289,105381889,110297089,151584771,157810689,159252481,161611777,161677313,161742850,165085186,165150722,165216258],"defined":[25886721,31391745,64094210,71958529,72024065,72089601,73007105,74645505,74711041,75104258,79626241,79691777,86048769,86507521,87949313,88145921,89063425,93192193,97386497,97714177,138412033,140247041,146276353,151191553,151257089,151322625,152567809,154402817,154468353,155123714,158662657,158924801,160628737,161939457,168427521,168886273,170328065,171180033,174260225],"defaults":[28835841,75104258,77725698,97386497,97714177,104857601,104923137,155123714,157745154],"defaultarg":[28835845],"directory":[41484289,41549825,42205186,42270722,68550658,68812804,156172290,156631044],"distributed":[45875201,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,106561537,112984065,138018817,138608641,139657217,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737],"destination":[47251459,47316995,64094209,78708739,79167489,81723393,82706434,82771970,82837506,108724225,108789761,108920833,110034945,125239302,128188422,155123713,158728195,159186945,164102145,165085186,165150722,165216258],"detail":[47448065,47513601,64028673,64094210,64159745,70320130,77791233,88211457,105054209,147718145,157810690,158793731,161087489,164102145,171835393],"delcat":[48758785,64094209,159186945],"dstfilename":[48889862,48955398,49020934,64094209,79167489,110034949,159186946],"dials":[49152001,64094209,70713345,159252482],"disturb":[49283073,49414145,64028673,64094210,64159745,70778881,70844417,82968578,128647169,128712705,159318018,159383554,161808385,165347331],"describing":[49807361,49872897,60358657,60424193],"delegate":[63373313,63438849,64028673,159645701,159711237,159776773,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160563205,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153029,161218565,161284101,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,170393605,170459141,170524677,170590213,170655749,170786821,170852357,170917893,170983429,171114501,171311109,171376645,171442181,171507717,171573253,171638789,171704325,171769861,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359685,172425221,172490757,172556293,172621829,172687365,172752901,172818437,172883973,172949509,173015045,173080581,173146117,173211653,173277189,174129157,174194693,174325765,174391301,174456837,174522373,174587909,174653445,174718981,174784517],"denoting":[63766529,151322625],"decimal":[63832065,152829953],"disabled":[63832065,82968578,83820545,128647169,128712705,131858433,153550849,165347330,166199297],"disable":[63832065,88080385,147062785,154140673,171048961],"desire":[63832065,154271745],"delegates":[64028673],"dumps":[64028673,64159745,159973377,162791425],"detects":[64028673,161415169],"disconnect":[64028673,88080385,147062785,161480705,171048961],"dbgetresponseeventhandler":[64028673,161546246],"dialbegineventhandler":[64028673,161611781],"dialendeventhandler":[64028673,161677317],"dialeventhandler":[64028673,161742853],"dndstateeventhandler":[64028673,161808389],"driver":[64028675,64159747,161808385,165347329,165806081,169869313,170655745,174391297],"dnd":[64028673,64159745,79298561,79364097,82968578,110493697,110624769,128647169,128712705,159318017,159383553,161808385,165347331],"dtmfeventhandler":[64028673,161873926],"detection":[64028673,171442177],"discontinued":[64028673,64159746,163774465,170000385,174456833],"dialplan":[64028673,64094210,64159745,83230721,86048769,129564673,138412033,155058177,155123713,165609473,168427521,170131457,174587905],"denote":[64094209,158662657],"dump":[64094210,158662657,159186945],"depending":[64094209,158793729],"describes":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"depends":[72155137,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,89325569,149880833,150011905,151453697,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"dnid":[72220673,90243078,151584769],"disconnecting":[75104257,97714177,155123713],"def":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"desired":[79167489,109969409,159186945],"datereceived":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132186117,149815301,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"dynamic":[80150530,85393409,85983235,86048770,86114306,86179842,86245378,86310914,86376450,86441987,112787458,135593990,137887747,138412034,139526147,162398210,167772161,168361987,168427522,168493058,168558594,168624130,168689666,168755202,168820739],"device":[80150530,84475905,85983233,86114306,86179842,86245378,86310914,86376450,86441985,113180673,113246209,133365766,139722753,162398210,166854657,168361985,168493058,168558594,168624130,168689666,168755202,168820737],"destinationchannel":[80347137,81723393,114163718,125304838,162594817,164102145],"destbridgeuniqueid":[81133569,116129798,163381249],"desttype":[81133569,116195334,163381249],"destinationcontext":[81723393,125370374,164102145],"disposition":[81723393,125435910,164102145],"destuniqueid":[82706433,82771969,82837505,128253957,165085185,165150721,165216257],"distination":[82706433,82771969,82837505,128253953,165085185,165150721,165216257],"dialstatus":[82706433,82771969,82837505,128319494,165085185,165150721,165216257],"dialstring":[82706433,82771969,82837505,128385030,165085185,165150721,165216257],"direction":[83034113,128909318,165412865],"disabling":[83820546,131923969,131989505,166199298],"dchannel":[85590017,136577030,167968769],"dynamically":[86048769,138412033,168427521],"deliver":[86507521,140443649,168886273],"delays":[86507521,140443649,168886273],"domain":[86638594,140640262,169017346],"dnsmgr":[86704130,140902401,140967937,169082882],"dlsr":[86900737,86966273,141361158,142213126,169279489,169345025],"defaulteventtimeout":[88080385,146604037,171048961],"defaultresponsetimeout":[88080385,146669573,171048961],"digestdata":[89128961,150732805,174850049],"delimiter":[105775108,111280132],"datetime":[132186119,149815303,150339591,150601735],"double":[132448262,140312582,142344198,142934022,143261702,143458310],"depreciated":[154730500]} \ No newline at end of file +{"default":[1,6422531,6488066,6815745,7536641,7602177,8060929,9043969,9109505,9961473,10747906,27131905,31326209,31588353,35192833,35258369,35323905,35389441,36372481,36831233,37486593,37683201,40304641,40370177,41353217,46989313,47054849,49545217,49676289,65339393,69271557,69402626,69533698,69664769,70385665,70451201,71303172,71565313,71696385,71827457,71892993,72417282,72613889,74055682,76873729,77856771,80674817,82903041,82968577,83296257,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915394,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585420,93716481,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,96796673,96862209,96927745,100728833,103415810,109772801,109903873,111214593,137625601,138674177,152174593,152240129,152305665,152371201,152502273,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153812993,155320321,156565507,156631041,157024257,157155329,157220866,157286401,157351941,157614084,158007297,158138369,158400513,158466049,159449090,159842305,160104449,160169985,160301057,160759809,161742850,162988033,163053569,163381249,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359682,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702018,175767553,175833089,175898625,176619535,176816129,177405953,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"documentation":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752514,2818049,2883585,2949121,3014657,3080194,3145729,3211266,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832706,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405570,7471106,7536641,7602177,7667714,7733250,7798786,7864322,7929858,7995394,8060929,8126466,8192002,8257538,8323074,8388610,8454146,8519681,8585217,8650754,8716289,8781826,8847362,8912898,8978434,9043969,9109505,9175042,9240577,9306113,9371649,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961473,10027010,10092546,10158082,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442628,28508165,28573700,28639234,28704771,28770305,28835841,28901377,28966913,29032451,29097987,29163523,29229058,29294593,29360129,29425665,29491201,29556737,29622275,29687809,29753346,29818884,29884419,29949956,30015491,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670850,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260674,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768004,32833538,32899074,32964610,33030146,33095682,33161218,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685507,33751042,33816578,33882114,33947649,34013186,34078725,34144257,34209794,34275329,34340870,34406403,34471940,34537475,34603009,34668547,34734081,34799619,34865153,34930689,34996227,35061761,35127297,35192833,35258369,35323905,35389441,35454979,35520513,35586049,35651587,35717121,35782657,35848195,35913729,35979267,36044801,36110339,36175873,36241409,36306947,36372481,36438017,36503553,36569091,36634625,36700161,36765699,36831233,36896769,36962307,37027841,37093379,37158913,37224449,37289987,37355521,37421059,37486593,37552129,37617667,37683201,37748738,37814275,37879809,37945345,38010883,38076417,38141953,38207491,38273026,38338561,38404097,38469633,38535171,38600705,38666241,38731779,38797313,38862849,38928387,38993921,39059457,39124995,39190529,39256065,39321603,39387137,39452675,39518209,39583747,39649281,39714819,39780353,39845891,39911425,39976963,40042497,40108035,40173569,40239107,40304641,40370177,40435715,40501249,40566785,40632323,40697858,40763395,40828929,40894465,40960001,41025539,41091074,41156611,41222145,41287683,41353217,41418753,41484292,41549826,41615361,41680897,41746436,41811970,41877505,41943042,42008578,42074116,42139650,42205185,42270722,42336260,42401796,42467329,42532868,42598402,42663937,42729474,42795011,42860546,42926084,42991617,43057153,43122689,43188225,43253761,43319299,43384835,43450372,43515908,43581443,43646979,43712516,43778052,43843587,43909123,43974660,44040196,44105729,44171268,44236801,44302337,44367875,44433411,44498948,44564484,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219843,45285377,45350915,45416449,45481999,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268419,46333955,46399490,46465027,46530561,46596097,46661634,46727169,46792707,46858241,46923779,46989313,47054850,47120385,47185922,47251457,47316994,47382529,47448067,47513601,47579137,47644673,47710209,47775746,47841281,47906817,47972353,48037889,48103427,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627715,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741826,49807361,49872898,49938433,50003971,50069505,50135041,50200577,50266113,50331649,50397187,50462723,50528258,50593795,50659330,50724865,50790404,50855937,50921475,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511302,51576833,51642369,51707905,51773441,51838977,51904513,51970052,52035585,52101125,52166657,52232193,52297729,52363266,52428801,52494338,52559875,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280771,53346305,53411843,53477377,53542914,53608451,53673985,53739521,53805058,53870595,53936130,54001667,54067204,54132741,54198278,54263809,54329345,54394883,54460420,54525956,54591489,54657027,54722561,54788098,54853633,54919170,54984705,55050242,55115779,55181313,55246849,55312385,55377921,55443457,55508994,55574531,55640066,55705603,55771138,55836674,55902210,55967745,56033282,56098818,56164354,56229889,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475074,57540610,57606145,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179010,59244546,59310081,59375618,59441154,59506690,59572226,59637762,59703298,59768834,59834370,59899906,59965442,60030978,60096513,60162049,60227585,60293121,60358657,60424194,60489730,60555266,60620802,60686338,60751874,60817410,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472770,61538306,61603842,61669378,61734914,61800450,61865986,61931522,61997058,62062594,62128130,62193666,62259202,62324738,62390274,62455809,62521346,62586881,62652417,62717953,62783489,62849025,62914561,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504386,63569922,63635458,63700994,63766530,63832066,63897602,63963138,64028674,64094210,64159746,64225285,64290818,64356354,64421890,64487426,64552962,64618497,64684036,64749573,64815107,64880643,64946179,65011713,65077249,65142785,65208321,65273858,65339395,65404933,65470467,65536004,65601540,65667073,65732609,65798146,65863681,65929217,65994754,66060291,66125826,66191363,66256898,66322433,66387970,66453507,66519043,66584580,66650113,66715649,66781186,66846723,66912259,66977793,67043329,67108865,67174403,67239937,67305473,67371009,67436545,67502082,67567617,67633154,67698689,67764225,67829763,67895297,67960834,68026370,68091907,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009410,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599234,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896130,94961666,95027201,95092737,95158273,95223810,95289346,95354882,95420418,95485954,95551490,95617025,95682561,95748098,95813633,95879169,95944705,96010242,96075778,96141313,96206850,96272386,96337922,96403458,96468993,96534529,96600065,96665601,96731138,96796673,96862209,96927745,96993282,97058818,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711874,101777410,101842945,101908481,101974017,102039554,102105090,102170626,102236161,102301698,102367234,102432770,102498306,102563842,102629378,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792065,104857601,104923137,104988673,105054210,105119746,105185282,105250818,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675649,107741185,107806722,107872257,107937793,108003330,108068865,108134401,108199938,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034946,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197634,112263170,112328706,112394242,112459778,112525314,112590849,112656385,112721921,112787457,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442817,113508353,113573889,113639426,113704962,113770498,113836034,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015682,115081218,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243906,117309442,117374977,117440513,117506049,117571586,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882306,118947841,119013378,119078914,119144449,119209986,119275522,119341058,119406593,119472129,119537666,119603202,119668738,119734274,119799810,119865346,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389634,120455169,120520706,120586241,120651777,120717313,120782849,120848385,120913921,120979458,121044994,121110530,121176066,121241602,121307137,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530753,131596290,131661826,131727361,131792898,131858433,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169153,133234689,133300225,133365761,133431297,133496834,133562369,133627905,133693441,133758977,133824513,133890050,133955586,134021121,134086657,134152194,134217729,134283265,134348802,134414338,134479874,134545410,134610945,134676481,134742017,134807553,134873090,134938626,135004162,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674177,138739713,138805249,138870785,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395073,139460609,139526145,139591681,139657217,139722753,139788290,139853825,139919361,139984897,140050433,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574721,140640257,140705793,140771329,140836865,140902401,140967938,141033473,141099009,141164546,141230081,141295618,141361154,141426690,141492226,141557761,141623298,141688834,141754369,141819905,141885441,141950977,142016513,142082049,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815297,149880834,149946369,150011906,150077441,150142977,150208513,150274049,150339586,150405122,150470657,150536194,150601729,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126017,151191553,151257089,151322626,151388162,151453698,151519234,151584770,151650305,151715841,151781377,151846913,151912449,151977986,152043522,152109058,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223170,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878530,153944066,154009602,154075137,154140674,154206210,154271746,154337282,154402818,154468353,154533889,154599426,154664962,154730498,154796034,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303361,156368897,156434433,156499969,156565506,156631041,156696577,156762113,156827649,156893185,156958722,157024257,157089794,157155329,157220865,157286401,157351938,157417474,157483010,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907842,159973377,160038913,160104449,160169985,160235522,160301057,160366593,160432130,160497665,160563202,160628737,160694273,160759809,160825345,160890881,160956418,161021954,161087490,161153025,161218561,161284097,161349634,161415169,161480705,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643394,163708929,163774466,163840001,163905538,163971074,164036609,164102146,164167682,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757506,164823041,164888577,164954113,165019649,165085185,165150721,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199297,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510017,167575553,167641090,167706625,167772162,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345025,169410562,169476098,169541634,169607170,169672705,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983426,171048961,171114498,171180033,171245569,171311105,171376641,171442178,171507714,171573249,171638785,171704321,171769857,171835393,171900930,171966465,172032001,172097538,172163073,172228609,172294146,172359681,172425218,172490754,172556290,172621826,172687362,172752897,172818433,172883969,172949505,173015042,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539330,173604866,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850050,174915586,174981122,175046658,175112194,175177729,175243265,175308801,175374338,175439873,175505409,175570945,175636481,175702017,175767554,175833089,175898625,175964162,176029698,176095234,176160770,176226306,176291841,176357378,176422914,176488450,176553986,176619521,176685058,176750593,176816129,176881666,176947202,177012738,177078274,177143810,177209346,177274882,177340418,177405954,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,177995778,178061314,178126850,178192386,178257922,178323458,178388994,178454530,178520066,178585602,178651138,178716674,178782210,178847746,178913281,178978817,179044353,179109889,179175425,179240962,179306497,179372033,179437569,179503105,179568641,179634178,179699714,179765250,179830785,179896322,179961858,180027394,180092930,180158466,180224002,180289538,180355074,180420609,180486145,180551681],"describe":[131073],"description":[131073,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,69206018,69271555,69337089,69402625,69468161,69533700,69599233,69664770,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393410,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801282,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374146,90439681,90505218,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,101646338,117178369,156565505,156631043,156696578,156762116,156827652,156893188,156958722,157024259,157089793,157155331,157220867,157286402,157351940,157417474,157483010,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334978,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859267,158924803,158990339,159055875,159121411,159186947,159252483,159318019,159383554,159449091,159514627,159580163,159645699,159711235,159776771,159842307,159907841,159973381,160038916,160104450,160169987,160235523,160301059,160366594,160432131,160497666,160563201,160628739,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284100,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840003,163905539,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429828,164495363,164560899,164626435,164691971,164757508,164823043,164888579,164954115,165019651,165085187,165150723,166068225,166199300,167510020,167575555,167641091,167706628,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410561,169476097,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245572,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818436,172883971,172949508,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587907,174653443,174718980,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833091,175898627,176291842,176619525,176750596,176816130,177405955,178913283,178978819,179044355,179109892,179175428,179240964,179306500,179372036,179437572,179503108,179568644,179634179,179830788,180420611,180486147,180551682],"date":[262145],"data":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,3604481,28246018,36438017,36503553,46006274,50200578,50266114,50331650,68419586,69337089,69599234,69664771,73662465,75104259,77463553,77529089,77594625,78381057,80150529,80216065,81133569,83230721,83296259,85131265,85196801,93650945,93716481,94568449,94633985,98369537,105578497,110362625,110690305,111017990,153616389,156303361,156762114,156827650,156893186,158007298,159973378,160038914,161218562,161480705,163315716,163381252,166199298,167510018,171704321,171835393,175702017,176619521,176750594,177405953,179830786,180420611],"dumps":[786433,1310721,69664769,168361985,176619521],"detail":[786433,2293761,52953089,53018625,69599234,69664769,75825154,83296257,93716481,110559233,153288705,163381250,164364291,169672705,176619521,177405953],"detects":[786433,2621441,176619521],"disconnect":[786433,2686977,93585409,152633345,176619522],"dbgetresponse":[786433,2752518,176619521],"dial":[786437,2818055,2883585,2949121,30801921,30867457,69664774,77725699,83296257,84738049,95682561,95879169,96141313,110886913,115802113,157155331,163381249,164823041,170655746,170721282,170786818,176619525],"dialbegin":[786433,2883589,176619521],"dialend":[786433,2949125,176619521],"dndstate":[786433,3014661,176619521],"dndstateevent":[786433,3014658,22020099,59113479,62062593,62128129,69664770,88473603,134217730,134283266,167378949,170917898,171835393,173539329,173604865,176619521],"driver":[786435,3014657,3342337,5963777,69664771,170917889,171376641,175439873,176619523],"dnd":[786433,3014657,69664769,84803585,84869121,88473602,115998721,116129793,134217729,134283265,164888577,164954113,170917891,176619521],"disturb":[786433,3014657,54788097,54919169,69599234,69664769,76283905,76349441,88473602,134217729,134283265,164888578,164954114,170917891,176619521],"dtmf":[786433,3080198,10747917,30998530,31064066,31129602,31326209,31391745,31719426,31784963,31916035,32047105,32112641,32178177,32309251,32440323,32571395,32702467,33423362,33554435,37945345,41418753,69337098,70254595,70516740,70582273,70713345,70778881,70844417,70909953,80084993,93454338,101515265,151912450,157220877,158007297,158531586,158597121,158662657,158728193,158793729,158859265,158924801,159842306,175898626,176619521],"detection":[786433,3866625,176619521],"details":[786433,4653057,18219009,53542913,54263809,55443457,60227585,68222977,69206017,69599235,69664770,69730306,75956225,76087297,160497665,164495361,164560899,164757505,171180033,173408257,176619521,179175425,179306497],"discontinued":[786433,6029313,69664770,169345025,175570945,176619521],"dialplan":[786433,6160385,69599234,69664769,78577665,88735745,91553793,98762753,135135233,143982593,158203905,160628737,160694273,171180033,173998081,175702017,176619521],"dll":[983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"dbgetresponseeventhandler":[2752519,69533697,167116806],"dbgetresponseevent":[2752513,21692419,58785799,69599233,69664770,88145923,133300226,133365762,133431298,162398210,167116805,170590218,174784513],"dialeventhandler":[2818055,69533697,167313414],"dialevent":[2818049,21889027,58982407,59179009,69664769,88211466,88277002,88342531,133562370,133627906,133693442,133758978,133824514,133890051,133955587,134021122,134086658,134152195,167313413,170655759,170721295,170786825,170983425,171835393],"dialbegineventhandler":[2883591,69533697,167182342],"dialbeginevent":[2883585,21757955,58851335,69664769,88211459,167182341,170655753,170786817],"dialendeventhandler":[2949127,69533697,167247878],"dialendevent":[2949121,21823491,58916871,69664769,88276995,133496835,167247877,170721289,170786817],"dndstateeventhandler":[3014663,69533697,167378950],"dtmfeventhandler":[3080199,69533697,167444486],"dtmfevent":[3080193,22085635,59179014,69664769,88539139,134348803,134414339,134479875,134545411,167444485,170983433,171835393],"default_hostname":[6422529,8519685,156565505],"default_port":[6422529,8585221,156565505],"dead":[6488065,9043969,157089793,157351937],"dictionary":[10158085,16842755,18808835,18874371,19398659,19464195,19529731,19595267,20578305,22282243,27328515,29884421,50528263,50593793,50659336,55640071,55705601,55771144,57606158,60162062,66125830,66191361,66256903,67174405,67502087,67764238,67960839,77135873,77201409,84672513,115474439,137625608,154861574,155320327,163381251,164757505,167575555,167641091,168165379,168230915,168296451,168361987,169345025,171180035,177405955,179503105,179568641],"determines":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"derived":[10354690,10420226,10485762,13500418,13565954,18677762,18743298,27197442,28180482,69664769,156762114,156827650,156893186,159973378,160038914,166199298,167510018,171835393,176750594,179830786],"directly":[10616833,29360129,69599233,69664771,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,137756673,157024257,163381249,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345026,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459138,170524673,170590209,170655745,170721281,170786817,170852354,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"different":[10616834,29491201,29556737,157024258],"digits":[10747925,11141122,30212097,30277634,30343170,30408706,30932993,30998530,31064066,31129604,31326211,31391748,31719426,31784963,31916033,32047106,32112642,32178178,32243717,32309254,32440321,32571393,32702465,33423361,35061761,35127297,35258369,35323905,35389441,36503553,36831233,36896770,37879809,37945346,38141953,38338562,38404098,38469634,38600710,38666247,39059457,39256065,40894465,40960001,69337102,70057988,70254599,70385668,70516738,70647811,71237634,72089603,77987841,78381058,78512130,78839809,78905345,78970881,79036419,79167489,79233025,79888385,97124353,98304002,98566145,98697217,99090433,99418113,99614721,99811334,99876865,100073473,100204545,101056513,157220885,157548545,157614084,158007301,158138372,158531586,158597122,158662661,158728196,158859266,158924802,159645698],"digit":[10747919,30212098,30277634,30343170,30408709,31326210,31391746,31719425,31784961,31916033,32047105,32112641,32178177,32243714,32309250,32440321,32571393,32702465,33423362,33554435,35061762,35127299,35192833,35258369,35323905,35389444,41418753,69337112,70057992,70385666,70516738,70713345,71041025,71303172,77987843,80084993,88539137,97255425,97386497,97452033,101515265,134414342,157220879,157614089,158138371,158531585,158597122,158662658,158728195,158793730,158859266,158924802,159645698,159842308,170983425],"disconnected":[10747908,30212097,30277633,30343169,30408705,69337091,70057988,157220868,157614081,158138369,159645697],"databasedel":[10747905,30474245,157220865],"deletes":[10747907,30474241,30539777,30605313,47906817,48037889,69337090,70123522,74383361,74448897,157220867,157679617,157745153,162267137,162332673],"database":[10747909,30474241,30539777,30605313,30670849,30736385,47906817,48037889,48234497,48365569,69337092,69599234,70123522,74383361,74448897,74514433,74579969,88145923,133300225,133365761,133431297,157220869,157679617,157745153,157810689,157876225,162267137,162332673,162398210,162463746,170590211],"databasedeltree":[10747906,30539782,30605318,70123523,157220866],"databaseget":[10747905,30670854,157220865],"databaseput":[10747905,30736389,157220865],"dialed":[10747905,30932993,69337089,157220865,157548545],"despite":[10747906,31719425,31784962,37945345,69337089,70516738,157220866,158531585],"disables":[10747905,32833537,39649281,54788097,76283905,157220865,164888577],"doe":[10747905,32899073,157220865],"databasedelcommand":[11206659,35454980,35520519,35586055,35717121,35782657,69337089,71368710,71434242,78053379,97517570,97583106,157417473,157679627,157745154],"databasedeltreecommand":[11272195,35651588,35717126,35782662,69337089,71434244,78118915,97648642,97714178,157417473,157745161],"databasegetcommand":[11337731,35848196,35913734,69337089,78184451,97779714,97845250,157417473,157810697],"databaseputcommand":[11403267,35979268,36044806,69337089,78249987,97910786,97976322,98041858,157417473,157876233],"determinescript":[13434881,13631489,13697025,13828097,41484296,41746442,42074122,42532874,159907841,160104449,160169985,160301057],"debug":[14024708,43319304,43384840,43450377,43515913,72876037,160497668,160563201],"dbdelaction":[15728643,47841287,47906823,69599233,74383366,82182147,107610115,107675650,107741186,162267148,163119105],"dbdeltreeaction":[15794179,47972359,48037895,69599233,74448902,82247683,107806723,107872258,107937794,162332684,163119105],"dbgetaction":[15859715,48103428,48168967,48234503,69599233,69664769,74514438,82313219,108003331,108068866,108134402,162398219,163184641,170590210],"dbputaction":[15925251,48300039,48365575,69599233,74579974,82378755,108199939,108265474,108331010,108396546,162463755,163119105],"disconnectevent":[21954563,59047943,69664770,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408068,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,137756673,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524674,170590209,170655745,170721281,170786817,170852363,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"determineversion":[27131905,64880647,176619521],"delayed":[27131906,65077249,65142785,76808194,176619522],"disconnects":[27131905,65208321,176619521],"dependent":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"duration":[28114946,68026370,87228417,89587713,131072006,138412038,169672705,172032001,179634178],"digest":[28246017,45875202,49283074,49348610,68419585,68485121,69795841,73596929,81068033,82771970,94633985,105381889,109314050,156303361,161153026,162856962,180420612],"determine":[28704769],"decribing":[28835841,28901377],"delete":[30474242,30539777,30605314,35520514,35586051,35717121,35782658,54263809,69599233,71368706,78053378,78118914,82182146,82247682,97517569,97583105,97648641,97714177,107675649,107741185,107872257,107937793,157679620,157745154,162267138,162332674,164757505],"defined":[31391745,36896769,69599234,77463553,77529089,77594625,78512129,80150529,80216065,80609282,85131265,85196801,91553793,92012545,93454337,93650945,94568449,98697217,102891521,103219201,143982593,145817601,151846913,156762113,156827649,156893185,158138369,159973377,160038913,160694274,164233217,164495361,166199297,167510017,173998081,174456833,175898625,176750593,179830785],"defaults":[34340865,80609282,83230722,102891521,103219201,110362625,110428161,160694274,163315714],"defaultarg":[34340869],"directory":[46989313,47054849,47710210,47775746,74055682,74317828,161742850,162201604],"distributed":[51380225,83623937,85655553,91488257,91553793,91619329,91684865,91815937,91881473,91947009,112066561,118489089,143589377,144179201,145227777,163708929,167968769,173932545,173998081,174063617,174129153,174260225,174325761,174391297],"destination":[52756483,52822019,69599233,84213763,84672513,87228417,88211458,88276994,88342530,114229249,114294785,114425857,115539969,130809862,133758982,160694273,164298755,164757505,169672705,170655746,170721282,170786818],"delcat":[54263809,69599233,164757505],"dstfilename":[54394886,54460422,54525958,69599233,84672513,115539973,164757506],"dials":[54657025,69599233,76218369,164823042],"describing":[55312385,55377921,65863681,65929217],"delegate":[68878337,68943873,69533697,165216261,165281797,165347333,165412869,165478405,165543941,165609477,165675013,165740549,165806085,165871621,165937157,166002693,166133765,166264837,166330373,166395909,166461445,166526981,166592517,166658053,166723589,166789125,166854661,166920197,166985733,167051269,167116805,167182341,167247877,167313413,167378949,167444485,175964165,176029701,176095237,176160773,176226309,176357381,176422917,176488453,176553989,176685061,176881669,176947205,177012741,177078277,177143813,177209349,177274885,177340421,177471493,177537029,177602565,177668101,177733637,177799173,177864709,177930245,177995781,178061317,178126853,178192389,178257925,178323461,178388997,178454533,178520069,178585605,178651141,178716677,178782213,178847749,179699717,179765253,179896325,179961861,180027397,180092933,180158469,180224005,180289541,180355077],"denoting":[69271553,156893185],"decimal":[69337089,158400513],"disabled":[69337089,88473602,89325569,134217729,134283265,137428993,159121409,170917890,171769857],"disable":[69337089,93585409,152633345,159711233,176619521],"desire":[69337089,159842305],"delegates":[69533697],"denote":[69599233,164233217],"dump":[69599234,164233217,164757505],"depending":[69599233,164364289],"describes":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"depends":[77660161,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94830593,155451393,155582465,157024257,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"dnid":[77725697,95748102,157155329],"disconnecting":[80609281,103219201,160694273],"def":[83296258,85262337,85327873,85852161,85917697,85983233,86048769,88735745,111280130,116785153,163381250,167575553,167641089,168165377,168230913,168296449,168361985,171180033],"desired":[84672513,115474433,164757505],"datereceived":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137756677,155385861,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"dialing":[85393409,88801281,90374145,90505217,117374977,167706625,171245569,172818433,172949505],"dynamic":[85655554,90898433,91488259,91553794,91619330,91684866,91750402,91815938,91881474,91947011,118292482,141164550,143458307,143982594,145096707,167968770,173342721,173932547,173998082,174063618,174129154,174194690,174260226,174325762,174391299],"device":[85655554,89980929,91488257,91619330,91684866,91750402,91815938,91881474,91947009,118685697,118751233,138936326,145293313,167968770,172425217,173932545,174063618,174129154,174194690,174260226,174325762,174391297],"destinationchannel":[85852161,87228417,119668742,130875398,168165377,169672705],"destbridgeuniqueid":[86638593,121634822,168951809],"desttype":[86638593,121700358,168951809],"destinationcontext":[87228417,130940934,169672705],"disposition":[87228417,131006470,169672705],"destuniqueid":[88211457,88276993,88342529,133824517,170655745,170721281,170786817],"distination":[88211457,88276993,88342529,133824513,170655745,170721281,170786817],"dialstatus":[88211457,88276993,88342529,133890054,170655745,170721281,170786817],"dialstring":[88211457,88276993,88342529,133955590,170655745,170721281,170786817],"direction":[88539137,134479878,170983425],"disabling":[89325570,137494529,137560065,171769858],"dchannel":[91095041,142147590,173539329],"dynamically":[91553793,143982593,173998081],"deliver":[92012545,146014209,174456833],"delays":[92012545,146014209,174456833],"domain":[92143618,146210822,174587906],"dnsmgr":[92209154,146472961,146538497,174653442],"dlsr":[92405761,92471297,146931718,147783686,174850049,174915585],"defaulteventtimeout":[93585409,152174597,176619521],"defaultresponsetimeout":[93585409,152240133,176619521],"digestdata":[94633985,156303365,180420609],"delimiter":[111280132,116785156],"datetime":[137756679,155385863,155910151,156172295],"double":[138018822,145883142,147914758,148504582,148832262,149028870],"depreciated":[160301060]} \ No newline at end of file diff --git a/docs/fti/FTI_101.json b/docs/fti/FTI_101.json index cae61ae..2728340 100644 --- a/docs/fti/FTI_101.json +++ b/docs/fti/FTI_101.json @@ -1 +1 @@ -{"events":[327682,393218,458754,524290,589826,655362,720898,786434,851970,1310723,4456451,11141121,40894465,42991619,43843592,44236801,64028677,64094213,64159760,76939268,77266948,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080386,88342530,102957057,103022595,103874568,132186113,146735106,148504577,148570118,151191553,151257089,151322625,154402817,154468353,155844610,155910145,156958725,157286404,157614082,157810689,160628737,161480705,161939458,162004994,162070529,162136065,162201601,162267138,162332674,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774467,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954114,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133762,166199297,166264836,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131460,170196993,170262529,170328065,170917889,171048965,171180033,173342721,173408259,174260225],"exposes":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"exception":[327684,393220,458756,524292,589828,655364,720900,786436,851972,983042,3538945,3604481,4849671,4915207,4980743,7995399,8060935,8519684,13172743,13238279,21692423,22675463,23396359,23527431,37945353,38207497,38469641,38993929,49872903,60358657,60424201,64028673,64421889,67371009,67436545,67502081,67633153,70975489,71565313,71958543,72024079,72089615,74645519,74711055,79626255,79691791,88145935,89063439,151191584,151257115,151322651,151781378,154402843,154468379,154927108,160628768,161939484,171180064,174260255],"eventtimeoutexception":[720899,13238275,49938438,64028674,79691779,111017986,161939466,174260225],"event":[1245185,4325379,4390915,11141121,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,40894465,42991618,43843585,44236802,46006278,50003971,50069508,50135043,50200580,50266115,50331651,50397187,50462722,50528259,50593795,50659331,50724867,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101122,52166659,52232195,52297731,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805058,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591490,54657026,54722563,54788098,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720262,58785795,58851331,58916867,58982403,59768833,60948483,61145089,64028679,64094211,64159772,69140481,71041025,71106561,71172097,76939265,77266945,78184449,79757319,79822855,79888391,79953927,80019463,80084999,80150535,80216071,80281607,80347143,80412679,80478215,80543751,80609287,80674823,80740361,80805897,80871431,80936967,81002503,81068039,81133575,81199111,81264647,81330183,81395719,81461255,81526791,81592327,81657863,81723399,81788935,81854471,81920007,81985543,82051079,82116617,82182151,82247689,82313223,82378759,82444295,82509831,82575367,82640905,82706439,82771975,82837511,82903047,82968583,83034119,83099655,83165191,83230727,83296263,83361799,83427335,83492871,83558407,83623943,83689479,83755015,83820551,83886087,83951623,84017159,84082695,84148231,84213767,84279303,84344839,84410375,84475911,84541447,84606983,84672519,84738055,84803591,84869127,84934663,85000199,85065737,85131273,85196807,85262345,85327879,85393417,85458953,85524487,85590023,85655559,85721095,85786631,85852169,85917703,85983239,86048777,86114311,86179847,86245383,86310919,86376455,86441991,86507529,86573065,86638599,86704136,86769671,86835209,86900743,86966279,87031815,87097351,87162887,87228423,87293961,87359497,87425031,87490567,87556103,87621639,87687175,87752711,87818247,87883785,87949321,88080386,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,103022593,103874561,106758150,111083522,111149058,111214594,111280130,111345666,111411202,111476739,111542274,111607810,111673346,111738883,111804419,111869955,111935491,112001026,112066563,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377283,113442818,113508355,113573891,113639426,113704963,113770499,113836035,113901570,113967106,114032643,114098179,114163715,114229251,114294787,114360323,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884611,114950146,115015683,115081218,115146754,115212290,115277826,115343362,115408898,115474435,115539971,115605507,115671043,115736579,115802114,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863042,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960194,126025731,126091267,126156802,126222339,126287874,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598594,127664130,127729666,127795202,127860738,127926275,127991810,128057346,128122882,128188418,128253954,128319491,128385027,128450562,128516098,128581635,128647170,128712706,128778243,128843779,128909315,128974851,129040386,129105922,129171458,129236994,129302531,129368067,129433603,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661826,131727362,131792898,131858434,131923970,131989506,132055043,132120578,132186115,132251651,132317186,132382723,132448260,132513794,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103618,133169154,133234690,133300226,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824514,133890051,133955586,134021122,134086658,134152194,134217731,134283266,134348802,134414338,134479874,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004162,135069698,135135234,135200770,135266306,135331842,135397379,135462914,135528450,135593987,135659522,135725059,135790595,135856131,135921667,135987202,136052739,136118275,136183810,136249346,136314882,136380418,136445954,136511490,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543107,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033475,141099010,141164546,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244738,144310275,144375810,144441347,144506882,144572418,144637954,144703490,144769027,144834563,144900098,144965635,145031170,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555458,145620994,145686530,145752067,145817603,145883139,145948675,146014211,146079746,146145282,146210818,146276354,146341891,146604033,147062785,149749761,149946369,155254786,155844610,155910145,156827649,156958722,157286401,157614083,157679617,157810690,157941762,158203905,158662660,158924802,158990338,159055874,159514626,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153026,161218562,161284098,161349634,161415170,161480705,161546241,161611777,161677313,161742849,161808385,161873921,162005007,162070541,162136077,162201620,162267155,162332685,162398227,162463755,162529291,162594828,162660364,162725900,162791436,162856971,162922507,162988045,163053581,163119114,163184650,163250186,163315723,163381259,163446795,163512333,163577868,163643404,163708940,163774478,163840003,163905539,163971084,164036621,164102155,164167691,164233227,164298764,164364300,164429836,164495374,164560908,164626446,164691980,164757516,164823052,164888589,164954126,165019661,165085196,165150732,165216270,165281805,165347338,165412875,165478410,165543947,165609484,165675019,165740554,165806091,165871627,165937163,166002699,166068235,166133771,166199306,166264903,166330380,166395915,166461451,166526988,166592523,166658059,166723596,166789130,166854667,166920203,166985739,167051275,167116811,167182346,167247883,167313418,167378955,167444494,167510029,167575563,167641102,167706635,167772173,167837710,167903243,167968779,168034315,168099851,168165387,168230925,168296462,168361995,168427533,168493067,168558603,168624139,168689675,168755211,168820747,168886285,168951821,169017355,169082892,169148426,169213985,169279499,169345035,169410571,169476107,169541643,169607179,169672718,169738253,169803787,169869323,169934859,170000395,170065931,170131473,170197003,170262542,170328077,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171048963,171114498,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"extensionstateresponse":[1507331,22216707,61603846,64225281,88604675,149028867,149094403,149159939,149225475,173670410,173998081],"equals":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,28639233,28770305,64094209,72351745,85524484,91422721,136249346,136511490,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781378,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903237,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"equal":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"exceptions":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,63766529,151191554,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"example":[5111809,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789569,25296897,25362434,26214401,26279937,26673153,32374785,32440321,32964609,43450369,62062594,63766529,63832067,63897601,64028673,64094209,64159747,72220674,73334785,75104257,75169793,77463553,77791233,79691777,79757314,79822850,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347138,80412674,80478210,80543746,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230722,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,90439681,91095042,93716481,97517569,97845250,104398849,105775105,111017985,111280129,132186113,150142977,151453697,151584770,152240129,152502273,152633345,152961025,154599425,154730497,155123713,155189249,155320321,157483009,157810689,161939457,162004994,162070530,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660354,162725890,162791426,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609474,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000386,170065921,170131459,170196993,170262529,170328065,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174456833],"endpos":[5111810,23789570,151453698],"expected":[5111810,23986177,24051713,25821185,25886721,31326209,31391745,64028674,73007105,93061121,151453698,152567809,161939457,174260225],"error":[5242886,8519684,24707073,24772609,24838145,24903681,26214401,26279937,38076424,38141960,38207497,38273033,41484289,41549825,63832077,64028673,64225282,64552964,65011714,67436549,68550658,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,150011905,151191553,151257089,151322625,151650310,152043521,152567809,152829953,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,154075137,154402817,154468353,154927108,154992641,156172290,160628737,161939457,171180034,173539329,173604865,173670401,173735937,173801473,173867009,173932547,173998081,174260225],"extension":[5242885,24707074,24772610,24838146,24903682,25821185,25886721,26214401,26279937,27525127,29687809,29753345,29818881,29884417,30867457,30932993,30998529,31326209,31391745,32374785,32440321,33882113,34537478,35323905,35389441,35454977,39387138,39452675,40108033,47251458,47316994,63832068,64028674,64094215,64159747,64552964,67764226,70254594,72220674,72876033,74121218,74383361,75104258,75431937,77004802,77791236,78708737,80084993,80347137,81199105,83099652,83230721,84934659,85131265,85196801,85327873,87359489,87687169,88211460,90374150,92733441,95158279,95617025,97583105,97648641,99418113,103153665,103219201,105447425,105578498,105644033,108789761,112328705,114229254,120913926,129040385,129105921,129171457,129236993,129564673,134348801,134414342,135200769,144834566,147980289,148111362,148176897,151584770,151650309,152043521,152436737,152567809,153747459,154075138,155058177,155123716,155451393,157024259,157810696,158728196,162332673,162594817,163446785,165478405,165609473,166264833,167313412,167510017,167575553,167706625,169738241,170065921,170393601,171704321,171835396],"entry":[5242883,24969219,25165827,25231364,42401794,42532865,42729474,42860546,45940737,46006273,63832067,64028673,64094213,64159746,68878337,69009409,69074945,69795842,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677123,76742659,76808194,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640900,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852166,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,102170625,102236161,102367233,102432769,102629377,104660993,127729665,127795201,127860737,132317185,137232385,137297921,137363457,137428993,137494529,150077441,151650307,152174593,152240129,152305665,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696580,156762115,156827654,156893187,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203907,158269441,158334977,158400513,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019653,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230919,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,172621825,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"entries":[5242882,25034753,25100291,64094209,64618498,151650306,158662657],"exec":[5242882,25296902,25362438,64684035,151650306],"executes":[5242882,25296897,25362433,63832065,64684034,151650306,152371201],"enter":[5242886,25493506,25559042,25624579,63832065,64749574,151650310,152436737],"entered":[5242881,25493505,25559041,25624578,64749569,151650305],"esacpe":[5242882,25821185,25886722,31391745,63832065,64880642,73007105,93192193,151650306,152567810],"exceeding":[5242882,26214401,26279937,63832065,65011714,151650306,152961025],"end":[5242882,26214402,26279938,32374785,32440321,44826625,45350913,63832066,64028674,64094209,64159747,64225282,65011714,73334785,77725697,77856769,79101953,83034113,93585409,104988673,105971713,109838337,128974854,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650307,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436738,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961027,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745154,157810689,157876226,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924801,158990337,159055873,159121410,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159842305,160628737,161087489,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660354,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412866,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604867,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"escape":[5242884,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918338,32833537,32899073,32964609,65142787,65536001,66584579,151650308,153092099],"exiting":[5242884,27459585,27525121,27590657,27656193,34406401,34537473,34996225,35061761,63832067,65470466,74055681,74121217,74252290,95092737,95158274,95289345,95354881,151650308,153681922,153747458,153944067],"escapeandquote":[5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,28966920,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745],"execcommand":[5963779,30605316,30670855,30736391,63832065,65994758,72810499,92602370,92667906,151846913,152371211],"encounters":[8454145,37552129,154861569],"eventsaction":[10485763,42926087,42991623,64094210,69140486,76939267,102957058,103022594,156958732,157548545],"extensionstateaction":[10551299,43057158,64094210,77004803,103088130,103153666,103219202,157024266,157548545],"existing":[11337730,13303810,13369346,13893634,13959170,14024706,14090242,16777218,21823490,44957697,45088769,50069505,50200577,60555265,60686337,75169794,97910787,155189250,157810690,162004994,162070530,162594818,162660354,162725890,162791426,165609474,171835394],"extensionstatusevent":[16646147,53739527,64159746,83099651,129040386,129105922,129171458,129236994,165478410,166264833,170393605],"ended":[22609921,62521345,174063617],"exit":[22872065,63569921,174981121],"errors":[23986177,24051713],"environment":[24576006],"escapedigits":[24772613,24838149,24903685,25821189,25886725,26214405,26279941,26411013,26542085,26607621,26673157,26804229,26935301,27066373,27197445,27918341,29753349,29818885,29884421,31326213,31391749,32374789,32440325,32636933,32833541,32899077,32964613,33161221,33357829,33554437,33751045,35389445,35454981,72482817,73007105,73334785,73400321,73531393,73596929,73662465,73728001,74383361,91619333,93061125,93585413,93913093,94371845,94437381,94568453,94699525,95551493,152043521,152567809,152961025,153026561,153157633,153223169,153288705,153354241,154075137],"execute":[25296897,25362433,30670849,30736385,40632321,64028673,64094209,72220673,72810497,91029505,92602369,151584769,152371201,155320321,160301057],"essentially":[25559041,25624577,30932993,30998529,72876033,92864513,152436737],"elapsed":[26476545,26542081,26607617,26673153,32768001,32833537,32899073,32964609,63832065,66584577,73465857,87359489,94175233,145031170,153092098,153354241,169738241],"europe":[26673153,32964609],"encoding":[37421070,37748747,44761089,44826625,60293133,71499777,74973185,77725697,88080385,91488263,96600076,104923137,147521544,154861569,157745153,171048962],"excluding":[37552129],"empty":[39190529,39321601,39518209,39845889,40304641,40435713,42205186,42270722,42336257,42467329,42663937,42795009,42926081,43319297,43515905,43646977,43974657,44105729,44630017,45678593,46071809,46661633,47185921,47382529,47579137,47972353,48234497,49086465,49217537,49348609,49479681,64225282,67698689,67764225,67829761,68091905,68157441,68812804,68878337,68943873,69009409,69074945,69140481,69271553,69337089,69402625,69468161,69533697,69599233,69730305,69861377,70057985,70254593,70320129,70385665,70451201,70516737,70713345,70778881,70844417,70909953,77135873,79167489,83230721,103481345,110100481,129499137,155058177,155123713,155189249,155320321,155582465,155648001,156631044,156696577,156762113,156827649,156893185,156958721,157155330,157220865,157286401,157417473,157483009,157745153,158138369,158269441,158466049,158728193,158793729,158859265,158990337,159121409,159186945,159252481,159318017,159383553,159449089,165609473,173604865,173735937],"exten":[39387141,39452677,40108037,47251461,47316997,64094209,75104257,75431937,77004801,77791235,78708737,80084993,81264641,81461249,81592321,83099649,83230721,85065729,85131265,85196801,85327873,87687169,88211459,88604673,97648645,99418117,103219205,105447425,105578501,105644033,108789765,112328709,123666438,129105925,129564677,134807558,135200773,147980289,148111365,148176897,149094406,155123713,155451393,157024257,157810692,158728193,162332673,163512321,163708929,163971073,165478401,165609473,167444481,167510017,167575553,167706625,170065921,171835395,173670401],"exisiting":[39649281],"eventmask":[42991621,76939265,103022597,156958721],"extrachannel":[47316997,78708737,108855301,158728193],"ends":[48300033,63832065,64094209,64159745,70516737,152436737,159121410,166592513],"extra":[48758785,64094209,72155137,89325573,151453697,159186945],"enables":[49414145,70844417,159383553],"executing":[63373313,63438849],"enumerations":[63700993,63766529,64028673,64159745],"enumeration":[63700993,63766529,64028673,64159745,151519234,154992642,160497666,163840002,163905538],"easier":[63766529,151650305],"extend":[63766529,151650305],"exist":[63832065,152502273],"extensions":[63832065,153419777],"enable":[63832065,64028674,64159746,154140673,159776769,162594817,164102145,171442177],"eventwhencalled":[64028673,64159745,159776769,162594817],"enters":[64028674,64159746,160432129,161808385,163250177,165347329],"extensionstatuseventhandler":[64028673,170393605],"extensionstatus":[64028673,170393601],"exchange":[64028673,64159745,166133761,170917889],"execution":[64028673,64159745,89194497,150798337,163119105,171900929,174915585],"explanatory":[64094209,155058177],"extentsion":[64094209,155123713],"effect":[64094209,155648001],"ellicit":[64094209,158007297],"executed":[64159746,84934658,134152193,134283265,163119105,167313410,169082881],"excution":[64159745,163119105],"established":[64159745,163774465],"enabled":[64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968579,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820547,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,128647169,128712705,131858438,132448257,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347331,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199299,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"extends":[64159745,170131457],"exists":[64225281,173735937],"encapsulates":[64290817,174850049],"enhanced":[72220675,90308615,151584771],"eagi":[72220673,90308609,151584769],"extensionstate":[77004801,103088129,157024257],"exclusive":[77266945,104005633,157286401],"epoch":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132448257,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"evaluates":[80150531,85983234,86114306,86179843,86245379,86310915,86376451,86441986,112459777,112852993,113115137,139198465,139329537,162398211,168361986,168493058,168558595,168624131,168689667,168755203,168820738],"expressed":[80150529,86114305,86179841,86245377,86310913,86376449,112590849,162398209,168493057,168558593,168624129,168689665,168755201],"env":[81068033,115933190,163315713],"endtime":[81723393,88997889,125566982,150339590,164102145,174063617],"elements":[83623937,83689473,85721089,85786625,85917697,137560065,166002689,166068225,168099841,168165377,168296449],"expiration":[85524481,136249345,167903233],"expired":[85524481,136249345,167903233],"ensure":[86507521,140443649,151519233,168886273],"exposed":[86638593,140705793,169017345],"enum":[86704130,140902401,140967937,151519234,154992642,160497666,163840002,163905538,169082882],"eventlist":[87162881,143720454,169541633],"eventargs":[162004993,162070529,162136065,162201602,162267138,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264838,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065]} \ No newline at end of file +{"events":[327682,393218,458754,524290,589826,655362,720898,786436,851970,917506,2686977,3604481,6815747,9961475,16646145,46399489,48496643,49348616,49741825,69533699,69599237,69664784,82444292,82771972,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585410,93847554,108462081,108527619,109379592,137756673,152305666,154075137,154140678,156762113,156827649,156893185,159973377,160038913,161415170,161480705,162529285,162856964,163184642,163381249,166199297,167510018,167575554,167641089,167706625,167772161,167837698,167903234,167968770,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689666,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345027,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524674,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704322,171769857,171835396,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784514,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702020,175767553,175833089,175898625,176619528,176750593,178913281,178978819,179830785],"exposes":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"exception":[327684,393220,458756,524292,589828,655364,720900,851972,917508,6488066,9043969,9109505,10354695,10420231,10485767,13500423,13565959,14024708,18677767,18743303,27197447,28180487,28901383,29032455,43450377,43712521,43974665,44498953,55377927,65863681,65929225,69533697,69926913,72876033,72941569,73007105,73138177,76480513,77070337,77463567,77529103,77594639,80150543,80216079,85131279,85196815,93650959,94568463,156762144,156827675,156893211,157351938,159973403,160038939,160497668,166199328,167510044,176750624,179830815],"eventtimeoutexception":[720899,18743299,55443462,69533698,85196803,116523010,167510026,179830785],"enable":[786434,1114113,3866625,69337089,69664770,159711233,168165377,169672705,176619522],"eventwhencalled":[786433,1114113,69664769,168165377,176619521],"end":[786434,1179649,2293761,10747907,30932993,31719426,31784962,37879809,37945345,50331649,50855937,69337091,69599233,69664771,69730306,70516738,78839809,83230721,83361793,84606977,88539137,99090433,110493697,111476737,115343361,134545414,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220868,157286401,157351937,157417473,157483009,157548546,157614081,157679617,157745153,157810689,157876225,157941761,158007298,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531587,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315714,163381249,163446786,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495361,164560897,164626433,164691970,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230914,168296449,168361985,168427521,168493057,168558593,168624129,168689666,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983426,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619523,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175427,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"execute":[786433,1638401,30801921,30867457,36175873,36241409,46137345,69599233,77725697,78315521,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,96534529,98107393,110100481,157155329,157941761,160628737,160694273,160759809,160825345,160890882,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,176619521],"enters":[786434,1703937,3014657,69664770,168820737,170917889,176619522],"event":[786438,983044,1048580,1114116,1179652,1245188,1310724,1376260,1441796,1507332,1572868,1638404,1703940,1769476,1835012,1900548,1966084,2031620,2097156,2162692,2228228,2293764,2359301,2424837,2490373,2555909,2621445,2686980,2752516,2818052,2883588,2949124,3014660,3080196,3145732,3211268,3276804,3342340,3407876,3473412,3538948,3604484,3670020,3735556,3801092,3866628,3932164,3997700,4063236,4128772,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653060,4718596,4784132,4849668,4915204,4980740,5046276,5111812,5177348,5242884,5308420,5373956,5439492,5505028,5570564,5636100,5701636,5767172,5832708,5898245,5963780,6029316,6094852,6160388,6225924,6291460,6356996,6750209,9830403,9895939,16646145,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,46399489,48496642,49348609,49741826,51511302,55508995,55574532,55640067,55705604,55771139,55836675,55902211,55967746,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606146,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59047939,59113475,59179011,59244547,59310082,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60096514,60162050,60227587,60293122,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963139,64028675,64094211,64159747,64225286,64290819,64356355,64421891,64487427,65273857,66453507,66650113,69533697,69599235,69664796,74645505,76546049,76611585,76677121,82444289,82771969,83689473,85262343,85327879,85393415,85458951,85524487,85590023,85655559,85721095,85786631,85852167,85917703,85983239,86048775,86114311,86179847,86245385,86310921,86376455,86441991,86507527,86573063,86638599,86704135,86769671,86835207,86900743,86966279,87031815,87097351,87162887,87228423,87293959,87359495,87425031,87490567,87556103,87621641,87687175,87752713,87818247,87883783,87949319,88014855,88080391,88145929,88211463,88276999,88342535,88408071,88473607,88539143,88604679,88670215,88735751,88801287,88866823,88932359,88997895,89063431,89128967,89194503,89260039,89325575,89391111,89456647,89522183,89587719,89653255,89718791,89784327,89849863,89915399,89980935,90046471,90112007,90177543,90243079,90308615,90374151,90439687,90505223,90570761,90636297,90701831,90767369,90832903,90898441,90963977,91029511,91095047,91160583,91226119,91291655,91357193,91422727,91488263,91553801,91619335,91684871,91750407,91815943,91881479,91947015,92012553,92078089,92143623,92209160,92274695,92340233,92405767,92471303,92536839,92602375,92667911,92733447,92798985,92864521,92930055,92995591,93061127,93126663,93192199,93257735,93323271,93388809,93454345,93585410,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,108527617,109379585,112263174,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243907,117309443,117374978,117440514,117506050,117571587,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882307,118947842,119013379,119078915,119144450,119209987,119275523,119341059,119406594,119472130,119537667,119603203,119668739,119734275,119799811,119865347,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389635,120455170,120520707,120586242,120651778,120717314,120782850,120848386,120913922,120979459,121044995,121110531,121176067,121241603,121307138,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530754,131596291,131661827,131727362,131792899,131858434,131923971,131989507,132055043,132120579,132186115,132251651,132317187,132382723,132448259,132513795,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103619,133169154,133234690,133300226,133365762,133431298,133496835,133562370,133627906,133693442,133758978,133824514,133890051,133955587,134021122,134086658,134152195,134217730,134283266,134348803,134414339,134479875,134545411,134610946,134676482,134742018,134807554,134873091,134938627,135004163,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987203,136052739,136118275,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232386,137297922,137363458,137428994,137494530,137560066,137625603,137691138,137756675,137822211,137887746,137953283,138018820,138084354,138149891,138215427,138280963,138346499,138412035,138477571,138543107,138608643,138674178,138739714,138805250,138870786,138936323,139001859,139067395,139132931,139198467,139264003,139329539,139395074,139460610,139526146,139591682,139657218,139722754,139788291,139853826,139919362,139984898,140050434,140115971,140181507,140247043,140312579,140378115,140443651,140509187,140574722,140640258,140705794,140771330,140836866,140902402,140967939,141033474,141099010,141164547,141230082,141295619,141361155,141426691,141492227,141557762,141623299,141688835,141754370,141819906,141885442,141950978,142016514,142082050,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604035,146669570,146735106,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,148504579,148570115,148635651,148701187,148766723,148832259,148897795,148963331,149028867,149094403,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618691,149684227,149749763,149815298,149880835,149946370,150011907,150077442,150142978,150208514,150274050,150339587,150405123,150470658,150536195,150601730,150667267,150732803,150798339,150863875,150929411,150994947,151060483,151126018,151191554,151257090,151322627,151388163,151453699,151519235,151584771,151650306,151715842,151781378,151846914,151912450,152174593,152633345,155320321,155516929,160825346,161415170,161480705,162398209,162529282,162856961,163184643,163250177,163381250,163512322,163774465,164233220,164495362,164560898,164626434,165085186,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166133761,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167575567,167641101,167706637,167772180,167837715,167903245,167968787,168034315,168099851,168165388,168230924,168296460,168361996,168427531,168493067,168558605,168624141,168689674,168755210,168820746,168886283,168951819,169017355,169082893,169148428,169213964,169279500,169345038,169410563,169476099,169541644,169607181,169672715,169738251,169803787,169869324,169934860,170000396,170065934,170131468,170197006,170262540,170328076,170393612,170459149,170524686,170590221,170655756,170721292,170786830,170852365,170917898,170983435,171048970,171114507,171180044,171245579,171311114,171376651,171442187,171507723,171573259,171638795,171704331,171769866,171835463,171900940,171966475,172032011,172097548,172163083,172228619,172294156,172359690,172425227,172490763,172556299,172621835,172687371,172752906,172818443,172883978,172949515,173015054,173080589,173146123,173211662,173277195,173342733,173408270,173473803,173539339,173604875,173670411,173735947,173801485,173867022,173932555,173998093,174063627,174129163,174194699,174260235,174325771,174391307,174456845,174522381,174587915,174653452,174718986,174784545,174850059,174915595,174981131,175046667,175112203,175177739,175243278,175308813,175374347,175439883,175505419,175570955,175636491,175702033,175767563,175833102,175898637,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176619529,176685057,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642,179699713,179765249,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073],"extensionstatus":[786434,3145734,176619522],"extension":[786434,3145729,4128769,10747909,30212098,30277634,30343170,30408706,31326209,31391745,31719425,31784961,33030151,35192833,35258369,35323905,35389441,36372481,36438017,36503553,36831233,36896769,37879809,37945345,39387137,40042502,40828929,40894465,40960001,44892162,44957699,45613057,52756482,52822018,69337092,69599239,69664771,70057988,73269250,75759618,77725698,78381057,79626242,79888385,80609282,80936961,82509826,83296260,84213761,85590017,85852161,86704129,88604676,88735745,90439683,90636289,90701825,90832897,92864513,93192193,93716484,95879174,98238465,100663303,101122049,103088129,103153665,104923137,108658689,108724225,110952449,111083522,111149057,114294785,117833729,119734278,126418950,134610945,134676481,134742017,134807553,135135233,139919361,139984902,140771329,150405126,153550849,153681922,153747457,157155330,157220869,157614081,158007297,158138369,159318019,159645698,160628737,160694276,161021953,162594819,163381256,164298756,167903233,168165377,169017345,171048965,171180033,171835393,172883972,173080577,173146113,173277185,175308801,175636481,176619522,177405956],"exchange":[786433,3604481,69664769,171704321,176619521],"execution":[786433,4259841,69664769,94699521,156368897,168689665,176619521,180486145],"entry":[786434,4784129,4980737,10747907,30474243,30670851,30736388,47906818,48037889,48234498,48365570,51445761,51511297,69337091,69599237,69664770,74383361,74514433,74579969,75300866,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182147,82247683,82313218,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145924,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357190,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,107675649,107741185,107872257,107937793,108134401,110166017,133300225,133365761,133431297,137887745,142802945,142868481,142934017,142999553,143065089,155648001,157220867,157745153,157810689,157876225,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267140,162332675,162398214,162463747,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774467,163840001,163905537,163971073,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590213,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801479,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"example":[786433,6029313,10616833,10747905,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,29294593,30801921,30867458,31719425,31784961,32178177,32899073,37879809,37945345,38469633,48955393,67567618,69271553,69337091,69402625,69599233,69664771,77725698,78839809,80609281,80674817,82968577,83296257,85196801,85262338,85327874,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852162,85917698,85983234,86048770,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735746,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,95944705,96600066,99221505,103022593,103350274,109903873,111280129,116523009,116785153,137756673,155713537,157024257,157155330,157220865,157810689,158072833,158203905,158531585,160169985,160301057,160694273,160759809,160890881,163053569,163381249,167510017,167575554,167641090,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165378,168230914,168296450,168361986,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180034,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570946,175636481,175702019,175767553,175833089,175898625,176619521,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643],"extensionstatuseventhandler":[3145735,69533697,175964166],"extensionstatusevent":[3145729,22151171,59244551,69664770,88604675,134610946,134676482,134742018,134807554,171048970,171835393,175964165],"extensionstateresponse":[7012355,27721731,67108870,69730305,94109699,154599427,154664963,154730499,154796035,179240970,179568641],"equals":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,34144257,34275329,69599233,77856769,91029508,96927745,141819906,142082050,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351938,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381250,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473797,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"equal":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"exceptions":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,69271553,156762114,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"endpos":[10616834,29294594,157024258],"expected":[10616834,29491201,29556737,31326209,31391745,36831233,36896769,69533698,78512129,98566145,157024258,158138369,167510017,179830785],"error":[10747910,14024708,30212097,30277633,30343169,30408705,31719425,31784961,43581448,43646984,43712521,43778057,46989313,47054849,69337101,69533697,69730306,70057988,70516738,72941573,74055682,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94568449,155582465,156762113,156827649,156893185,157220870,157614081,158138369,158400513,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159645697,159973377,160038913,160497668,160563201,161742850,166199297,167510017,176750594,179109889,179175425,179240961,179306497,179372033,179437569,179503107,179568641,179830785],"entries":[10747906,30539777,30605315,69599233,70123522,157220866,164233217],"exec":[10747906,30801926,30867462,70189059,157220866],"executes":[10747906,30801921,30867457,69337089,70189058,157220866,157941761],"equivalent":[10747905,30932993,69337089,157220865,157548545],"enter":[10747910,30998530,31064066,31129603,69337089,70254598,157220870,158007297],"entered":[10747905,30998529,31064065,31129602,70254593,157220865],"esacpe":[10747906,31326209,31391746,36896769,69337089,70385666,78512129,98697217,157220866,158138370],"exceeding":[10747906,31719425,31784961,69337089,70516738,157220866,158531585],"escape":[10747908,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423362,38338561,38404097,38469633,70647811,71041025,72089603,157220868,158662659],"exiting":[10747908,32964609,33030145,33095681,33161217,39911425,40042497,40501249,40566785,69337091,70975490,79560705,79626241,79757314,100597761,100663298,100794369,100859905,157220868,159252482,159318018,159514627],"escapeandquote":[10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,34471944,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305],"execcommand":[11468803,36110340,36175879,36241415,69337089,71499782,78315523,98107394,98172930,157417473,157941771],"encounters":[13959169,43057153,160432129],"eventsaction":[15990787,48431111,48496647,69599234,74645510,82444291,108462082,108527618,162529292,163119105],"extensionstateaction":[16056323,48562182,69599234,82509827,108593154,108658690,108724226,162594826,163119105],"existing":[16842754,18808834,18874370,19398658,19464194,19529730,19595266,22282242,27328514,50462721,50593793,55574529,55705601,66060289,66191361,80674818,103415811,160759810,163381250,167575554,167641090,168165378,168230914,168296450,168361986,171180034,177405954],"ended":[28114945,68026369,179634177],"exit":[28377089,69074945,180551681],"errors":[29491201,29556737],"environment":[30081030],"escapedigits":[30277637,30343173,30408709,31326213,31391749,31719429,31784965,31916037,32047109,32112645,32178181,32309253,32440325,32571397,32702469,33423365,35258373,35323909,35389445,36831237,36896773,37879813,37945349,38141957,38338565,38404101,38469637,38666245,38862853,39059461,39256069,40894469,40960005,77987841,78512129,78839809,78905345,79036417,79101953,79167489,79233025,79888385,97124357,98566149,99090437,99418117,99876869,99942405,100073477,100204549,101056517,157614081,158138369,158531585,158597121,158728193,158793729,158859265,158924801,159645697],"essentially":[31064065,31129601,36438017,36503553,78381057,98369537,158007297],"elapsed":[31981569,32047105,32112641,32178177,38273025,38338561,38404097,38469633,69337089,72089601,78970881,92864513,99680257,150601730,158662658,158924801,175308801],"europe":[32178177,38469633],"encoding":[42926094,43253771,50266113,50331649,65798157,77004801,80478209,83230721,93585409,96993287,102105100,110428161,153092104,160432129,163315713,176619522],"excluding":[43057153],"empty":[44695553,44826625,45023233,45350913,45809665,45940737,47710210,47775746,47841281,47972353,48168961,48300033,48431105,48824321,49020929,49152001,49479681,49610753,50135041,51183617,51576833,52166657,52690945,52887553,53084161,53477377,53739521,54591489,54722561,54853633,54984705,69730306,73203713,73269249,73334785,73596929,73662465,74317828,74383361,74448897,74514433,74579969,74645505,74776577,74842113,74907649,74973185,75038721,75104257,75235329,75366401,75563009,75759617,75825153,75890689,75956225,76021761,76218369,76283905,76349441,76414977,82640897,84672513,88735745,108986369,115605505,135069697,160628737,160694273,160759809,160890881,161153025,161218561,162201604,162267137,162332673,162398209,162463745,162529281,162725890,162791425,162856961,162988033,163053569,163315713,163708929,163840001,164036609,164298753,164364289,164429825,164560897,164691969,164757505,164823041,164888577,164954113,165019649,171180033,179175425,179306497],"exten":[44892165,44957701,45613061,52756485,52822021,69599233,80609281,80936961,82509825,83296259,84213761,85590017,86769665,86966273,87097345,88604673,88735745,90570753,90636289,90701825,90832897,93192193,93716483,94109697,103153669,104923141,108724229,110952449,111083525,111149057,114294789,117833733,129171461,134676485,135135237,140378118,140771333,153550849,153681925,153747457,154664966,160694273,161021953,162594817,163381252,164298753,167903233,169082881,169279489,169541633,171048961,171180033,173015041,173080577,173146113,173277185,175636481,177405955,179240961],"exisiting":[45154305],"eventmask":[48496645,82444289,108527621,162529281],"extrachannel":[52822021,84213761,114360325,164298753],"ends":[53805057,69337089,69599233,69664769,76021761,158007297,164691970,172163073],"extra":[54263809,69599233,77660161,94830597,157024257,164757505],"enables":[54919169,76349441,164954113],"executing":[68878337,68943873],"enumerations":[69206017,69271553,69533697,69664769],"enumeration":[69206017,69271553,69533697,69664769,157089794,160563202,166068226,169410562,169476098],"easier":[69271553,157220865],"extend":[69271553,157220865],"exist":[69337089,158072833],"extensions":[69337089,158990337],"explanatory":[69599233,160628737],"extentsion":[69599233,160694273],"effect":[69599233,161218561],"ellicit":[69599233,163577857],"executed":[69664770,90439682,139722753,139853825,168689665,172883970,174653441],"excution":[69664769,168689665],"established":[69664769,169345025],"enabled":[69664769,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473603,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325571,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,134217729,134283265,137428998,138018817,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917891,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769859,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"extends":[69664769,175702017],"exists":[69730305,179306497],"encapsulates":[69795841,180420609],"enhanced":[77725699,95813639,157155331],"eagi":[77725697,95813633,157155329],"extensionstate":[82509825,108593153,162594817],"exclusive":[82771969,109510657,162856961],"epoch":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,138018817,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"evaluates":[85655555,91488258,91619330,91684867,91750403,91815939,91881475,91947010,117964801,118358017,118620161,144769025,144900097,167968771,173932546,174063618,174129155,174194691,174260227,174325763,174391298],"expressed":[85655553,91619329,91684865,91750401,91815937,91881473,118095873,167968769,174063617,174129153,174194689,174260225,174325761],"env":[86573057,121438214,168886273],"endtime":[87228417,94502913,131137542,155910150,169672705,179634177],"elements":[89128961,89194497,91226113,91291649,91422721,143130625,171573249,171638785,173670401,173735937,173867009],"expiration":[91029505,141819905,173473793],"expired":[91029505,141819905,173473793],"ensure":[92012545,146014209,157089793,174456833],"exposed":[92143617,146276353,174587905],"enum":[92209154,146472961,146538497,157089794,160563202,166068226,169410562,169476098,174653442],"eventlist":[92667905,149291014,175112193],"e911":[93454337,151912449,175898625],"eventargs":[167575553,167641089,167706625,167772162,167837698,167903233,167968770,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835398,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784514,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625]} \ No newline at end of file diff --git a/docs/fti/FTI_102.json b/docs/fti/FTI_102.json index 5520c31..0483cf8 100644 --- a/docs/fti/FTI_102.json +++ b/docs/fti/FTI_102.json @@ -1 +1 @@ -{"follow":[1,40894465,64094210,79691777,111017985,155844610,155910145,161939457],"framework":[196609],"fastagi":[196610,327681,393217,458753,524289,589825,983041,3538946,3604482,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,22937609,23003152,23068677,23134211,23199751,23265282,23330818,23396354,23461890,23527428,23592964,23658500,23724035,23789570,23855106,23920642,23986178,24051714,24117252,24182786,24248323,24313861,24379396,24444933,24510468,24576002,24641538,24707075,24772611,24838147,24903683,24969218,25034754,25100290,25165827,25231362,25296898,25362434,25427972,25493506,25559042,25624578,25690114,25755651,25821186,25886722,25952258,26017794,26083330,26148868,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262989,27328515,27394052,27459587,27525123,27590659,27656195,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180487,28246019,28311555,28377091,28442626,28508165,28573707,28639234,28704771,28770306,28835847,28901380,28966917,29032452,29097986,29163524,29229058,29294596,29360130,29425666,29491204,29556738,29622274,29687810,29753346,29818882,29884418,29949956,30015490,30081026,30146564,30212098,30277634,30343172,30408706,30474244,30539778,30605316,30670850,30736386,30801924,30867458,30932994,30998530,31064068,31129602,31195138,31260676,31326210,31391746,31457284,31522818,31588356,31653890,31719426,31784964,31850498,31916036,31981570,32047106,32112644,32178178,32243715,32309252,32374786,32440322,32505860,32571394,32636930,32702468,32768003,32833538,32899074,32964610,33030148,33095682,33161218,33226756,33292290,33357826,33423364,33488898,33554434,33619972,33685506,33751042,33816580,33882114,33947652,34013186,34078724,34144258,34209796,34275330,34340868,34406402,34471940,34537474,34603012,34668546,34734084,34799618,34865154,34930692,34996226,35061762,35127300,35192835,35258372,35323906,35389442,35454978,35520516,35586051,35651588,35717122,35782660,35848194,35913730,35979273,36044803,36110338,36175874,36241417,36306947,36372482,36438020,36503555,36569097,36634627,36700162,36765699,36831237,36896776,36962306,37027849,37093379,37158914,37224451,63504386,63766531,63832066,63897603,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,71892993,71958529,72024065,72089601,72155137,72220674,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842114,74907649,89260034,89325570,89391107,89456643,89522178,89587714,89653250,89718787,89784323,89849859,89915395,89980931,90046467,90112002,90177538,90243075,90308611,90374146,90439682,90505219,90570755,90636290,90701827,90767363,90832899,90898435,90963970,91029506,91095042,91160578,91226115,91291650,91357186,91422722,91488259,91553795,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257731,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206851,96272387,96337922,96403458,96468995,96534531,151060483,151126019,151191559,151257092,151322628,151388164,151453699,151519235,151584772,151650307,151715843,151781380,151846954,151912453,151977989,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567813,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337283,154402820,154468356,154533891,154599428,154664965,154730500],"fork":[196609],"feel":[196609],"following":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4718593,4784129,4849665,4915201,4980737,5046273,5111810,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,23855105,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453698,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"fields":[917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,64094211,150994945,151781377,155713537,158859265,159186948,169148417,171048961,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"false":[983042,1310721,3538945,3604481,4456449,21626881,28835848,46202881,46333953,47513601,54591489,59506690,62193665,72220673,73334785,75104257,78249985,78774273,85983233,86441985,87228417,88080389,88801281,90308609,93519873,97386497,97910785,107216897,109051905,137953281,139591681,144244737,146735106,146866178,146931713,149618689,151584769,151781378,152961025,154730500,155123713,158269441,158793729,168361985,168820737,169607169,171048967,173867009],"fired":[1310723,4456451,171048963],"field":[1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,47448065,47513602,64094209,70320130,78774276,109051906,109117441,109182977,158793735],"finalize":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"free":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889026,21954561,22020098,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,59047942,60882952,61276168,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342722,173408257,173473794,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"function":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242883,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903681,25165825,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26214402,26279938,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,28049409,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,37552129,38600705,38666241,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50069505,50135041,52101121,54591489,54657025,54722561,58720257,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,61669377,62062593,62128129,62193665,62259201,62324737,62521345,62586881,62783489,62849025,63832065,65011714,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650307,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961026,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"frame":[5111809,23789569,151453697],"file":[5242903,12713985,24707080,24772616,24838152,24903688,25493511,25559047,25624583,25821192,25886728,26214410,26279946,27852807,27918343,29687814,29753350,29818886,29884422,30867462,30932998,30998534,31326214,31391750,32374791,32440327,35323910,35389446,35454982,40501255,41484289,41549825,42205186,42270722,44695559,44761095,44826631,48758785,63832075,63897601,64094210,64225281,64552968,64749571,64880644,65011718,65536002,68157441,68550658,68812804,69599235,70582273,71958529,72024065,72089601,72482818,72876034,73007106,73334787,74383363,74645505,74711041,75628546,77725698,79626241,79691777,87228417,87818241,88080387,88145921,89063425,91684870,92733446,93126662,93650950,93716481,95617031,100073478,104857606,144048134,145817606,146997249,147128321,147587073,151191553,151257089,151322625,151650327,152043524,152436739,152567813,152961030,154075141,154402817,154468353,154533889,155648003,156172290,156631044,157745157,159186947,160628737,161939457,169607169,170196993,171048963,171180033,173735937,174260225],"filename":[5242884,24707073,24772609,24838145,24903681,41484289,41549825,42270726,43253766,63832067,64094211,64552964,68550658,76611585,77070338,79167490,83230722,102039558,103350278,110034945,110166017,129630214,151650308,152043521,152567809,154075137,155648001,156172290,156631041,157089794,159186948,165609474],"family":[5242885,24969223,25034759,25100295,25165831,25231367,30015495,30081030,30212102,30277638,30408710,30539782,42401799,42532871,42729479,42860551,63832069,64094210,64618498,65863681,68878337,68943873,69009409,69074945,72548355,72613890,72679425,72744962,76677122,76742658,76808194,76873730,82640898,92012551,92143622,92274693,92405766,102170630,102367238,102563847,102760454,127729670,151650309,152109062,152174595,152240130,152305667,156696579,156762115,156827652,156893188,165019650],"format":[5242884,26214407,26279943,26607623,26673159,32374790,32440326,32899079,32964615,38010886,38273030,38535174,39059462,44761094,44826630,63832065,65011714,65142786,66584578,73334786,73465858,77725698,79757313,79822849,80347137,80412673,80478209,80543745,83230721,93716486,94044166,104923142,111280129,151650308,152961027,153092100,157745154,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"future":[5242881,27328513,63832065,151650305,153550849],"feature":[5242881,27328513,34144257,63832065,151650305,153550849],"fast":[5636098,24903681,29556738,29622274,29884417,65732610,72482817,77791233,88080386,91750401,105250817,147193857,147324929,152043523,157810689,171048962],"forward":[5636098,24903681,29556738,29622274,29687809,29753345,29818881,29884418,64094209,65732610,65798148,72482817,82771969,91750401,127926278,152043527,155058177,165150721],"frees":[8454145,37486593,154861569],"finished":[11141121,11206657,22872065,44236801,44367873,63569921,64094210,157614082,157679618,174981121],"failedaclevent":[16711683,53805063,53870600,64159745,71106566,83165187,129302531,129368067,129433603,165543948,166264833,170459141],"faxreceivedevent":[16777219,53936135,64159746,83230723,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,162004993,165609482],"functionality":[22806529,63111169,64290817,174850049,174915585],"first":[24576001,47316993,64028674,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507522,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,140443649,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,161218561,161349633,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"forwarddigit":[24903685,29556741,29622277,29884421,72482817,91750405,152043521],"forever":[28049409],"followed":[40894465,64094212,64225281,79167489,85524481,109969409,136380417,155844610,155910145,158662657,158990337,159186945,167903233,173604865],"final":[40894465,64094210,155844610,155910145],"form":[44040193,44171265,72220673,77398017,77463553,77791233,84410369,84803585,90963969,104267777,104398849,105775105,133103617,134021121,151584769,157417473,157483009,157810689,166789121,167182337],"files":[44761089,44826626,77725698,104923137,104988673,157745154],"failure":[49807361,49872898,63832066,86638593,88080385,140836865,146866177,152895489,154271745,169017345,171048961],"filled":[49938433,111017985],"facade":[63700993,154927105],"finally":[63766529,151126017],"fully":[63766529,63897601,154599425,154730497],"functions":[63832066,152502273,152633345],"func":[63832066,87228417,87818241,144113670,145883142,152502273,152633345,169607169,170196993],"fails":[64028674,64159745,160628737,166133761,170917889],"failedacleventhandler":[64028673,170459142],"failed":[64094209,77791233,88211457,105709569,148242433,157286401,157810689,171835393],"foo":[64094210,159186946],"fax":[64159745,83230725,129564673,129630209,129695745,129826817,129892353,165609478],"firstname":[64159749,170131461],"follows":[64225281,173604865],"fixed":[64290817,174981121],"frames":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"flag":[72155137,89325569,151453697],"firstline":[72155137,89391110,151453697],"fil":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"finds":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"fine":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"filter":[78643202,108462081,108527617,158662658],"features":[85131265,135331841,167510017],"fractionlost":[86900737,86966273,141426694,142278662,169279489,169345025],"fireallevents":[88080385,146735109,171048961],"float":[132448257,140312577,142344193,142934017,143261697,143458305],"favour":[154730500]} \ No newline at end of file +{"follow":[1,46399489,69599234,85196801,116523009,161415170,161480705,167510017],"framework":[196609],"fastagi":[196610,327681,393217,458753,524289,589825,6488065,9043970,9109506,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,28442633,28508176,28573701,28639235,28704775,28770306,28835842,28901378,28966914,29032452,29097988,29163524,29229059,29294594,29360130,29425666,29491202,29556738,29622276,29687810,29753347,29818885,29884420,29949957,30015492,30081026,30146562,30212099,30277635,30343171,30408707,30474242,30539778,30605314,30670851,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260675,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768013,32833539,32899075,32964611,33030147,33095683,33161219,33226754,33292290,33357826,33423362,33488898,33554434,33619970,33685511,33751043,33816579,33882115,33947650,34013189,34078731,34144258,34209795,34275330,34340871,34406404,34471941,34537476,34603010,34668548,34734082,34799620,34865154,34930690,34996228,35061762,35127298,35192834,35258370,35323906,35389442,35454980,35520514,35586050,35651588,35717122,35782658,35848196,35913730,35979268,36044802,36110340,36175874,36241410,36306948,36372482,36438018,36503554,36569092,36634626,36700162,36765700,36831234,36896770,36962308,37027842,37093380,37158914,37224450,37289988,37355522,37421060,37486594,37552130,37617668,37683202,37748739,37814276,37879810,37945346,38010884,38076418,38141954,38207492,38273027,38338562,38404098,38469634,38535172,38600706,38666242,38731780,38797314,38862850,38928388,38993922,39059458,39124996,39190530,39256066,39321604,39387138,39452676,39518210,39583748,39649282,39714820,39780354,39845892,39911426,39976964,40042498,40108036,40173570,40239108,40304642,40370178,40435716,40501250,40566786,40632324,40697859,40763396,40828930,40894466,40960002,41025540,41091075,41156612,41222146,41287684,41353218,41418754,41484297,41549827,41615362,41680898,41746441,41811971,41877506,41943044,42008579,42074121,42139651,42205186,42270723,42336261,42401800,42467330,42532873,42598403,42663938,42729475,69009410,69271555,69337090,69402627,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,77398017,77463553,77529089,77594625,77660161,77725698,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347138,80412673,94765058,94830594,94896131,94961667,95027202,95092738,95158274,95223811,95289347,95354883,95420419,95485955,95551491,95617026,95682562,95748099,95813635,95879170,95944706,96010243,96075779,96141314,96206851,96272387,96337923,96403459,96468994,96534530,96600066,96665602,96731139,96796674,96862210,96927746,96993283,97058819,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711875,101777411,101842946,101908482,101974019,102039555,156631043,156696579,156762119,156827652,156893188,156958724,157024259,157089795,157155332,157220867,157286403,157351940,157417514,157483013,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138373,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645700,159711236,159776772,159842308,159907843,159973380,160038916,160104451,160169988,160235525,160301060],"fork":[196609],"feel":[196609],"following":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10223617,10289153,10354689,10420225,10485761,10551297,10616834,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,29360129,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393410,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801282,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374146,90439681,90505218,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,117374977,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024258,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706626,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245570,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818434,172883969,172949506,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"first":[786434,2424833,2555905,30081025,52822017,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012546,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,146014209,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456834,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"failedacl":[786433,3211270,176619521],"fails":[786433,3604481,69533697,69664769,166199297,171704321,176619521],"failedacleventhandler":[3211271,69533697,176029702],"failedaclevent":[3211265,22216707,59310087,59375624,69664769,76611590,88670211,134873091,134938627,135004163,171114508,171835393,176029701],"fields":[6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,69599235,156565505,157351937,161284097,164429825,164757508,174718977,176619521,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"false":[6488066,6815745,9043969,9109505,9961473,27131905,34340872,51707905,51838977,53018625,60096513,65011714,67698689,77725697,78839809,80609281,83755009,84279297,91488257,91553793,91947009,92733441,93585413,94306305,95813633,99024897,102891521,103415809,112721921,114556929,143523841,144113665,145162241,149815297,152305666,152436738,152502273,155189249,157155329,157351938,158531585,160301060,160694273,163840001,164364289,173932545,173998081,174391297,175177729,176619527,179437569],"fired":[6815747,9961475,176619523],"field":[7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,52953089,53018626,69599233,75825154,84279300,114556930,114622465,114688001,164364295],"finalize":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"free":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394050,27459585,27525122,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,64552966,66387976,66781192,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619521,176750593,176816129,177405953,178913282,178978817,179044354,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"function":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747907,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,29097985,29163521,29294593,29360129,29425665,29491201,29556737,29622273,29818881,29884417,29949953,30015489,30212097,30277633,30343169,30408705,30670849,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31719426,31784962,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423361,33554433,34406401,34471937,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41484289,41746433,42074113,42336257,42532865,42795009,43057153,44105729,44171265,45219841,46333953,46465025,48103425,48627713,49741825,49872897,50003969,50397185,50462721,50528257,50921473,52559873,53280769,53411841,53608449,53870593,55115777,55574529,55640065,57606145,60096513,60162049,60227585,64225281,64684033,64749569,64815105,64880641,64946177,65011713,65339393,65404929,65470465,65536001,65601537,66060289,66125825,67174401,67567617,67633153,67698689,67764225,67829761,68026369,68091905,68288513,68354049,69337089,70516738,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220867,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531586,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"frame":[10616833,29294593,157024257],"file":[10747927,18219009,30212104,30277640,30343176,30408712,30998535,31064071,31129607,31326216,31391752,31719434,31784970,33357831,33423367,35192838,35258374,35323910,35389446,36372486,36438022,36503558,36831238,36896774,37879815,37945351,40828934,40894470,40960006,46006279,46989313,47054849,47710210,47775746,50200583,50266119,50331655,54263809,69337099,69402625,69599234,69730305,70057992,70254595,70385668,70516742,71041026,73662465,74055682,74317828,75104259,76087297,77463553,77529089,77594625,77987842,78381058,78512130,78839811,79888387,80150529,80216065,81133570,83230722,85131265,85196801,92733441,93323265,93585411,93650945,94568449,97189894,98238470,98631686,99155974,99221505,101122055,105578502,110362630,149618694,151388166,152567809,152698881,153157633,156762113,156827649,156893185,157220887,157614084,158007299,158138373,158531590,159645701,159973377,160038913,160104449,161218563,161742850,162201604,163315717,164757507,166199297,167510017,175177729,175767553,176619523,176750593,179306497,179830785],"filename":[10747908,30212097,30277633,30343169,30408705,46989313,47054849,47775750,48758790,69337091,69599235,70057988,74055682,82116609,82575362,84672514,88735746,107544582,108855302,115539969,115671041,135200774,157220868,157614081,158138369,159645697,161218561,161742850,162201601,162660354,164757508,171180034],"family":[10747909,30474247,30539783,30605319,30670855,30736391,35520519,35586054,35717126,35782662,35913734,36044806,47906823,48037895,48234503,48365575,69337093,69599234,70123522,71368705,74383361,74448897,74514433,74579969,78053379,78118914,78184449,78249986,82182146,82247682,82313218,82378754,88145922,97517575,97648646,97779717,97910790,107675654,107872262,108068871,108265478,133300230,157220869,157679622,157745155,157810690,157876227,162267139,162332675,162398212,162463748,170590210],"format":[10747908,31719431,31784967,32112647,32178183,37879814,37945350,38404103,38469639,43515910,43778054,44040198,44564486,50266118,50331654,69337089,70516738,70647810,72089602,78839810,78970882,83230722,85262337,85327873,85852161,85917697,85983233,86048769,88735745,99221510,99549190,110428166,116785153,157220868,158531587,158662660,163315714,167575553,167641089,168165377,168230913,168296449,168361985,171180033],"future":[10747905,32833537,69337089,157220865,159121409],"feature":[10747905,32833537,39649281,69337089,93454342,151912454,157220865,159121409,175898630],"fast":[11141122,30408705,35061762,35127298,35389441,71237634,77987841,83296257,93585410,97255425,110755841,152764417,152895489,157614083,163381249,176619522],"forward":[11141122,30408705,35061762,35127298,35192833,35258369,35323905,35389442,69599233,71237634,71303172,77987841,88276993,97255425,133496838,157614087,160628737,170721281],"frees":[13959169,42991617,160432129],"finished":[16646145,16711681,28377089,49741825,49872897,69074945,69599234,163184642,163250178,180551681],"faxreceivedevent":[22282243,59441159,69664770,88735747,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,167575553,171180042],"functionality":[28311553,68616193,69795841,180420609,180486145],"forwarddigit":[30408709,35061765,35127301,35389445,77987841,97255429,157614081],"forever":[33554433],"followed":[46399489,69599236,69730305,84672513,91029505,115474433,141950977,161415170,161480705,164233217,164560897,164757505,173473793,179175425],"final":[46399489,69599234,161415170,161480705],"form":[49545217,49676289,77725697,82903041,82968577,83296257,89915393,90308609,96468993,109772801,109903873,111280129,138674177,139591681,157155329,162988033,163053569,163381249,172359681,172752897],"files":[50266113,50331650,83230722,110428161,110493697,163315714],"failure":[55312385,55377922,69337090,92143617,93585409,146407425,152436737,158466049,159842305,174587905,176619521],"filled":[55443457,116523009],"facade":[69206017,160497665],"finally":[69271553,156696577],"fully":[69271553,69402625,160169985,160301057],"functions":[69337090,78577665,98762753,158072833,158203906],"func":[69337090,78577665,92733441,93323265,98762753,149684230,151453702,158072833,158203906,175177729,175767553],"failed":[69599233,83296257,93716481,111214593,153812993,162856961,163381249,177405953],"foo":[69599234,164757506],"fax":[69664769,88735749,135135233,135200769,135266305,135397377,135462913,171180038],"firstname":[69664773,175702021],"follows":[69730305,179175425],"fixed":[69795841,180551681],"frames":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"flag":[77660161,94830593,157024257],"firstline":[77660161,94896134,157024257],"fil":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"finds":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"fine":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"filter":[84148226,113967105,114032641,164233218],"features":[90636289,140902401,173080577],"fractionlost":[92405761,92471297,146997254,147849222,174850049,174915585],"fxs":[93454339,151912451,175898627],"fxo":[93454339,151912451,175898627],"fxoks":[93454337,151912449,175898625],"fxsks":[93454337,151912449,175898625],"fireallevents":[93585409,152305669,176619521],"float":[138018817,145883137,147914753,148504577,148832257,149028865],"favour":[160301060]} \ No newline at end of file diff --git a/docs/fti/FTI_103.json b/docs/fti/FTI_103.json index ace3832..9c25169 100644 --- a/docs/fti/FTI_103.json +++ b/docs/fti/FTI_103.json @@ -1 +1 @@ -{"good":[196609],"getconfigresponse":[1572867,22282243,61669380,61734918,64225282,88670211,149291010,173735946,173998081],"garbage":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"gethashcode":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"gettype":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"gets":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337730,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303810,13369346,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893634,13959170,14024706,14090242,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777218,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823490,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,44957697,50069505,60555265,71958536,72024072,72089608,74645512,74711048,79626248,79691784,88145928,89063432,89194499,150798337,150863873,150929409,151060481,151126017,151191561,151257097,151322633,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402825,154468361,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628745,161939465,162004994,162070530,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660354,162725890,162791426,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609474,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180041,171245569,171835394,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260233,174850049,174915588,174981121],"getbaseexception":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"getobjectdata":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"getattribute":[5111810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789574,62062598,151453698,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"getresult":[5111809,23855109,151453697],"getstatus":[5111811,23920645,23986177,24051713,151453699],"getsynopsis":[5111809,23986181,151453697],"getusage":[5111809,24051717,151453697],"given":[5242935,8454146,8519681,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,23199745,23330817,23396353,24707074,24772610,24838146,24903682,24969217,25100290,25165825,25231361,25296897,25362433,25493505,25559041,25624577,25690113,25755650,25821186,25886722,25952258,26214401,26279937,26345473,26411010,26476545,26542082,26607619,26673155,26738689,26804226,26869761,26935298,27000833,27066370,27131905,27197442,27328513,27721729,27852801,27918338,29425665,29818881,29884417,30932993,30998529,31391745,31719425,32768001,32833538,32899075,32964611,35454977,36110337,37617665,37683201,38600705,39124993,39256065,39387138,39452675,39583745,39649281,40370177,40501250,40632321,42401794,42532866,42729474,42860546,42991617,43384833,43450369,43581441,44040193,44171265,44695554,44761090,44826626,45744130,45809666,45875203,46137345,46202881,46268418,46333954,46727170,47251458,47316994,47448066,47513602,47644673,47710210,48037889,48300033,49152002,49283073,49414145,49545217,49807361,49872897,49938433,60227585,60293121,60358657,60424193,61669377,62062593,62717953,63832096,64028673,64094221,64159745,64225281,64421890,64552968,64618498,64684034,64749571,64815105,64880644,65011714,65077251,65142793,65208323,65273859,65339395,65404931,65536003,65667073,65798146,66060290,66191361,66256897,66584585,67043329,67698689,67764229,67829762,68091905,68157442,68222977,68878338,68943874,69009410,69074946,69140481,69271554,69337089,69468161,69533697,69599238,69730311,69861382,70057986,70254596,70320132,70385667,70451201,70516737,70713346,70778881,70844417,70909953,70975490,71499778,71565314,77463554,88801281,104398850,149618689,151126017,151191554,151519233,151650359,151977985,152043524,152174593,152240129,152305665,152371201,152436739,152502273,152567811,152633345,152698882,152961025,153026562,153092107,153157634,153223170,153288706,153354242,153419777,153485313,153550849,154009602,154075139,154402817,154861570,154927106,155058178,155123717,155189250,155582465,155648002,155713537,156696578,156762114,156827651,156893187,156958721,157024257,157155330,157220866,157417473,157483011,157745158,157810692,158138375,158269446,158466050,158728197,158793733,158859268,158990338,159121409,159252482,159318017,159383553,159449089,160628738,161939457,167706625,171048962,171180034,172163073,173539329,173604865,173670401,173735938,173801473,173867010,173932546,173998081,174260225],"getchannelstatus":[5242881,25427975,151650305],"getdata":[5242883,25493510,25559046,25624582,64749572,151650307],"getfullvariable":[5242882,25690118,25755655,64815107,151650306],"getvariable":[5242882,11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,25690113,25952261,44957703,50069511,60555271,64815105,151650306,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393],"getoption":[5242882,25821190,25886726,64880643,151650306],"getdatacommand":[6029315,30801924,30867463,30932999,30998535,63832065,66060296,72876035,92733442,92798978,92864514,151846913,152436749],"getfullvariablecommand":[6094851,31064068,31129607,31195143,63832065,66125830,72941571,92930050,92995586,151846913,152502283],"getoptioncommand":[6160387,31260676,31326215,31391751,63832065,66191366,73007107,93061122,93126658,93192194,151846913,152567819],"getvariablecommand":[6225923,31457284,31522822,35192833,63832066,72155137,73072643,89325569,93257731,151453697,151846913,152502273,152633353,154009601],"generalmappingstrategy":[8126467,36241413,36306947,36372487,36438024,36503560,63897601,67174408,154533901],"getconfigaction":[10616835,43122692,43188231,43253766,64094210,64225281,69206021,77070339,103284738,103350274,157089803,157679617,173735937],"getvaraction":[10682371,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,43319303,43384839,43450375,62062595,64094210,69271560,77135875,103415810,103481346,103546882,157155342,157548545,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"getvariables":[11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,45023239,50135047,60620806,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393],"getprotocolidentifier":[21626881,59441159,171048961],"getinstance":[22740994,62783494,62849030,71761923,174850050],"generates":[22740994,62783489,62849025,64094209,71761922,157810689,174850050],"generic":[24248322,24576001,36438018,36896772,45154306,50266114,52101121,54657025,60751874,61997058,62259201,62455810],"generate":[39911425,39976961,64094209,67895298,79167489,109969409,155385858,159186946],"generated":[41484289,41549825,64028673,64094218,64159748,68550658,77791235,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88211458,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,105054209,105250817,105709569,132448257,147718145,148242433,149684225,149880833,150011905,155254786,156172290,157810691,157941762,158662658,159055874,159514626,161087489,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281794,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171835394,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"global":[43384834,47644674,69271553,70385665,77135873,103481345,157155330,158859265],"group":[63635457,80150529,85983234,86048769,86114305,86179841,86245377,86310914,86376449,86441986,112656385,137822209,138280961,139132929,139460609,162398209,168361986,168427521,168493057,168558593,168624129,168689666,168755201,168820738],"general":[63897601,64159745,154533889,164102145],"generation":[64028673,173408257],"getconfig":[64094209,64225281,157089793,173735937],"getter":[64159745,170131457],"generelly":[64225281,173604865],"getescapedigits":[73465857,94109701,153092097],"getvar":[77135873,103415809,157155329],"gtalk":[81854465,126287873,164233217],"gtalksid":[81854465,126353414,164233217]} \ No newline at end of file +{"good":[196609],"generated":[786433,2293761,46989313,47054849,69599242,69664772,74055682,83296259,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93716482,93978627,94044163,94109699,94175235,94240771,94306307,94371843,94437379,110559233,110755841,111214593,138018817,153288705,153812993,155254785,155451393,155582465,160825346,161742850,163381251,163512322,164233218,164626434,165085186,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459138,170524673,170590209,170655745,170721281,170786817,170852354,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,177405954,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643],"given":[786433,4521985,10747960,13959170,14024705,27590657,27656193,27721729,27787266,27852801,27918337,27983873,28049409,28704769,28835841,28901377,30212098,30277634,30343170,30408706,30474241,30605314,30670849,30736385,30801921,30867457,30998529,31064065,31129601,31195137,31260674,31326210,31391746,31457282,31653889,31719425,31784961,31850497,31916034,31981569,32047106,32112643,32178179,32243713,32309250,32374785,32440322,32505857,32571394,32636929,32702466,32833537,33226753,33357825,33423362,34930689,35323905,35389441,36438017,36503553,36896769,37224449,38273025,38338562,38404099,38469635,40960001,41615361,43122689,43188225,44105729,44630017,44761089,44892162,44957699,45088769,45154305,45875201,46006274,46137345,47906818,48037890,48234498,48365570,48496641,48889857,48955393,49086465,49545217,49676289,50200578,50266114,50331650,51249154,51314690,51380227,51642369,51707905,51773442,51838978,52232194,52756482,52822018,52953090,53018626,53149697,53215234,53542913,53805057,54657026,54788097,54919169,55050241,55312385,55377921,55443457,65732609,65798145,65863681,65929217,67174401,67567617,68222977,69337121,69599245,69664769,69730305,69926914,70057992,70123522,70189058,70254595,70320129,70385668,70451201,70516738,70582275,70647817,70713347,70778883,70844419,70909955,71041027,71172097,71303170,71565314,71696385,71761921,72089609,72548353,73203713,73269253,73334786,73596929,73662466,73728001,74383362,74448898,74514434,74579970,74645505,74776578,74842113,74973185,75038721,75104262,75235335,75366406,75563010,75759620,75825156,75890691,75956225,76021761,76218370,76283905,76349441,76414977,76480514,77004802,77070338,82968578,94306305,109903874,155189249,156696577,156762114,157089793,157220920,157548546,157614084,157745153,157810689,157876225,157941761,158007299,158072833,158138371,158203905,158269442,158531585,158597122,158662667,158728194,158793730,158859266,158924802,158990337,159055873,159121409,159580162,159645699,159973377,160432130,160497666,160628738,160694277,160759810,161153025,161218562,161284097,162267138,162332674,162398211,162463747,162529281,162594817,162725890,162791426,162988033,163053571,163315718,163381252,163708935,163840006,164036610,164298757,164364293,164429828,164560898,164691969,164823042,164888577,164954113,165019649,166199298,167510017,173277185,176619523,176750594,179109889,179175425,179240961,179306498,179372033,179437570,179503106,179568641,179830785],"getconfigresponse":[7077891,27787267,67174404,67239942,69730306,94175235,154861570,179306506,179568641],"garbage":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"gethashcode":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"gettype":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"gets":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842754,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808834,18874370,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398658,19464194,19529730,19595266,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328514,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,50462721,55574529,66060289,77463560,77529096,77594632,80150536,80216072,85131272,85196808,93650952,94568456,94699523,156368897,156434433,156499969,156631041,156696577,156762121,156827657,156893193,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973385,160038921,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381250,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199305,167510025,167575554,167641090,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165378,168230914,168296450,168361986,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180034,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750601,176816129,177405954,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830793,180420609,180486148,180551681],"getbaseexception":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"getobjectdata":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"getattribute":[10616834,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,29294598,67567622,157024258,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"getresult":[10616833,29360133,157024257],"getstatus":[10616835,29425669,29491201,29556737,157024259],"getsynopsis":[10616833,29491205,157024257],"getusage":[10616833,29556741,157024257],"getchannelstatus":[10747905,30932997,157220865],"getdata":[10747907,30998534,31064070,31129606,70254596,157220867],"getfullvariable":[10747906,31195142,31260679,70320131,157220866],"getvariable":[10747906,16842753,18808833,18874369,19398657,19464193,19529729,19595265,22282241,27328513,31195137,31457285,50462727,55574535,66060295,70320129,157220866,163381249,167575553,167641089,168165377,168230913,168296449,168361985,171180033,177405953],"getoption":[10747906,31326214,31391750,70385667,157220866],"getdatacommand":[11534339,36306948,36372487,36438023,36503559,69337089,71565320,78381059,98238466,98304002,98369538,157417473,158007309],"getfullvariablecommand":[11599875,36569092,36634631,36700167,69337089,71630854,78446595,98435074,98500610,157417473,158072843],"getoptioncommand":[11665411,36765700,36831239,36896775,69337089,71696390,78512131,98566146,98631682,98697218,157417473,158138379],"getvariablecommand":[11730947,36962308,37027846,40697857,69337090,77660161,78577667,94830593,98762754,157024257,157417473,158072833,158203913,159580161],"generalmappingstrategy":[13631491,41746437,41811971,41877511,41943048,42008584,69402625,72679432,160104461],"getconfigaction":[16121859,48627716,48693255,48758790,69599234,69730305,74711045,82575363,108789762,108855298,162660363,163250177,179306497],"getvaraction":[16187395,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,48824327,48889863,48955399,67567619,69599234,74776584,82640899,108920834,108986370,109051906,162725902,163119105,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643],"getvariables":[16842753,18808833,18874369,19398657,19464193,19529729,19595265,22282241,27328513,50528263,55640071,66125830,163381249,167575553,167641089,168165377,168230913,168296449,168361985,171180033,177405953],"getprotocolidentifier":[27131905,64946183,176619521],"getinstance":[28246018,68288518,68354054,77266947,180420610],"generates":[28246018,68288513,68354049,69599233,77266946,163381249,180420610],"generic":[29753346,30081025,41943042,42401796,50659330,55771138,57606145,60162049,66256898,67502082,67764225,67960834],"generate":[45416449,45481985,69599233,73400322,84672513,115474433,160956418,164757506],"global":[48889858,53149698,74776577,75890689,82640897,108986369,162725890,164429825],"group":[69140481,85655553,91488258,91553793,91619329,91684865,91750401,91815938,91881473,91947010,93454342,118161409,143392769,143851521,144703489,145031169,151912454,167968769,173932546,173998081,174063617,174129153,174194689,174260226,174325761,174391298,175898630],"general":[69402625,69664769,160104449,169672705],"generation":[69533697,178978817],"getconfig":[69599233,69730305,162660353,179306497],"getter":[69664769,175702017],"generelly":[69730305,179175425],"getescapedigits":[78970881,99614725,158662657],"getvar":[82640897,108920833,162725889],"gtalk":[87359489,131858433,169803777],"gtalksid":[87359489,131923974,169803777],"groundstart":[93454338,151912450,175898626]} \ No newline at end of file diff --git a/docs/fti/FTI_104.json b/docs/fti/FTI_104.json index 3b546af..95a0277 100644 --- a/docs/fti/FTI_104.json +++ b/docs/fti/FTI_104.json @@ -1 +1 @@ -{"history":[131074,196610,262145],"http":[196610,64159745,165609473],"hostname":[917505,3014657,60227589,60293125,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080386,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,146800646,150077441,150994945,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"hangup":[983041,3604481,5242884,26017797,26214401,26279937,27328513,31719425,43581441,63832075,64028673,65011714,72155137,73138177,75169794,77201410,79429633,83296258,89325569,93323267,97910786,103612417,103677953,110755841,130023425,130088961,151453697,151650308,151781377,152698881,152829953,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,155189250,157220866,159449089,165675010,170524673],"handle":[1310721,4456449,23199746,63766529,64028673,64290817,79691777,111017985,151126018,161939457,170721281,171048961,174915585],"hash":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,43712513,43778049,43843585,69402625,88014849,88276993,88408065,89128961,146472966,148373512,148766728,150732802,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342722,173408257,173473794,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850050,174915585,174981121],"hangs":[5242881,26017793,31653889,31719425,43581441,49545217,63832066,64094209,66256898,69337089,70909953,151650305,152698884,157220865,159449090],"hold":[5242883,26083330,27787265,34799617,34865154,63832066,64028676,64159747,64946178,66912258,74186753,80412673,80478209,83361796,95223810,114425857,114688001,130154497,130220033,130285569,130351105,151650307,153812993,153878532,162660353,162725889,165740549,165806081,169869313,170590209,170655746,174391297],"hangupcommand":[6291459,31588356,31653895,31719431,63832065,66256902,73138179,93323266,151846913,152698891],"hangupaction":[10747907,43515911,43581447,64094210,69337094,77201411,103612418,103677954,157220876,157548545],"hangupevent":[16842755,54001671,64159747,83296259,130023426,130088962,162136066,165675018,170524677],"holdedcallevent":[16908291,54067207,64159746,83361795,130154498,130220034,130285570,130351106,165740554,166264833,170590213],"holdevent":[16973827,54132743,64159746,83427331,130416643,165806090,166264833,169869313,170655749],"handleresponse":[21561345,21889025,22020097,59113477,61014025,61341705,170721281,173342721,173473793],"handleevent":[21889025,60948487,173342721],"hung":[34144257,39649281,64028674,64159746,73924609,94961666,97910785,153550849,165675009,167575553,170524673,172032001],"host":[37748742,72220673,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638595,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,90963969,104660993,132317185,140640258,150077441,151584769,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017347,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"higher":[45875201,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,86507522,106561537,112984065,138018817,138608641,139657217,140443650,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737,168886274],"hang":[49545217,63766529,64094209,70909953,151257089,157220865,159449089],"hosname":[60227585,60293121],"hide":[63700993,64225282,154927105,173604865,173735937],"hungup":[63832065,85983233,86048769,86441985,137756673,138215425,139395073,153550849,168361985,168427521,168820737],"handler":[64028674,88080385,146735105,171048961,173342721,173473793],"hangupeventhandler":[64028673,170524677],"holdedcalleventhandler":[64028673,170590213],"holdedcall":[64028673,170590209],"holdeventhandler":[64028673,170655749],"hear":[64094209,155058177],"help":[64094209,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,155713537,160628737,161939457,171180033,174260225],"handy":[64094209,159186945],"handling":[64094209,64225281,159186945,173604865],"html":[64159745,165609473],"hairy":[64225281,173604865],"helplink":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"hresult":[71958530,72024066,72089602,74645506,74711042,79626242,79691778,88145922,89063426,151191554,151257090,151322626,154402818,154468354,160628738,161939458,171180034,174260226],"hack":[79691777,111017985,161939457],"holdtime":[80412673,80478209,85655553,86507522,114425861,114688005,136839174,140050439,162660353,162725889,168034305,168886274],"happened":[81002497,115802113,163250177],"hint":[83099650,88604673,129171462,149159942,165478402,173670401],"highestsequence":[86900737,141557766,169279489],"halted":[87228417,144244737,169607169],"hierarchy":[150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548546,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201602,162267138,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174260225,174850049,174915585,174981121]} \ No newline at end of file +{"history":[131074,196610,262145],"http":[196610,69664769,171180033],"hangup":[786434,3276806,6488065,9109505,10747908,31522821,31719425,31784961,32833537,37224449,49086465,69337099,70516738,77660161,78643201,80674818,82706434,84934657,88801282,94830593,98828291,103415810,109117441,109182977,116260865,135593985,135659521,157024257,157220868,157351937,158269441,158400513,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,160759810,162791426,165019649,171245570,176619522],"hung":[786434,3276801,4390913,39649281,45154305,69664770,79429633,100466690,103415809,159121409,171245569,173146113,176619522],"hold":[786437,3342343,3407873,5963777,10747909,31588354,31653891,33292289,40304641,40370178,69337090,69664771,70451204,72417282,79691777,85917697,85983233,88866820,100728834,119930881,120193025,135725057,135790593,135856129,135921665,157220869,159383553,159449092,168230913,168296449,171311109,171376641,175439873,176619525],"holdedcall":[786434,3407878,176619522],"hangupeventhandler":[3276807,69533697,176095238],"hangupevent":[3276801,22347779,59506695,69664771,88801283,135593986,135659522,167706626,171245578,176095237],"holdeventhandler":[3342343,69533697,176226310],"holdevent":[3342337,22478851,59637767,69664770,88932355,135987203,171376650,171835393,175439873,176226309],"holdedcalleventhandler":[3407879,69533697,176160774],"holdedcallevent":[3407873,22413315,59572231,69664770,88866819,135725058,135790594,135856130,135921666,171311114,171835393,176160773],"hostname":[6422529,8519681,65732613,65798149,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585410,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,152371206,155648001,156565505,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"handle":[6815745,9961473,28704770,69271553,69533697,69795841,85196801,116523009,156696578,167510017,176291841,176619521,180486145],"hash":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,49217537,49283073,49348609,74907649,93519873,93782017,93913089,94633985,152043526,153944072,154337288,156303362,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856962,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619521,176750593,176816129,177405953,178913282,178978817,179044354,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420610,180486145,180551681],"hook":[10747905,30932993,69337089,157220865,157548545],"hangs":[10747905,31522817,37158913,37224449,49086465,55050241,69337090,69599233,71761922,74842113,76414977,157220865,158269444,162791425,165019650],"hangupcommand":[11796483,37093380,37158919,37224455,69337089,71761926,78643203,98828290,157417473,158269451],"hangupaction":[16252931,49020935,49086471,69599234,74842118,82706435,109117442,109182978,162791436,163119105],"handleresponse":[27066369,27394049,27525121,64618501,66519049,66846729,176291841,178913281,179044353],"handleevent":[27394049,66453511,178913281],"host":[43253766,77725697,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143619,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,96468993,110166017,137887745,146210818,155648001,157155329,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587907,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"higher":[51380225,83623937,85655553,91488257,91553793,91619329,91684865,91815937,91881473,91947009,92012546,112066561,118489089,143589377,144179201,145227777,146014210,163708929,167968769,173932545,173998081,174063617,174129153,174260225,174325761,174391297,174456834],"hang":[55050241,69271553,69599233,76414977,156827649,162791425,165019649],"hosname":[65732609,65798145],"hide":[69206017,69730306,160497665,179175425,179306497],"hungup":[69337089,91488257,91553793,91947009,143327233,143785985,144965633,159121409,173932545,173998081,174391297],"handler":[69533698,93585409,152305665,176619521,178913281,179044353],"hear":[69599233,160628737],"help":[69599233,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,161284097,166199297,167510017,176750593,179830785],"handy":[69599233,164757505],"handling":[69599233,69730305,164757505,179175425],"html":[69664769,171180033],"hairy":[69730305,179175425],"helplink":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"hresult":[77463554,77529090,77594626,80150530,80216066,85131266,85196802,93650946,94568450,156762114,156827650,156893186,159973378,160038914,166199298,167510018,176750594,179830786],"helpful":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721],"hack":[85196801,116523009,167510017],"holdtime":[85917697,85983233,91160577,92012546,119930885,120193029,142409734,145620999,168230913,168296449,173604865,174456834],"happened":[86507521,121307137,168820737],"hint":[88604674,94109697,134742022,154730502,171048962,179240961],"highestsequence":[92405761,147128326,174850049],"halted":[92733441,149815297,175177729],"hierarchy":[156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417474,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184642,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772162,167837698,167903233,167968770,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784514,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568642,179634177,179830785,180420609,180486145,180551681]} \ No newline at end of file diff --git a/docs/fti/FTI_105.json b/docs/fti/FTI_105.json index 7e2cb0c..c187298 100644 --- a/docs/fti/FTI_105.json +++ b/docs/fti/FTI_105.json @@ -1 +1 @@ -{"items":[262145,87293953,144441350,169672705],"inherited":[327681,393217,458753,524289,589825,655361,720897,786433,851969,1376257,1441793,1507329,1572865,1638401,1703937,1769473,4718598,4784134,4849672,4915208,4980744,5046278,5111813,5177349,5242886,5308422,5373958,5439493,5505031,5570567,5636103,5701639,5767175,5832711,5898247,5963783,6029319,6094855,6160391,6225927,6291463,6356999,6422535,6488071,6553607,6619143,6684679,6750215,6815751,6881287,6946823,7012359,7077895,7143431,7208967,7274503,7340039,7405575,7471111,7536647,7602183,7667719,7733255,7798791,7864327,7995400,8060936,8126470,8192006,8257542,8323078,8388614,8454150,8519684,8585222,8650758,8716294,8781830,8847366,8912902,8978438,9043974,9109510,9175046,9240582,9306118,9371654,9437190,9502726,9568262,9633798,9699334,9764870,9830406,9895942,9961478,10027014,10092550,10158086,10223622,10289158,10354694,10420230,10485766,10551302,10616838,10682374,10747910,10813446,10878982,10944518,11010054,11075589,11141126,11206662,11272198,11337734,11403270,11468806,11534342,11599878,11665414,11730950,11796486,11862022,11927558,11993094,12058630,12124166,12189702,12255238,12320774,12386310,12451846,12517382,12582918,12648454,12713990,12779526,12845062,12910598,12976134,13041670,13107206,13172744,13238280,13303820,13369352,13434888,13500424,13565960,13631496,13697032,13762568,13828104,13893644,13959180,14024716,14090252,14155784,14221320,14286856,14352392,14417928,14483464,14549000,14614536,14680072,14745608,14811144,14876680,14942216,15007752,15073287,15138824,15204360,15269896,15335432,15400968,15466504,15532040,15597576,15663112,15728648,15794184,15859720,15925256,15990792,16056328,16121864,16187400,16252936,16318472,16384008,16449544,16515080,16580616,16646152,16711688,16777228,16842760,16908296,16973832,17039368,17104904,17170440,17235976,17301512,17367048,17432581,17498120,17563656,17629192,17694728,17760264,17825800,17891336,17956872,18022408,18087944,18153480,18219016,18284552,18350088,18415624,18481160,18546696,18612232,18677768,18743304,18808840,18874376,18939912,19005448,19070984,19136520,19202056,19267592,19333128,19398664,19464200,19529736,19595272,19660808,19726344,19791880,19857416,19922952,19988488,20054024,20119560,20185096,20250632,20316168,20381704,20447240,20512776,20578312,20643848,20709384,20774920,20840456,20905992,20971528,21037064,21102600,21168136,21233672,21299207,21364744,21430280,21495816,21626886,21692424,21757958,21823494,21889030,21954566,22020102,22085642,22151178,22216714,22282250,22347786,22413322,22478858,22544389,22609925,22675464,22740998,22806534,22872070,71958536,72024072,72089608,74645512,74711048,75038723,75104259,75169795,75235331,75300867,75366403,75431939,75497475,75563011,75628547,75694083,75759619,75825155,75890691,75956227,76021763,76087299,76152835,76218371,76283907,76349443,76414979,76480515,76546051,76611587,76677123,76742659,76808195,76873731,76939267,77004803,77070339,77135875,77201411,77266947,77332483,77398019,77463555,77594628,77660164,77725699,77791235,77856771,77922307,77987843,78053380,78118915,78184451,78249987,78315523,78381059,78446595,78512131,78577667,78643203,78708739,78774275,78839811,78905347,78970883,79036419,79101955,79167491,79233027,79298563,79364099,79429635,79495171,79560707,79626248,79691784,79757321,79822856,79888392,79953928,80019464,80085000,80150536,80216072,80281608,80347145,80412684,80478220,80543756,80609288,80674824,80740362,80805898,80871432,80936968,81002504,81068040,81133576,81199112,81264648,81330190,81395726,81461273,81526792,81592345,81657864,81723400,81788936,81854472,81920009,81985545,82051081,82116618,82182153,82247690,82313225,82378761,82444297,82509833,82575368,82640906,82706450,82771986,82837512,82903049,82968584,83034120,83099656,83165192,83230732,83296273,83361800,83427336,83492872,83558408,83623946,83689482,83755026,83820552,83951626,84017162,84082698,84148234,84213770,84279306,84344842,84410376,84475912,84541448,84606984,84672520,84738056,84803592,84869137,84934664,85000209,85065738,85131274,85196812,85262346,85327884,85393418,85458954,85524488,85590024,85655560,85721098,85786634,85852170,85917704,85983247,86048778,86114324,86179862,86245397,86310933,86376469,86441997,86507530,86573066,86638600,86704137,86769672,86835208,86900744,86966280,87031816,87097352,87162888,87228425,87293962,87359498,87425032,87490568,87556104,87621650,87687180,87752712,87818248,87883786,87949322,88145928,88473608,88539144,88604680,88670216,88735752,88801288,88866824,89063432,151060486,151126022,151191569,151257105,151322641,151388166,151453701,151584773,151650310,151715846,151781382,151846917,151912455,151977991,152043527,152109063,152174599,152240135,152305671,152371207,152436743,152502279,152567815,152633351,152698887,152764423,152829959,152895495,152961031,153026567,153092103,153157639,153223175,153288711,153354247,153419783,153485319,153550855,153616391,153681927,153747463,153812999,153878535,153944071,154009607,154075143,154140679,154206215,154271751,154402833,154468369,154533894,154599430,154664966,154730502,154796038,154861574,154927108,155058185,155123721,155189257,155254793,155320329,155385865,155451401,155516937,155582473,155648009,155713545,155779081,155844617,155910153,155975689,156041225,156106761,156172297,156237833,156303369,156368905,156434441,156499977,156565513,156631049,156696585,156762121,156827657,156893193,156958729,157024265,157089801,157155337,157220873,157286409,157351945,157417481,157483017,157548549,157614090,157679626,157745161,157810697,157876233,157941769,158007305,158072842,158138377,158203913,158269449,158334985,158400521,158466057,158531593,158597129,158662665,158728201,158793737,158859273,158924809,158990345,159055881,159121417,159186953,159252489,159318025,159383561,159449097,159514633,159580169,160628753,161939473,162005013,162070544,162136080,162201616,162267152,162332688,162398224,162463760,162529296,162594837,162660376,162725912,162791448,162856976,162922512,162988050,163053586,163119120,163184656,163250192,163315728,163381264,163446800,163512336,163577878,163643414,163708961,163774479,163971105,164036624,164102160,164167696,164233232,164298769,164364305,164429841,164495378,164560913,164626450,164691985,164757521,164823057,164888593,164954128,165019666,165085210,165150746,165216272,165281809,165347344,165412880,165478416,165543952,165609496,165675033,165740560,165806096,165871632,165937168,166002706,166068242,166133786,166199312,166264837,166330386,166395922,166461458,166526994,166592530,166658066,166723602,166789136,166854672,166920208,166985744,167051280,167116816,167182352,167247897,167313424,167378969,167444498,167510034,167575572,167641106,167706644,167772178,167837714,167903248,167968784,168034320,168099858,168165394,168230930,168296464,168362007,168427538,168493084,168558622,168624157,168689693,168755229,168820757,168886290,168951826,169017360,169082897,169148432,169213968,169279504,169345040,169410576,169476112,169541648,169607185,169672722,169738258,169803792,169869328,169934864,170000410,170065940,170131471,170197008,170262546,170328082,171048966,171180049,171245574,171835398,173342726,173408262,173473798,173539347,173604883,173670419,173735955,173801491,173867027,173932563,173998085,174063621,174260241,174850054,174915590,174981126],"invalidcommandsyntaxexception":[524291,7995395,36110342,63766530,74645507,96075778,96141314,151191553,154402826],"invalidorunknowncommandexception":[589827,8060931,36175878,63766530,74711043,151191553,154468362],"internal_action_id_delimiter":[917505,3145734,150994945],"int":[2097155,2162691,2293763,2555907,3080195,23920643,24707075,24772611,24838150,24903686,25296899,25362435,25427971,25624579,25886723,26214406,26279948,27328515,27590659,27983875,28049411,28573702,28639238,28770310,28835846,29818883,29884419,30998531,31391747,32047107,32243715,32374787,32440329,34144259,34996227,35454979,35717123,35913731,37421059,37748739,39256067,39976966,45875203,47251459,47316995,49152003,49283075,49414147,49545219,59637763,59899907,59965443,60096515,60227587,60293123,61669382,63635459,72155137,89522182,89849860,89915396,89980932,90046468,90570757,90832901,91291652,91422724,91815941,92798981,93192197,93388805,93454341,93782021,93847557,94961669,95354885,95682565,95879173,96862212,97058820,97320965,99090437,99155973,105709573,106561541,108920837,110362629,110493701,110624773,110755845,110952453,112066565,112394245,112984069,113246213,115671045,124649477,126025733,126091269,126222341,127401989,127467525,129236997,129761285,129892357,129957893,130023429,130613253,130678789,130744325,130809861,130875397,130940933,131006469,131137541,131203077,131268613,131334149,131399685,131465221,131530757,131596293,131792901,131989508,133169157,133234693,133300229,133496837,134086660,134479877,134873093,135725061,136183813,136511493,136839173,136904709,136970245,137363461,137560069,137691141,138018821,138084357,138149893,138608645,138739717,139067397,139264005,139657221,139788293,139853829,139919365,139984901,140050437,140115973,140247045,140443653,141754373,141885445,142082053,143785989,143851525,143917061,143982597,144179205,144310277,144441349,144965637,145031173,145948677,146014213,146472965,146604037,146669573,147062789,147128325,147193861,147259397,147324933,147390469,147456005,148176901,148373510,148766726,149225477,149291012,149422085,149487621,150470661,151453697],"integer":[2097153,2162689,2293761,2555905,3080193,23920641,24707073,24772609,24838146,24903682,25296897,25362433,25427969,25624577,25886721,26214402,26279940,27328513,27590657,27983873,28049409,28573698,28639234,28770306,28835842,29818881,29884417,30998529,31391745,32047105,32243713,32374785,32440323,34144257,34996225,35454977,35717121,35913729,37421057,37748737,39256065,39976962,45875202,47251457,47316993,49152001,49283073,49414145,49545217,59637761,59899905,59965441,60096513,60227585,60293121,61669378,63635457,78118913,89522177,89849857,89915393,89980929,90046465,90570753,90832897,91291649,91422721,91815937,92798977,93192193,93388801,93454337,93782017,93847553,94961665,95354881,95682561,95879169,96862209,97058817,97320961,99090433,99155969,105709569,106561538,108920833,110362625,110493697,110624769,110755841,110952449,112066561,112394241,112984065,113246209,115671041,124649473,126025729,126091265,126222337,127401985,127467521,129236993,129761281,129892353,129957889,130023425,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131792897,131989505,133169153,133234689,133300225,133496833,134086657,134479873,134873089,135725057,136183809,136511489,136839169,136904705,136970241,137363457,137560065,137691137,138018817,138084353,138149889,138608641,138739713,139067393,139264001,139657217,139788289,139853825,139919361,139984897,140050433,140115969,140247041,140443649,141754369,141885441,142082049,143785985,143851521,143917057,143982593,144179201,144310273,144441345,144965633,145031169,145948673,146014209,146472961,146604033,146669569,147062785,147128321,147193857,147259393,147324929,147390465,147456001,148176897,148373505,148766721,149225473,149291009,149422081,149487617,150470657,158138369],"int32":[2097153,2162689,2293761,2555905,3080193,5242889,21626883,23920641,24707073,24772609,24838147,24903683,25296897,25362433,25427969,25624578,25886722,26214403,26279943,27328514,27590659,27983873,28049409,28573708,28639236,28770308,28835854,29818882,29884418,30998530,31391746,32047106,32243715,32374786,32440326,34144257,34996226,35454978,35717121,35913730,37421060,37748737,39256066,39976992,45875202,47251458,47316994,49152004,49283075,49414147,49545219,59637762,59899905,59965444,60096517,60227586,60293123,61669380,63635457,64552962,64749569,64880641,65011716,65470465,65601544,65798146,66060289,66191361,66322433,66387969,66453508,66977793,67043329,67108865,67698689,67895298,69730305,70254594,70713345,70778881,70844417,70909953,71303169,71368705,71434241,71499778,89522177,89849857,89915393,89980929,90046465,90570753,90832897,91291649,91422721,91815937,92798977,93192193,93388801,93454337,93782017,93847553,94961665,95354881,95682561,95879169,96862209,97058817,97320961,99090433,99155969,105709569,106561537,108920833,110362625,110493697,110624769,110755841,110952449,112066561,112394241,112984065,113246209,115671041,124649473,126025729,126091265,126222337,127401985,127467521,129236993,129761281,129892353,129957889,130023425,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131792897,131989505,133169153,133234689,133300225,133496833,134086657,134479873,134873089,135725057,136183809,136511489,136839169,136904705,136970241,137363457,137560065,137691137,138018817,138084353,138149889,138608641,138739713,139067393,139264001,139657217,139788289,139853825,139919361,139984897,140050433,140115969,140247041,140443649,141754369,141885441,142082049,143785985,143851521,143917057,143982593,144179201,144310273,144441345,144965633,145031169,145948673,146014209,146472961,146604033,146669569,147062785,147128321,147193857,147259393,147324929,147390465,147456001,148176897,148373505,148766721,149225473,149291009,149422081,149487617,150470657,151650313,151781384,152043522,152436737,152567809,152829953,152895489,152961028,153944065,154075137,154271745,155058177,155385858,158138369,158728194,159252481,159318017,159383553,159449089,171048965],"iformatprovider":[2949125],"instance":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519683,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740995,22806530,22872065,23003137,23068673,23265281,23461889,23527425,23724033,24182785,24248321,28114945,28246017,28573697,28835841,29097985,29229057,29360129,32243713,36372481,36438017,36503553,36700161,36765697,36962305,37158913,37224449,37421057,38600710,39780353,41025537,42008577,42074113,42139649,43057153,43909121,44302337,44433409,44564481,45219841,45481985,45547521,45613057,46923777,46989313,47120385,47841281,48168961,49676289,49741825,50003969,50331649,50397185,50462721,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53542913,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58589185,58654721,58785793,58851329,58916865,58982401,60162049,60227585,60293121,60817409,61079553,61210625,61407233,61472769,61538305,61603841,61734913,61800449,61865985,61997057,62390273,62455809,62652417,62783490,62849026,63176705,63242241,63307777,63373313,63438849,64225281,64356354,64421889,64487426,65601538,65667073,66387969,67174403,67239938,67305474,70189058,71041026,71106562,71499779,71630849,71696386,71761922,71827460,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151060483,151126017,151191555,151257091,151322627,151388162,151453699,151584769,151650306,151715842,151781379,151846914,151912450,151977986,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895490,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402818,154468354,154533892,154599427,154664962,154730499,154796034,154861569,154927107,155058177,155123713,155189249,155254786,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434434,156499970,156565506,156631041,156696577,156762113,156827649,156893185,156958721,157024258,157089793,157155329,157220865,157286401,157351938,157417473,157483009,157548546,157614082,157679618,157745153,157810690,157876225,157941762,158007298,158072834,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597123,158662658,158728193,158793729,158859265,158924802,158990337,159055874,159121409,159186945,159252481,159318017,159383553,159449089,159514626,159580162,160628738,161939458,162004994,162070530,162136066,162201603,162267138,162332674,162398209,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119105,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233217,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085185,165150721,165216257,165281794,165347329,165412865,165478402,165543939,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264833,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968769,168034305,168099842,168165378,168230914,168296450,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869313,169934849,170000386,170065922,170131458,170196994,170262530,170328066,171048964,171180034,171245569,171835394,173342722,173408258,173473794,173539330,173604866,173670402,173735939,173801474,173867010,173932546,173998083,174063618,174260226,174850051,174915590,174981121],"information":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,64028675,64159747,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191554,151257090,151322626,154402818,154468354,160628738,161939458,167772161,168230913,168427521,171180034,172228609,172621825,172752897,174260226],"indicating":[5111809,23789569,89194498,150798337,150863873,151453697,151519236,174915586],"invalid":[5111810,23920642,36175873,74645506,96075778,96141314,151453698,154402818],"interrupted":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,151650308,152043521,154075137],"included":[5242884,24707073,24772609,24838145,24903681,63832067,64552964,77791233,88211457,105054209,147718145,151650308,152043521,152567809,154075137,157810689,171835393],"interrupt":[5242883,22806529,24772609,24838145,24903681,25493505,25559041,25624577,26542081,26607617,26673153,29753345,29818882,29884418,32636929,32833537,32899073,32964609,33161217,33357825,33554433,33751041,35389441,35454978,63045637,63832065,64749571,72482817,73400321,73465857,73531393,73596929,73662465,73728001,74383361,91619329,93913089,94109697,94371841,94437377,94568449,94699521,95551489,151650307,152043521,152436737,153026561,153092097,153157633,153223169,153288705,153354241,154075137,174915585],"int64":[5242888,25559043,25624579,26476547,26542083,26607619,26673155,27131907,27197443,30932995,30998531,32768004,32833539,32899075,32964611,33685507,33751043,62521346,64749570,65142788,65404930,66060290,66584580,66846722,92864514,94175234,94765058,96010242,97714178,112590850,114425858,114556930,114688002,114753538,115212290,115539970,125108226,125501442,132841474,135331842,137494530,137756674,138215426,139395074,141426690,141557762,141623298,142016514,142147586,142278658,142409730,142475266,142606338,142671874,142737410,142802946,142999554,143065090,143130626,143196162,143327234,143392770,143523842,143589378,143654914,148242434,151650312,152436738,153092100,153354242],"interruption":[5242883,26542081,26607617,26673153,32833537,32899073,32964609,65142787,66584579,151650307,153092099],"imappingstrategy":[7929859,23199751,28508167,28573706,35979269,36044803,36241409,36306945,36569089,36634625,37027841,37093377,63766529,65601538,91357190,151781378,154337287,154533892,154599428,154730500],"interface":[7929857,21561345,35979265,36044801,45744130,45809666,45875202,46006278,46137346,46202882,46268418,46333954,46465030,46727170,59047937,59113473,63766534,63897601,64028676,64094211,69730307,69861380,70057985,78118914,78184449,78249986,78315521,78446594,79167489,79757314,80150531,80412674,80478210,80543746,83230722,85983236,86048769,86114307,86179843,86245379,86310916,86376451,86441988,88014849,106364934,106823686,107151366,107413510,108003334,109969409,111083521,111149057,112525317,112656386,137822209,138280961,139132929,139460609,146407425,146472961,151060481,151453697,151584769,151715841,154337285,154533889,154599426,154730498,155320321,155713537,157548545,157810689,158138373,158203905,158269446,158334977,158466051,159186945,162004994,162070529,162398211,162660354,162725890,162791426,165609474,166264833,168361988,168427521,168493059,168558595,168624131,168689668,168755203,168820740,170721286,171048961,171245569,173342721,173473793,173998081],"including":[8454145,37486593,64225281,83230721,129630209,154861569,165609473,173604865],"input":[8454145,25559041,25624577,37486593,63832067,152436737,152829953,152895489,154861569],"ioexception":[8454146,37486593,37552129,63766529,151322625,154861570],"info":[8519684,38338568,38404104,38469641,38535177,67502085,154927108,154992641],"isvisible":[8519681,38666248,154927105],"indicates":[11141121,11206657,44236801,44367873,64094211,64225281,156827649,157614082,157679618,173867009],"index":[12713985,48758785,70582273,159186945],"incremented":[12713985,48758785,70582273,159186945],"iresponsehandler":[21561347,59047939,59113474,60882945,61014017,61276161,61341697,64028673,88014851,146407427,146472963,148307969,148373505,148701185,148766721,170721286,173342724,173473796],"isconnected":[21626881,59506693,74973185,96731141,154861569,171048961],"identifier":[21626882,59572225,59637761,71303170,83230722,129695745,129826817,165609474,171048962],"important":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,64159745,170131457,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"internally":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"issuccess":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62128134,88997889,150405126,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617],"internal":[22740993,62914561,80740353,80805889,82116609,82247681,82640897,85065729,85131265,85262337,85393409,85458945,85852161,86048769,86507521,86573057,86835201,87293953,87359489,87883777,87949313,89128961,141295617,150732801,162988033,163053569,164495361,164626433,165019649,167444481,167510017,167641089,167772161,167837697,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170262529,170328065,174850050],"interrupts":[22806529,63045633,174915585],"initializes":[23003137,23068673,23265281,23461889,23527425,23724033,24182785,24248321,28114945,28246017,28573697,28835841,29097985,29229057,29360129,32243713,36372481,36438017,36503553,36700161,36765697,36962305,37158913,37224449,37421057,39780353,41025537,42008577,42074113,42139649,43057153,43909121,44302337,44433409,44564481,45219841,45481985,45547521,45613057,46923777,46989313,47120385,47841281,48168961,49676289,49741825,50003969,50331649,50397185,50462721,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53542913,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56426497,56492033,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58589185,58654721,58785793,58851329,58916865,58982401,60817409,61472769,61538305,61603841,61734913,61800449,61865985,61997057,62390273,62455809,62652417,63242241,63307777,63373313,63438849,64356354,64421889,64487426,65601538,65667073,66387969,67174403,67239938,67305474,70189058,71041026,71106562,71630849,71696386,71827460,151060482,151191553,151257089,151322625,151388161,151453698,151650305,151715841,151781378,151846913,151912449,151977985,152895489,154533891,154599426,154664961,154730498,154796033,155254785,155910145,156434433,156499969,156565505,157024257,157351937,157548545,157614081,157679617,157810689,157941761,158007297,158072833,158597122,158662657,158924801,159055873,159514625,159580161,162004993,162070529,162136065,162201602,162267137,162332673,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165281793,165478401,165543938,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167837697,167903233,168099841,168165377,168230913,168296449,168427521,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,170000385,170065921,170131457,170196993,170262529,170328065,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174915588],"insensitive":[23789569],"include":[24707073,24772609,24838145,24903681,25821185,25886721,26214401,26279937,29687809,29753345,29818881,29884417,30867457,30932993,30998529,31326209,31391745,32374785,32440321,33882113,35323905,35389441,35454977,63832065,72876033,74383361,92733441,95617025,152436737,153419777,154075137],"ipaddress":[28573702,28770309,28835848,37421064,85393409,90505223,90767367,96796678,96993286,135659525,167772161],"image":[33882118,63832068,73793538,94830599,153419782],"indefinitely":[35848193,63832065,67108865,154271746],"implements":[36241409,36306945,36569089,36634625,37027841,37093377,60882945,61014017,61276161,61341697,64094209,148307969,148373505,148701185,148766721,154533889,154599425,154730497,157548545,157810689,162070529,166264833,173342721,173473793,173998081],"intended":[42205185,42270721,68812802,156631042],"instead":[43712513,69402625,86114306,138805249,138870785,157286401,168493058],"iface":[45744133,45809669,45875205,46137349,46202885,46268421,46333957,46727173],"internalactionid":[59244550,80740353,80805889,82116609,82247681,82640897,85065729,85131265,85262337,85393409,85458945,85852161,86048769,86507521,86573057,86835201,87293953,87359489,87883777,87949313,141295621,162988033,163053569,164495361,164626433,165019649,167444481,167510017,167641089,167772161,167837697,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170262529,170328065],"incoming":[60227585,60293121],"invoked":[63373313,63438849],"implementation":[63766532,64028673,151060481,151453697,151584769,151715841,171245569],"implement":[63766529,63897601,154599425,154730497],"interfaces":[63766529,64028673],"infinite":[63832066,152829953,152895489],"images":[63832065,153419777],"incorrect":[64028673,160628737],"implemention":[64028673,171048961],"instantiated":[64028674,161218561,161349633],"iax":[64028674,64159746,85524484,86638593,136249345,136380417,136445953,136511489,140640257,167903237,169017346,172359681,173211649],"implemented":[64094218,64159788,155648001,157614081,157679617,157745153,158138369,158269441,158466049,158662657,158793729,159121409,162463745,162529281,162594817,162856961,162922497,163184641,163250177,164102145,165216257,165347329,165478401,165609473,165675009,165740545,165806081,166002689,166068225,166199297,166395905,166461441,166592513,166789121,167182337,167247873,167313409,167378945,167510017,167575553,167706625,167772161,167903233,168230913,168361985,168427521,168493057,168689665,168886273,169017345,169082881,169148417,169607169,169869313,170065921,170131457],"implementations":[64094209,157548545],"individual":[64159745,163774465],"islink":[64159745,163774465],"isunlink":[64159745,163774465],"installed":[64159745,165609473],"installing":[64159745,165609473],"innerexception":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"immediate":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"initial":[74973185,96665606,154861569],"incall":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,112459781,138805253,139329541,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"isexternal":[81133569,81199105,116260870,120979462,163381249,163446785],"iax2":[81854465,85524482,86638597,126287873,136314881,136380417,140574721,140640257,140705794,140836865,164233217,167903234,169017349],"iax2callnolocal":[81854465,126418950,164233217],"iax2callnoremote":[81854465,126484486,164233217],"iax2peer":[81854465,126550022,164233217],"ipport":[85393409,135725062,167772161],"iajitter":[86900737,86966273,141623302,142344198,169279489,169345025],"interval":[88080386,147193857,147259393,171048962],"identifer":[88080385,147456001,171048961],"indicats":[88342529,148504577,173408257],"isalive":[89194497,150798341,174915585],"isbackground":[89194497,150863877,174915585],"ilist":[89456646],"idictionary":[90898438],"inheritance":[150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548546,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201602,162267138,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213954,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174260225,174850049,174915585,174981121],"inherits":[151191553,151257089,151322625,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,173539329,173604865,173670401,173735937,173801473,173867009,173932545,174260225],"inherit":[151191553,151257089,151322625,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,173539329,173604865,173670401,173735937,173801473,173867009,173932545,174260225],"iactionvariable":[157810692,162070532],"invite":[163905537],"iparsesupport":[166264836,173998084]} \ No newline at end of file +{"items":[262145,92798977,150011910,175243265],"inherited":[327681,393217,458753,524289,589825,655361,720897,851969,917505,6881281,6946817,7012353,7077889,7143425,7208961,7274497,10223622,10289158,10354696,10420232,10485768,10551302,10616837,10682373,10747910,10813446,10878982,10944517,11010055,11075591,11141127,11206663,11272199,11337735,11403271,11468807,11534343,11599879,11665415,11730951,11796487,11862023,11927559,11993095,12058631,12124167,12189703,12255239,12320775,12386311,12451847,12517383,12582919,12648455,12713991,12779527,12845063,12910599,12976135,13041671,13107207,13172743,13238279,13303815,13369351,13500424,13565960,13631494,13697030,13762566,13828102,13893638,13959174,14024708,14090246,14155782,14221318,14286854,14352390,14417926,14483462,14548998,14614534,14680070,14745606,14811142,14876678,14942214,15007750,15073286,15138822,15204358,15269894,15335430,15400966,15466502,15532038,15597574,15663110,15728646,15794182,15859718,15925254,15990790,16056326,16121862,16187398,16252934,16318470,16384006,16449542,16515078,16580613,16646150,16711686,16777222,16842758,16908294,16973830,17039366,17104902,17170438,17235974,17301510,17367046,17432582,17498118,17563654,17629190,17694726,17760262,17825798,17891334,17956870,18022406,18087942,18153478,18219014,18284550,18350086,18415622,18481158,18546694,18612230,18677768,18743304,18808844,18874376,18939912,19005448,19070984,19136520,19202056,19267592,19333128,19398668,19464204,19529740,19595276,19660808,19726344,19791880,19857416,19922952,19988488,20054024,20119560,20185096,20250632,20316168,20381704,20447240,20512776,20578311,20643848,20709384,20774920,20840456,20905992,20971528,21037064,21102600,21168136,21233672,21299208,21364744,21430280,21495816,21561352,21626888,21692424,21757960,21823496,21889032,21954568,22020104,22085640,22151176,22216712,22282252,22347784,22413320,22478856,22544392,22609928,22675464,22741000,22806536,22872072,22937605,23003144,23068680,23134216,23199752,23265288,23330824,23396360,23461896,23527432,23592968,23658504,23724040,23789576,23855112,23920648,23986184,24051720,24117256,24182792,24248328,24313864,24379400,24444936,24510472,24576008,24641544,24707080,24772616,24838152,24903688,24969224,25034760,25100296,25165832,25231368,25296904,25362440,25427976,25493512,25559048,25624584,25690120,25755656,25821192,25886728,25952264,26017800,26083336,26148872,26214408,26279944,26345480,26411016,26476552,26542088,26607624,26673160,26738696,26804231,26869768,26935304,27000840,27131910,27197448,27262982,27328518,27394054,27459590,27525126,27590666,27656202,27721738,27787274,27852810,27918346,27983882,28049413,28114949,28180488,28246022,28311558,28377094,77463560,77529096,77594632,80150536,80216072,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83099652,83165188,83230723,83296259,83361795,83427331,83492867,83558404,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131272,85196808,85262345,85327880,85393416,85458952,85524488,85590024,85655560,85721096,85786632,85852169,85917708,85983244,86048780,86114312,86179848,86245386,86310922,86376456,86441992,86507528,86573064,86638600,86704136,86769672,86835214,86900750,86966298,87031816,87097370,87162888,87228424,87293960,87359496,87425033,87490569,87556105,87621642,87687177,87752714,87818249,87883785,87949321,88014857,88080392,88145930,88211474,88277010,88342536,88408073,88473608,88539144,88604680,88670216,88735756,88801297,88866824,88932360,88997896,89063432,89128970,89194506,89260050,89325576,89456650,89522186,89587722,89653258,89718794,89784330,89849866,89915400,89980936,90046472,90112008,90177544,90243080,90308616,90374161,90439688,90505233,90570762,90636298,90701836,90767370,90832908,90898442,90963978,91029512,91095048,91160584,91226122,91291658,91357194,91422728,91488271,91553802,91619348,91684886,91750421,91815957,91881493,91947021,92012554,92078090,92143624,92209161,92274696,92340232,92405768,92471304,92536840,92602376,92667912,92733449,92798986,92864522,92930056,92995592,93061128,93126674,93192204,93257736,93323272,93388810,93454346,93650952,93978632,94044168,94109704,94175240,94240776,94306312,94371848,94568456,156631046,156696582,156762129,156827665,156893201,156958726,157024261,157155333,157220870,157286406,157351942,157417477,157483015,157548551,157614087,157679623,157745159,157810695,157876231,157941767,158007303,158072839,158138375,158203911,158269447,158334983,158400519,158466055,158531591,158597127,158662663,158728199,158793735,158859271,158924807,158990343,159055879,159121415,159186951,159252487,159318023,159383559,159449095,159514631,159580167,159645703,159711239,159776775,159842311,159973393,160038929,160104454,160169990,160235526,160301062,160366598,160432134,160497668,160628745,160694281,160759817,160825353,160890889,160956425,161021961,161087497,161153033,161218569,161284105,161349641,161415177,161480713,161546249,161611785,161677321,161742857,161808393,161873929,161939465,162005001,162070537,162136073,162201609,162267145,162332681,162398217,162463753,162529289,162594825,162660361,162725897,162791433,162856969,162922505,162988041,163053577,163119109,163184650,163250186,163315721,163381257,163446793,163512329,163577865,163643402,163708937,163774473,163840009,163905545,163971081,164036617,164102153,164167689,164233225,164298761,164364297,164429833,164495369,164560905,164626441,164691977,164757513,164823049,164888585,164954121,165019657,165085193,165150729,166199313,167510033,167575573,167641104,167706640,167772176,167837712,167903248,167968784,168034320,168099856,168165397,168230936,168296472,168362008,168427536,168493072,168558610,168624146,168689680,168755216,168820752,168886288,168951824,169017360,169082896,169148438,169213974,169279522,169345039,169541666,169607184,169672720,169738256,169803792,169869329,169934865,170000401,170065938,170131473,170197010,170262545,170328081,170393617,170459153,170524688,170590226,170655770,170721306,170786832,170852369,170917904,170983440,171048976,171114512,171180056,171245593,171311120,171376656,171442192,171507728,171573266,171638802,171704346,171769872,171835397,171900946,171966482,172032018,172097554,172163090,172228626,172294162,172359696,172425232,172490768,172556304,172621840,172687376,172752912,172818457,172883984,172949529,173015058,173080594,173146132,173211666,173277204,173342738,173408274,173473808,173539344,173604880,173670418,173735954,173801490,173867024,173932567,173998098,174063644,174129182,174194717,174260253,174325789,174391317,174456850,174522386,174587920,174653457,174718992,174784528,174850064,174915600,174981136,175046672,175112208,175177745,175243282,175308818,175374352,175439888,175505424,175570970,175636500,175702031,175767568,175833106,175898642,176619526,176750609,176816134,177405958,178913286,178978822,179044358,179109907,179175443,179240979,179306515,179372051,179437587,179503123,179568645,179634181,179830801,180420614,180486150,180551686],"invalidcommandsyntaxexception":[524291,13500419,41615366,69271554,80150531,101580802,101646338,156762113,159973386],"invalidorunknowncommandexception":[589827,13565955,41680902,69271554,80216067,156762113,160038922],"instantiated":[786434,2424833,2555905,176619522],"information":[786436,4587521,4784129,4980737,5046273,10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,69664771,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762114,156827650,156893186,159973378,160038914,166199298,167510018,173342721,173801473,173998081,176619524,176750594,179830786],"iax":[786434,4718593,5570561,69664770,91029508,92143617,141819905,141950977,142016513,142082049,146210817,173473797,174587906,176619522],"ievent":[983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993],"internal_action_id_delimiter":[6422529,8650758,156565505],"int":[7602179,7667715,7798787,8060931,8585219,29425667,30212099,30277635,30343174,30408710,30801923,30867459,30932995,31129603,31391747,31719430,31784972,32833539,33095683,33488899,33554435,34078726,34144262,34275334,34340870,35323907,35389443,36503555,36896771,37552131,37748739,37879811,37945353,39649283,40501251,40960003,41222147,41418755,42926083,43253763,44761091,45481990,51380227,52756483,52822019,54657027,54788099,54919171,55050243,65142787,65404931,65470467,65601539,65732611,65798147,67174406,69140483,77660161,95027206,95354884,95420420,95485956,95551492,96075781,96337925,96796676,96927748,97320965,98304005,98697221,98893829,98959365,99287045,99352581,100466693,100859909,101187589,101384197,102367236,102563844,102825989,104595461,104660997,111214597,112066565,114425861,115867653,115998725,116129797,116260869,116457477,117571589,117899269,118489093,118751237,121176069,130220037,131596293,131661829,131792901,132972549,133038085,134807557,135331845,135462917,135528453,135593989,136183813,136249349,136314885,136380421,136445957,136511493,136577029,136708101,136773637,136839173,136904709,136970245,137035781,137101317,137166853,137363461,137560068,138739717,138805253,138870789,139067397,139657220,140050437,140443653,141295621,141754373,142082053,142409733,142475269,142540805,142934021,143130629,143261701,143589381,143654917,143720453,144179205,144310277,144637957,144834565,145227781,145358853,145424389,145489925,145555461,145620997,145686533,145817605,146014213,147324933,147456005,147652613,149356549,149422085,149487621,149553157,149749765,149880837,150011909,150536197,150601733,151519237,151584773,152043525,152174597,152240133,152633349,152698885,152764421,152829957,152895493,152961029,153026565,153747461,153944070,154337286,154796037,154861572,154992645,155058181,156041221,157024257],"integer":[7602177,7667713,7798785,8060929,8585217,29425665,30212097,30277633,30343170,30408706,30801921,30867457,30932993,31129601,31391745,31719426,31784964,32833537,33095681,33488897,33554433,34078722,34144258,34275330,34340866,35323905,35389441,36503553,36896769,37552129,37748737,37879809,37945347,39649281,40501249,40960001,41222145,41418753,42926081,43253761,44761089,45481986,51380226,52756481,52822017,54657025,54788097,54919169,55050241,65142785,65404929,65470465,65601537,65732609,65798145,67174402,69140481,83623937,95027201,95354881,95420417,95485953,95551489,96075777,96337921,96796673,96927745,97320961,98304001,98697217,98893825,98959361,99287041,99352577,100466689,100859905,101187585,101384193,102367233,102563841,102825985,104595457,104660993,111214593,112066562,114425857,115867649,115998721,116129793,116260865,116457473,117571585,117899265,118489089,118751233,121176065,130220033,131596289,131661825,131792897,132972545,133038081,134807553,135331841,135462913,135528449,135593985,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137363457,137560065,138739713,138805249,138870785,139067393,139657217,140050433,140443649,141295617,141754369,142082049,142409729,142475265,142540801,142934017,143130625,143261697,143589377,143654913,143720449,144179201,144310273,144637953,144834561,145227777,145358849,145424385,145489921,145555457,145620993,145686529,145817601,146014209,147324929,147456001,147652609,149356545,149422081,149487617,149553153,149749761,149880833,150011905,150536193,150601729,151519233,151584769,152043521,152174593,152240129,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153747457,153944065,154337281,154796033,154861569,154992641,155058177,156041217,163708929],"int32":[7602177,7667713,7798785,8060929,8585217,10747913,27131907,29425665,30212097,30277633,30343171,30408707,30801921,30867457,30932993,31129602,31391746,31719427,31784967,32833538,33095683,33488897,33554433,34078732,34144260,34275332,34340878,35323906,35389442,36503554,36896770,37552130,37748739,37879810,37945350,39649281,40501250,40960002,41222145,41418754,42926084,43253761,44761090,45482016,51380226,52756482,52822018,54657028,54788099,54919171,55050243,65142786,65404929,65470468,65601541,65732610,65798147,67174404,69140481,70057986,70254593,70385665,70516740,70975489,71106568,71303170,71565313,71696385,71827457,71892993,71958532,72482817,72548353,72613889,73203713,73400322,75235329,75759618,76218369,76283905,76349441,76414977,76808193,76873729,76939265,77004802,95027201,95354881,95420417,95485953,95551489,96075777,96337921,96796673,96927745,97320961,98304001,98697217,98893825,98959361,99287041,99352577,100466689,100859905,101187585,101384193,102367233,102563841,102825985,104595457,104660993,111214593,112066561,114425857,115867649,115998721,116129793,116260865,116457473,117571585,117899265,118489089,118751233,121176065,130220033,131596289,131661825,131792897,132972545,133038081,134807553,135331841,135462913,135528449,135593985,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137363457,137560065,138739713,138805249,138870785,139067393,139657217,140050433,140443649,141295617,141754369,142082049,142409729,142475265,142540801,142934017,143130625,143261697,143589377,143654913,143720449,144179201,144310273,144637953,144834561,145227777,145358849,145424385,145489921,145555457,145620993,145686529,145817601,146014209,147324929,147456001,147652609,149356545,149422081,149487617,149553153,149749761,149880833,150011905,150536193,150601729,151519233,151584769,152043521,152174593,152240129,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153747457,153944065,154337281,154796033,154861569,154992641,155058177,156041217,157220873,157351944,157614082,158007297,158138369,158400513,158466049,158531588,159514625,159645697,159842305,160628737,160956418,163708929,164298754,164823041,164888577,164954113,165019649,176619525],"iformatprovider":[8454149],"instance":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024707,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246019,28311554,28377089,28508161,28573697,28770305,28966913,29032449,29229057,29687809,29753345,33619969,33751041,34078721,34340865,34603009,34734081,34865153,41877505,41943041,42008577,42205185,42270721,42467329,42663937,42729473,42926081,44105734,45285377,46530561,47513601,47579137,47644673,48562177,49414145,49807361,49938433,50069505,50724865,50987009,51052545,51118081,52428801,52494337,52625409,53346305,53673985,55181313,55246849,55508993,55836673,55902209,55967745,56033281,56098817,56164353,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,59047937,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62193665,62259201,62324737,62390273,62521345,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,64094209,64159745,64290817,64356353,64421889,64487425,65667073,65732609,65798145,66322433,66584577,66715649,66912257,66977793,67043329,67108865,67239937,67305473,67371009,67502081,67895297,67960833,68157441,68288514,68354050,68681729,68747265,68812801,68878337,68943873,69730305,69861378,69926913,69992450,71106562,71172097,72679427,72744962,72810498,75694082,76546050,76611586,77004803,77135873,77201410,77266946,77332484,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156631043,156696577,156762115,156827651,156893187,156958722,157024259,157155329,157220866,157286402,157351939,157417474,157483010,157548546,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973378,160038914,160104452,160169987,160235522,160301059,160366594,160432129,160497667,160628737,160694273,160759809,160825346,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480706,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004994,162070530,162136066,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660353,162725889,162791425,162856961,162922498,162988033,163053569,163119106,163184642,163250178,163315713,163381250,163446785,163512322,163577858,163643394,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167683,164233218,164298753,164364289,164429825,164495362,164560897,164626434,164691969,164757505,164823041,164888577,164954113,165019649,165085186,165150722,166199298,167510018,167575554,167641090,167706626,167772163,167837698,167903234,167968769,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689665,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803777,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655745,170721281,170786817,170852354,170917889,170983425,171048962,171114499,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835393,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539329,173604865,173670402,173735938,173801474,173867010,173932545,173998082,174063617,174129153,174194689,174260225,174325761,174391297,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439873,175505409,175570946,175636482,175702018,175767554,175833090,175898626,176619524,176750594,176816129,177405954,178913282,178978818,179044354,179109890,179175426,179240962,179306499,179372034,179437570,179503106,179568643,179634178,179830786,180420611,180486150,180551681],"indicating":[10616833,29294593,94699522,156368897,156434433,157024257,157089796,180486146],"invalid":[10616834,29425666,41680897,80150530,101580802,101646338,157024258,159973378],"interrupted":[10747908,30212097,30277633,30343169,30408705,69337090,70057988,157220868,157614081,159645697],"included":[10747908,30212097,30277633,30343169,30408705,69337091,70057988,83296257,93716481,110559233,153288705,157220868,157614081,158138369,159645697,163381249,177405953],"interrupt":[10747907,28311553,30277633,30343169,30408705,30998529,31064065,31129601,32047105,32112641,32178177,35258369,35323906,35389442,38141953,38338561,38404097,38469633,38666241,38862849,39059457,39256065,40894465,40960002,68550661,69337089,70254595,77987841,78905345,78970881,79036417,79101953,79167489,79233025,79888385,97124353,99418113,99614721,99876865,99942401,100073473,100204545,101056513,157220867,157614081,158007297,158597121,158662657,158728193,158793729,158859265,158924801,159645697,180486145],"int64":[10747912,31064067,31129603,31981571,32047107,32112643,32178179,32636931,32702467,36438019,36503555,38273028,38338563,38404099,38469635,39190531,39256067,68026370,70254594,70647812,70909954,71565314,72089604,72351746,98369538,99680258,100270082,101515266,103219202,118095874,119930882,120061954,120193026,120258562,120717314,121044994,130678786,131072002,138412034,140902402,143065090,143327234,143785986,144965634,146997250,147128322,147193858,147587074,147718146,147849218,147980290,148045826,148176898,148242434,148307970,148373506,148570114,148635650,148701186,148766722,148897794,148963330,149094402,149159938,149225474,153812994,157220872,158007298,158662660,158924802],"interruption":[10747907,32047105,32112641,32178177,38338561,38404097,38469633,70647811,72089603,157220867,158662659],"imappingstrategy":[13434883,28704775,34013191,34078730,41484293,41549827,41746433,41811969,42074113,42139649,42532865,42598401,69271553,71106562,96862214,157351938,159907847,160104452,160169988,160301060],"interface":[13434881,27066369,41484289,41549825,51249154,51314690,51380226,51511302,51642370,51707906,51773442,51838978,51970054,52232194,64552961,64618497,69271558,69402625,69533700,69599235,75235331,75366404,75563009,83623938,83689473,83755010,83820545,83951618,84672513,85262338,85655555,85917698,85983234,86048770,88735746,91488260,91553793,91619331,91684867,91750403,91815940,91881475,91947012,93519873,111869958,112328710,112656390,112918534,113508358,115474433,116588545,116654081,118030341,118161410,143392769,143851521,144703489,145031169,151977985,152043521,156631041,157024257,157155329,157286401,159907845,160104449,160169986,160301058,160890881,161284097,163119105,163381249,163708933,163774465,163840006,163905537,164036611,164757505,167575554,167641089,167968771,168230914,168296450,168361986,171180034,171835393,173932548,173998081,174063619,174129155,174194691,174260228,174325763,174391300,176291846,176619521,176816129,178913281,179044353,179568641],"including":[13959169,42991617,69730305,88735745,135200769,160432129,171180033,179175425],"input":[13959169,31064065,31129601,42991617,69337091,158007297,158400513,158466049,160432129],"ioexception":[13959170,42991617,43057153,69271553,156893185,160432130],"info":[14024708,43843592,43909128,43974665,44040201,73007109,160497668,160563201],"isvisible":[14024705,44171272,160497665],"indicates":[16646145,16711681,49741825,49872897,69599235,69730305,162398209,163184642,163250178,179437569],"index":[18219009,54263809,76087297,164757505],"incremented":[18219009,54263809,76087297,164757505],"iresponsehandler":[27066371,64552963,64618498,66387969,66519041,66781185,66846721,69533697,93519875,151977987,152043523,153878529,153944065,154271745,154337281,176291846,178913284,179044356],"isconnected":[27131905,65011717,80478209,102236165,160432129,176619521],"identifier":[27131906,65077249,65142785,76808194,88735746,135266305,135397377,171180034,176619522],"important":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,69664769,175702017,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"internally":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"issuccess":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67633158,94502913,155975686,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177],"internal":[28246017,68419585,86245377,86310913,87621633,87752705,88145921,90570753,90636289,90767361,90898433,90963969,91357185,91553793,92012545,92078081,92340225,92798977,92864513,93388801,93454337,94633985,146866177,156303361,168558593,168624129,170065921,170196993,170590209,173015041,173080577,173211649,173342721,173408257,173801473,173998081,174456833,174522369,174784513,175243265,175308801,175833089,175898625,180420610],"interrupts":[28311553,68550657,180486145],"initializes":[28508161,28573697,28770305,28966913,29032449,29229057,29687809,29753345,33619969,33751041,34078721,34340865,34603009,34734081,34865153,41877505,41943041,42008577,42205185,42270721,42467329,42663937,42729473,42926081,45285377,46530561,47513601,47579137,47644673,48562177,49414145,49807361,49938433,50069505,50724865,50987009,51052545,51118081,52428801,52494337,52625409,53346305,53673985,55181313,55246849,55508993,55836673,55902209,55967745,56033281,56098817,56164353,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,59047937,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61931521,61997057,62193665,62259201,62324737,62390273,62521345,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,64094209,64159745,64290817,64356353,64421889,64487425,66322433,66977793,67043329,67108865,67239937,67305473,67371009,67502081,67895297,67960833,68157441,68747265,68812801,68878337,68943873,69861378,69926913,69992450,71106562,71172097,72679427,72744962,72810498,75694082,76546050,76611586,77135873,77201410,77332484,156631042,156762113,156827649,156893185,156958721,157024258,157220865,157286401,157351938,157417473,157483009,157548545,160104451,160169986,160235521,160301058,160366593,160825345,161480705,162004993,162070529,162136065,162594817,162922497,163119105,163184641,163250177,163381249,163512321,163577857,163643393,164167682,164233217,164495361,164626433,165085185,165150721,167575553,167641089,167706625,167772162,167837697,167903233,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170852353,171048961,171114498,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173408257,173473793,173670401,173735937,173801473,173867009,173998081,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175570945,175636481,175702017,175767553,175833089,175898625,177405953,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568642,179634177,180486148],"insensitive":[29294593],"include":[30212097,30277633,30343169,30408705,31326209,31391745,31719425,31784961,35192833,35258369,35323905,35389441,36372481,36438017,36503553,36831233,36896769,37879809,37945345,39387137,40828929,40894465,40960001,69337089,78381057,79888385,98238465,101122049,158007297,158990337,159645697],"ipaddress":[34078726,34275333,34340872,42926088,90898433,96010247,96272391,102301702,102498310,141230085,173342721],"image":[39387142,69337092,79298562,100335623,158990342],"indefinitely":[41353217,69337089,72613889,159842306],"implements":[41746433,41811969,42074113,42139649,42532865,42598401,66387969,66519041,66781185,66846721,69599233,153878529,153944065,154271745,154337281,160104449,160169985,160301057,163119105,163381249,167641089,171835393,178913281,179044353,179568641],"intended":[47710209,47775745,74317826,162201602],"instead":[49217537,74907649,91619330,144375809,144441345,162856961,174063618],"iface":[51249157,51314693,51380229,51642373,51707909,51773445,51838981,52232197],"internalactionid":[64749574,86245377,86310913,87621633,87752705,88145921,90570753,90636289,90767361,90898433,90963969,91357185,91553793,92012545,92078081,92340225,92798977,92864513,93388801,93454337,146866181,168558593,168624129,170065921,170196993,170590209,173015041,173080577,173211649,173342721,173408257,173801473,173998081,174456833,174522369,174784513,175243265,175308801,175833089,175898625],"incoming":[65732609,65798145],"invoked":[68878337,68943873],"implementation":[69271556,69533697,156631041,157024257,157155329,157286401,176816129],"implement":[69271553,69402625,160169985,160301057],"interfaces":[69271553,69533697],"infinite":[69337090,158400513,158466049],"images":[69337089,158990337],"incorrect":[69533697,166199297],"implemention":[69533697,176619521],"implemented":[69599242,69664812,161218561,163184641,163250177,163315713,163708929,163840001,164036609,164233217,164364289,164691969,168034305,168099841,168165377,168427521,168493057,168755201,168820737,169672705,170786817,170917889,171048961,171180033,171245569,171311105,171376641,171573249,171638785,171769857,171966465,172032001,172163073,172359681,172752897,172818433,172883969,172949505,173080577,173146113,173277185,173342721,173473793,173801473,173932545,173998081,174063617,174260225,174456833,174587905,174653441,174718977,175177729,175439873,175636481,175702017],"implementations":[69599233,163119105],"individual":[69664769,169345025],"islink":[69664769,169345025],"isunlink":[69664769,169345025],"installed":[69664769,171180033],"installing":[69664769,171180033],"innerexception":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"immediate":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93454338,93650945,94568449,151912450,156762113,156827649,156893185,159973377,160038913,166199297,167510017,175898626,176750593,179830785],"initial":[80478209,102170630,160432129],"incall":[85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,117964805,144375813,144900101,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"isexternal":[86638593,86704129,121765894,126484486,168951809,169017345],"iax2":[87359489,91029506,92143621,131858433,141885441,141950977,146145281,146210817,146276354,146407425,169803777,173473794,174587909],"iax2callnolocal":[87359489,131989510,169803777],"iax2callnoremote":[87359489,132055046,169803777],"iax2peer":[87359489,132120582,169803777],"ipport":[90898433,141295622,173342721],"iajitter":[92405761,92471297,147193862,147914758,174850049,174915585],"interval":[93585410,152764417,152829953,176619522],"identifer":[93585409,153026561,176619521],"indicats":[93847553,154075137,178978817],"isalive":[94699521,156368901,180486145],"isbackground":[94699521,156434437,180486145],"ilist":[94961670],"idictionary":[96403462],"inheritance":[156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417474,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184642,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772162,167837698,167903233,167968770,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784514,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568642,179634177,179830785,180420609,180486145,180551681],"inherits":[156762113,156827649,156893185,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176750593,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179830785],"inherit":[156762113,156827649,156893185,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176750593,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179830785],"iactionvariable":[163381252,167641092],"invite":[169476097],"iparsesupport":[171835396,179568644]} \ No newline at end of file diff --git a/docs/fti/FTI_106.json b/docs/fti/FTI_106.json index 3efc1a7..21ae57b 100644 --- a/docs/fti/FTI_106.json +++ b/docs/fti/FTI_106.json @@ -1 +1 @@ -{"jetbrains":[196609],"jabberevent":[17039363,54198279,64159745,83492867,130482179,130547715,165871626,166264833],"jitterbufstatsevent":[17104899,54263815,64159745,83558403,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,165937162,166264833],"joinevent":[17170435,54329351,64159747,83623939,131661826,131727362,131792898,166002698,168296450,170786821],"job":[22872065,63504385,174981121],"january":[26476545,26542081,26607617,26673153,27131905,27197441,32768001,32833537,32899073,32964609,33685505,33751041,63832065,66584577,73465857,73728001,94175233,94765057,153092098,153354242],"joined":[44826625,77725697,83623939,104988673,131661825,131727361,131792897,157745153,166002691],"just":[45744129,45809665,45875201,63766529,64028673,64159747,78118913,106364929,151650305,158138369,163774465,170000385,170131457,174456833],"jobs":[63635457,174981121],"joins":[64028675,64159746,161218561,166395905,168099841,171311105,172490753],"join":[64028674,161218561,170786817],"joineventhandler":[64028673,170786821],"joines":[64028673,64159745,166002689,170786817],"jon":[64159745,170131457],"jan":[80150529,86114305,86179841,86245377,86310913,86376449,112590849,162398209,168493057,168558593,168624129,168689665,168755201],"jitter":[87031809,87097345,142934022,143327238,169410561,169476097]} \ No newline at end of file +{"jetbrains":[196609],"joins":[786435,2424833,3735553,4849665,69664770,171966465,173670401,176619523],"join":[786435,2424833,3473414,176619523],"joines":[786433,3473409,69664769,171573249,176619521],"just":[786433,6029313,51249153,51314689,51380225,69271553,69664771,83623937,111869953,157220865,163708929,169345025,175570945,175702017,176619521],"joineventhandler":[3473415,69533697,176357382],"joinevent":[3473409,22675459,59834375,69664771,89128963,137232386,137297922,137363458,171573258,173867010,176357381],"john":[10747905,32899073,157220865],"jabberevent":[22544387,59703303,69664769,88997891,136052739,136118275,171442186,171835393],"jitterbufstatsevent":[22609923,59768839,69664769,89063427,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,171507722,171835393],"job":[28377089,69009409,180551681],"january":[31981569,32047105,32112641,32178177,32636929,32702465,38273025,38338561,38404097,38469633,39190529,39256065,69337089,72089601,78970881,79233025,99680257,100270081,158662658,158924802],"joined":[50331649,83230721,89128963,110493697,137232385,137297921,137363457,163315713,171573251],"jobs":[69140481,180551681],"jon":[69664769,175702017],"jan":[85655553,91619329,91684865,91750401,91815937,91881473,118095873,167968769,174063617,174129153,174194689,174260225,174325761],"jitter":[92536833,92602369,148504582,148897798,174981121,175046657]} \ No newline at end of file diff --git a/docs/fti/FTI_107.json b/docs/fti/FTI_107.json index 050568d..52b49f2 100644 --- a/docs/fti/FTI_107.json +++ b/docs/fti/FTI_107.json @@ -1 +1 @@ -{"key":[5242884,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,24969223,25100289,25165832,25231367,30212097,30277634,30408711,30539783,42401800,42532872,42729480,42860552,43778053,43843589,44957702,45088774,50069510,50200582,54591496,58720263,60555270,60686342,62062602,62193672,63766529,63832067,63897601,64094210,64618497,68878337,68943873,69009409,69074945,71958529,72024065,72089601,72613890,72679426,72744963,74645505,74711041,76677122,76742658,76808195,76873731,77266948,77529090,77594626,77660162,78053378,79626241,79691777,82640898,88145921,88473602,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,92143617,92209153,92340230,92405761,92471302,102236166,102432774,102563842,102629382,102760449,102825990,103809025,103940102,104005633,104464386,127795206,148897794,149749761,151191553,151257089,151322625,151650308,152174595,152240131,152305668,154402817,154468353,154599425,154730497,156696579,156762115,156827653,156893189,157286404,157548546,157614082,157679618,158072834,160628737,161939457,165019650,171180033,173539333,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174260225],"kind":[5242882,26214401,26279937,42991617,43843585,63832065,64094209,65011714,76939265,77266945,81002497,87228417,103022593,103874561,115802113,144375809,151650306,152961025,156958722,157286401,163250177,169607169],"keytree":[25100293,30081032,30277637,63832065,65863681,72548355,72613889,92012545,92078086,92209157,152109061,152174593],"keys":[25100289,79167490,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,109969410,132055041,149749761,159186946,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"know":[64094209,64225281,80805889,115343361,155123713,163053569,173735937],"keepalive":[88080385,146866181,171048961],"keepaliveafterauthenticationfailure":[88080386,146866177,146931717,171048962]} \ No newline at end of file +{"key":[10747908,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,30474247,30605313,30670856,30736391,35717121,35782658,35913735,36044807,47906824,48037896,48234504,48365576,49283077,49348613,50462726,50593798,55574534,55705606,60096520,64225287,66060294,66191366,67567626,67698696,69271553,69337091,69402625,69599234,70123521,74383361,74448897,74514433,74579969,77463553,77529089,77594625,78118914,78184450,78249987,80150529,80216065,82182146,82247682,82313219,82378755,82771972,83034114,83099650,83165186,83558402,85131265,85196801,88145922,93650945,93978625,94568449,97648641,97714177,97845254,97910785,97976326,107741190,107937798,108068866,108134406,108265473,108331014,109314049,109445126,109510657,109969410,133365766,154468354,156762113,156827649,156893185,157220868,157745155,157810691,157876228,159973377,160038913,160169985,160301057,162267139,162332675,162398213,162463749,162856964,163119106,163184642,163250178,163643394,166199297,167510017,170590210,176750593,179109892,179175427,179240963,179306499,179372035,179437571,179503107,179568643,179830785],"kind":[10747906,31719425,31784961,48496641,49348609,69337089,69599233,70516738,82444289,82771969,86507521,92733441,108527617,109379585,121307137,149946369,157220866,158531585,162529282,162856961,168820737,175177729],"keytree":[30605317,35586056,35782661,69337089,71368705,78053379,78118913,97517569,97583110,97714181,157679621,157745153],"keys":[30605313,84672514,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,115474434,137625601,155320321,164757506,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"know":[69599233,69730305,86310913,120848385,160694273,168624129,179306497],"kewlstart":[93454338,151912450,175898626],"keepalive":[93585409,152436741,176619521],"keepaliveafterauthenticationfailure":[93585410,152436737,152502277,176619522]} \ No newline at end of file diff --git a/docs/fti/FTI_108.json b/docs/fti/FTI_108.json index 9b18058..8f30ef1 100644 --- a/docs/fti/FTI_108.json +++ b/docs/fti/FTI_108.json @@ -1 +1 @@ -{"link":[1,64028675,64159749,71958529,72024065,72089601,74645505,74711041,79626241,79691777,81526785,83755009,87359489,87621633,88145921,89063425,123863041,144900101,151191553,151257089,151322625,154402817,154468353,160628737,161939457,163774468,166133762,169738241,170000386,170917890,171180033,174260225,174456833],"library":[65537,131073,196610,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"life":[131073],"language":[196609,72220674,81264641,81461249,81592321,90439686,123731974,151584770,163512321,163708929,163971073],"line_separator":[917505,3211269,150994945],"line":[917505,3211265,8454146,22282242,37552131,48758785,61669378,64094211,64225283,87228417,87818241,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,144179206,145948678,150011905,150994945,154861570,155713538,159186945,169607169,170196993,173539329,173604867,173670401,173735940,173801473,173867009,173932545,173998081],"logic":[1310721,4456449,171048961],"literal":[2031617,2097153,2162689,2228225,2293761,2359297,2555905,3014657,3080193,3211265,3932161,3997697,4063233,4128769,4194305,4259841],"list":[4587525,24248327,24379397,24444933,24576005,36438023,36831237,36896776,63897601,64094211,64356353,64421889,64487426,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174402,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,88539137,148570118,148963336,151453697,154533890,155713537,157941761,158924801,173604865],"listner":[5242884,24707073,24772609,24838145,24903681,63832065,64552964,151650308,152043521],"lack":[5242882,26214401,26279938,32440321,63832065,65011714,151650306,152961025],"label":[5242881,27656199,35061766,65470465,74252291,95289350,95354881,151650305,153944067],"load":[7929857,8126465,8192001,8323073,36044806,36306952,36634632,37093384,74842113,96337921,154337281,154533889,154599425,154664961,154730497],"loadmappings":[8257537,36831240,154664961],"logger":[8519685,37814276,37879812,37945349,38010885,38076420,38141956,38207493,38273029,38338564,38404100,38469637,38535173,38600712,38666253,38731784,38797320,38862852,38928388,38993925,39059461,39124997,63700994,64159745,67371010,67436546,67502082,67567620,67633154,154927114,154992642,166199297],"log":[8519681,21626881,38600705,39387137,39452673,39583745,39649281,42991617,43843585,59637761,64225281,71303169,75104257,75169793,76939265,77266945,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473602,88539137,88604673,88670209,88735745,88801281,88866817,88932353,97517569,97845251,103022593,103874561,132251649,148897793,149946369,154927105,155123713,155189249,156958721,157286401,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,173539331,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"logging":[8519681,38600705,63700993,64028673,64094210,64159745,83820547,131858433,131923969,131989505,154927106,155123713,155582465,166199300,170983425],"level":[8519683,27983878,35717126,38666241,38731778,38797314,67567618,74514434,86507522,95879174,140247042,140312578,154206210,154927107,168886274],"loginaction":[10813443,43646983,43712519,43778055,43843591,59572225,64094210,69402634,77266947,103743490,103809026,103874562,103940098,104005634,104071170,148897793,155582465,157286416,157548545,173539329],"logoffaction":[10878979,21626881,43909126,59703297,64094210,77332483,104136706,157351946,157548545,171048961],"leaveevent":[17235971,54394887,64159747,83689475,166068234,168296450,170852357],"linkevent":[17301507,54460423,64159747,83755011,163774466,166133770,170917893],"logchannelevent":[17367043,54525959,64159746,83820547,131858434,131923970,131989506,166199306,166264833,170983429],"login":[21626884,40370177,43712515,43778049,43843585,59572231,59637768,60227586,60293122,64028673,64094211,64159745,68091905,69402629,71303173,77266946,88080385,103743489,104005633,146866177,155582465,157286409,157876225,160628737,164888577,171048965],"logs":[21626881,39387137,39452673,39583745,39649281,59572225,67764226,67829762,71303169,155123714,155189250,171048961],"logoff":[21626881,59703301,75169793,77332481,80281601,88080385,97910785,104136705,113639426,146866177,155189249,157351937,162529281,171048962],"lower":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,62062594,86507521,140443649,168886273,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"lookup":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062594,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"lines":[22282241,24248326,24576001,61669383,64225281,72155137,86638593,88539137,89456646,140640257,148963329,151453697,169017345,173604866,173735937],"longer":[22872065,63569921,64028673,64094209,64159745,155189249,169869313,174391297,174981121],"long":[25559044,25624580,26476548,26542084,26607620,26673156,27131908,27197444,30932996,30998532,32768004,32833540,32899076,32964612,33685508,33751044,62521348,85524481,88080385,92864520,94175240,94765064,96010248,97714184,112590856,114425864,114556936,114688008,114753544,115212296,115539976,125108232,125501448,132841480,135331848,136511489,137494536,137756680,138215432,139395080,141426696,141557768,141623304,142016520,142147592,142278664,142409736,142475272,142606344,142671880,142737416,142802952,142999560,143065096,143130632,143196168,143327240,143392776,143523848,143589384,143654920,147456001,148242440,167903233,171048961],"ludicrous":[25559041,25624577,30932993,30998529,72876033,92864513,152436737],"listen":[28639233,28770306,72351745,91291649,151781377],"let":[28835845],"loggin":[39124993,154927105],"logfactory":[39124993,154927105],"logout":[39649281],"lists":[40894465,64094210,155844610,155910145],"locks":[41091073,41156609,68354050,155975682],"local":[43450369,69271553,77135873,83230721,103481345,129695745,157155330,165609473],"lot":[45350913,64094209,77856769,106037249,157876226],"listens":[60227585,60293121],"labels":[63832065,153944065],"logged":[64028678,64094210,64159750,80216065,80281602,80609281,80674817,80805895,113311745,113442818,113639425,114819073,114950145,115146754,115212290,115343363,155123713,155189249,159645697,159711234,160038913,160104450,162463746,162529284,162856962,162922499,163053575],"listening":[64028673,64159745,159973377,162791425],"leaves":[64028680,64159750,160366593,161153025,161284097,161808385,163184641,165347329,166068225,166461441,166789121,168165377,170852353,171376641,171507713,172556289],"leaveeventhandler":[64028673,170852357],"leave":[64028673,77135873,103481345,157155329,170852353],"linkeventhandler":[64028673,170917893],"linked":[64028673,64159745,64225281,81526785,83755009,87359489,87621633,123863041,144900098,163774465,166133762,169738241,170000385,170917889,173998081],"logchanneleventhandler":[64028673,170983429],"logchannel":[64028673,170983425],"lets":[64094209,155320321],"like":[64094210,72155137,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89325569,150011905,151453697,159186946,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"listed":[64094209,159514625],"lost":[64159745,88080386,146735105,146866177,165281793,171048962],"links":[64159745,169213953],"lazily":[64225281,173735937],"looking":[64225281,173998081],"lastreply":[71892993,89260037,151060481],"localaddress":[72220673,74973185,83165185,90505222,96796678,129368070,151584769,154861569,165543937],"localport":[72220673,74973185,90570758,96862214,151584769,154861569],"loaded":[74842113,96337921,154664961],"lastcall":[80150530,85983234,86048769,86114305,86179842,86245378,86310914,86376450,86441986,112459777,112590853,137756677,138215429,139329537,139395077,162398210,168361986,168427521,168493057,168558594,168624130,168689666,168755202,168820738],"location":[80150531,85983235,86048769,86114307,86179843,86245380,86310915,86376451,86441987,112525313,112656389,113180673,138280965,139067393,139722753,162398211,168361987,168427521,168493059,168558595,168624132,168689667,168755203,168820739],"loginchan":[80216065,80281601,80609281,113377286,113508358,114884614,162463745,162529281,162856961],"logintime":[80281601,80674817,113573894,115015686,162529281,162922497],"loggedinchan":[80805889,115146757,163053569],"loggedintime":[80805889,115212293,163053569],"loopback":[81002497,87949313,115802113,146210817,163250177,170328065],"lastapplication":[81723393,125632518,164102145],"lastdata":[81723393,125698054,164102145],"locked":[82313217,127336454,164691969],"localstationid":[83230721,129695749,165609473],"localdropped":[83558401,130613254,165937153],"localjbdelay":[83558401,130678790,165937153],"localjitter":[83558401,130744326,165937153],"locallosspercent":[83558401,130809862,165937153],"localooo":[83558401,130875398,165937153],"localreceived":[83558401,130940934,165937153],"localtotallost":[83558401,131006470,165937153],"lagged":[85393409,85524482,135987201,136445953,136511489,167772161,167903234],"listitems":[85458945,87162881,136183813,143917062,167837697,169541633],"lastsr":[86900737,141688838,169279489],"lostpackets":[87031809,87097345,142999558,143392774,169410561,169476097],"listcontexts":[87162881,143785990,169541633],"listextensions":[87162881,143851526,169541633],"listpriorities":[87162881,143982598,169541633],"localhost":[88080385,146800641,171048961],"likely":[151519233]} \ No newline at end of file +{"link":[1,786436,3604487,6029313,69664773,77463553,77529089,77594625,80150529,80216065,85131265,85196801,87031809,89260033,92864513,93126657,93650945,94568449,129433601,150470661,156762113,156827649,156893185,159973377,160038913,166199297,167510017,169345028,171704322,175308801,175570946,176619524,176750593,179830785],"library":[65537,131073,196610,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"life":[131073],"language":[196609,77725698,86769665,86966273,87097345,95944710,129236997,157155330,169082881,169279489,169541633],"logged":[786438,983041,1048578,1376257,1441794,69599234,69664774,85721089,85786626,86114305,86179841,86310919,118816769,118947842,119144449,120324097,120455169,120651778,120717314,120848387,160694273,160759809,168034306,168099844,168427522,168493059,168624135,176619526],"listening":[786433,1310721,69664769,168361985,176619521],"leaves":[786440,1769473,2359297,2490369,3014657,3538945,3801089,3932161,4915201,69664774,168755201,170917889,171638785,172032001,172359681,173735937,176619528],"leave":[786434,3538950,82640897,108986369,162725889,176619522],"linked":[786433,3604481,69664769,69730305,87031809,89260033,92864513,93126657,129433601,150470658,169345025,171704322,175308801,175570945,176619521,179568641],"logchannel":[786434,3670022,176619522],"logging":[786433,3670017,14024705,44105729,69206017,69599234,69664769,89325571,137428993,137494529,137560065,160497666,160694273,161153025,171769860,176619521],"longer":[786433,5963777,28377089,69074945,69599233,69664769,160759809,175439873,176619521,180551681],"leaveeventhandler":[3538951,69533697,176422918],"leaveevent":[3538945,22740995,59899911,69664771,89194499,171638794,173867010,176422917],"linkeventhandler":[3604487,69533697,176488454],"linkevent":[3604481,22806531,59965447,69664771,89260035,169345026,171704330,176488453],"logchanneleventhandler":[3670023,69533697,176553990],"logchannelevent":[3670017,22872067,60030983,69664770,89325571,137428994,137494530,137560066,171769866,171835393,176553989],"line_separator":[6422529,8716293,156565505],"line":[6422529,8716289,10747907,13959170,27787266,30932995,43057155,54263809,67174402,69337091,69599235,69730307,92733441,93323265,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,149749766,151519238,155582465,156565505,157220867,157548547,160432130,161284098,164757505,175177729,175767553,179109889,179175427,179240961,179306500,179372033,179437569,179503105,179568641],"logic":[6815745,9961473,176619521],"literal":[7536641,7602177,7667713,7733249,7798785,7864321,8060929,8519681,8585217,8716289,9437185,9502721,9568257,9633793,9699329,9764865],"list":[10092549,29753351,29884421,29949957,30081029,41943047,42336261,42401800,69402625,69599235,69861377,69926913,69992450,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679426,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,94044161,154140678,154533896,157024257,160104450,161284097,163512321,164495361,179175425],"listner":[10747908,30212097,30277633,30343169,30408705,69337089,70057988,157220868,157614081],"lack":[10747906,31719425,31784962,37945345,69337089,70516738,157220866,158531585],"label":[10747905,33161223,40566790,70975489,79757315,100794374,100859905,157220865,159514627],"load":[13434881,13631489,13697025,13828097,41549830,41811976,42139656,42598408,80347137,101842945,159907841,160104449,160169985,160235521,160301057],"loadmappings":[13762561,42336264,160235521],"logger":[14024709,43319300,43384836,43450373,43515909,43581444,43646980,43712517,43778053,43843588,43909124,43974661,44040197,44105736,44171277,44236808,44302344,44367876,44433412,44498949,44564485,44630021,69206018,69664769,72876034,72941570,73007106,73072644,73138178,160497674,160563202,171769857],"log":[14024705,27131905,44105729,44892161,44957697,45088769,45154305,48496641,49348609,65142785,69730305,76808193,80609281,80674817,82444289,82771969,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978626,94044161,94109697,94175233,94240769,94306305,94371841,94437377,103022593,103350275,108527617,109379585,137822209,154468353,155516929,160497665,160694273,160759809,162529281,162856961,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,179109891,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"level":[14024707,33488902,41222150,44171265,44236802,44302338,73072642,80019458,92012546,101384198,145817602,145883138,159776770,160497667,174456834],"loginaction":[16318467,49152007,49217543,49283079,49348615,65077249,69599234,74907658,82771971,109248514,109314050,109379586,109445122,109510658,109576194,154468353,161153025,162856976,163119105,179109889],"logoffaction":[16384003,27131905,49414150,65208321,69599234,82837507,109641730,162922506,163119105,176619521],"login":[27131908,45875201,49217539,49283073,49348609,65077255,65142792,65732610,65798146,69533697,69599235,69664769,73596929,74907653,76808197,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771971,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,93585409,109248513,109510657,110100481,152436737,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153026,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856970,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446786,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,170459137,176619525],"logs":[27131905,44892161,44957697,45088769,45154305,65077249,73269250,73334786,76808193,160694274,160759810,176619521],"logoff":[27131905,65208325,80674817,82837505,85786625,93585409,103415809,109641729,119144450,152436737,160759809,162922497,168099841,176619522],"lower":[27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,67567618,92012545,146014209,174456833,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"lookup":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567618,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"lines":[27787265,29753350,30081025,67174407,69730305,77660161,92143617,94044161,94961670,146210817,154533889,157024257,174587905,179175426,179306497],"long":[31064068,31129604,31981572,32047108,32112644,32178180,32636932,32702468,36438020,36503556,38273028,38338564,38404100,38469636,39190532,39256068,68026372,91029505,93585409,98369544,99680264,100270088,101515272,103219208,118095880,119930888,120061960,120193032,120258568,120717320,121045000,130678792,131072008,138412040,140902408,142082049,143065096,143327240,143785992,144965640,146997256,147128328,147193864,147587080,147718152,147849224,147980296,148045832,148176904,148242440,148307976,148373512,148570120,148635656,148701192,148766728,148897800,148963336,149094408,149159944,149225480,153026561,153813000,173473793,176619521],"ludicrous":[31064065,31129601,36438017,36503553,78381057,98369537,158007297],"listen":[34144257,34275330,77856769,96796673,157351937],"let":[34340869],"loggin":[44630017,160497665],"logfactory":[44630017,160497665],"logout":[45154305],"lists":[46399489,69599234,161415170,161480705],"locks":[46596097,46661633,73859074,161546242],"local":[48955393,74776577,82640897,88735745,108986369,135266305,162725890,171180033],"lot":[50855937,69599233,83361793,111542273,163446786],"listens":[65732609,65798145],"labels":[69337089,159514625],"lets":[69599233,160890881],"like":[69599234,77660161,78577665,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94830593,98762753,110100481,155582465,157024257,158203905,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757507,164823041,164888577,164954113,165019649,165085185,165150721,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"listed":[69599233,165085185],"lost":[69664769,93585410,152305665,152436737,170852353,176619522],"links":[69664769,174784513],"lazily":[69730305,179306497],"looking":[69730305,179568641],"lastreply":[77398017,94765061,156631041],"localaddress":[77725697,80478209,88670209,96010246,102301702,134938630,157155329,160432129,171114497],"localport":[77725697,80478209,96075782,102367238,157155329,160432129],"loaded":[80347137,101842945,160235521],"lastcall":[85655554,91488258,91553793,91619329,91684866,91750402,91815938,91881474,91947010,117964801,118095877,143327237,143785989,144900097,144965637,167968770,173932546,173998081,174063617,174129154,174194690,174260226,174325762,174391298],"location":[85655555,91488259,91553793,91619331,91684867,91750404,91815939,91881475,91947011,118030337,118161413,118685697,143851525,144637953,145293313,167968771,173932547,173998081,174063619,174129155,174194692,174260227,174325763,174391299],"loginchan":[85721089,85786625,86114305,118882310,119013382,120389638,168034305,168099841,168427521],"logintime":[85786625,86179841,119078918,120520710,168099841,168493057],"loggedinchan":[86310913,120651781,168624129],"loggedintime":[86310913,120717317,168624129],"loopback":[86507521,93454337,121307137,151781377,168820737,175898625],"linkedid":[86769665,86966273,87097345,129302533,169082881,169279489,169541633],"lastapplication":[87228417,131203078,169672705],"lastdata":[87228417,131268614,169672705],"locked":[87818241,132907014,170262529],"localstationid":[88735745,135266309,171180033],"localdropped":[89063425,136183814,171507713],"localjbdelay":[89063425,136249350,171507713],"localjitter":[89063425,136314886,171507713],"locallosspercent":[89063425,136380422,171507713],"localooo":[89063425,136445958,171507713],"localreceived":[89063425,136511494,171507713],"localtotallost":[89063425,136577030,171507713],"lagged":[90898433,91029506,141557761,142016513,142082049,173342721,173473794],"listitems":[90963969,92667905,141754373,149487622,173408257,175112193],"lastsr":[92405761,147259398,174850049],"lostpackets":[92536833,92602369,148570118,148963334,174981121,175046657],"listcontexts":[92667905,149356550,175112193],"listextensions":[92667905,149422086,175112193],"listpriorities":[92667905,149553158,175112193],"loopstart":[93454338,151912450,175898626],"localhost":[93585409,152371201,176619521],"likely":[157089793]} \ No newline at end of file diff --git a/docs/fti/FTI_109.json b/docs/fti/FTI_109.json index d2cec71..f407bb3 100644 --- a/docs/fti/FTI_109.json +++ b/docs/fti/FTI_109.json @@ -1 +1 @@ -{"members":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,45875201,46596102,64094209,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118914,78184449,78249985,78315521,78381058,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983234,86048770,86114306,86179842,86245377,86310914,86376450,86441986,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,106561537,107675654,112984065,138018817,138608641,139657217,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138370,158203905,158269441,158334977,158400514,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160497665,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361986,168427522,168493058,168558594,168624129,168689666,168755202,168820738,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"manager":[655361,720897,786433,851969,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,3670019,3735554,3801090,3866626,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456450,4521987,4587523,4653059,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626883,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714820,39780354,39845892,39911426,39976976,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763396,40828932,40894467,40960004,41025538,41091074,41156611,41222146,41287684,41353218,41418756,41484290,41549827,41615362,41680899,41746434,41811971,41877506,41943044,42008578,42074114,42139650,42205186,42270723,42336258,42401794,42467330,42532866,42598404,42663938,42729474,42795010,42860546,42926082,42991619,43057154,43122692,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712517,43778051,43843587,43909122,43974658,44040194,44105730,44171266,44236804,44302338,44367876,44433410,44498948,44564482,44630018,44695554,44761090,44826626,44892164,44957700,45023235,45088772,45154307,45219842,45285381,45350914,45416452,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006279,46071810,46137346,46202882,46268418,46333954,46399490,46465029,46530562,46596102,46661634,46727170,46792706,46858243,46923778,46989315,47054852,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775748,47841282,47906820,47972354,48037891,48103428,48168962,48234498,48300035,48365572,48431107,48496644,48562181,48627718,48693255,48758786,48824322,48889860,48955397,49020933,49086466,49152004,49217538,49283075,49348610,49414147,49479682,49545219,49610756,49676290,49741826,49807362,49872898,49938435,50003973,50069508,50135043,50200580,50266115,50331653,50397189,50462722,50528261,50593797,50659333,50724867,50790405,50855941,50921477,50987013,51052549,51118085,51183621,51249157,51314693,51380229,51445765,51511301,51576837,51642373,51707909,51773445,51838981,51904517,51970053,52035589,52101122,52166661,52232197,52297733,52363269,52428805,52494341,52559877,52625413,52690949,52756485,52822021,52887557,52953093,53018629,53084165,53149701,53215237,53280773,53346309,53411845,53477381,53542917,53608453,53673989,53739525,53805058,53870597,53936133,54001669,54067205,54132741,54198277,54263813,54329349,54394885,54460421,54525957,54591490,54657026,54722562,54788098,54853635,54919173,54984709,55050245,55115781,55181317,55246853,55312389,55377925,55443461,55508997,55574533,55640069,55705605,55771141,55836677,55902213,55967749,56033285,56098821,56164357,56229893,56295429,56360965,56426501,56492037,56557573,56623109,56688645,56754181,56819717,56885253,56950787,57016325,57081859,57147395,57212931,57278467,57344003,57409539,57475077,57540613,57606149,57671685,57737221,57802757,57868293,57933829,57999365,58064901,58130437,58195973,58261509,58327045,58392581,58458117,58523653,58589189,58654725,58720262,58785797,58851333,58916869,58982405,59047939,59113475,59179017,59244555,59310084,59375620,59441156,59506690,59572229,59637763,59703298,59768835,59834375,59899920,59965447,60030985,60096521,60162050,60227587,60293124,60358659,60424196,60489733,60555268,60620803,60686340,60751875,60817410,60882947,60948487,61014023,61079565,61145091,61210626,61276163,61341703,61407239,61472770,61538306,61603842,61669380,61734914,61800450,61865986,61931522,61997059,62062594,62128131,62193666,62259202,62324740,62390274,62455811,62521347,62586884,62652418,62717954,64028675,64094214,64159749,64225282,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140482,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303171,71368705,71434241,71499777,71565313,71630849,71696385,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266947,77332481,77398017,77463553,77529090,77594626,77660162,77725697,77791233,77856769,77922305,77987841,78053378,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167490,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691778,79757315,79822851,79888387,79953923,80019459,80084995,80150531,80216067,80281603,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296259,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048772,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638596,86704132,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014849,88080388,88145921,88211457,88276993,88342529,88408065,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997889,89063425,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107395,98172931,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221507,99287042,99352578,99418114,99483650,99549187,99614723,99680259,99745795,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270083,100335619,100401155,100466691,100532227,100597763,100663299,100728835,100794371,100859907,100925443,100990979,101056515,101122051,101187587,101253123,101318659,101384195,101449731,101515267,101580803,101646339,101711875,101777411,101842947,101908483,101974019,102039555,102105091,102170626,102236162,102301699,102367234,102432770,102498307,102563842,102629378,102694915,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005635,104071171,104136706,104202242,104267778,104333314,104398850,104464387,104529923,104595459,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692611,106758147,106823683,106889219,106954755,107020291,107085826,107151362,107216898,107282434,107347971,107413507,107479043,107544579,107610115,107675651,107741187,107806723,107872259,107937794,108003330,108068866,108134403,108199939,108265475,108331011,108396546,108462082,108527618,108593154,108658691,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510659,109576195,109641730,109707266,109772802,109838338,109903874,109969411,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017987,111083522,111149058,111214594,111280130,111345666,111411202,111476739,111542274,111607810,111673346,111738883,111804419,111869955,111935491,112001026,112066563,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377283,113442818,113508355,113573891,113639426,113704963,113770499,113836035,113901570,113967106,114032643,114098179,114163715,114229251,114294787,114360323,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884611,114950146,115015683,115081218,115146754,115212290,115277826,115343362,115408898,115474435,115539971,115605507,115671043,115736579,115802114,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863042,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960194,126025731,126091267,126156802,126222339,126287874,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598594,127664130,127729666,127795202,127860738,127926275,127991810,128057346,128122882,128188418,128253954,128319491,128385027,128450562,128516098,128581635,128647170,128712706,128778243,128843779,128909315,128974851,129040386,129105922,129171458,129236994,129302531,129368067,129433603,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661826,131727362,131792898,131858434,131923970,131989506,132055043,132120578,132186114,132251650,132317186,132382722,132448259,132513794,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103618,133169154,133234690,133300226,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824514,133890051,133955586,134021122,134086658,134152194,134217731,134283266,134348802,134414338,134479874,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004162,135069698,135135234,135200770,135266306,135331842,135397379,135462914,135528450,135593987,135659522,135725059,135790595,135856131,135921667,135987202,136052739,136118275,136183810,136249346,136314882,136380418,136445954,136511490,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412035,138477570,138543107,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705795,140771330,140836866,140902402,140967939,141033474,141099010,141164546,141230082,141295618,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244738,144310275,144375810,144441347,144506882,144572418,144637954,144703490,144769027,144834563,144900098,144965635,145031170,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555458,145620994,145686530,145752067,145817603,145883139,145948675,146014211,146079746,146145282,146210818,146276354,146341891,146407427,146472963,146538499,146604034,146669570,146735106,146800642,146866178,146931714,146997251,147062786,147128323,147193858,147259394,147324930,147390466,147456002,147521538,147587075,147652611,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307971,148373507,148439043,148504578,148570115,148635651,148701187,148766723,148832259,148897795,148963330,149028867,149094403,149159939,149225475,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749763,149815298,149880834,149946370,150011906,150077442,150142978,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,155058180,155123716,155189252,155254791,155320325,155385861,155451397,155516933,155582470,155648004,155713540,155779077,155844613,155910149,155975685,156041221,156106757,156172293,156237829,156303365,156368901,156434437,156499973,156565509,156631045,156696581,156762117,156827654,156893188,156958726,157024260,157089797,157155332,157220868,157286408,157351940,157417477,157483013,157548605,157614099,157679624,157745156,157810695,157876228,157941767,158007301,158072838,158138372,158203909,158269444,158334981,158400517,158466052,158531589,158597125,158662665,158728196,158793732,158859268,158924807,158990343,159055879,159121412,159186951,159252484,159318020,159383556,159449092,159514631,159580164,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563204,160628739,160694276,160759812,160825348,160890884,160956420,161021956,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546244,161611779,161677315,161742851,161808387,161873924,161939461,162005003,162070537,162136073,162201616,162267151,162332681,162398223,162463751,162529287,162594823,162660360,162725896,162791432,162856967,162922503,162988040,163053576,163119110,163184646,163250182,163315719,163381255,163446791,163512329,163577864,163643400,163708936,163774472,163840003,163905539,163971080,164036617,164102150,164167687,164233223,164298760,164364296,164429832,164495368,164560904,164626440,164691976,164757512,164823048,164888583,164954122,165019656,165085191,165150727,165216264,165281799,165347334,165412871,165478407,165543943,165609480,165675015,165740550,165806087,165871623,165937159,166002695,166068231,166133767,166199302,166264896,166330376,166395911,166461447,166526984,166592519,166658055,166723592,166789126,166854663,166920199,166985735,167051271,167116807,167182342,167247879,167313414,167378951,167444488,167510024,167575559,167641097,167706631,167772167,167837706,167903238,167968775,168034311,168099847,168165383,168230920,168296458,168361991,168427529,168493063,168558599,168624135,168689671,168755207,168820743,168886280,168951816,169017351,169082889,169148422,169213978,169279495,169345031,169410567,169476103,169541639,169607175,169672713,169738248,169803783,169869319,169934855,170000391,170065927,170131463,170196999,170262537,170328072,170393603,170459140,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048968,171114499,171180036,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835396,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425220,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539335,173604870,173670406,173735941,173801478,173867014,173932549,173998092,174063620,174129155,174194692,174260228,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515],"managerexception":[786435,21692419,60358663,60424199,64028674,71565318,88145923,171180044],"minus_separator":[917505,3276806,150994945],"maintain":[983042,3538945,3604481,151781378],"managerconnection":[1310723,3473412,4456450,4521987,21626883,50003974,50331654,50397190,50528263,50593798,50659334,50724870,50790406,50855942,50921478,50987014,51052550,51118086,51183622,51249158,51314694,51380230,51445766,51511302,51576838,51642374,51707910,51773446,51838982,51904518,51970054,52035590,52166662,52232198,52297734,52363270,52428806,52494342,52559878,52625414,52690950,52756486,52822022,52887558,52953094,53018630,53084166,53149702,53215238,53280774,53346310,53411846,53477382,53542918,53608454,53673990,53739526,53870599,53936134,54001670,54067206,54132742,54198278,54263814,54329350,54394886,54460422,54525958,54853639,54919174,54984710,55050246,55115782,55181318,55246854,55312390,55377926,55443462,55508998,55574534,55640070,55705606,55771142,55836678,55902214,55967750,56033286,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950790,57016326,57081862,57147398,57212934,57278470,57344006,57409542,57475078,57540614,57606150,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58785798,58851334,58916870,58982406,59179013,59244550,59310084,59375620,59441156,59506690,59572226,59637762,59703298,59768835,59834372,59899910,59965444,60030981,60096517,60162054,60227590,60293127,60489734,61079560,64028674,64159745,71041025,71106561,71172097,71237634,71303170,71368706,71434242,71499781,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080388,132382728,146538499,146604034,146669570,146735107,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652611,162004993,162070529,162136065,162201602,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543938,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131459,170196993,170262529,170328065,171048972],"managerresponse":[1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835011,4653059,22085638,22151174,22216710,22282246,22347782,22413318,22478854,22544388,59113477,59834373,59965445,61014025,61341705,62062595,62128131,62193666,62259202,62324740,62390279,62455816,64028674,64094210,64225281,71696390,88473608,88539144,88604680,88670216,88735752,88801288,88866824,88932355,148635655,148832262,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,157614081,157679617,161939457,170721281,173539348,173604884,173670420,173735956,173801492,173867028,173932564,173998093,174260225],"mailboxcountresponse":[1638403,22347779,61800454,64225282,88735747,149356546,149422082,149487618,157417473,173801482,173998081],"mailboxstatusresponse":[1703939,22413315,61865990,64094210,64225282,88801283,149553154,149618690,157417473,157483010,173867018,173998081],"managererror":[1769475,22478851,61931527,61997064,64094210,64225281,71630854,88866819,156827649,157286402,173932555,173998081],"missing":[1900545,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3145729,3276801,3342337,3407873,3473409,3670017,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4521985,4587521,4653057,22937603,23003140,23068675,23134209,23199746,23527426,23592962,23658498,23724033,24117250,24248321,24313859,24379394,24444931,24510466,25165825,25427970,25755649,26148866,27262979,27328513,27394050,27459585,27525121,27590657,27656193,28180482,28246017,28311553,28377089,28508161,28573700,28704769,28835845,28901378,28966915,29032450,29163522,29294594,29491202,29949954,30146562,30343170,30474242,30605314,30801922,31064066,31260674,31457282,31588354,31784962,31916034,32112642,32243713,32309250,32505858,32702466,32768001,33030146,33226754,33423362,33619970,33816578,33947650,34078722,34209794,34340866,34471938,34603010,34734082,34930690,35127298,35192833,35258370,35520514,35586049,35651586,35782658,35979267,36044801,36241411,36306945,36438017,36503553,36569091,36634625,36765697,36831235,36896771,37027843,37093377,37224449,37289986,37355521,37421059,37814274,37879810,37945347,38010883,38076418,38141954,38207491,38273027,38338562,38404098,38469635,38535171,38666243,38862850,38928386,38993923,39059459,39714818,39845890,39976974,40763394,40828930,40894465,40960002,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,42598402,43122690,44236801,44367873,44498946,44892162,44957698,45023233,45088770,45154305,45285379,45416450,46006277,46465027,46596100,46858241,46989313,47054850,47775746,47906818,48037889,48103426,48300033,48365570,48431105,48496642,48562179,48627716,48693253,48889858,48955395,49020931,49152002,49283073,49414145,49545217,49610754,50003969,50069506,50135041,50200578,50266113,50331649,50397185,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720260,58785793,58851329,58916865,58982401,59047937,59179011,59244548,59310082,59375618,59441154,59768833,59834370,59899908,59965442,60030979,60096515,60293121,60489729,60555266,60620801,60686338,60751873,60882945,60948482,61014018,61079555,61276161,61341698,61407234,61669378,61997057,62128129,62324738,62455809,62521345,62586882,63504385,89391105,89456641,89718785,89784321,89849857,89915393,89980929,90046465,90243073,90505217,90570753,90701825,90767361,90832897,90898433,91226113,91488257,91553793,93257729,96206849,96272385,96534529,96600065,96665601,96796673,96862209,96927745,96993281,97058817,97124353,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99549185,99614721,99680257,99745793,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102301697,102498305,102694913,104529921,104595457,106692609,106758145,106823681,106889217,106954753,107020289,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,108134401,108199937,108265473,108331009,108658689,109510657,109576193,111476737,111738881,111804417,111869953,111935489,112066561,113377281,113508353,113573889,113704961,113770497,113836033,114032641,114098177,114163713,114229249,114294785,114360321,114884609,115015681,115474433,115539969,115605505,115671041,115736577,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,126025729,126091265,126222337,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127926273,128319489,128385025,128581633,128778241,128843777,128909313,128974849,129302529,129368065,129433601,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133890049,134217729,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135397377,135593985,135725057,135790593,135856129,135921665,136052737,136118273,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,138543105,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144310273,144441345,144769025,144834561,144965633,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145752065,145817601,145883137,145948673,146014209,146341889,146407425,146472961,146538497,147652609,148307969,148373505,148439041,148570113,148635649,148701185,148766721,148832257,149028865,149094401,149159937,149225473,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150994945,151388161,151519234,151781377,151846913,151912449,151977985,154337281,154664961,154861569,154992641,155385857,155451393,155516929,155779073,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,158072833,158203905,158334977,158400513,158531585,158597121,160497665,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161546241,161873921,162070529,162201601,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163840001,163905537,163971073,164036609,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,165412865,165543937,165871617,165937153,166330369,166526977,166723585,166854657,166920193,166985729,167051265,167116801,167444481,167968769,168034305,169279489,169345025,169410561,169476097,169541633,169803777,170196993,170459137,171835393,172425217,173670401,174063617,174194689],"mutable":[1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057],"moved":[3473412,64159745,166264833],"methods":[4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,63373313,63438849,63766529,64159745,88080385,147456001,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650306,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,170721281,171048962,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"memberwiseclone":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"maximum":[5242883,25624578,26214402,26279938,28639233,28770305,30998529,32374785,32440321,63832068,64094209,64159745,64749569,65011714,72351745,72876034,73334785,86507521,88080385,91422721,92798978,93847553,140115970,147390465,151650307,151781377,152436739,152829953,152895489,152961026,155058177,163774465,168886273,171048961],"method":[5242881,8519683,12713985,21561345,22806530,22937601,23134209,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690114,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28180481,28311553,28377089,28901377,28966913,29032449,29163521,29294593,29491201,29556737,29622273,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36044801,36241409,36306945,36569089,36634625,36831233,36896769,37027841,37093377,37289985,37355521,37486593,37552129,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666242,38731778,38797315,38862849,38928385,38993921,39059457,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45088769,45154305,45416449,47054849,47775745,47906817,48103425,48365569,48431105,48496641,48562177,48627713,48693249,48758786,49610753,50069505,50135041,50200577,50266113,52101121,54591489,54657025,54722561,58720257,59047937,59113474,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60555265,60620801,60686337,60751873,60882945,60948481,61014017,61145089,61276161,61341697,61669377,62062593,62128129,62193665,62259201,62324737,62521345,62586881,62783489,62849025,62914561,63045633,63111171,63176705,63504385,63569921,63635457,63897601,64094209,64552961,64618497,64684033,64749569,64815106,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65732609,67371009,67436545,67502081,67567619,67633153,70582274,71237633,71303169,71368705,71434241,71761921,71958529,72024065,72089601,74645505,74711041,79167489,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080386,88145921,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,109969409,132055041,146604033,146669569,149749761,151191553,151257089,151322625,151650305,154402817,154468353,154533889,154927107,159186947,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170721281,171048962,171180033,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174260225,174915586,174981121],"music":[5242883,26083330,27787265,34799618,34865156,63832066,64946178,66912260,74186754,95223812,151650307,153812993,153878535],"milliseconds":[5242883,21626881,22609921,25559041,25624577,26214402,26279938,28049410,30932993,30998529,32047105,32374785,32440321,35913729,59637761,59965441,60096513,62521345,63832068,65011714,71368705,72876033,73203713,73269249,73334785,74579969,75104257,77791233,88080389,92864513,93388801,93454337,93847553,96010241,97714177,105709569,146604033,146669569,147193857,147259393,147456001,151650307,152436737,152829954,152895490,152961026,154271746,155123713,157810689,171048966,174063617],"maxsilence":[5242884,26214402,26279943,32440325,63832066,65011716,151650308,152961026],"message":[5242882,8519683,23330823,23396359,23527430,27983880,35717126,38666241,38731778,38797314,39911425,39976961,46006278,49807367,49872903,49938439,60358663,60424199,62717959,62980097,63832066,64094209,64225281,64290817,64421890,67567618,67895298,70975490,71565314,71958530,72024066,72089602,74514434,74645506,74711042,78184449,79626242,79691778,86704129,88145922,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,89063426,95944710,106889222,140902405,149880838,151191556,151257090,151322626,151650306,154206212,154402818,154468354,154927107,155385858,157286401,158203905,160628740,161939459,169082881,171180036,173539330,173604866,173670402,173735938,173801474,173867010,173932547,173998082,174260227,174850050],"mappingstrategies":[8126465,8192001,8257537,36241413,36306947,36372482,36438020,36503555,36569093,36634627,36700162,36765699,36831237,36896776,36962306,63897601,67174401,67239937,74776577,74842113,96206851,96272387,96337922,96403458,96468994,154533891,154599427,154664964,154730500],"mappingstrategy":[8323075,23199749,28508166,28573702,28704774,37027845,37093379,37158919,37224456,63766530,63897602,67305478,72351746,74907651,91357191,96534531,151781378,154533889,154599425,154730508],"messagelevel":[8519682,38666254,38731787,38797323,63700993,67567618,154927106,154992646],"manageraction":[8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075587,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,21626885,44498948,44564486,59179017,59244554,59834376,59899914,59965448,61407239,64094210,64159745,64225281,71237634,71368707,75038724,75104260,75169796,75235332,75300868,75366404,75431940,75497476,75563012,75628548,75694084,75759620,75825156,75890692,75956228,76021764,76087300,76152836,76218372,76283908,76349444,76414980,76480516,76546052,76611588,76677124,76742660,76808196,76873732,76939268,77004804,77070340,77135876,77201412,77266948,77332484,77398020,77463556,77529091,77594628,77660164,77725700,77791236,77856772,77922308,77987844,78053380,78118916,78184452,78249988,78315524,78381060,78446596,78512132,78577668,78643204,78708740,78774276,78839812,78905348,78970884,79036420,79101956,79167492,79233028,79298564,79364100,79429636,79495172,79560708,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835202,87293954,87359490,87883778,87949314,88080386,104464386,104529923,104595459,104660994,141230081,141295617,146407430,147456002,148307975,148701191,155058186,155123722,155189258,155254790,155320330,155385866,155451402,155516938,155582474,155648010,155713546,155779082,155844614,155910150,155975690,156041226,156106762,156172298,156237834,156303370,156368906,156434442,156499978,156565514,156631050,156696586,156762122,156827654,156893194,156958730,157024266,157089798,157155338,157220874,157286410,157351946,157417482,157483018,157548555,157614091,157679626,157745162,157810694,157876234,157941766,158007306,158072842,158138378,158203914,158269450,158334986,158400522,158466058,158531594,158597130,158662662,158728202,158793738,158859274,158924806,158990342,159055878,159121418,159186950,159252490,159318026,159383562,159449098,159514630,159580170,162988034,163053570,164495362,164626434,165019650,167444482,167510018,167641090,167772162,167837698,168230914,168427522,168886274,168951810,169213955,169672706,169738242,170262530,170328066,171048967,173998081],"manageractionevent":[8781825,9371649,9437185,10354689,11141123,11337729,11468801,12189697,12451841,12517377,12582913,13041665,21626882,44236803,44302342,60030985,60096521,61079560,64094210,71434242,77594627,155254790,155844614,155910150,156827654,157548545,157614091,157810694,157941766,158662662,158924806,158990342,159055878,159514630,171048962],"manageractionresponse":[10616833,11206659,12713985,44367875,44433414,64094210,77660163,157089798,157548545,157679626,159186950],"mailboxcountaction":[10944515,43974663,44040199,64094211,64225281,69468166,77398019,104202242,104267778,157417485,157548545,173801474],"mailboxstatusaction":[11010051,44105735,44171271,64094211,64225281,69533702,77463555,104333314,104398850,157483021,157548545,173867010],"monitoraction":[11272195,44630023,44695559,44761095,44826631,64094210,69599242,77725699,104726530,104792066,104857602,104923138,104988674,157548545,157745168],"manage":[12713985,48758785,70582273,159186945],"managerevent":[13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301506,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168130,21233667,21299203,21364739,21430275,21495811,54591490,54657026,54722562,54788103,54853639,60948487,64159746,71172102,79757320,79822856,79888392,79953928,80019464,80085000,80150536,80216072,80281608,80347144,80412680,80478216,80543752,80609288,80674824,80740360,80805896,80871432,80936968,81002504,81068040,81133576,81199112,81264648,81330184,81395720,81461256,81526792,81592328,81657864,81723400,81788936,81854472,81920008,81985544,82051080,82116616,82182152,82247688,82313224,82378760,82444296,82509832,82575368,82640904,82706440,82771976,82837512,82903048,82968584,83034120,83099656,83165192,83230728,83296264,83361800,83427336,83492872,83558408,83623944,83689480,83755016,83820552,83886083,83951624,84017160,84082696,84148232,84213768,84279304,84344840,84410376,84475912,84541448,84606984,84672520,84738056,84803592,84869128,84934664,85000200,85065736,85131272,85196808,85262344,85327880,85393416,85458952,85524488,85590024,85655560,85721096,85786632,85852168,85917704,85983240,86048776,86114312,86179848,86245384,86310920,86376456,86441992,86507528,86573064,86638600,86704136,86769672,86835208,86900744,86966280,87031816,87097352,87162888,87228424,87293960,87359496,87425032,87490568,87556104,87621640,87687176,87752712,87818248,87883784,87949320,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,162005004,162070544,162136080,162201617,162267153,162332688,162398225,162463760,162529296,162594828,162660364,162725900,162791436,162856976,162922512,162988044,163053580,163119120,163184656,163250192,163315728,163381264,163446800,163512336,163577868,163643404,163708940,163774480,163971084,164036624,164102160,164167696,164233232,164298764,164364300,164429836,164495372,164560908,164626444,164691980,164757516,164823052,164888588,164954128,165019660,165085196,165150732,165216272,165281804,165347344,165412880,165478416,165543952,165609484,165675020,165740560,165806096,165871632,165937168,166002700,166068236,166133771,166199312,166264845,166330380,166395916,166461452,166526988,166592524,166658060,166723596,166789136,166854672,166920208,166985744,167051280,167116816,167182352,167247884,167313424,167378956,167444492,167510028,167575564,167641100,167706636,167772172,167837708,167903248,167968784,168034320,168099852,168165388,168230924,168296464,168361996,168427532,168493068,168558604,168624140,168689676,168755212,168820748,168886284,168951820,169017360,169082892,169148432,169213969,169279504,169345040,169410576,169476112,169541648,169607180,169672716,169738252,169803792,169869328,169934864,170000395,170065932,170131472,170197008,170262540,170328076,171114501],"meetmeendevent":[17498115,54919175,64159745,83951619,162267137,166330378],"meetmejoinevent":[17563651,54984711,64159746,84017155,132579331,132644867,162267137,166395914,171311109],"meetmeleaveevent":[17629187,55050247,64159746,84082691,132710403,132775939,132841475,162267137,166461450,171376645],"meetmemuteevent":[17694723,55115783,64159745,84148227,132907011,162267137,166526986],"meetmestoptalkingevent":[17760259,55181319,64159746,84213763,162267137,166592522],"meetmetalkingevent":[17825795,55246855,64028673,64159746,84279299,132972547,162267137,166658058,171442182],"meetmetalkrequestevent":[17891331,55312391,64159745,84344835,133038083,162267137,166723594],"messagewaitingevent":[17956867,55377927,64159746,84410371,133103618,133169154,133234690,133300226,166264833,166789130,171507717],"mobilestatusevent":[18022403,55443463,64159745,84475907,133365763,133431299,166264833,166854666],"moduleloadreportevent":[18087939,55508999,64159745,84541443,133496835,133562371,133627907,166264833,166920202],"monitorstartevent":[18153475,55574535,64159745,84606979,166264833,166985738],"monitorstopevent":[18219011,55640071,64159745,84672515,166264833,167051274],"md5":[21626882,40304641,59572225,59637761,62783489,64290817,68091905,71303170,75563009,77266945,99876865,103809025,155582466,157286401,171048962,174850049],"managerreader":[21757955,60489735,64028674,171245578],"map":[22282241,61669377,79167489,88670209,109969409,149291009,159186945,173735938],"md5support":[22740995,62783495,62849031,62914562,62980101,64290817,71761922,89128963,150732802,174850056],"messagedigestsupport":[22740994,62783489,62849026,71761922,174850050],"making":[22740993,62914561,174850049],"member":[22937601,23134209,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24313857,24379393,24444929,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28180481,28311553,28377089,28966913,29556737,29622273,36831233,36896769,37289985,37355521,37486593,37552129,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39387137,39452673,44957697,45088769,45744130,45809667,45875204,46137346,46202884,46268419,46333957,46399489,46465025,46727171,48431105,48496641,48562177,48627713,48693249,48758785,50069505,50200577,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60555265,60620801,60686337,60751873,60948481,61145089,61669377,62062593,62128129,62521345,62783489,62849025,62914561,63045633,63176705,63504385,63569921,64028677,64094212,64159751,69730307,69861380,69926914,70057985,78118917,78249989,78446593,78643202,79757313,80150543,80412673,80478209,80543745,83230721,85983246,86048781,86114318,86179856,86245390,86310926,86376463,86441998,86507521,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97255425,97320961,97386497,97517569,97583105,97648641,97714177,97845249,97910785,98107393,98172929,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99287041,99352577,99418113,99483649,99614721,99680257,99745793,99876865,100007937,100073473,100204545,100335617,100401153,100532225,100728833,100859905,100925441,101056513,101122049,101253121,101384193,101515265,101646337,101711873,102039553,102170625,102236161,102367233,102432769,102563841,102629377,102760449,102825985,102891521,103022593,103153665,103219201,103350273,103481345,103546881,103677953,103809025,103874561,103940097,104005633,104071169,104267777,104398849,104529921,104660993,104792065,104857601,104923137,104988673,105054209,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105906177,105971713,106037249,106102785,106364929,106430466,106496003,106561538,106627074,106758145,106823681,106889217,106954753,107020289,107151362,107216900,107282434,107413505,107479041,107544577,107675649,107741185,107806721,107872257,108003329,108068866,108199937,108331009,108462087,108527617,108658689,108724225,108789761,108855297,108920833,109051905,109117441,109182977,109314049,109379585,109445121,109641729,109838337,109969409,110034945,110100481,110166017,110297089,110362625,110493697,110624769,110755841,110952449,111017985,111083526,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394242,112459778,112525313,112590850,112656385,112721922,112787463,112852995,112918530,112984066,113049601,113115137,113180673,113246210,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691138,137756674,137822209,137887751,137953283,138018818,138084354,138149890,138215426,138280961,138346498,138412039,138477570,138543105,138608642,138674177,138739715,138805249,138870785,138936322,139001858,139067393,139132929,139198465,139264002,139329538,139395074,139460609,139526151,139591683,139657218,139722753,139788290,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443650,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148439041,148504577,148570113,148635649,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,151519233,154992641,158138377,158269450,158334978,158466051,158662659,160497665,162004993,162398224,162660353,162725889,162791425,163840001,163905537,165609473,168361999,168427534,168493071,168558609,168624143,168689679,168755215,168820750,168886273,172687361,172752897,172818433,172883969,172949505],"means":[25559042,25624578,30932994,30998530,72876034,92864514,152436738],"maxdigits":[25624581,30867457,30932993,30998534,66060291,72876033,92798981,152436740],"musiconholdclass":[26148870,34865157,74186753,95223813,153878529],"mustoverride":[27262977,28901377,44236801,44367873,104464385],"maybe":[29818881,29884417,35454977],"meaning":[31981569,32178177,66322433,66387969,72155137,77791233,89325569,105709569,151453697,152829953,152895489,157810689],"mode":[35586055,74448900,95748102,95813634,154140677],"mate":[35586049,74448897,95813633,154140674],"msg":[37683205,37879814,37945350,38141958,38207494,38404102,38469638,38928390,38993926],"msgtype":[39976966,75366401,98959366,155385857],"monitoring":[40501249,44695553,44761089,44826625,48300033,64094211,68157441,69599235,70516737,79101953,109838337,155648002,157745156,159121411],"monitored":[40501249,64094209,75628545,100007937,155648002],"mutes":[41222145,41287681,68419586,156041218],"monitor":[41484289,41549825,44695553,44761089,44826625,68550658,77725698,104726529,104792065,156172290,157745154],"mask":[42991618,43843585,69140481,76939265,77266945,103022593,103874561,156958722,157286401],"match":[43778049,43843585,48758791,64094211,64225281,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167490,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,109969409,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186949,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082],"messages":[44040193,44171265,64094210,64225282,69468161,69533697,77463553,84410372,88735746,88801281,104398849,133103617,133169153,133234689,133300225,149422081,149487617,149618689,157417474,157483011,166789124,173801475,173867010],"mailbox":[44040200,44171272,64094210,64225281,69468161,69533697,77398019,77463555,84410374,88735748,88801281,104267783,104398855,133103623,133169153,133234689,133300225,149356550,149422081,149487617,149553157,157417477,157483013,166789126,173801477,173867009],"mailboxnumber":[44040193,44171265,77398017,77463553,104267777,104398849,157417473,157483009],"mix":[44826629,77725697,104988677,157745153],"msec":[45350913,77856769,106102785,157876225],"membername":[45809669,45875205,78118913,79757313,80150529,80412673,80478209,80543745,83230721,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,106430469,111149061,112721925,137822213,138346501,139132933,139460613,158138369,162004993,162398209,162660353,162725889,162791425,165609473,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"makes":[46137345,46202881,46268417,46333953,64094209,69861380,158269445],"make":[46137345,46202883,46268417,46333955,63766529,78249987,107151361,107216898,151650305,158269443],"mapping":[63897602,72351746,91357186,151781378,154533889],"managereventhandler":[64028673,171114501],"meetmejoineventhandler":[64028673,171311109],"meetmejoin":[64028673,171311105],"meet":[64028675,64159749,162267137,166395905,166461441,166592513,166658049,171311105,171376641,171442177],"meetmeleaveeventhandler":[64028673,171376645],"meetmeleave":[64028673,171376641],"meetmetalkingeventhandler":[64028673,171442181],"meetme":[64028673,80019457,83951617,84017153,84082689,84148225,84213761,84279297,84344833,112001029,162267137,166330369,166395905,166461441,166526977,166592513,166658049,166723585,171442177],"messagewaitingeventhandler":[64028673,171507717],"messagewaiting":[64028673,171507713],"matches":[64094209,156827649],"manageractions":[64094210,157614081,157679617],"module":[64094209,64159745,79167489,86704129,110100481,140967941,159186946,166264833,169082881],"membe":[64159746,79757314,80150530,80412674,80478210,80543746,83230722,85983235,86048769,86114306,86179842,86245378,86310915,86376450,86441987,111083521,111149057,112525313,112656385,137822209,138280961,139132929,139460609,162004994,162398210,162660354,162725890,162791426,165609474,168361987,168427521,168493058,168558594,168624130,168689667,168755203,168820740],"mailboxes":[64225281,77463554,88801282,104398850,149553153,149618689,157483010,173867011],"mandatory":[75104258,75628546,77398017,77463553,77725697,78118914,78249985,78446593,78774274,78970881,79101953,79233026,79298561,79364097,79429633,79560705,97517569,97648641,97845249,100007937,100073473,104267777,104398849,104792065,106364929,106627073,107151361,108003329,109117441,109182977,109641729,109838337,110297089,110362625,110493697,110624769,110755841,110952449,155123714,155648002,157417473,157483009,157745153,158138370,158269441,158466049,158793730,158990337,159121409,159252482,159318017,159383553,159449089,159580161],"minimum":[75104257,97714177,155123713],"mutually":[77266945,104005633,157286401],"mailboxcount":[77398017,104202241,157417473],"mailboxstatus":[77463553,104333313,157483009],"multiple":[77463553,77791234,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104398849,105250817,105775105,132251649,149946369,157483009,157810690,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"mycontext":[77463553,104398849,157483009],"membership":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,112787461,137887749,138412037,139526149,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"markeduser":[82182145,127270918,164560897],"marked":[82313217,127401990,164691969],"modulecount":[84541441,133496838,166920193],"moduleloadstatus":[84541441,133562374,166920193],"moduleselection":[84541441,133627910,166920193],"max":[86507521,140115973,168886273],"maxlen":[86507521,140115969,168886273],"mustinherit":[151650305,151846913,157548545,157614081,157679617,158072833,162004993,162070529,162136065,162267137,162332673,162398209,163512321,164036609,164954113,166264833,168296449,169213953]} \ No newline at end of file +{"members":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,51380225,52101126,69599233,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623938,83689473,83755009,83820545,83886082,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655554,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488258,91553794,91619330,91684866,91750401,91815938,91881474,91947010,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,112066561,113180678,118489089,143589377,144179201,145227777,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708930,163774465,163840001,163905537,163971074,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166068225,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968770,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932546,173998082,174063618,174129154,174194689,174260226,174325762,174391298,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"manager":[655361,720897,786433,851969,917505,983043,1048579,1114115,1179651,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835012,1900548,1966084,2031620,2097156,2162692,2228228,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752516,2818051,2883587,2949123,3014659,3080196,3145731,3211268,3276803,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456451,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832708,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,9175043,9240578,9306114,9371650,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961474,10027011,10092547,10158083,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131907,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219844,45285378,45350916,45416450,45482000,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268420,46333956,46399491,46465028,46530562,46596098,46661635,46727170,46792708,46858242,46923780,46989314,47054851,47120386,47185923,47251458,47316995,47382530,47448068,47513602,47579138,47644674,47710210,47775747,47841282,47906818,47972354,48037890,48103428,48168962,48234498,48300034,48365570,48431106,48496643,48562178,48627716,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217541,49283075,49348611,49414146,49479682,49545218,49610754,49676290,49741828,49807362,49872900,49938434,50003972,50069506,50135042,50200578,50266114,50331650,50397188,50462724,50528259,50593796,50659331,50724866,50790405,50855938,50921476,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511303,51576834,51642370,51707906,51773442,51838978,51904514,51970053,52035586,52101126,52166658,52232194,52297730,52363267,52428802,52494339,52559876,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280772,53346306,53411844,53477378,53542915,53608452,53673986,53739522,53805059,53870596,53936131,54001668,54067205,54132742,54198279,54263810,54329346,54394884,54460421,54525957,54591490,54657028,54722562,54788099,54853634,54919171,54984706,55050243,55115780,55181314,55246850,55312386,55377922,55443459,55508997,55574532,55640067,55705604,55771139,55836677,55902213,55967746,56033285,56098821,56164357,56229891,56295429,56360965,56426501,56492037,56557573,56623109,56688645,56754181,56819717,56885253,56950789,57016325,57081861,57147397,57212933,57278469,57344005,57409541,57475077,57540613,57606146,57671685,57737221,57802757,57868293,57933829,57999365,58064901,58130437,58195973,58261509,58327045,58392581,58458117,58523653,58589189,58654725,58720261,58785797,58851333,58916869,58982405,59047941,59113477,59179013,59244549,59310082,59375621,59441157,59506693,59572229,59637765,59703301,59768837,59834373,59899909,59965445,60030981,60096514,60162050,60227586,60293122,60358659,60424197,60489733,60555269,60620805,60686341,60751877,60817413,60882949,60948485,61014021,61079557,61145093,61210629,61276165,61341701,61407237,61472773,61538309,61603845,61669381,61734917,61800453,61865989,61931525,61997061,62062597,62128133,62193669,62259205,62324741,62390277,62455811,62521349,62586883,62652419,62717955,62783491,62849027,62914563,62980101,63045637,63111173,63176709,63242245,63307781,63373317,63438853,63504389,63569925,63635461,63700997,63766533,63832069,63897605,63963141,64028677,64094213,64159749,64225286,64290821,64356357,64421893,64487429,64552963,64618499,64684041,64749579,64815108,64880644,64946180,65011714,65077253,65142787,65208322,65273859,65339399,65404944,65470471,65536009,65601545,65667074,65732611,65798148,65863683,65929220,65994757,66060292,66125827,66191364,66256899,66322434,66387971,66453511,66519047,66584589,66650115,66715650,66781187,66846727,66912263,66977794,67043330,67108866,67174404,67239938,67305474,67371010,67436546,67502083,67567618,67633155,67698690,67764226,67829764,67895298,67960835,68026371,68091908,68157442,68222978,69533699,69599238,69664773,69730306,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645506,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808195,76873729,76939265,77004801,77070337,77135873,77201409,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771971,82837505,82903041,82968577,83034114,83099650,83165186,83230721,83296257,83361793,83427329,83492865,83558402,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672514,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196802,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211459,88276995,88342531,88408067,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91226115,91291651,91357187,91422723,91488259,91553796,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143620,92209156,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257731,93323267,93388803,93454339,93519873,93585412,93650945,93716481,93782017,93847553,93913089,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502913,94568449,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,104726531,104792066,104857602,104923138,104988674,105054211,105119747,105185283,105250819,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775107,105840643,105906179,105971715,106037251,106102787,106168323,106233859,106299395,106364931,106430467,106496003,106561539,106627075,106692611,106758147,106823683,106889219,106954755,107020291,107085827,107151363,107216899,107282435,107347971,107413507,107479043,107544579,107610115,107675650,107741186,107806723,107872258,107937794,108003331,108068866,108134402,108199939,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510659,109576195,109641730,109707266,109772802,109838338,109903874,109969411,110034947,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197635,112263171,112328707,112394243,112459779,112525315,112590850,112656386,112721922,112787458,112852995,112918531,112984067,113049603,113115139,113180675,113246211,113311747,113377283,113442818,113508354,113573890,113639427,113704963,113770499,113836035,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015683,115081219,115146754,115212290,115277826,115343362,115408898,115474435,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523011,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243907,117309443,117374978,117440514,117506050,117571587,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882307,118947842,119013379,119078915,119144450,119209987,119275523,119341059,119406594,119472130,119537667,119603203,119668739,119734275,119799811,119865347,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389635,120455170,120520707,120586242,120651778,120717314,120782850,120848386,120913922,120979459,121044995,121110531,121176067,121241603,121307138,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530754,131596291,131661827,131727362,131792899,131858434,131923971,131989507,132055043,132120579,132186115,132251651,132317187,132382723,132448259,132513795,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103619,133169154,133234690,133300226,133365762,133431298,133496835,133562370,133627906,133693442,133758978,133824514,133890051,133955587,134021122,134086658,134152195,134217730,134283266,134348803,134414339,134479875,134545411,134610946,134676482,134742018,134807554,134873091,134938627,135004163,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987203,136052739,136118275,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232386,137297922,137363458,137428994,137494530,137560066,137625603,137691138,137756674,137822210,137887746,137953282,138018819,138084354,138149891,138215427,138280963,138346499,138412035,138477571,138543107,138608643,138674178,138739714,138805250,138870786,138936323,139001859,139067395,139132931,139198467,139264003,139329539,139395074,139460610,139526146,139591682,139657218,139722754,139788291,139853826,139919362,139984898,140050434,140115971,140181507,140247043,140312579,140378115,140443651,140509187,140574722,140640258,140705794,140771330,140836866,140902402,140967939,141033474,141099010,141164547,141230082,141295619,141361155,141426691,141492227,141557762,141623299,141688835,141754370,141819906,141885442,141950978,142016514,142082050,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982595,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276355,146341890,146407426,146472962,146538499,146604034,146669570,146735106,146800642,146866178,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,148504579,148570115,148635651,148701187,148766723,148832259,148897795,148963331,149028867,149094403,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618691,149684227,149749763,149815298,149880835,149946370,150011907,150077442,150142978,150208514,150274050,150339587,150405123,150470658,150536195,150601730,150667267,150732803,150798339,150863875,150929411,150994947,151060483,151126018,151191554,151257090,151322627,151388163,151453699,151519235,151584771,151650306,151715842,151781378,151846914,151912450,151977987,152043523,152109059,152174594,152240130,152305666,152371202,152436738,152502274,152567811,152633346,152698883,152764418,152829954,152895490,152961026,153026562,153092098,153157635,153223171,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878531,153944067,154009603,154075138,154140675,154206211,154271747,154337283,154402819,154468355,154533890,154599427,154664963,154730499,154796035,154861570,154927106,154992642,155058178,155123714,155189250,155254786,155320323,155385858,155451394,155516930,155582466,155648002,155713538,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,160628740,160694276,160759812,160825351,160890885,160956421,161021957,161087493,161153030,161218564,161284100,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,161939461,162004997,162070533,162136069,162201605,162267141,162332677,162398214,162463748,162529286,162594820,162660357,162725892,162791428,162856968,162922500,162988037,163053573,163119165,163184659,163250184,163315716,163381255,163446788,163512327,163577861,163643398,163708932,163774469,163840004,163905541,163971077,164036612,164102149,164167685,164233225,164298756,164364292,164429828,164495367,164560903,164626439,164691972,164757511,164823044,164888580,164954116,165019652,165085191,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068227,166133764,166199299,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510021,167575563,167641097,167706633,167772176,167837711,167903241,167968783,168034311,168099847,168165383,168230920,168296456,168361992,168427527,168493063,168558600,168624136,168689670,168755206,168820742,168886279,168951815,169017351,169082889,169148424,169213960,169279496,169345032,169410563,169476099,169541640,169607177,169672710,169738247,169803783,169869320,169934856,170000392,170065928,170131464,170197000,170262536,170328072,170393608,170459143,170524682,170590216,170655751,170721287,170786824,170852359,170917894,170983431,171048967,171114503,171180040,171245575,171311110,171376647,171442183,171507719,171573255,171638791,171704327,171769862,171835456,171900936,171966471,172032007,172097544,172163079,172228615,172294152,172359686,172425223,172490759,172556295,172621831,172687367,172752902,172818439,172883974,172949511,173015048,173080584,173146119,173211657,173277191,173342727,173408266,173473798,173539335,173604871,173670407,173735943,173801480,173867018,173932551,173998089,174063623,174129159,174194695,174260231,174325767,174391303,174456840,174522376,174587911,174653449,174718982,174784538,174850055,174915591,174981127,175046663,175112199,175177735,175243273,175308808,175374343,175439879,175505415,175570951,175636487,175702022,175767559,175833097,175898632,175964164,176029700,176095236,176160772,176226308,176291843,176357380,176422916,176488452,176553988,176619528,176685060,176750596,176816131,176881668,176947204,177012740,177078276,177143812,177209348,177274884,177340420,177405956,177471492,177537028,177602564,177668100,177733636,177799172,177864708,177930244,177995780,178061316,178126852,178192388,178257924,178323460,178388996,178454532,178520068,178585604,178651140,178716676,178782212,178847748,178913283,178978819,179044355,179109895,179175430,179240966,179306501,179372038,179437574,179503109,179568652,179634180,179699716,179765252,179830788,179896324,179961860,180027396,180092932,180158468,180224004,180289540,180355076],"managerconnection":[786435,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752515,2818050,2883586,2949122,3014658,3080195,3145730,3211267,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832707,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6815747,8978436,9961474,10027011,27131907,55508998,55836678,55902214,56033287,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950790,57016326,57081862,57147398,57212934,57278470,57344006,57409542,57475078,57540614,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58720262,58785798,58851334,58916870,58982406,59047942,59113478,59179014,59244550,59375623,59441158,59506694,59572230,59637766,59703302,59768838,59834374,59899910,59965446,60030982,60358663,60424198,60489734,60555270,60620806,60686342,60751878,60817414,60882950,60948486,61014022,61079558,61145094,61210630,61276166,61341702,61407238,61472774,61538310,61603846,61669382,61734918,61800454,61865990,61931526,61997062,62062598,62128134,62193670,62259206,62324742,62390278,62455814,62521350,62586886,62652422,62717958,62783494,62849030,62914566,62980102,63045638,63111174,63176710,63242246,63307782,63373318,63438854,63504390,63569926,63635462,63700998,63766534,63832070,63897606,63963142,64028678,64094214,64159750,64290822,64356358,64421894,64487430,64684037,64749574,64815108,64880644,64946180,65011714,65077250,65142786,65208322,65273859,65339396,65404934,65470468,65536005,65601541,65667078,65732614,65798151,65994758,66584584,69533698,69664769,76546049,76611585,76677121,76742658,76808194,76873730,76939266,77004805,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585412,137953288,152109059,152174594,152240130,152305667,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223171,167575553,167641089,167706625,167772162,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114498,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702019,175767553,175833089,175898625,176619532],"meetmejoin":[786434,3735558,176619522],"meet":[786435,3735553,3801089,3866625,69664773,167837697,171966465,172032001,172163073,172228609,176619523],"meetmeleave":[786434,3801094,176619522],"meetmetalking":[786433,3866629,176619521],"meetmetalkingevent":[786433,3866626,23330819,60751879,69664770,89784323,138543107,167837697,172228618,176619521,177012741],"meetme":[786433,3866625,85524481,89456641,89522177,89587713,89653249,89718785,89784321,89849857,117506053,167837697,171900929,171966465,172032001,172097537,172163073,172228609,172294145,176619521],"messagewaiting":[786434,3932166,176619522],"member":[786437,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046274,5111810,5177346,5242882,5308418,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,28442625,28639233,29097985,29163521,29294593,29360129,29425665,29491201,29556737,29818881,29884417,29949953,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33685505,33816577,33882113,34471937,35061761,35127297,42336257,42401793,42795009,42860545,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44892161,44957697,50462721,50593793,51249154,51314691,51380228,51642370,51707908,51773443,51838981,51904513,51970049,52232195,53936129,54001665,54067201,54132737,54198273,54263809,55574529,55705601,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,66060289,66125825,66191361,66256897,66453505,66650113,67174401,67567617,67633153,68026369,68288513,68354049,68419585,68550657,68681729,69009409,69074945,69599236,69664775,75235331,75366404,75431938,75563009,83623941,83755013,83951617,84148226,85262337,85655567,85917697,85983233,86048769,88735745,91488270,91553807,91619342,91684880,91750414,91815950,91881487,91947022,92012545,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102760449,102825985,102891521,103022593,103088129,103153665,103219201,103350273,103415809,103612417,103677953,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104792065,104857601,104923137,104988673,105119745,105185281,105250817,105381889,105512961,105578497,105709569,105840641,105906177,106037249,106233857,106364929,106430465,106561537,106627073,106758145,106889217,107020289,107151361,107216897,107544577,107675649,107741185,107872257,107937793,108068865,108134401,108265473,108331009,108396545,108527617,108658689,108724225,108855297,108986369,109051905,109182977,109314049,109379585,109445121,109510657,109576193,109772801,109903873,110034945,110166017,110297089,110362625,110428161,110493697,110559233,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111411201,111476737,111542273,111607809,111869953,111935490,112001027,112066562,112132098,112263169,112328705,112394241,112459777,112525313,112656386,112721924,112787458,112918529,112984065,113049601,113180673,113246209,113311745,113377281,113508353,113573890,113704961,113836033,113967111,114032641,114163713,114229249,114294785,114360321,114425857,114556929,114622465,114688001,114819073,114884609,114950145,115146753,115343361,115474433,115539969,115605505,115671041,115802113,115867649,115998721,116129793,116260865,116457473,116523009,116588550,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899266,117964802,118030337,118095874,118161409,118226946,118292487,118358019,118423554,118489090,118554625,118620161,118685697,118751234,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261698,143327234,143392769,143458311,143523843,143589378,143654914,143720450,143785986,143851521,143917058,143982599,144048130,144113667,144179202,144244737,144310275,144375809,144441345,144506882,144572418,144637953,144703489,144769025,144834562,144900098,144965634,145031169,145096711,145162243,145227778,145293313,145358850,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014210,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,154009601,154075137,154140673,154206209,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,157089793,160563201,163708937,163840010,163905538,164036611,164233219,166068225,167575553,167968784,168230913,168296449,168361985,169410561,169476097,171180033,173932559,173998096,174063631,174129169,174194703,174260239,174325775,174391310,174456833,176619525],"managerexception":[851971,27197443,65863687,65929223,69533698,77070342,93650947,176750604],"missing":[1835009,1900545,1966081,2031617,2097153,2162689,2228225,2752513,3080193,3211265,5832705,7405569,7471105,7667713,7733249,7798785,7864321,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8454145,8650753,8781825,8847361,8912897,8978433,9175041,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,28442627,28508164,28573699,28639233,28704770,29032450,29097986,29163522,29229057,29622274,29753345,29818883,29884418,29949955,30015490,30670849,31260673,32768003,32833537,32899073,32964609,33030145,33095681,33161217,33685506,33751041,33816577,33882113,34013185,34078724,34209793,34340869,34406402,34471939,34537474,34668546,34799618,34996226,35454978,35651586,35848194,35979266,36110338,36306946,36569090,36765698,36962306,37093378,37289986,37421058,37617666,37748737,37814274,38010882,38207490,38273025,38535170,38731778,38928386,39124994,39321602,39452674,39583746,39714818,39845890,39976962,40108034,40239106,40435714,40632322,40697857,40763394,41025538,41091073,41156610,41287682,41484291,41549825,41746435,41811969,41943041,42008577,42074115,42139649,42270721,42336259,42401795,42532867,42598401,42729473,42795010,42860545,42926083,43319298,43384834,43450371,43515907,43581442,43646978,43712515,43778051,43843586,43909122,43974659,44040195,44171267,44367874,44433410,44498947,44564483,45219842,45350914,45481998,46268418,46333954,46399489,46465026,46661633,46792706,46923778,47054849,47185921,47316993,47448066,47775745,48103426,48627714,49741825,49872897,50003970,50397186,50462722,50528257,50593794,50659329,50790403,50921474,51511301,51970051,52101124,52363265,52494337,52559874,53280770,53411842,53542913,53608450,53805057,53870594,53936129,54001666,54067203,54132740,54198277,54394882,54460419,54525955,54657026,54788097,54919169,55050241,55115778,55508993,55574530,55640065,55705602,55771137,55836673,55902209,56033281,56098817,56164353,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62521345,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225284,64290817,64356353,64421889,64487425,64552961,64684035,64749572,64815106,64880642,64946178,65273857,65339394,65404932,65470466,65536003,65601539,65798145,65994753,66060290,66125825,66191362,66256897,66387969,66453506,66519042,66584579,66781185,66846722,66912258,67174402,67502081,67633153,67829762,67960833,68026369,68091906,69009409,94896129,94961665,95223809,95289345,95354881,95420417,95485953,95551489,95748097,96010241,96075777,96206849,96272385,96337921,96403457,96731137,96993281,97058817,101711873,101777409,102039553,102105089,102170625,102301697,102367233,102432769,102498305,102563841,102629377,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,105054209,105119745,105185281,105250817,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107806721,108003329,108199937,110034945,112197633,112263169,112328705,112394241,112459777,112525313,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113639425,113704961,113770497,113836033,115015681,115081217,117243905,117309441,117571585,118882305,119013377,119078913,119209985,119275521,119341057,119537665,119603201,119668737,119734273,119799809,119865345,120389633,120520705,120979457,121044993,121110529,121176065,121241601,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131596289,131661825,131792897,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133496833,133890049,133955585,134152193,134348801,134414337,134479873,134545409,134873089,134938625,135004161,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139788289,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140967937,141164545,141295617,141361153,141426689,141492225,141623297,141688833,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149880833,150011905,150339585,150405121,150536193,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151322625,151388161,151453697,151519233,151584769,151977985,152043521,152109057,153223169,153878529,153944065,154009601,154140673,154206209,154271745,154337281,154402817,154599425,154664961,154730497,154796033,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156565505,156958721,157089794,157351937,157417473,157483009,159907841,160235521,160432129,160563201,160956417,161021953,161087489,161349633,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,163643393,163774465,163905537,163971073,164102145,164167681,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167641089,167772161,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169410561,169476097,169541633,169607169,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170983425,171114497,171442177,171507713,171900929,172097537,172294145,172425217,172490753,172556289,172621825,172687361,173015041,173539329,173604865,174850049,174915585,174981121,175046657,175112193,175374337,175767553,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176685057,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,179240961,179634177,179699713,179765249,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073],"meetmejoineventhandler":[3735559,69533697,176881670],"meetmejoinevent":[3735553,23068675,60489735,69664770,89522179,138149891,138215427,167837697,171966474,176881669],"meetmeleaveeventhandler":[3801095,69533697,176947206],"meetmeleaveevent":[3801089,23134211,60555271,69664770,89587715,138280963,138346499,138412035,167837697,172032010,176947205],"meetmetalkingeventhandler":[3866631,69533697,177012742],"messagewaitingeventhandler":[3932167,69533697,177078278],"messagewaitingevent":[3932161,23461891,60882951,69664770,89915395,138674178,138739714,138805250,138870786,171835393,172359690,177078277],"managereventhandler":[5898247,69533697,176685062],"managerevent":[5898241,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806530,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673154,26738691,26804227,26869763,26935299,27000835,60096514,60162050,60227586,60293127,60358663,66453511,69664770,76677126,85262344,85327880,85393416,85458952,85524488,85590024,85655560,85721096,85786632,85852168,85917704,85983240,86048776,86114312,86179848,86245384,86310920,86376456,86441992,86507528,86573064,86638600,86704136,86769672,86835208,86900744,86966280,87031816,87097352,87162888,87228424,87293960,87359496,87425032,87490568,87556104,87621640,87687176,87752712,87818248,87883784,87949320,88014856,88080392,88145928,88211464,88277000,88342536,88408072,88473608,88539144,88604680,88670216,88735752,88801288,88866824,88932360,88997896,89063432,89128968,89194504,89260040,89325576,89391107,89456648,89522184,89587720,89653256,89718792,89784328,89849864,89915400,89980936,90046472,90112008,90177544,90243080,90308616,90374152,90439688,90505224,90570760,90636296,90701832,90767368,90832904,90898440,90963976,91029512,91095048,91160584,91226120,91291656,91357192,91422728,91488264,91553800,91619336,91684872,91750408,91815944,91881480,91947016,92012552,92078088,92143624,92209160,92274696,92340232,92405768,92471304,92536840,92602376,92667912,92733448,92798984,92864520,92930056,92995592,93061128,93126664,93192200,93257736,93323272,93388808,93454344,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,167575564,167641104,167706640,167772177,167837713,167903248,167968785,168034320,168099856,168165388,168230924,168296460,168361996,168427536,168493072,168558604,168624140,168689680,168755216,168820752,168886288,168951824,169017360,169082896,169148428,169213964,169279500,169345040,169541644,169607184,169672720,169738256,169803792,169869324,169934860,170000396,170065932,170131468,170197004,170262540,170328076,170393612,170459148,170524688,170590220,170655756,170721292,170786832,170852364,170917904,170983440,171048976,171114512,171180044,171245580,171311120,171376656,171442192,171507728,171573260,171638796,171704331,171769872,171835405,171900940,171966476,172032012,172097548,172163084,172228620,172294156,172359696,172425232,172490768,172556304,172621840,172687376,172752912,172818444,172883984,172949516,173015052,173080588,173146124,173211660,173277196,173342732,173408268,173473808,173539344,173604880,173670412,173735948,173801484,173867024,173932556,173998092,174063628,174129164,174194700,174260236,174325772,174391308,174456844,174522380,174587920,174653452,174718992,174784529,174850064,174915600,174981136,175046672,175112208,175177740,175243276,175308812,175374352,175439888,175505424,175570955,175636492,175702032,175767568,175833100,175898636,176685061],"minus_separator":[6422529,8781830,156565505],"maintain":[6488066,9043969,9109505,157351938],"managerresponse":[6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340035,10158083,27590662,27656198,27721734,27787270,27852806,27918342,27983878,28049412,64618501,65339397,65470469,66519049,66846729,67567619,67633155,67698690,67764226,67829764,67895303,67960840,69533698,69599234,69730305,77201414,93978632,94044168,94109704,94175240,94240776,94306312,94371848,94437379,154206215,154402822,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,163184641,163250177,167510017,176291841,179109908,179175444,179240980,179306516,179372052,179437588,179503124,179568653,179830785],"mailboxcountresponse":[7143427,27852803,67305478,69730306,94240771,154927106,154992642,155058178,162988033,179372042,179568641],"mailboxstatusresponse":[7208963,27918339,67371014,69599234,69730306,94306307,155123714,155189250,162988033,163053570,179437578,179568641],"managererror":[7274499,27983875,67436551,67502088,69599234,69730305,77135878,94371843,162398209,162856962,179503115,179568641],"mutable":[7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081],"moved":[8978436,69664769,171835393],"methods":[10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,68878337,68943873,69271553,69664769,93585409,153026561,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220866,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702018,175767553,175833089,175898625,176291841,176619522,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"memberwiseclone":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"maximum":[10747907,31129602,31719426,31784962,34144257,34275329,36503553,37879809,37945345,69337092,69599233,69664769,70254593,70516738,77856769,78381058,78839809,92012545,93585409,96927745,98304002,99352577,145686530,152961025,157220867,157351937,158007299,158400513,158466049,158531586,160628737,169345025,174456833,176619521],"method":[10747905,14024707,18219009,27066369,28311554,28442625,28639233,29097985,29163521,29294593,29360129,29425665,29491201,29556737,29622273,29818881,29884417,29949953,30015489,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195138,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33685505,33816577,33882113,34406401,34471937,34537473,34668545,34799617,34996225,35061761,35127297,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41484289,41549825,41746433,41811969,42074113,42139649,42336257,42401793,42532865,42598401,42795009,42860545,42991617,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171266,44236802,44302339,44367873,44433409,44498945,44564481,45219841,46333953,46465025,48103425,48627713,49741825,49872897,50003969,50397185,50462721,50528257,50593793,50659329,50921473,52559873,53280769,53411841,53608449,53870593,53936129,54001665,54067201,54132737,54198273,54263810,55115777,55574529,55640065,55705601,55771137,57606145,60096513,60162049,60227585,64225281,64552961,64618498,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,66060289,66125825,66191361,66256897,66387969,66453505,66519041,66650113,66781185,66846721,67174401,67567617,67633153,67698689,67764225,67829761,68026369,68091905,68288513,68354049,68419585,68550657,68616195,68681729,69009409,69074945,69140481,69402625,69599233,70057985,70123521,70189057,70254593,70320130,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71237633,72876033,72941569,73007105,73072643,73138177,76087298,76742657,76808193,76873729,76939265,77266945,77463553,77529089,77594625,80150529,80216065,84672513,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585410,93650945,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94568449,115474433,137625601,152174593,152240129,155320321,156762113,156827649,156893185,157220865,159973377,160038913,160104449,160497667,164757507,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176291841,176619522,176750593,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179830785,180486146,180551681],"music":[10747909,31588354,31653892,33292289,40304642,40370180,69337090,70451204,72417284,79691778,100728836,157220869,159383553,159449095],"milliseconds":[10747907,27131905,28114945,31064065,31129601,31719426,31784962,33554434,36438017,36503553,37552129,37748737,37879809,37945345,41418753,65142785,65470465,65601537,68026369,69337092,70516738,71892993,76873729,78381057,78708737,78774273,78839809,80084993,80609281,83296257,93585413,98369537,98893825,98959361,99352577,101515265,103219201,111214593,152174593,152240129,152764417,152829953,153026561,157220867,158007297,158400514,158466051,158531586,159842306,160694273,163381249,176619526,179634177],"maxsilence":[10747908,31719426,31784967,37945349,69337090,70516740,157220868,158531586],"message":[10747906,14024707,28835847,28901383,29032454,33488904,41222150,44171265,44236802,44302338,45416449,45481985,51511302,55312391,55377927,55443463,65863687,65929223,68222983,68485121,69337090,69599233,69730305,69795841,69926914,73072642,73400322,76480514,77070338,77463554,77529090,77594626,80019458,80150530,80216066,83689473,85131266,85196802,92209153,93650946,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94568450,101449734,112394246,146472965,155451398,156762116,156827650,156893186,157220866,159776772,159973378,160038914,160497667,160956418,162856961,163774465,166199300,167510019,174653441,176750596,179109890,179175426,179240962,179306498,179372034,179437570,179503107,179568642,179830787,180420610],"mappingstrategies":[13631489,13697025,13762561,41746437,41811971,41877506,41943044,42008579,42074117,42139651,42205186,42270723,42336261,42401800,42467330,69402625,72679425,72744961,80281601,80347137,101711875,101777411,101842946,101908482,101974018,160104451,160169987,160235524,160301060],"mappingstrategy":[13828099,28704773,34013190,34078726,34209798,42532869,42598403,42663943,42729480,69271554,69402626,72810502,77856770,80412675,96862215,102039555,157351938,160104449,160169985,160301068],"messagelevel":[14024706,44171278,44236811,44302347,69206017,73072642,160497666,160563206],"manageraction":[14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580611,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,27131909,50003972,50069510,64684041,64749578,65339400,65404938,65470472,66912263,69599234,69664769,69730305,76742658,76873731,80543748,80609284,80674820,80740356,80805892,80871428,80936964,81002500,81068036,81133572,81199108,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788932,81854468,81920004,81985540,82051076,82116612,82182148,82247684,82313220,82378756,82444292,82509828,82575364,82640900,82706436,82771972,82837508,82903044,82968580,83034115,83099652,83165188,83230724,83296260,83361796,83427332,83492868,83558404,83623940,83689476,83755012,83820548,83886084,83951620,84017156,84082692,84148228,84213764,84279300,84344836,84410372,84475908,84541444,84606980,84672516,84738052,84803588,84869124,84934660,85000196,85065732,86245378,86310914,87621634,87752706,88145922,90570754,90636290,90767362,90898434,90963970,91357186,91553794,92012546,92078082,92340226,92798978,92864514,93388802,93454338,93585410,109969410,110034947,110100482,110166018,146800641,146866177,151977990,153026562,153878535,154271751,160628746,160694282,160759818,160825350,160890890,160956426,161021962,161087498,161153034,161218570,161284106,161349642,161415174,161480710,161546250,161611786,161677322,161742858,161808394,161873930,161939466,162005002,162070538,162136074,162201610,162267146,162332682,162398214,162463754,162529290,162594826,162660358,162725898,162791434,162856970,162922506,162988042,163053578,163119115,163184651,163250186,163315722,163381254,163446794,163512326,163577866,163643402,163708938,163774474,163840010,163905546,163971082,164036618,164102154,164167690,164233222,164298762,164364298,164429834,164495366,164560902,164626438,164691978,164757510,164823050,164888586,164954122,165019658,165085190,165150730,168558594,168624130,170065922,170196994,170590210,173015042,173080578,173211650,173342722,173408258,173801474,173998082,174456834,174522370,174784515,175243266,175308802,175833090,175898626,176619527,179568641],"manageractionevent":[14286849,14876673,14942209,15859713,16646147,16842753,16973825,17694721,17956865,18022401,18087937,18546689,27131906,49741827,49807366,65536009,65601545,66584584,69599234,76939266,83099651,160825350,161415174,161480710,162398214,163119105,163184651,163381254,163512326,164233222,164495366,164560902,164626438,165085190,176619522],"manageractionresponse":[16121857,16711683,18219009,49872899,49938438,69599234,83165187,162660358,163119105,163250186,164757510],"mailboxcountaction":[16449539,49479687,49545223,69599235,69730305,74973190,82903043,109707266,109772802,162988045,163119105,179372034],"mailboxstatusaction":[16515075,49610759,49676295,69599235,69730305,75038726,82968579,109838338,109903874,163053581,163119105,179437570],"monitoraction":[16777219,50135047,50200583,50266119,50331655,69599234,75104266,83230723,110231554,110297090,110362626,110428162,110493698,163119105,163315728],"manage":[18219009,54263809,76087297,164757505],"meetmeendevent":[23003139,60424199,69664769,89456643,167837697,171900938],"meetmemuteevent":[23199747,60620807,69664769,89653251,138477571,167837697,172097546],"meetmestoptalkingevent":[23265283,60686343,69664770,89718787,167837697,172163082],"meetmetalkrequestevent":[23396355,60817415,69664769,89849859,138608643,167837697,172294154],"mobilestatusevent":[23527427,60948487,69664769,89980931,138936323,139001859,171835393,172425226],"moduleloadreportevent":[23592963,61014023,69664769,90046467,139067395,139132931,139198467,171835393,172490762],"monitorstartevent":[23658499,61079559,69664769,90112003,171835393,172556298],"monitorstopevent":[23724035,61145095,69664769,90177539,171835393,172621834],"md5":[27131906,45809665,65077249,65142785,68288513,69795841,73596929,76808194,81068033,82771969,105381889,109314049,161153026,162856961,176619522,180420609],"managerreader":[27262979,65994759,69533698,176816138],"map":[27787265,67174401,84672513,94175233,115474433,154861569,164757505,179306498],"md5support":[28246019,68288519,68354055,68419586,68485125,69795841,77266946,94633987,156303362,180420616],"messagedigestsupport":[28246018,68288513,68354050,77266946,180420610],"making":[28246017,68419585,180420609],"means":[31064066,31129602,36438018,36503554,78381058,98369538,158007298],"maxdigits":[31129605,36372481,36438017,36503558,71565315,78381057,98304005,158007300],"musiconholdclass":[31653893,40370181,79691777,100728837,159449089],"musiconhold":[31653889],"mustoverride":[32768001,34406401,49741825,49872897,109969409],"maybe":[35323905,35389441,40960001],"meaning":[37486593,37683201,71827457,71892993,77660161,83296257,94830593,111214593,157024257,158400513,158466049,163381249],"mode":[41091079,79953924,101253126,101318658,159711237],"mate":[41091073,79953921,101318657,159711234],"msg":[43188229,43384838,43450374,43646982,43712518,43909126,43974662,44433414,44498950],"msgtype":[45481990,80871425,104464390,160956417],"monitoring":[46006273,50200577,50266113,50331649,53805057,69599235,73662465,75104259,76021761,84606977,115343361,161218562,163315716,164691971],"monitored":[46006273,69599233,81133569,105512961,161218562],"mutes":[46727169,46792705,73924610,161611778],"monitor":[46989313,47054849,50200577,50266113,50331649,74055682,83230722,110231553,110297089,161742850,163315714],"mask":[48496642,49348609,74645505,82444289,82771969,108527617,109379585,162529282,162856961],"match":[49283073,49348609,54263815,69599235,69730305,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672514,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,115474433,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757509,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568642],"messages":[49545217,49676289,69599234,69730306,74973185,75038721,82968577,89915396,94240770,94306305,109903873,138674177,138739713,138805249,138870785,154992641,155058177,155189249,162988034,163053571,172359684,179372035,179437570],"mailbox":[49545224,49676296,69599234,69730305,74973185,75038721,82903043,82968579,89915398,94240772,94306305,109772807,109903879,138674183,138739713,138805249,138870785,154927110,154992641,155058177,155123717,162988037,163053573,172359686,179372037,179437569],"mailboxnumber":[49545217,49676289,82903041,82968577,109772801,109903873,162988033,163053569],"mix":[50331653,83230721,110493701,163315713],"msec":[50855937,83361793,111607809,163446785],"membername":[51314693,51380229,83623937,85262337,85655553,85917697,85983233,86048769,88735745,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,111935493,116654085,118226949,143392773,143917061,144703493,145031173,163708929,167575553,167968769,168230913,168296449,168361985,171180033,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"makes":[51642369,51707905,51773441,51838977,69599233,75366404,163840005],"make":[51642369,51707907,51773441,51838979,69271553,83755011,112656385,112721922,157220865,163840003],"mapping":[69402626,77856770,96862210,157351938,160104449],"matches":[69599233,162398209],"manageractions":[69599234,163184641,163250177],"module":[69599233,69664769,84672513,92209153,115605505,146538501,164757506,171835393,174653441],"membe":[69664770,85262338,85655554,85917698,85983234,86048770,88735746,91488259,91553793,91619330,91684866,91750402,91815939,91881474,91947011,116588545,116654081,118030337,118161409,143392769,143851521,144703489,145031169,167575554,167968770,168230914,168296450,168361986,171180034,173932547,173998081,174063618,174129154,174194690,174260227,174325763,174391300],"mailboxes":[69730305,82968578,94306306,109903874,155123713,155189249,163053570,179437571],"mechanism":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721],"mandatory":[80609282,81133570,82903041,82968577,83230721,83623938,83755009,83951617,84279298,84475905,84606977,84738050,84803585,84869121,84934657,85065729,103022593,103153665,103350273,105512961,105578497,109772801,109903873,110297089,111869953,112132097,112656385,113508353,114622465,114688001,115146753,115343361,115802113,115867649,115998721,116129793,116260865,116457473,160694274,161218562,162988033,163053569,163315713,163708930,163840001,164036609,164364290,164560897,164691969,164823042,164888577,164954113,165019649,165150721],"minimum":[80609281,103219201,160694273],"mutually":[82771969,109510657,162856961],"mailboxcount":[82903041,109707265,162988033],"mailboxstatus":[82968577,109838337,163053569],"multiple":[82968577,83296258,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,109903873,110755841,111280129,137822209,155516929,163053569,163381250,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"mycontext":[82968577,109903873,163053569],"membership":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118292485,143458309,143982597,145096709,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"markeduser":[87687169,132841478,170131457],"marked":[87818241,132972550,170262529],"modulecount":[90046465,139067398,172490753],"moduleloadstatus":[90046465,139132934,172490753],"moduleselection":[90046465,139198470,172490753],"max":[92012545,145686533,174456833],"maxlen":[92012545,145686529,174456833],"mustinherit":[157220865,157417473,163119105,163184641,163250177,163643393,167575553,167641089,167706625,167837697,167903233,167968769,169082881,169607169,170524673,171835393,173867009,174784513]} \ No newline at end of file diff --git a/docs/fti/FTI_110.json b/docs/fti/FTI_110.json index 99c4256..d396345 100644 --- a/docs/fti/FTI_110.json +++ b/docs/fti/FTI_110.json @@ -1 +1 @@ -{"net":[196611,37421060],"namespace":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110338,36175874,36241410,36306946,36372482,36438018,36503554,36569090,36634626,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236802,44302338,44367874,44433410,44498946,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362,49872898,49938434,50003970,50069506,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50724866,50790402,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673986,53739522,53805058,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657026,54722562,54788098,54853634,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574530,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179010,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768834,59834370,59899906,59965442,60030978,60096514,60162050,60227586,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817410,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472770,61538306,61603842,61669378,61734914,61800450,61865986,61931522,61997058,62062594,62128130,62193666,62259202,62324738,62390274,62455810,62521346,62586882,62652418,62717954,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504386,63569922,63635458,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337922,96403458,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927106,154992642,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122],"newname":[1245185,4325382,86769665,141099013,169148418],"need":[1310721,4456449,64094209,155123713,171048961],"numerical":[5242884,24707073,24772609,24838145,24903681,63832074,64552964,71958529,72024065,72089601,74645505,74711041,79626241,79691777,80805889,88145921,89063425,115408897,151191553,151257089,151322625,151650308,152043521,152567809,153026561,153092097,153157633,153223169,153288705,153354241,154075137,154271745,154402817,154468353,160628737,161939457,163053569,171180033,174260225],"number":[5242892,22282241,25624578,26214401,26279937,26411009,26804226,26869767,26935304,27066369,27197441,27328513,28639234,28770306,30998529,33292294,33357831,34144257,44040194,44171265,49152007,49545217,61669377,63635457,63832070,64094211,64225281,64749569,65011714,65077249,65208322,65273859,65339393,65404929,69468161,70713345,70909953,72351746,72876034,73596931,73924609,77398017,79233027,79298561,79364097,79429633,79560705,80019457,80084994,80150529,80281601,80347137,82706433,82771969,82837505,83230721,83623939,83689474,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410371,85131267,85196802,85327874,85458945,85721090,85786626,85852162,85917698,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507524,87359490,87687170,88735746,91422722,92798978,94437377,94502918,94961666,104267777,110297094,110362625,110493697,110624769,110755841,110952449,112001025,112132097,112263169,112394241,113639425,113967105,128122881,129761281,131661825,133169153,133234689,133300225,135004161,135135233,135331841,136183809,137232385,137494529,137560066,137691137,138149889,139264001,139853826,139919362,139984898,140115970,144703490,145031170,149422081,149487617,151650316,151781378,152436739,152961025,153223173,153354241,153550850,155058177,157417475,159252485,159318017,159383553,159449090,159580161,162267137,162332674,162398209,162529281,162594817,165085185,165150721,165216257,165609473,166002691,166068226,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789123,167510019,167575554,167706626,167837697,168099842,168165378,168230914,168296450,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886276,169738242,170065922,173735937,173801475],"names":[5242881,25690113,63832066,64815105,88670209,88801281,149291009,149553153,151650305,152502273,153419777,173735937,173867009],"new":[5242881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22740994,22872065,23003139,23068675,23199747,23265283,23330819,23396355,23461891,23527427,23724035,24182787,24248323,24576003,25231361,27721730,28114947,28246019,28442627,28508163,28573699,28639235,28704771,28770307,28835843,29097987,29229059,29360131,29425667,29687811,29753347,29818883,29884419,30015491,30081027,30212099,30277635,30408707,30539779,30670851,30736387,30867459,30932995,30998531,31129603,31195139,31326211,31391747,31522819,31653891,31719427,31850499,31981571,32047107,32178179,32243715,32374787,32440323,32571395,32636931,32768003,32833539,32899075,32964611,33095683,33161219,33292291,33357827,33488899,33554435,33685507,33751043,33882115,34013187,34144259,34275332,34406403,34537475,34668547,34799619,34865155,34996227,35061763,35192835,35323907,35389443,35454979,35586051,35717123,35848195,35913731,36110339,36175875,36372483,36438019,36503555,36700163,36765699,36962307,37158915,37224451,37421059,37748738,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39780355,39845891,39911426,39976962,40042498,40108034,40173570,40239106,40304643,40370180,40435715,40501251,40566787,40632323,40697858,40763394,40894466,41025539,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008579,42074115,42139651,42205186,42270722,42336259,42401795,42467331,42532867,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43188227,43253762,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44302339,44433411,44564483,44630019,44695555,44761091,44826627,45219843,45285379,45350915,45481987,45547523,45613059,45678595,45744133,45809670,45875206,45940738,46006274,46071811,46137347,46202883,46268419,46333955,46399490,46465026,46530562,46596098,46661635,46727171,46792706,46858242,46923779,46989315,47120387,47185923,47251459,47316995,47382531,47448068,47513604,47579139,47644677,47710213,47841283,47972355,48037891,48168963,48234499,48300035,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49676291,49741827,49807363,49872899,49938435,50003971,50331651,50397187,50462723,50528259,50593795,50659331,50724866,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52166659,52232195,52297731,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58785795,58851331,58916867,58982403,60162051,60227587,60293123,60358659,60424195,60489731,60817411,61079555,61210627,61407235,61472771,61538307,61603843,61734915,61800451,61865987,61931523,61997059,62062593,62390275,62455811,62652419,62717955,62783490,62849026,62980098,63242243,63307779,63373315,63438851,63504385,63635459,63766529,64028674,64094211,64159750,64225281,64356354,64421891,64487426,65601543,65667074,65798148,65863682,65929218,65994754,66060291,66125826,66191362,66256898,66322434,66387970,66453506,66519042,66584580,66650114,66715650,66781186,66846722,66912258,66977794,67043331,67108866,67174403,67239938,67305474,67698690,67764227,67829763,68091907,68157442,68222978,68878338,68943874,69009410,69074946,69140482,69206017,69271555,69337090,69402628,69468162,69533698,69599236,69664770,69730311,69861381,70057986,70189058,70254595,70320131,70385669,70451202,70516738,70647812,70713346,70778882,70844418,70909954,70975490,71041026,71106562,71172098,71499779,71565314,71630850,71696386,71761922,71827460,72351745,73990145,75104257,78118913,84410371,84803586,86769665,88735745,88801281,91291649,95027201,97714177,106627073,133169158,133300225,133824513,133955585,141099009,149422081,149618689,151060482,151126018,151191555,151257089,151322625,151388161,151453698,151584769,151650306,151715841,151781384,151846913,151912449,151977986,152043524,152109058,152174594,152240129,152305665,152371202,152436739,152502274,152567810,152633345,152698882,152764417,152829954,152895490,152961026,153026562,153092100,153157634,153223170,153288706,153354242,153419777,153485313,153550849,153616386,153681921,153747457,153812993,153878530,153944066,154009601,154075139,154140673,154206209,154271746,154402817,154468353,154533891,154599426,154664961,154730498,154796033,154927105,155058179,155123716,155189251,155254785,155320321,155582467,155648002,155713538,155910145,156434433,156499969,156565505,156696578,156762114,156827650,156893186,156958722,157024257,157089793,157155331,157220866,157286404,157351937,157417474,157483010,157548545,157614081,157679617,157745156,157810689,157876226,157941761,158007297,158072833,158138377,158269445,158466050,158597122,158662657,158728196,158793731,158859269,158924801,158990338,159055873,159121410,159186948,159252482,159318018,159383554,159449090,159514625,159580161,160628738,161939457,162004993,162070529,162136065,162201602,162267137,162332673,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543938,165609474,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789124,166854657,166920193,166985729,167051265,167116801,167182339,167247874,167313410,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624130,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148418,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131459,170196993,170262529,170328065,171048963,171180034,171245569,171638785,171704321,171835393,173342721,173408257,173473793,173539330,173604866,173670402,173735938,173801476,173867011,173932547,173998083,174063617,174260225,174850050,174915588,174981122],"noopcommand":[6356995,31784964,31850502,63766531,63832065,63897603,151846913,152764425,154599427,154730499],"null":[12713986,23789569,23986177,24051713,25690113,25755649,25952257,26542081,26607617,26673153,29818881,29884417,32833537,32899073,32964609,35454977,48758786,62062593,70582274,72482817,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,89325569,91619329,93323265,95223809,97910785,111017985,132186113,140836865,152043521,159186946,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"newaccountcodeevent":[18284547,55705607,64159745,84738051,133693443,133758979,166264833,167116810],"newcalleridevent":[18350083,55771143,64159746,84803587,133824514,133890051,133955586,134021122,134086658,166264833,167182346,171573253],"newchannelevent":[18415619,55836679,64159747,84869123,162136066,167247882,171638789],"newextenevent":[18481155,55902215,64159746,84934659,134152194,134217731,134283266,134348802,134414338,134479874,166264833,167313418,171704325],"newstateevent":[18546691,55967751,64159747,85000195,162136066,167378954,171769861],"newline":[37552129],"newcat":[48758785,64094209,159186945],"newdata":[62914565],"numthreads":[63635462,174981121],"network":[63766529,151322625],"newly":[64028673,161218561],"native":[64028673,64159745,79757313,79822849,80347137,80412673,80478209,80543745,83230721,111280129,162004993,162070529,162594817,162660353,162725889,162791425,163905537,165609473,166133761,170917889],"newcallerideventhandler":[64028673,171573253],"newcallerid":[64028673,171573249],"newchanneleventhandler":[64028673,171638789],"newchannel":[64028673,171638785],"newexteneventhandler":[64028673,171704325],"newexten":[64028673,171704321],"newstateeventhandler":[64028673,171769861],"newstate":[64028673,171769857],"needed":[64094209,64225281,75104257,97386497,155123713,157810689,173539329],"numbers":[64094209,88670209,149291009,159186945,173735937],"networkstream":[74973185,96927756,154861569],"numeric":[80150529,86114305,86179841,86245377,86310913,86376449,113246209,162398209,168493057,168558593,168624129,168689665,168755201],"numberofmailbox":[84410369,133103617,166789121],"numb":[84803585,133955585,167182337],"natsupport":[85393409,135790598,167772161],"newmessages":[88735745,149422085,173801473],"notinheritable":[150994945,154927105],"nat":[163905537]} \ No newline at end of file +{"net":[196611,42926084],"namespace":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442626,28508162,28573698,28639234,28704770,28770306,28835842,28901378,28966914,29032450,29097986,29163522,29229058,29294594,29360130,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799618,34865154,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110338,36175874,36241410,36306946,36372482,36438018,36503554,36569090,36634626,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008578,42074114,42139650,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236802,44302338,44367874,44433410,44498946,44564482,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285378,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741826,49807362,49872898,49938434,50003970,50069506,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50724866,50790402,50855938,50921474,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297730,52363266,52428802,52494338,52559874,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346306,53411842,53477378,53542914,53608450,53673986,53739522,53805058,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657026,54722562,54788098,54853634,54919170,54984706,55050242,55115778,55181314,55246850,55312386,55377922,55443458,55508994,55574530,55640066,55705602,55771138,55836674,55902210,55967746,56033282,56098818,56164354,56229890,56295426,56360962,56426498,56492034,56557570,56623106,56688642,56754178,56819714,56885250,56950786,57016322,57081858,57147394,57212930,57278466,57344002,57409538,57475074,57540610,57606146,57671682,57737218,57802754,57868290,57933826,57999362,58064898,58130434,58195970,58261506,58327042,58392578,58458114,58523650,58589186,58654722,58720258,58785794,58851330,58916866,58982402,59047938,59113474,59179010,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768834,59834370,59899906,59965442,60030978,60096514,60162050,60227586,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817410,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472770,61538306,61603842,61669378,61734914,61800450,61865986,61931522,61997058,62062594,62128130,62193666,62259202,62324738,62390274,62455810,62521346,62586882,62652418,62717954,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504386,63569922,63635458,63700994,63766530,63832066,63897602,63963138,64028674,64094210,64159746,64225282,64290818,64356354,64421890,64487426,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601538,65667074,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322434,66387970,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912258,66977794,67043330,67108866,67174402,67239938,67305474,67371010,67436546,67502082,67567618,67633154,67698690,67764226,67829762,67895298,67960834,68026370,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009410,69074946,69140482,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337922,96403458,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927106,154992642,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497666,160563202,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,175964162,176029698,176095234,176160770,176226306,176291842,176357378,176422914,176488450,176553986,176619522,176685058,176750594,176816130,176881666,176947202,177012738,177078274,177143810,177209346,177274882,177340418,177405954,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,177995778,178061314,178126850,178192386,178257922,178323458,178388994,178454530,178520066,178585602,178651138,178716674,178782210,178847746,178913282,178978818,179044354,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642,179634178,179699714,179765250,179830786,179896322,179961858,180027394,180092930,180158466,180224002,180289538,180355074,180420610,180486146,180551682],"newly":[786433,2424833,176619521],"native":[786433,3604481,69664769,85262337,85327873,85852161,85917697,85983233,86048769,88735745,116785153,167575553,167641089,168165377,168230913,168296449,168361985,169476097,171180033,171704321,176619521],"newcallerid":[786434,3997702,176619522],"newchannel":[786434,4063238,176619522],"new":[786434,4063233,4128769,10747905,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28246018,28377089,28508163,28573699,28704771,28770307,28835843,28901379,28966915,29032451,29229059,29687811,29753347,30081027,30736385,33226754,33619971,33751043,33947651,34013187,34078723,34144259,34209795,34275331,34340867,34603011,34734083,34865155,34930691,35192835,35258371,35323907,35389443,35520515,35586051,35717123,35782659,35913731,36044803,36175875,36241411,36372483,36438019,36503555,36634627,36700163,36831235,36896771,37027843,37158915,37224451,37355523,37486595,37552131,37683203,37748739,37879811,37945347,38076419,38141955,38273027,38338563,38404099,38469635,38600707,38666243,38797315,38862851,38993923,39059459,39190531,39256067,39387139,39518211,39649283,39780356,39911427,40042499,40173571,40304643,40370179,40501251,40566787,40697859,40828931,40894467,40960003,41091075,41222147,41353219,41418755,41615363,41680899,41877507,41943043,42008579,42205187,42270723,42467331,42663939,42729475,42926083,43253762,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45088771,45154307,45285379,45350915,45416450,45481986,45547522,45613058,45678594,45744130,45809667,45875204,45940739,46006275,46071811,46137347,46202882,46268418,46399490,46530563,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513603,47579139,47644675,47710210,47775746,47841283,47906819,47972355,48037891,48168963,48234499,48300035,48365571,48431107,48496643,48562179,48693251,48758786,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49610755,49676291,49807363,49938435,50069507,50135043,50200579,50266115,50331651,50724867,50790403,50855939,50987011,51052547,51118083,51183619,51249157,51314694,51380230,51445762,51511298,51576835,51642371,51707907,51773443,51838979,51904514,51970050,52035586,52101122,52166659,52232195,52297730,52363266,52428803,52494339,52625411,52690947,52756483,52822019,52887555,52953092,53018628,53084163,53149701,53215237,53346307,53477379,53542915,53673987,53739523,53805059,54329347,54394883,54460419,54525955,54591491,54657027,54722563,54788099,54853635,54919171,54984707,55050243,55181315,55246851,55312387,55377923,55443459,55508995,55836675,55902211,55967747,56033283,56098819,56164355,56229890,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59047939,59113475,59179011,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963139,64028675,64094211,64159747,64290819,64356355,64421891,64487427,65667075,65732611,65798147,65863683,65929219,65994755,66322435,66584579,66715651,66912259,66977795,67043331,67108867,67239939,67305475,67371011,67436547,67502083,67567617,67895299,67960835,68157443,68222979,68288514,68354050,68485122,68747267,68812803,68878339,68943875,69009409,69140483,69271553,69599235,69664774,69730305,69861378,69926915,69992450,71106567,71172098,71303172,71368706,71434242,71499778,71565315,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089604,72155138,72220674,72286210,72351746,72417282,72482818,72548355,72613890,72679427,72744962,72810498,73203714,73269251,73334787,73596931,73662466,73728002,74383362,74448898,74514434,74579970,74645506,74711041,74776579,74842114,74907652,74973186,75038722,75104260,75169794,75235335,75366405,75563010,75694082,75759619,75825155,75890693,75956226,76021762,76152836,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,77004803,77070338,77135874,77201410,77266946,77332484,77856769,79495169,80609281,83623937,85393409,88801281,89915395,90308611,90374145,90505217,92274689,94240769,94306305,96796673,100532225,103219201,112132097,117374977,138739718,138870785,139395073,139460609,139526145,146669569,154992641,155189249,156631042,156696578,156762115,156827649,156893185,156958721,157024258,157155329,157220866,157286401,157351944,157417473,157483009,157548546,157614084,157679618,157745154,157810689,157876225,157941762,158007299,158072834,158138370,158203905,158269442,158334977,158400514,158466050,158531586,158597122,158662660,158728194,158793730,158859266,158924802,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449090,159514626,159580161,159645699,159711233,159776769,159842306,159973377,160038913,160104451,160169986,160235521,160301058,160366593,160497665,160628739,160694276,160759811,160825345,160890881,161153027,161218562,161284098,161480705,162004993,162070529,162136065,162267138,162332674,162398210,162463746,162529282,162594817,162660353,162725891,162791426,162856964,162922497,162988034,163053570,163119105,163184641,163250177,163315716,163381249,163446786,163512321,163577857,163643393,163708937,163840005,164036610,164167682,164233217,164298756,164364291,164429829,164495361,164560898,164626433,164691970,164757508,164823042,164888578,164954114,165019650,165085185,165150721,166199298,167510017,167575553,167641089,167706626,167772162,167837697,167903233,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114498,171180034,171245570,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359684,172425217,172490753,172556289,172621825,172687361,172752900,172818435,172883970,172949506,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194690,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718978,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702019,175767553,175833089,175898625,176619525,176750594,176816129,177405953,178913281,178978817,179044353,179109890,179175426,179240962,179306498,179372036,179437571,179503107,179568643,179634177,179830785,180420610,180486148,180551682],"newexten":[786434,4128774,176619522],"newstate":[786434,4194310,176619522],"newcallerideventhandler":[3997703,69533697,177143814],"newcalleridevent":[3997697,23855107,61276167,69664770,90308611,139395074,139460610,139526146,139591682,139657218,171835393,172752906,177143813],"newchanneleventhandler":[4063239,69533697,177209350],"newchannelevent":[4063233,23920643,61341703,69664771,90374147,167706626,172818442,177209349],"newexteneventhandler":[4128775,69533697,177274886],"newextenevent":[4128769,23986179,61407239,69664770,90439683,139722754,139788291,139853826,139919362,139984898,140050434,171835393,172883978,177274885],"newstateeventhandler":[4194311,69533697,177340422],"newstateevent":[4194305,24051715,61472775,69664771,90505219,167706626,172949514,177340421],"newname":[6750209,9830406,92274689,146669573,174718978],"need":[6815745,9961473,69599233,160694273,176619521],"numerical":[10747908,30212097,30277633,30343169,30408705,69337098,70057988,77463553,77529089,77594625,80150529,80216065,85131265,85196801,86310913,93650945,94568449,120913921,156762113,156827649,156893185,157220868,157614081,158138369,158597121,158662657,158728193,158793729,158859265,158924801,159645697,159842305,159973377,160038913,166199297,167510017,168624129,176750593,179830785],"number":[10747916,27787265,31129602,31719425,31784961,31916033,32309250,32374791,32440328,32571393,32702465,32833537,34144258,34275330,36503553,38797318,38862855,39649281,49545218,49676289,54657031,55050241,67174401,69140481,69337094,69599235,69730305,70254593,70516738,70582273,70713346,70778883,70844417,70909953,74973185,76218369,76414977,77856770,78381058,79101955,79429633,82903041,84738051,84803585,84869121,84934657,85065729,85524481,85590018,85655553,85786625,85852161,88211457,88276993,88342529,88735745,89128963,89194498,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915395,90636291,90701826,90832898,90963969,91226114,91291650,91357186,91422722,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012548,92864514,93192194,94240770,96927746,98304002,99942401,100007942,100466690,109772801,115802118,115867649,115998721,116129793,116260865,116457473,117506049,117637121,117768193,117899265,119144449,119472129,133693441,135331841,137232385,138739713,138805249,138870785,140574721,140705793,140902401,141754369,142802945,143065089,143130626,143261697,143720449,144834561,145424386,145489922,145555458,145686530,150274050,150601730,154992641,155058177,157220876,157351938,158007299,158531585,158793733,158924801,159121410,160628737,162988035,164823045,164888577,164954113,165019650,165150721,167837697,167903234,167968769,168099841,168165377,170655745,170721281,170786817,171180033,171573251,171638786,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359683,173080579,173146114,173277186,173408257,173670402,173735938,173801474,173867010,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456836,175308802,175636482,179306497,179372035],"names":[10747905,31195137,69337090,70320129,94175233,94306305,154861569,155123713,157220865,158072833,158990337,179306497,179437569],"noopcommand":[11862019,37289988,37355526,69271555,69337089,69402627,157417473,158334985,160169987,160301059],"null":[18219010,29294593,29491201,29556737,31195137,31260673,31457281,32047105,32112641,32178177,35323905,35389441,38338561,38404097,38469633,40960001,54263810,67567617,76087298,77987841,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143618,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,94830593,97124353,98828289,100728833,103415809,116523009,137756673,146407425,157614081,164757506,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587906,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"newaccountcodeevent":[23789571,61210631,69664769,90243075,139264003,139329539,171835393,172687370],"newline":[43057153],"newcat":[54263809,69599233,164757505],"newdata":[68419589],"numthreads":[69140486,180551681],"network":[69271553,156893185],"needed":[69599233,69730305,80609281,102891521,160694273,163381249,179109889],"numbers":[69599233,94175233,154861569,164757505,179306497],"networkstream":[80478209,102432780,160432129],"numeric":[85655553,91619329,91684865,91750401,91815937,91881473,118751233,167968769,174063617,174129153,174194689,174260225,174325761],"numberofmailbox":[89915393,138674177,172359681],"numb":[90308609,139526145,172752897],"natsupport":[90898433,141361158,173342721],"newmessages":[94240769,154992645,179372033],"notinheritable":[156565505,160497665],"nat":[169476097]} \ No newline at end of file diff --git a/docs/fti/FTI_111.json b/docs/fti/FTI_111.json index b0bd131..d3c2219 100644 --- a/docs/fti/FTI_111.json +++ b/docs/fti/FTI_111.json @@ -1 +1 @@ -{"open":[196609,64094209,81002497,87949313,115802113,146210817,158007297,163250177,170328065],"original":[196609],"occurs":[327681,393217,458753,524289,589825,655361,720897,786433,851969,5242882,25559041,25624577,64749570,151191553,151257089,151322625,151650306,154402817,154468353,160628737,161939457,171180033,174260225],"object":[327681,393217,458753,524289,589825,655361,720897,786433,851969,4718603,4784139,4849672,4915208,4980744,5046283,5111818,5177354,5242891,5308427,5373963,5439498,5505033,5570569,5636105,5701641,5767177,5832713,5898249,5963785,6029321,6094857,6160393,6225929,6291465,6357001,6422537,6488073,6553609,6619145,6684681,6750217,6815753,6881289,6946825,7012361,7077897,7143433,7208969,7274505,7340041,7405577,7471113,7536649,7602185,7667721,7733257,7798793,7864329,7995400,8060936,8126475,8192011,8257547,8323083,8388619,8454155,8519695,8585225,8650761,8716297,8781833,8847369,8912905,8978441,9043977,9109513,9175049,9240585,9306121,9371657,9437193,9502729,9568265,9633801,9699337,9764873,9830409,9895945,9961481,10027017,10092553,10158089,10223625,10289161,10354697,10420233,10485769,10551305,10616841,10682377,10747913,10813449,10878985,10944521,11010057,11075594,11141129,11206665,11272201,11337737,11403273,11468809,11534345,11599881,11665417,11730953,11796489,11862025,11927561,11993097,12058633,12124169,12189705,12255241,12320777,12386313,12451849,12517385,12582921,12648457,12713993,12779529,12845065,12910601,12976137,13041673,13107209,13172744,13238280,13303817,13369353,13434889,13500425,13565961,13631497,13697033,13762569,13828105,13893641,13959177,14024713,14090249,14155785,14221321,14286857,14352393,14417929,14483465,14549001,14614537,14680073,14745609,14811145,14876681,14942217,15007753,15073289,15138825,15204361,15269897,15335433,15400969,15466505,15532041,15597577,15663113,15728649,15794185,15859721,15925257,15990793,16056329,16121865,16187401,16252937,16318473,16384009,16449545,16515081,16580617,16646153,16711689,16777225,16842761,16908297,16973833,17039369,17104905,17170441,17235977,17301513,17367049,17432586,17498121,17563657,17629193,17694729,17760265,17825801,17891337,17956873,18022409,18087945,18153481,18219017,18284553,18350089,18415625,18481161,18546697,18612233,18677769,18743305,18808841,18874377,18939913,19005449,19070985,19136521,19202057,19267593,19333129,19398665,19464201,19529737,19595273,19660809,19726345,19791881,19857417,19922953,19988489,20054025,20119561,20185097,20250633,20316169,20381705,20447241,20512777,20578313,20643849,20709385,20774921,20840457,20905993,20971529,21037065,21102601,21168137,21233673,21299209,21364745,21430281,21495817,21626891,21692424,21757963,21823499,21889035,21954571,22020107,22085641,22151177,22216713,22282249,22347785,22413321,22478857,22544394,22609930,22675464,22741003,22806539,22872075,37814280,38010889,38076424,38273033,38338568,38535177,38862856,39059465,43122694,44367877,48365574,49938433,64028673,64225281,67371010,67436546,67502082,67633154,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,111017985,150994945,151060492,151126028,151191563,151257099,151322635,151388172,151453707,151584779,151650316,151715852,151781388,151846924,151912458,151977994,152043530,152109066,152174602,152240138,152305674,152371210,152436746,152502282,152567818,152633354,152698890,152764426,152829962,152895498,152961034,153026570,153092106,153157642,153223178,153288714,153354250,153419786,153485322,153550858,153616394,153681930,153747466,153813002,153878538,153944074,154009610,154075146,154140682,154206218,154271754,154402827,154468363,154533900,154599436,154664972,154730508,154796044,154861580,154927120,155058186,155123722,155189258,155254794,155320330,155385866,155451402,155516938,155582474,155648010,155713546,155779082,155844618,155910154,155975690,156041226,156106762,156172298,156237834,156303370,156368906,156434442,156499978,156565514,156631050,156696586,156762122,156827658,156893194,156958730,157024266,157089802,157155338,157220874,157286410,157351946,157417482,157483018,157548556,157614091,157679626,157745162,157810698,157876234,157941770,158007306,158072842,158138378,158203914,158269450,158334986,158400522,158466058,158531594,158597130,158662666,158728202,158793738,158859274,158924810,158990346,159055882,159121418,159186954,159252490,159318026,159383562,159449098,159514634,159580170,159645701,159711237,159776773,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160563205,160628747,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153029,161218565,161284101,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,161939467,162005002,162070538,162136074,162201611,162267147,162332682,162398219,162463754,162529290,162594826,162660362,162725898,162791434,162856970,162922506,162988042,163053578,163119114,163184650,163250186,163315722,163381258,163446794,163512330,163577866,163643402,163708938,163774474,163971082,164036618,164102154,164167690,164233226,164298762,164364298,164429834,164495370,164560906,164626442,164691978,164757514,164823050,164888586,164954122,165019658,165085194,165150730,165216266,165281802,165347338,165412874,165478410,165543946,165609482,165675018,165740554,165806090,165871626,165937162,166002698,166068234,166133770,166199306,166264844,166330378,166395914,166461450,166526986,166592522,166658058,166723594,166789130,166854666,166920202,166985738,167051274,167116810,167182346,167247882,167313418,167378954,167444490,167510026,167575562,167641098,167706634,167772170,167837706,167903242,167968778,168034314,168099850,168165386,168230922,168296458,168361994,168427530,168493066,168558602,168624138,168689674,168755210,168820746,168886282,168951818,169017354,169082890,169148426,169213963,169279498,169345034,169410570,169476106,169541642,169607178,169672714,169738250,169803786,169869322,169934858,170000394,170065930,170131466,170197002,170262538,170328074,170393605,170459141,170524677,170590213,170655749,170786821,170852357,170917893,170983429,171048972,171114501,171180043,171245580,171311109,171376645,171442181,171507717,171573253,171638789,171704325,171769861,171835404,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359685,172425221,172490757,172556293,172621829,172687365,172752901,172818437,172883973,172949509,173015045,173080581,173146117,173211653,173277189,173342733,173408268,173473804,173539338,173604875,173670410,173735946,173801482,173867018,173932554,173998092,174063627,174129157,174194693,174260235,174325765,174391301,174456837,174522373,174587909,174653445,174718981,174784517,174850060,174915596,174981132],"obsolete":[917505,3473409,63766529,77791233,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775105,111280129,150994945,154730497,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"oldname":[1245185,4390918,86769665,141164549,169148418],"order":[1310721,4456449,64159745,170131457,171048961],"obsoleteattribute":[3473412,105775108,111280132,154730500],"operations":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,79167489,109969409,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"overridden":[4849666,4915202,4980738,7995394,8060930,13172738,13238274,21692418,22675458,22806529,63111169,151191554,151257090,151322626,154402818,154468354,160628738,161939458,171180034,174260226,174915585],"one":[4849665,4915201,4980737,5242890,7995393,8060929,12713985,13172737,13238273,21692417,22675457,24707073,24772609,24838145,24903681,25821185,25886721,26542081,26607617,26673153,27918337,32833537,32899073,32964609,35586049,48758785,63832076,64028673,64159747,64552964,64880642,65142787,65536001,66584579,70582273,74448897,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463554,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805891,80871426,80936962,81002499,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393411,85458946,85524483,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638595,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949315,88473602,88539138,88604674,88670210,88735746,88801283,88866818,88932354,95813633,104398849,104660993,115343361,115802113,132251649,132317185,135987201,136445953,140705793,146210817,149618689,149946369,150077441,151191553,151257089,151322625,151650314,152043521,152567810,152829953,153026561,153092100,153157633,153223169,153288705,153354241,154075137,154140674,154271745,154402817,154468353,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483010,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161218561,161939457,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053571,163119108,163184642,163250179,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264835,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772163,167837698,167903235,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017347,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328067,171180033,173539330,173604866,173670402,173735938,173801474,173867011,173932546,173998082,174260225],"overrides":[5111809,5177345,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,8781825,9371649,9437185,10354689,10616833,11075585,11337729,11468801,12189697,12451841,12517377,12582913,12713985,13041665,15073281,17432577,21299201,22544385,22609921,24117249,24510465,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,39714817,40828929,40960001,42598401,43122689,44498945,44892161,45416449,47054849,47775745,47906817,48103425,48365569,49610753,52101121,54722561,58720257,62324737,62586881,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77725697,77791233,77856769,77922305,77987841,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,110231553,110428161,110559233,110690305,110821377,110886913,151453697,151584769,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,155058177,155123713,155189249,155254786,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844610,155910146,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827650,156893185,156958721,157024257,157089794,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157745153,157810690,157876225,157941762,158007297,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662658,158728193,158793729,158859265,158924802,158990338,159055874,159121409,159186946,159252481,159318017,159383553,159449089,159514626,159580161,163774465,166264833,170131457,173998081,174063617],"offset":[5242892,24707074,24772610,24838152,24903688,26214402,26279944,29818887,29884423,32440326,35454983,63832070,64552968,65011716,65798146,67043329,72482818,73334786,74383362,91815942,93782022,95682566,151650316,152043526,152961028,154075141],"optional":[5242882,26214401,26279937,28835850,41484289,41549825,63832065,64094210,65011714,68550658,74842113,75104258,96337921,97386497,97714177,151650306,152961025,154664961,155123714,156172290,157810689,158728193],"output":[8454145,37486593,64225282,154861569,173604866],"originateaction":[11337731,44892164,44957700,45023235,45088772,45154307,45219846,64094211,77791235,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,150142977,157614081,157810699,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"originated":[11337732,13303812,13369348,13893636,13959172,14024708,14090244,16777220,21823492,44957697,45023233,45088769,45154305,50069505,50135041,50200577,50266113,60555265,60620801,60686337,60751873,77791234,88211457,105054209,105775105,147718145,157810694,162004996,162070532,162594820,162660356,162725892,162791428,165609476,171835397],"omit":[12713985,48758785,70582273,159186945],"originateresponseevent":[18612227,56033287,64159745,85065731,134545411,134610947,134676483,134742019,134807555,134873091,134938627,167444490,169213953,171900933],"originate":[21823491,60555268,60620803,60686340,60751875,60817414,64028674,77791234,88211459,105119745,105381889,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,157810690,171835402,171900929],"originateresponse":[22609923,62521347,62586884,62652422,64028673,64225281,88997891,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,171900929,174063626],"operation":[22740993,62914562,64094209,158007297,174850049],"operating":[22806529,63176705,174915585],"overload":[23003137,23068673,23265281,23330817,23396353,24182785,24248321,24707073,24772609,24838145,24903681,25034753,25100289,25296897,25362433,25493505,25559041,25624577,25690113,25755649,25821185,25886721,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27590657,27656193,27852801,27918337,28442625,28508161,28573697,28639233,28704769,28770305,28835841,29360129,29425665,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31653889,31719425,31981569,32047105,32178177,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,34799617,34865153,34996225,35061761,35323905,35389441,35454977,35848193,35913729,36372481,36438017,36503553,36700161,36765697,37158913,37224449,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38731777,38797313,38862849,38928385,38993921,39059457,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43974657,44040193,44105729,44171265,44630017,44695553,44761089,44826625,45285377,45350913,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47972353,48037889,48234497,48300033,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49807361,49872897,50462721,50528257,53805057,53870593,54788097,54853633,59179009,59244545,59572225,59637761,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,61931521,61997057,62390273,62455809,62783489,62849025,63242241,63307777,63373313,63438849,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457],"override":[24117251,24510467,29032451,29163523,29294595,29491203,29949955,30146563,30343171,30474243,30605315,30801923,31064067,31260675,31457283,31588355,31784963,31916035,32112643,32309251,32505859,32702467,33030147,33226755,33423363,33619971,33816579,33947651,34078723,34209795,34340867,34471939,34603011,34734083,34930691,35127299,35258371,35520515,35651587,35782659,36241409,36306945,36569089,36634625,37027841,37093377,39714819,40828931,40960003,42598403,43122691,44498947,44892163,45023233,45154305,45416451,47054851,47775747,47906819,48103427,48365571,49610755,50135041,50266113,52101123,54591489,54657025,54722563,58720259,60882945,61014017,61276161,61341697,62193665,62259201,62324739,62586883,63111169,75104258,97189891,97386497,97452035,97714177,97779715,97976323,98041859,98238467,99221507,99549187,99811331,99942403,100139011,100270083,100466691,100597763,100663299,100794371,100990979,101187587,101318659,101449731,101580803,101777411,101842947,101908483,101974019,102105091,102301699,102498307,102694915,102957059,103088131,103284739,103415811,103612419,103743491,104136707,104202243,104333315,104595457,104726531,105119747,105840643,106168323,106233859,106299395,106692611,107085827,107347971,107610115,107937795,108134403,108265475,108396547,108593155,108986371,109248515,109510659,109576195,109707267,109772803,109903875,110231555,110428163,110559235,110690307,110821379,110886915,132055041,148307969,148373505,148701185,148766721,149749761,155123714],"options":[25362437,30736390,63832065,72810498,92667910,152371203],"obtained":[39124993,154927105],"overwrite":[47513601,78774273,109051905,158793729],"operate":[48758785,64094209,159186945],"occured":[49938433,64028673,79691777,111017986,161939458],"overridable":[54591489,54657025,61341697,62193665,62259201,63111169,104595457],"occur":[64028673,64159745,166133761,170917889],"option":[64028673,85131265,135331841,167510017,171442177],"originateresponseeventhandler":[64028673,171900933],"optionally":[64094209,155123713],"outgoing":[64094209,77791233,88211458,105316353,147849217,147914753,157810690,171835394],"originatesuccess":[64094209,77791233,105250817,157810690],"originatefailureevents":[64094209,77791233,105250817,157810690],"overwritten":[64094209,78774273,109051905,158793730],"offhook":[64094209,159252481],"org":[64159745,165609473],"old":[64225281,84410370,86769665,88735745,133234694,141164545,149487617,166789122,169148417,173801474],"origination":[77791236,88211459,105250818,105709570,148242435,157810692,171835395],"originatefailureevent":[77791233,88211457,105709569,148242433,157810690,171835393],"origbridgecreator":[81133569,116326406,163381249],"origbridgename":[81133569,116391942,163381249],"origbridgenumchannels":[81133569,116457478,163381249],"origbridgetechnology":[81133569,116523014,163381249],"origbridgetype":[81133569,116588550,163381249],"origbridgeuniqueid":[81133569,116654086,163381249],"origtransfereraccountcode":[81133569,116719622,163381249],"origtransferercalleridname":[81133569,116785158,163381249],"origtransferercalleridnum":[81133569,116850694,163381249],"origtransfererchannel":[81133569,116916230,163381249],"origtransfererchannelstate":[81133569,116981766,163381249],"origtransfererchannelstatedesc":[81133569,117047302,163381249],"origtransfererconnectedlinename":[81133569,117112838,163381249],"origtransfererconnectedlinenum":[81133569,117178374,163381249],"origtransferercontext":[81133569,117243910,163381249],"origtransfererlanguage":[81133569,117309446,163381249],"origtransfererpriority":[81133569,117374982,163381249],"origtransfereruniqueid":[81133569,117440518,163381249],"owner":[83558401,131072006,165937153],"oldaccountcode":[84738049,133758982,167116801],"objectname":[85393409,135856134,167772161],"originalposition":[85655553,136904710,168034305],"ourssrc":[86966273,142409734,169345025],"oldmessages":[88735745,149487621,173801473],"originatesuccessevent":[157810689]} \ No newline at end of file +{"open":[196609,69599233,86507521,93454337,121307137,151781377,163577857,168820737,175898625],"original":[196609],"occurs":[327681,393217,458753,524289,589825,655361,720897,851969,917505,10747906,31064065,31129601,70254594,156762113,156827649,156893185,157220866,159973377,160038913,166199297,167510017,176750593,179830785],"object":[327681,393217,458753,524289,589825,655361,720897,851969,917505,10223627,10289163,10354696,10420232,10485768,10551307,10616842,10682378,10747915,10813451,10878987,10944522,11010057,11075593,11141129,11206665,11272201,11337737,11403273,11468809,11534345,11599881,11665417,11730953,11796489,11862025,11927561,11993097,12058633,12124169,12189705,12255241,12320777,12386313,12451849,12517385,12582921,12648457,12713993,12779529,12845065,12910601,12976137,13041673,13107209,13172745,13238281,13303817,13369353,13500424,13565960,13631499,13697035,13762571,13828107,13893643,13959179,14024719,14090249,14155785,14221321,14286857,14352393,14417929,14483465,14549001,14614537,14680073,14745609,14811145,14876681,14942217,15007753,15073289,15138825,15204361,15269897,15335433,15400969,15466505,15532041,15597577,15663113,15728649,15794185,15859721,15925257,15990793,16056329,16121865,16187401,16252937,16318473,16384009,16449545,16515081,16580618,16646153,16711689,16777225,16842761,16908297,16973833,17039369,17104905,17170441,17235977,17301513,17367049,17432585,17498121,17563657,17629193,17694729,17760265,17825801,17891337,17956873,18022409,18087945,18153481,18219017,18284553,18350089,18415625,18481161,18546697,18612233,18677768,18743304,18808841,18874377,18939913,19005449,19070985,19136521,19202057,19267593,19333129,19398665,19464201,19529737,19595273,19660809,19726345,19791881,19857417,19922953,19988489,20054025,20119561,20185097,20250633,20316169,20381705,20447241,20512777,20578313,20643849,20709385,20774921,20840457,20905993,20971529,21037065,21102601,21168137,21233673,21299209,21364745,21430281,21495817,21561353,21626889,21692425,21757961,21823497,21889033,21954569,22020105,22085641,22151177,22216713,22282249,22347785,22413321,22478857,22544393,22609929,22675465,22741001,22806537,22872073,22937610,23003145,23068681,23134217,23199753,23265289,23330825,23396361,23461897,23527433,23592969,23658505,23724041,23789577,23855113,23920649,23986185,24051721,24117257,24182793,24248329,24313865,24379401,24444937,24510473,24576009,24641545,24707081,24772617,24838153,24903689,24969225,25034761,25100297,25165833,25231369,25296905,25362441,25427977,25493513,25559049,25624585,25690121,25755657,25821193,25886729,25952265,26017801,26083337,26148873,26214409,26279945,26345481,26411017,26476553,26542089,26607625,26673161,26738697,26804233,26869769,26935305,27000841,27131915,27197448,27262987,27328523,27394059,27459595,27525131,27590665,27656201,27721737,27787273,27852809,27918345,27983881,28049418,28114954,28180488,28246027,28311563,28377099,43319304,43515913,43581448,43778057,43843592,44040201,44367880,44564489,48627718,49872901,53870598,55443457,69533697,69730305,72876034,72941570,73007106,73138178,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,116523009,156565505,156631052,156696588,156762123,156827659,156893195,156958732,157024267,157155339,157220876,157286412,157351948,157417484,157483018,157548554,157614090,157679626,157745162,157810698,157876234,157941770,158007306,158072842,158138378,158203914,158269450,158334986,158400522,158466058,158531594,158597130,158662666,158728202,158793738,158859274,158924810,158990346,159055882,159121418,159186954,159252490,159318026,159383562,159449098,159514634,159580170,159645706,159711242,159776778,159842314,159973387,160038923,160104460,160169996,160235532,160301068,160366604,160432140,160497680,160628746,160694282,160759818,160825354,160890890,160956426,161021962,161087498,161153034,161218570,161284106,161349642,161415178,161480714,161546250,161611786,161677322,161742858,161808394,161873930,161939466,162005002,162070538,162136074,162201610,162267146,162332682,162398218,162463754,162529290,162594826,162660362,162725898,162791434,162856970,162922506,162988042,163053578,163119116,163184651,163250186,163315722,163381258,163446794,163512330,163577866,163643402,163708938,163774474,163840010,163905546,163971082,164036618,164102154,164167690,164233226,164298762,164364298,164429834,164495370,164560906,164626442,164691978,164757514,164823050,164888586,164954122,165019658,165085194,165150730,165216261,165281797,165347333,165412869,165478405,165543941,165609477,165675013,165740549,165806085,165871621,165937157,166002693,166133765,166199307,166264837,166330373,166395909,166461445,166526981,166592517,166658053,166723589,166789125,166854661,166920197,166985733,167051269,167116805,167182341,167247877,167313413,167378949,167444485,167510027,167575562,167641098,167706634,167772171,167837707,167903242,167968779,168034314,168099850,168165386,168230922,168296458,168361994,168427530,168493066,168558602,168624138,168689674,168755210,168820746,168886282,168951818,169017354,169082890,169148426,169213962,169279498,169345034,169541642,169607178,169672714,169738250,169803786,169869322,169934858,170000394,170065930,170131466,170197002,170262538,170328074,170393610,170459146,170524682,170590218,170655754,170721290,170786826,170852362,170917898,170983434,171048970,171114506,171180042,171245578,171311114,171376650,171442186,171507722,171573258,171638794,171704330,171769866,171835404,171900938,171966474,172032010,172097546,172163082,172228618,172294154,172359690,172425226,172490762,172556298,172621834,172687370,172752906,172818442,172883978,172949514,173015050,173080586,173146122,173211658,173277194,173342730,173408266,173473802,173539338,173604874,173670410,173735946,173801482,173867018,173932554,173998090,174063626,174129162,174194698,174260234,174325770,174391306,174456842,174522378,174587914,174653450,174718986,174784523,174850058,174915594,174981130,175046666,175112202,175177738,175243274,175308810,175374346,175439882,175505418,175570954,175636490,175702026,175767562,175833098,175898634,175964165,176029701,176095237,176160773,176226309,176357381,176422917,176488453,176553989,176619532,176685061,176750603,176816140,176881669,176947205,177012741,177078277,177143813,177209349,177274885,177340421,177405964,177471493,177537029,177602565,177668101,177733637,177799173,177864709,177930245,177995781,178061317,178126853,178192389,178257925,178323461,178388997,178454533,178520069,178585605,178651141,178716677,178782213,178847749,178913293,178978828,179044364,179109898,179175435,179240970,179306506,179372042,179437578,179503114,179568652,179634187,179699717,179765253,179830795,179896325,179961861,180027397,180092933,180158469,180224005,180289541,180355077,180420620,180486156,180551692],"one":[786433,2424833,10354689,10420225,10485761,10747914,13500417,13565953,18219009,18677761,18743297,27197441,28180481,30212097,30277633,30343169,30408705,31326209,31391745,32047105,32112641,32178177,33423361,38338561,38404097,38469633,41091073,54263809,69337100,69664771,70057988,70385666,70647811,71041025,72089603,76087297,79953921,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968578,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310915,86376450,86441986,86507523,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898435,90963970,91029507,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143619,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454339,93978626,94044162,94109698,94175234,94240770,94306307,94371842,94437378,101318657,109903873,110166017,120848385,121307137,137822209,137887745,141557761,142016513,146276353,151781377,155189249,155516929,155648001,156762113,156827649,156893185,157220874,157614081,158138370,158400513,158597121,158662660,158728193,158793729,158859265,158924801,159645697,159711234,159842305,159973377,160038913,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053570,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757506,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624131,168689668,168755202,168820739,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835395,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342723,173408258,173473795,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587907,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898627,176619521,176750593,179109890,179175426,179240962,179306498,179372034,179437571,179503106,179568642,179830785],"occur":[786433,3604481,69664769,171704321,176619521],"option":[786433,3866625,90636289,140902401,173080577,176619521],"originateresponse":[786434,4259846,28114947,68026371,68091908,68157446,69730305,94502915,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,176619522,179634186],"originate":[786433,4259841,27328515,66060292,66125827,66191364,66256899,66322438,69533697,83296258,93716483,110624769,110886913,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,163381250,176619521,177405962],"originateresponseeventhandler":[4259847,69533697,177471494],"originateresponseevent":[4259841,24117251,61538311,69664769,90570755,140115971,140181507,140247043,140312579,140378115,140443651,140509187,173015050,174784513,177471493],"obsolete":[6422529,8978433,69271553,83296257,85262337,85327873,85852161,85917697,85983233,86048769,88735745,111280129,116785153,156565505,160301057,163381249,167575553,167641089,168165377,168230913,168296449,168361985,171180033],"oldname":[6750209,9895942,92274689,146735109,174718978],"order":[6815745,9961473,69664769,175702017,176619521],"obsoleteattribute":[8978436,111280132,116785156,160301060],"operations":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,84672513,115474433,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757506,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"overridden":[10354690,10420226,10485762,13500418,13565954,18677762,18743298,27197442,28180482,28311553,68616193,156762114,156827650,156893186,159973378,160038914,166199298,167510018,176750594,179830786,180486145],"overrides":[10616833,10682369,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,14286849,14876673,14942209,15859713,16121857,16580609,16842753,16973825,17694721,17956865,18022401,18087937,18219009,18546689,20578305,22937601,26804225,28049409,28114945,29622273,30015489,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,45219841,46333953,46465025,48103425,48627713,50003969,50397185,50921473,52559873,53280769,53411841,53608449,53870593,55115777,57606145,60227585,64225281,67829761,68091905,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83230721,83296257,83361793,83427329,83492865,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,102694913,102957057,103284737,103481345,103546881,103743489,104726529,105054209,105316353,105447425,105644033,105775105,105971713,106102785,106168321,106299393,106496001,106692609,106823681,106954753,107085825,107282433,107347969,107413505,107479041,107610113,107806721,108003329,108199937,108462081,108593153,108789761,108920833,109117441,109248513,109641729,109707265,109838337,110231553,110624769,111345665,111673345,111738881,111804417,112197633,112590849,112852993,113115137,113442817,113639425,113770497,113901569,114098177,114491393,114753537,115015681,115081217,115212289,115277825,115408897,115736577,115933185,116064257,116195329,116326401,116391937,157024257,157155329,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,160628737,160694273,160759809,160825346,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415170,161480706,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529281,162594817,162660354,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163315713,163381250,163446785,163512322,163577857,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495362,164560898,164626434,164691969,164757506,164823041,164888577,164954113,165019649,165085186,165150721,169345025,171835393,175702017,179568641,179634177],"offset":[10747916,30212098,30277634,30343176,30408712,31719426,31784968,35323911,35389447,37945350,40960007,69337094,70057992,70516740,71303170,72548353,77987842,78839810,79888386,97320966,99287046,101187590,157220876,157614086,158531588,159645701],"optional":[10747906,31719425,31784961,34340874,46989313,47054849,69337089,69599234,70516738,74055682,80347137,80609282,101842945,102891521,103219201,157220866,158531585,160235521,160694274,161742850,163381249,164298753],"output":[13959169,42991617,69730306,160432129,179175426],"originateaction":[16842755,50397188,50462724,50528259,50593796,50659331,50724870,69599235,83296259,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,155713537,163184641,163381259,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"originated":[16842756,18808836,18874372,19398660,19464196,19529732,19595268,22282244,27328516,50462721,50528257,50593793,50659329,55574529,55640065,55705601,55771137,66060289,66125825,66191361,66256897,83296258,93716481,110559233,111280129,153288705,163381254,167575556,167641092,168165380,168230916,168296452,168361988,171180036,177405957],"omit":[18219009,54263809,76087297,164757505],"operation":[28246017,68419586,69599233,163577857,180420609],"operating":[28311553,68681729,180486145],"overload":[28508161,28573697,28770305,28835841,28901377,29687809,29753345,30212097,30277633,30343169,30408705,30539777,30605313,30801921,30867457,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,33095681,33161217,33357825,33423361,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34865153,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35520513,35586049,35717121,35782657,36175873,36241409,36372481,36438017,36503553,36634625,36700161,36831233,36896769,37158913,37224449,37486593,37552129,37683201,37748737,37879809,37945345,38076417,38141953,38273025,38338561,38404097,38469633,38600705,38666241,38797313,38862849,38993921,39059457,39190529,39256065,40304641,40370177,40501249,40566785,40828929,40894465,40960001,41353217,41418753,41877505,41943041,42008577,42205185,42270721,42663937,42729473,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44236801,44302337,44367873,44433409,44498945,44564481,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48234497,48300033,48365569,48431105,48496641,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49545217,49610753,49676289,50135041,50200577,50266113,50331649,50790401,50855937,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53477377,53542913,53739521,53805057,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55312385,55377921,55967745,56033281,59310081,59375617,60293121,60358657,64684033,64749569,65077249,65142785,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,67436545,67502081,67895297,67960833,68288513,68354049,68747265,68812801,68878337,68943873,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481],"override":[29622275,30015491,34537475,34668547,34799619,34996227,35454979,35651587,35848195,35979267,36110339,36306947,36569091,36765699,36962307,37093379,37289987,37421059,37617667,37814275,38010883,38207491,38535171,38731779,38928387,39124995,39321603,39452675,39583747,39714819,39845891,39976963,40108035,40239107,40435715,40632323,40763395,41025539,41156611,41287683,41746433,41811969,42074113,42139649,42532865,42598401,45219843,46333955,46465027,48103427,48627715,50003971,50397187,50528257,50659329,50921475,52559875,53280771,53411843,53608451,53870595,55115779,55640065,55771137,57606147,60096513,60162049,60227587,64225283,66387969,66519041,66781185,66846721,67698689,67764225,67829763,68091907,68616193,80609282,102694915,102891521,102957059,103219201,103284739,103481347,103546883,103743491,104726531,105054211,105316355,105447427,105644035,105775107,105971715,106102787,106168323,106299395,106496003,106692611,106823683,106954755,107085827,107282435,107347971,107413507,107479043,107610115,107806723,108003331,108199939,108462083,108593155,108789763,108920835,109117443,109248515,109641731,109707267,109838339,110100481,110231555,110624771,111345667,111673347,111738883,111804419,112197635,112590851,112852995,113115139,113442819,113639427,113770499,113901571,114098179,114491395,114753539,115015683,115081219,115212291,115277827,115408899,115736579,115933187,116064259,116195331,116326403,116391939,137625601,153878529,153944065,154271745,154337281,155320321,160694274],"options":[30867461,36241414,69337089,78315522,98172934,157941763],"obtained":[44630017,160497665],"overwrite":[53018625,84279297,114556929,164364289],"operate":[54263809,69599233,164757505],"occured":[55443457,69533697,85196801,116523010,167510018],"overridable":[60096513,60162049,66846721,67698689,67764225,68616193,110100481],"optionally":[69599233,160694273],"outgoing":[69599233,83296257,93716482,110821377,153419777,153485313,163381250,177405954],"originatesuccess":[69599233,83296257,110755841,163381250],"originatefailureevents":[69599233,83296257,110755841,163381250],"overwritten":[69599233,84279297,114556929,164364290],"offhook":[69599233,85393409,88801281,90374145,90505217,117374977,164823041,167706625,171245569,172818433,172949505],"org":[69664769,171180033],"old":[69730305,89915394,92274689,94240769,138805254,146735105,155058177,172359682,174718977,179372034],"origination":[83296260,93716483,110755842,111214594,153812995,163381252,177405955],"originatefailureevent":[83296257,93716481,111214593,153812993,163381250,177405953],"origbridgecreator":[86638593,121831430,168951809],"origbridgename":[86638593,121896966,168951809],"origbridgenumchannels":[86638593,121962502,168951809],"origbridgetechnology":[86638593,122028038,168951809],"origbridgetype":[86638593,122093574,168951809],"origbridgeuniqueid":[86638593,122159110,168951809],"origtransfereraccountcode":[86638593,122224646,168951809],"origtransferercalleridname":[86638593,122290182,168951809],"origtransferercalleridnum":[86638593,122355718,168951809],"origtransfererchannel":[86638593,122421254,168951809],"origtransfererchannelstate":[86638593,122486790,168951809],"origtransfererchannelstatedesc":[86638593,122552326,168951809],"origtransfererconnectedlinename":[86638593,122617862,168951809],"origtransfererconnectedlinenum":[86638593,122683398,168951809],"origtransferercontext":[86638593,122748934,168951809],"origtransfererlanguage":[86638593,122814470,168951809],"origtransfererpriority":[86638593,122880006,168951809],"origtransfereruniqueid":[86638593,122945542,168951809],"owner":[89063425,136642566,171507713],"oldaccountcode":[90243073,139329542,172687361],"objectname":[90898433,141426694,173342721],"originalposition":[91160577,142475270,173604865],"ourssrc":[92471297,147980294,174915585],"oldmessages":[94240769,155058181,179372033],"originatesuccessevent":[163381249]} \ No newline at end of file diff --git a/docs/fti/FTI_112.json b/docs/fti/FTI_112.json index ece6697..1b4559d 100644 --- a/docs/fti/FTI_112.json +++ b/docs/fti/FTI_112.json @@ -1 +1 @@ -{"project":[131074,196609,64094209,155320321],"point":[196609,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132186113,149815297,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"port":[917506,2097153,3080193,28573702,28639238,28770310,28835848,37421062,37748742,60227590,60293126,72220673,72351746,88080387,90963969,91291650,147128327,150994946,151584769,151781378,171048963],"pool":[917505,2555905,22872066,28639233,28770305,63569922,64290817,72351746,91422722,150994945,151781378,174981123],"provided":[917506,3014657,3080193,5242886,24707073,24772609,24838145,24903681,26214401,26279937,41484289,41549825,63832067,64094209,64159745,64552964,65011714,68550658,150994946,151650310,152043521,152961025,154075137,156172290,159186945,170131457],"public":[1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407875,3473411,3538947,3604483,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4456451,4521987,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,27262979,27983875,28180483,28246019,28311555,28377091,28442627,28508163,28573699,28639235,28704771,28770307,28835843,28901379,29032451,29163523,29229059,29294595,29360131,29425667,29491203,29556739,29622275,29687811,29753347,29818883,29884419,29949955,30015491,30081027,30146563,30212099,30277635,30343171,30408707,30474243,30539779,30605315,30670851,30736387,30801923,30867459,30932995,30998531,31064067,31129603,31195139,31260675,31326211,31391747,31457283,31522819,31588355,31653891,31719427,31784963,31850499,31916035,31981571,32047107,32112643,32178179,32243715,32309251,32374787,32440323,32505859,32571395,32636931,32702467,32768003,32833539,32899075,32964611,33030147,33095683,33161219,33226755,33292291,33357827,33423363,33488899,33554435,33619971,33685507,33751043,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34275331,34340867,34406403,34471939,34537475,34603011,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127299,35192835,35258371,35323907,35389443,35454979,35520515,35586051,35651587,35717123,35782659,35848195,35913731,36110339,36175875,36241411,36306947,36372483,36438019,36503555,36569091,36634627,36700163,36765699,36831235,36896771,36962307,37027843,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37617667,37683203,37748739,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38404099,38469635,38535171,38600707,38666243,38731779,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239107,40304643,40370179,40435715,40501251,40566787,40632323,40697859,40763395,40828931,40894467,40960003,41025539,41091075,41156611,41222147,41287683,41353219,41418755,41484291,41549827,41615363,41680899,41746435,41811971,41877507,41943043,42008579,42074115,42139651,42205187,42270723,42336259,42401795,42467331,42532867,42598403,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43122691,43188227,43253763,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44236803,44367875,44498947,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45088771,45154307,45219843,45285379,45350915,45416451,45481987,45547523,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46268419,46333955,46399491,46465027,46530563,46596099,46661635,46727171,46792707,46858243,46923779,46989315,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47841283,47906819,47972355,48037891,48103427,48168963,48234499,48300035,48365571,48431107,48496643,48562179,48627715,48693251,48758787,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49610755,49676291,49741827,49807363,49872899,49938435,50003971,50069507,50135043,50200579,50266115,50331651,50397187,50462723,50528259,50593795,50659331,50724867,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51904515,51970051,52035587,52101123,52166659,52232195,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591491,54657027,54722563,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59179011,59244547,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60096515,60162051,60227587,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,64159747,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91291651,91357187,91422723,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257731,93323267,93388803,93454339,93519875,93585411,93650947,93716483,93782019,93847555,93913091,93978627,94044163,94109699,94175235,94240771,94306307,94371843,94437379,94502915,94568451,94633987,94699523,94765059,94830595,94896131,94961667,95027203,95092739,95158275,95223811,95289347,95354883,95420419,95485955,95551491,95617027,95682563,95748099,95813635,95879171,95944707,96010243,96075779,96141315,96206851,96272387,96337923,96403459,96468995,96534531,96600067,96665603,96731139,96796675,96862211,96927747,96993283,97058819,97124355,97189891,97255427,97320963,97386499,97452035,97517571,97583107,97648643,97714179,97779715,97845251,97910787,97976323,98041859,98107395,98172931,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221507,99287043,99352579,99418115,99483651,99549187,99614723,99680259,99745795,99811331,99876867,99942403,100007939,100073475,100139011,100204547,100270083,100335619,100401155,100466691,100532227,100597763,100663299,100728835,100794371,100859907,100925443,100990979,101056515,101122051,101187587,101253123,101318659,101384195,101449731,101515267,101580803,101646339,101711875,101777411,101842947,101908483,101974019,102039555,102105091,102170627,102236163,102301699,102367235,102432771,102498307,102563843,102629379,102694915,102760451,102825987,102891523,102957059,103022595,103088131,103153667,103219203,103284739,103350275,103415811,103481347,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,104726531,104792067,104857603,104923139,104988675,105054211,105119747,105185283,105250819,105316355,105381891,105447427,105512963,105578499,105644035,105709571,105775107,105840643,105906179,105971715,106037251,106102787,106168323,106233859,106299395,106364931,106430467,106496003,106561539,106627075,106692611,106758147,106823683,106889219,106954755,107020291,107085827,107151363,107216899,107282435,107347971,107413507,107479043,107544579,107610115,107675651,107741187,107806723,107872259,107937795,108003331,108068867,108134403,108199939,108265475,108331011,108396547,108462083,108527619,108593155,108658691,108724227,108789763,108855299,108920835,108986371,109051907,109117443,109182979,109248515,109314051,109379587,109445123,109510659,109576195,109641731,109707267,109772803,109838339,109903875,109969411,110034947,110100483,110166019,110231555,110297091,110362627,110428163,110493699,110559235,110624771,110690307,110755843,110821379,110886915,110952451,111017987,111083523,111149059,111214595,111280131,111345667,111411203,111476739,111542275,111607811,111673347,111738883,111804419,111869955,111935491,112001027,112066563,112132099,112197635,112263171,112328707,112394243,112459779,112525315,112590851,112656387,112721923,112787459,112852995,112918531,112984067,113049603,113115139,113180675,113246211,113311747,113377283,113442819,113508355,113573891,113639427,113704963,113770499,113836035,113901571,113967107,114032643,114098179,114163715,114229251,114294787,114360323,114425859,114491395,114556931,114622467,114688003,114753539,114819075,114884611,114950147,115015683,115081219,115146755,115212291,115277827,115343363,115408899,115474435,115539971,115605507,115671043,115736579,115802115,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,128319491,128385027,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,128974851,129040387,129105923,129171459,129236995,129302531,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661827,131727363,131792899,131858435,131923971,131989507,132055043,132120579,132186115,132251651,132317187,132382723,132448259,132513795,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103619,133169155,133234691,133300227,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824515,133890051,133955587,134021123,134086659,134152195,134217731,134283267,134348803,134414339,134479875,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004163,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,136118275,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232387,137297923,137363459,137428995,137494531,137560067,137625603,137691139,137756675,137822211,137887747,137953283,138018819,138084355,138149891,138215427,138280963,138346499,138412035,138477571,138543107,138608643,138674179,138739715,138805251,138870787,138936323,139001859,139067395,139132931,139198467,139264003,139329539,139395075,139460611,139526147,139591683,139657219,139722755,139788291,139853827,139919363,139984899,140050435,140115971,140181507,140247043,140312579,140378115,140443651,140509187,140574723,140640259,140705795,140771331,140836867,140902403,140967939,141033475,141099011,141164547,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244739,144310275,144375811,144441347,144506883,144572419,144637955,144703491,144769027,144834563,144900099,144965635,145031171,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,146210819,146276355,146341891,146538499,146604035,146669571,146735107,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,148504579,148570115,148635651,148701187,148766723,148832259,148897795,148963331,149028867,149094403,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618691,149684227,149749763,149815299,149880835,149946371,150011907,150077443,150142979,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,150732803,150798339,150863875,150929411,150994947,151060483,151126019,151191556,151257092,151322628,151388163,151453699,151519235,151584771,151650307,151715843,151781379,151846915,151912452,151977988,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567812,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337283,154402820,154468356,154533891,154599427,154664963,154730499,154796035,154861571,154927107,154992643,155058180,155123716,155189252,155254788,155320324,155385860,155451396,155516932,155582468,155648004,155713540,155779076,155844612,155910148,155975684,156041220,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631044,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548547,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563203,160628740,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163840003,163905539,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903236,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131463,170196996,170262532,170328068,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180036,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998083,174063619,174129155,174194691,174260228,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123],"protected":[3670019,4325379,4390915,4587523,4653059,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27066371,27131907,27197443,27328515,27394051,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,28049411,28114947,28966915,29097987,44302339,44433411,44564483,45613059,51838979,52297731,59310083,59375619,91226115],"perform":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,64028673,64159745,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133762,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170917889,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"particular":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,40894465,64094209,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844611,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"playback":[5111809,5242888,23789569,24707074,24772610,24838146,24903682,63832074,64094209,64552968,151453697,151650312,152043522,153026561,153092097,153157633,153223169,153288705,153354241,154075138,155058177],"part":[5111809,23855105,63766529,63897601,86638593,140640257,151453697,154599425,154730497,169017345],"parameter":[5177345,24313864,77791233,78970881,105512961,109641729,151584769,157810689,158990337],"parametermap":[5177345,24379399,151584769],"parametervalues":[5177345,24444936,151584769],"plays":[5242892,24707073,24772609,24838145,24903681,25493505,25559041,25624577,25821185,25886721,26083329,27852801,27918337,63832067,64552964,64749571,64880642,64946177,65536002,151650316,152043521,152567809,154075137],"play":[5242884,24707073,24772609,24838145,24903681,25493505,25559041,25624577,27852801,27918337,34865153,40239105,63832066,64552964,74186753,95223810,151650308,152043521,153878529,154075137],"pressed":[5242890,24707074,24772610,24838146,24903682,25821187,25886723,26411010,26542082,26607618,26673154,26804226,26935298,27066370,27197442,27918338,28049410,63832084,64552968,64880642,151650314,152043522,152567811,153026562,153092099,153157634,153223170,153288706,153354242,154075138],"prefix":[5242881,25100290,64618497,151650305],"presses":[5242883,25493505,25559041,25624577,25886721,31391745,63832065,64749571,73007105,93192193,151650307,152436737,152567809],"press":[5242884,25821187,25886723,31326209,31391745,63832066,64880644,73007105,93061121,151650308,152567811],"playmusiconhold":[5242882,26083334,26148872,64946179,151650306],"phonetics":[5242882,27000833,27066369,63832065,65339394,151650306,153288705],"priority":[5242881,27590663,34996230,40108038,47251463,47316999,63832065,64094210,65470465,70254594,72220674,74252290,75431938,77791237,78708738,80347137,81264641,81461249,81592321,84934658,86507521,87359489,88211461,90636294,95354886,99483654,105447425,105578497,105644039,108920838,114294790,123797510,134479878,140443649,144965638,147980289,148111361,148176903,151584770,151650305,153944067,155451394,157810695,158728196,162594817,163512321,163708929,163971073,167313410,168886273,169738241,171835397],"playing":[5242881,27787265,34799617,34865153,66912258,151650305,153878530],"pressing":[5242881,27918337,65536001,151650305],"pause":[5636097,24903681,29622274,29884417,65732609,72482817,91881473,152043522],"parkaction":[11403267,45285386,45350919,64094210,69664774,77856771,105840642,105906178,105971714,106037250,106102786,157548545,157876236],"parkedcallsaction":[11468803,45416452,45481990,64028674,64094210,64159746,77922307,106168322,157614081,157941770,167510018,167641090,171966465,172097537],"pingaction":[11534339,45547526,64094210,77987843,106233858,157548545,158007306],"proxyaction":[11599875,45613062,64094209,77529090,77594626,77660162,78053381,104464386,157548547,157614082,157679618,158072844],"provide":[12713985,48758785,70582273,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,159186945,160628737,161939457,171180033,174260225],"parameters":[12713985,22937601,23003137,23068673,23199745,23330817,23396353,23527425,23724033,23789569,24248321,24313857,24444929,24576001,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362434,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27852801,27918337,27983873,28049409,28180481,28246017,28508161,28573697,28639233,28704769,28770305,28835841,28966913,29425665,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31719425,32047105,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35913729,35979265,36110337,36175873,36241409,36438017,36503553,36569089,36765697,36831233,36896769,37027841,37224449,37421057,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39256065,39387137,39452673,39583745,39649281,39845889,39976961,40108033,40239105,40370177,40501249,40632321,40763393,40894465,41156609,41287681,41418753,41549825,41680897,41811969,41943041,42270721,42401793,42532865,42729473,42860545,42991617,43253761,43384833,43450369,43581441,43712513,43778049,43843585,44040193,44171265,44695553,44761089,44826625,44957697,45088769,45154305,45285377,45350913,45744129,45809665,45875201,46006273,46137345,46202881,46268417,46333953,46465025,46596103,46727169,46858241,46989313,47251457,47316993,47448065,47513601,47644673,47710209,48037889,48300033,48496641,48562177,48627713,48693249,48758786,48889857,48955393,49020929,49152001,49283073,49414145,49545217,49807361,49872897,49938433,50003969,50069505,50200577,50266113,50331649,50397185,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59113473,59179009,59244545,59637761,59768833,59834369,59899905,59965441,60030977,60096513,60227586,60293122,60358657,60424193,60489729,60555265,60686337,60751873,60948481,61014017,61079553,61145089,61341697,61407233,61669377,61997057,62062593,62193665,62259201,62455809,62717953,62849025,62914561,62980097,63307777,63373313,63438849,63504385,63635457,63766529,63897601,64028673,64094209,64159745,70582273,71499778,77791234,78381057,84934658,88211457,105185281,105512962,107741190,134152194,148045825,151519235,154599425,154730497,157810691,158400513,159186945,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,167313410,168886273,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171048962,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080578,173146113,173211649,173277185,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"parse":[13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299202,21364737,21430273,21495809,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,54591495,58720266,62193671,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,132055042,149749762,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131460,170196995,170262531,170328067,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"properties":[13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299202,21364739,21430275,21495811,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,52101121,54591489,54657025,54722562,62193665,62259201,64094210,64159747,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266947,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791237,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211461,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,104005633,105447425,105578497,105644033,147980289,148111361,148176897,151060481,151191553,151257089,151322625,151453697,151584769,151650305,151781377,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154599425,154664961,154730497,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810694,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004996,162070532,162136069,162201604,162267141,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903236,167968772,168034308,168099844,168165380,168230916,168296453,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131459,170196996,170262532,170328068,170721281,171048961,171180033,171835396,173342721,173408257,173473793,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063617,174260225,174850049,174915585],"parser":[13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299201,21364738,21430274,21495810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,52101121,54591489,54657025,62193665,62259201,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131457,170196994,170262530,170328066,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"parsespecial":[13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073282,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,52101126,54657030,62259206,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774466,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"parkedcallevent":[18677763,56098823,64094209,64159746,85131267,135004162,135069698,135135234,135200770,135266306,135331842,157941762,167510026,167641089,169213953,171966469],"parkedcallgiveupevent":[18743299,56164359,64159746,85196803,162332673,167575562,172032005],"parkedcallscompleteevent":[18808835,56229895,64094209,64159746,85262339,157941762,167641098,169213953,172097541],"parkedcalltimeoutevent":[18874371,56295431,64159746,85327875,162332673,167706634,172163077],"peerentryevent":[18939907,56360966,64094210,64159746,85393411,135397379,135462914,135528450,135593987,135659522,135725059,135790595,135856131,135921667,135987202,136052739,136118275,158924802,158990338,167772169,167837697,169213953,172228613],"peerlistcompleteevent":[19005443,56426503,64094210,64159746,85458947,136183810,158924802,158990338,167837706,169213953,172294149],"peerstatusevent":[19070979,56492039,64159746,85524483,136249346,136314882,136380418,136445954,136511490,166264833,167903242,172359685],"prievent":[19136515,56557574,64159745,85590020,136577027,136642569,136708099,136773635,166264833,167968778],"protocol":[21626884,59572226,59637762,71303172,82509825,88080385,127598593,147456001,164888577,171048965],"particulary":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"picked":[22872065,63504385,174981121],"param":[22937601,23003140,23068675,23199746,23527426,23724033,24248321,24313857,24444929,25755649,26148865,27262978,27328513,27394049,27459585,27525121,27590657,27656193,28180481,28246017,28508161,28573700,28704769,28835845,28966913,32243713,32768001,35192833,35586049,35979265,36241409,36438017,36503553,36569089,36765697,36831233,36896770,37027841,37224449,37421059,37814273,37879809,37945346,38010882,38076417,38141953,38207490,38273026,38338561,38404097,38469634,38535170,38666242,38862849,38928385,38993922,39059458,39845890,39976974,40763394,40894465,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,44957697,45088770,45154305,45285379,46006277,46465027,46596100,46858241,46989313,48037889,48300033,48496641,48562178,48627715,48693252,48889858,48955395,49020931,49152002,49283073,49414145,49545217,50003969,50069505,50200578,50266113,50331649,50397185,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720258,58785793,58851329,58916865,58982401,59179009,59244546,59768833,59834369,59899906,59965441,60030977,60096513,60293121,60489729,60555265,60686338,60751873,60948481,61014017,61079555,61341697,61407234,61669377,61997057,62455809,63504385],"pausedigit":[24903685,29622277,29884421,72482817,91881477,152043521],"pass":[25362433,30736385,64028673,64094209,64159745,72810497,77791233,88211457,92667905,105512962,148045825,152371201,155123713,157810689,170131457,171442177,171835393],"played":[26279937,32440321,73334785,93519873,152961025],"param1":[27262982],"param2":[27262982],"poolsize":[28573702,28639237,28770309,28835848,72351745,91422725,151781377],"pausing":[29687809,29753345,29818881,29884417,65798148,152043524],"pathtoxml":[36831238,36896774],"params":[38010881,38273025,38535169,39059457],"paramarray":[38010881,38273025,38535169,39059457],"pbx":[40173569,40239105,64094209,64159745,68026370,155516930,157220865,167313409],"progress":[41484289,41549825,64028673,68550658,156172290,161218561],"profile":[41484289,41549825,68550658,156172290],"performs":[43712513,43778049,43843585,64094209,69402627,157286403,158007297],"password":[43712514,43778049,43843585,60227590,60293126,64028673,64094209,69402625,77266946,88080387,103809025,104005633,146997255,155123713,157286403,160628737,171048963],"parkinglot":[45350917,77856769,106037253,157876225],"parked":[45350913,64028676,64094210,64159748,77856769,80084996,85131270,85196804,85327876,87687173,105906177,112132097,112197633,112263169,112328705,135004161,135069697,135135233,135200769,135266305,135331841,145686529,157876225,157941762,162332676,167510023,167575557,167641089,167706628,170065926,171966465,172032001,172097537,174522369],"parking":[45350913,64028673,64094209,64159746,77856769,106037249,157876226,162332673,167706625,172163073],"penalty":[45875209,46399489,46465031,64159745,69730305,69926914,78118916,78315521,80150530,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,106561544,107479046,112984070,138018822,138608646,139067398,139657222,158138373,158334979,162398210,168361986,168427522,168493058,168558594,168624131,168689666,168755202,168820738],"positive":[45875201,78118913,106561537,158138369],"penalties":[45875201,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,106561537,112984065,138018817,138608641,139657217,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737],"paused":[46202885,46333957,64028674,64159746,78118915,78249985,80150533,85983237,86048769,86114308,86179846,86245381,86310917,86376453,86441989,106496007,107216901,112852999,112918530,137953287,138543110,138936321,139001857,139591687,158138371,158269441,162398213,168361989,168427521,168493061,168558599,168624133,168689669,168755205,168820741,172818433,172883969],"peer":[48037895,64028673,64094211,64159745,70451201,78970882,85393411,85524483,109641734,135528449,135659521,135987201,136249345,136380423,158924801,158990341,163905538,167772164,167903235,172228609],"partial":[49938433,64028673,79691778,111017986,161939460],"partialresult":[49938437,79691777,111017989,161939457],"parts":[49938433,111017985],"passed":[50724865,54853633,56950785,57081857,57147393,57212929,57278465,57344001,57409537,72220674,84934657,90308610,134152193,151584770,167313409],"parsed":[54591489,62193665],"property":[62980097,64094211,64159746,72155137,75104260,75628546,77398017,77463553,77725699,77791233,78118914,78249985,78446593,78774274,79101953,79233026,79298561,79364097,79429633,79560705,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638595,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88080385,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89260036,89325572,89391108,89456644,89522179,89587715,89653252,89718788,89784324,89849860,89915396,89980932,90046468,90112003,90177540,90243076,90308612,90374148,90439684,90505220,90570756,90636292,90701828,90767364,90832900,90898436,90963972,91029508,91095043,91160579,91226116,91291652,91357188,91422724,91488260,91553796,91619332,91684868,91750404,91815940,91881476,91947012,92012548,92078084,92143620,92209156,92274692,92340228,92405764,92471300,92536836,92602372,92667908,92733444,92798980,92864516,92930052,92995588,93061124,93126660,93192196,93257732,93323267,93388804,93454340,93519876,93585412,93650948,93716484,93782020,93847556,93913092,93978628,94044164,94109700,94175236,94240772,94306308,94371844,94437380,94502916,94568452,94633988,94699524,94765060,94830595,94896131,94961667,95027204,95092740,95158275,95223811,95289348,95354884,95420420,95485956,95551492,95617028,95682564,95748100,95813636,95879172,95944708,96010244,96075779,96141315,96206852,96272388,96337924,96403460,96468996,96534532,96600068,96665604,96731140,96796676,96862212,96927748,96993284,97058820,97124356,97189892,97255428,97320964,97386501,97452036,97517573,97583108,97648645,97714181,97779715,97845252,97910787,97976324,98041860,98107396,98172932,98238468,98304004,98369540,98435076,98500612,98566148,98631684,98697220,98762756,98828292,98893828,98959364,99024900,99090436,99155972,99221508,99287044,99352580,99418116,99483652,99549188,99614724,99680260,99745796,99811332,99876868,99942404,100007941,100073477,100139012,100204548,100270084,100335620,100401156,100466692,100532228,100597764,100663300,100728836,100794372,100859908,100925444,100990980,101056516,101122052,101187588,101253124,101318660,101384196,101449732,101515268,101580804,101646340,101711876,101777412,101842948,101908484,101974020,102039556,102105092,102170628,102236164,102301700,102367236,102432772,102498308,102563843,102629380,102694916,102760452,102825988,102891524,102957060,103022596,103088132,103153668,103219204,103284740,103350276,103415812,103481348,103546884,103612420,103677956,103743492,103809028,103874564,103940100,104005636,104071172,104136708,104202244,104267781,104333316,104398853,104464388,104529924,104595460,104660996,104726532,104792069,104857605,104923141,104988676,105054212,105119748,105185284,105250820,105316356,105381893,105447428,105512964,105578500,105644036,105709572,105775108,105840644,105906180,105971716,106037252,106102788,106168324,106233860,106299396,106364933,106430468,106496004,106561540,106627077,106692612,106758148,106823684,106889220,106954756,107020292,107085828,107151365,107216900,107282436,107347972,107413508,107479044,107544580,107610116,107675652,107741188,107806724,107872260,107937796,108003333,108068868,108134404,108199940,108265476,108331012,108396548,108462084,108527620,108593156,108658692,108724228,108789764,108855300,108920836,108986372,109051908,109117445,109182981,109248516,109314052,109379588,109445124,109510660,109576196,109641732,109707268,109772804,109838341,109903876,109969412,110034948,110100484,110166020,110231556,110297093,110362629,110428164,110493701,110559236,110624773,110690308,110755845,110821380,110886916,110952453,111017987,111083524,111149060,111214596,111280132,111345668,111411204,111476740,111542276,111607812,111673348,111738884,111804420,111869956,111935492,112001028,112066564,112132100,112197636,112263172,112328708,112394244,112459780,112525316,112590852,112656388,112721924,112787460,112852996,112918532,112984068,113049604,113115140,113180676,113246212,113311748,113377284,113442820,113508356,113573892,113639428,113704964,113770500,113836036,113901572,113967108,114032644,114098180,114163716,114229252,114294788,114360324,114425860,114491396,114556932,114622468,114688004,114753540,114819076,114884612,114950148,115015684,115081220,115146756,115212292,115277828,115343364,115408900,115474436,115539972,115605508,115671044,115736580,115802116,115867652,115933188,115998724,116064260,116129796,116195332,116260868,116326404,116391940,116457476,116523012,116588548,116654084,116719620,116785156,116850692,116916228,116981764,117047300,117112836,117178372,117243908,117309444,117374980,117440516,117506052,117571588,117637124,117702660,117768196,117833732,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423556,118489092,118554628,118620164,118685700,118751236,118816772,118882308,118947844,119013380,119078916,119144452,119209988,119275524,119341060,119406596,119472132,119537668,119603204,119668740,119734276,119799812,119865348,119930884,119996420,120061956,120127492,120193028,120258564,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156804,126222340,126287876,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598596,127664132,127729668,127795204,127860740,127926276,127991812,128057348,128122884,128188420,128253956,128319492,128385028,128450564,128516100,128581636,128647172,128712708,128778244,128843780,128909316,128974852,129040388,129105924,129171460,129236996,129302532,129368068,129433604,129499140,129564676,129630212,129695748,129761284,129826820,129892356,129957892,130023428,130088964,130154500,130220036,130285572,130351108,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661828,131727364,131792900,131858436,131923972,131989508,132055044,132120580,132186116,132251653,132317188,132382724,132448261,132513796,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103620,133169156,133234692,133300228,133365764,133431300,133496836,133562372,133627908,133693444,133758980,133824516,133890052,133955588,134021124,134086660,134152196,134217732,134283268,134348804,134414340,134479876,134545412,134610948,134676484,134742020,134807556,134873092,134938628,135004164,135069700,135135236,135200772,135266308,135331844,135397380,135462916,135528452,135593988,135659524,135725060,135790596,135856132,135921668,135987204,136052740,136118276,136183812,136249348,136314884,136380420,136445956,136511492,136577028,136642564,136708100,136773636,136839172,136904708,136970244,137035780,137101316,137166852,137232388,137297924,137363460,137428996,137494532,137560068,137625604,137691140,137756676,137822212,137887748,137953284,138018820,138084356,138149892,138215428,138280964,138346500,138412036,138477572,138543108,138608644,138674180,138739716,138805252,138870788,138936324,139001860,139067396,139132932,139198468,139264004,139329540,139395076,139460612,139526148,139591684,139657220,139722756,139788292,139853828,139919364,139984900,140050436,140115972,140181508,140247044,140312580,140378116,140443652,140509188,140574724,140640260,140705797,140771332,140836868,140902404,140967940,141033476,141099012,141164548,141230084,141295620,141361156,141426692,141492228,141557764,141623300,141688836,141754372,141819908,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802948,142868484,142934020,142999556,143065092,143130628,143196164,143261700,143327236,143392772,143458308,143523844,143589380,143654916,143720452,143785988,143851524,143917060,143982596,144048132,144113668,144179204,144244740,144310276,144375812,144441348,144506884,144572420,144637956,144703492,144769028,144834564,144900100,144965636,145031172,145096708,145162244,145227780,145293316,145358852,145424388,145489924,145555460,145620996,145686532,145752068,145817604,145883140,145948676,146014212,146079748,146145284,146210820,146276356,146341892,146407428,146472964,146538500,146604036,146669572,146735109,146800644,146866180,146931716,146997252,147062788,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147652612,147718148,147783684,147849220,147914757,147980292,148045828,148111364,148176900,148242436,148307972,148373508,148439044,148504580,148570116,148635652,148701188,148766724,148832260,148897796,148963332,149028868,149094404,149159940,149225476,149291012,149356548,149422084,149487620,149553156,149618692,149684228,149749764,149815300,149880836,149946373,150011908,150077444,150142980,150208516,150274052,150339588,150405124,150470660,150536196,150601732,150667268,150732803,150798340,150863876,150929412,151453697,155123716,155648002,157417473,157483009,157614081,157679617,157745155,157810689,158138370,158269441,158466049,158793731,159121409,159252482,159318017,159383553,159449089,159580161,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017347,169082882,169148418,169213955,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131459,170196994,170262530,170328066,171048961,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174850049],"processing":[63766529,64028673,151257089,173473793],"problem":[63766529,151322625],"provides":[63766529,64094209,151650305,159186945],"parenthesis":[63832067,72155137,89325570,151453697,152240129,152502273,152633345],"parentheses":[63832065,152895489],"passing":[63897601,154533889],"period":[64028674,161939457,174260225],"previously":[64028674,64159746,64225281,159711233,160104449,162529281,162922497,173998081],"phone":[64028673,64159745,80281601,113639425,161742849,162529281,165216257],"parkedcalleventhandler":[64028673,171966469],"parkedcall":[64028673,171966465],"parkedcallgiveupeventhandler":[64028673,172032005],"parkedcallgiveup":[64028673,172032001],"parkedcallscompleteeventhandler":[64028673,172097541],"parkedcallscomplete":[64028673,172097537],"parkedcalltimeouteventhandler":[64028673,172163077],"parkedcalltimeout":[64028673,172163073],"peerentryeventhandler":[64028673,172228613],"peerentry":[64028673,172228609],"peerlistcompleteeventhandler":[64028673,172294149],"peerlistcomplete":[64028673,172294145],"peers":[64028673,64094210,64159745,81788929,85393411,85524484,125960193,135462913,135528449,135987201,136249346,136511490,158924802,164167681,167772163,167837697,167903236,172294145],"peerstatuseventhandler":[64028673,172359685],"peerstatus":[64028673,85524481,136445957,167903233,172359681],"permitted":[64094209,155058177],"previous":[64094209,155058177],"party":[64094210,83230721,129499137,155058178,165609473],"precondition":[64094210,157286401,157876225],"pong":[64094209,88080386,147062786,158007297,171048962],"plain":[64094209,159186945],"place":[64094209,159186945],"providing":[64159747,162136065,162267137,168296449],"pseudo":[64159746,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132186113,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281794,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"patches":[64159745,165609473],"pertaining":[64159745,166264833],"privilege":[64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251653,149946373,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"proxy":[64159745,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934850,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"plan":[64159745,72220675,90177537,90374145,90636289,151584771,170131457],"private":[64159745,170131457],"parses":[64225282,173604865,173735937],"parsing":[64225281,173735937],"pairs":[71958529,72024065,72089601,74645505,74711041,79167489,79626241,79691777,88145921,89063425,109969409,151191553,151257089,151322625,154402817,154468353,159186945,160628737,161939457,171180033,174260225],"preloadedassembly":[74842113,96272390,154664961],"proxykey":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,104595463,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161],"pick":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"park":[77856769,105840641,157876225],"parkedcalls":[77922305,106168321,157941761],"ping":[77987841,83558401,85524481,88080385,106233857,131137542,136511489,147062785,158007297,165937153,167903233,171048961],"possible":[79691777,87228417,111017985,144375809,161939457,169607169],"privileges":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"pausedreason":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,112918533,138870789,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"peercount":[81788929,126025734,164167681],"peername":[81854465,126615558,164233217],"parties":[82313217,127467526,164691969],"protocolidentifier":[82509825,127598597,164888577],"path":[83230721,129630209,165609473],"pagestransferred":[83230721,129761285,165609473],"pages":[83230721,129761281,165609473],"packet":[83492865,130547718,165871617],"position":[83623938,85655553,85721089,85786625,85852162,131792902,136970246,137101318,137166854,137363462,166002690,168034305,168099841,168165377,168230914],"presentation":[84803586,134021121,134086657,167182338],"parkingtime":[85131265,135331841,167510017],"peerevents":[85458945,136183809,167837697],"pee":[85524481,136380417,167903233],"prieventcode":[85590017,136708102,167968769],"people":[86507521,140115970,168886273],"percent":[86507521,140312577,168886273],"packetslost":[86900737,141754374,169279489],"pinginterval":[88080385,147062789,171048961],"processed":[151519233],"process":[151519235],"proper":[151519233]} \ No newline at end of file +{"project":[131074,196609,69599233,160890881],"point":[196609,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137756673,155385857,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"previously":[786434,1048577,1441793,69664770,69730305,168099841,168493057,176619522,179568641],"progress":[786433,2424833,46989313,47054849,74055682,161742850,176619521],"phone":[786433,2818049,69664769,85786625,119144449,168099841,170786817,176619521],"perform":[786433,3604481,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,69664769,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704322,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"pass":[786433,3866625,30867457,36241409,69599233,69664769,78315521,83296257,93716481,98172929,111017986,153616385,157941761,160694273,163381249,175702017,176619521,177405953],"parkedcall":[786434,4325382,176619522],"parked":[786436,4325377,4390913,4456449,6094849,50855937,69599234,69664772,83361793,85590020,90636294,90701828,90832900,93192197,111411201,117637121,117702657,117768193,117833729,140574721,140640257,140705793,140771329,140836865,140902401,151257089,163446785,163512322,167903236,173080583,173146117,173211649,173277188,175636486,176619524],"parkedcallsaction":[786434,4325377,4456449,16973827,50921476,50987014,69599234,69664770,83427331,111673346,163184641,163512330,173080578,173211650,176619522],"parkedcallgiveup":[786434,4390918,176619522],"parkedcallscomplete":[786434,4456454,176619522],"parkedcalltimeout":[786434,4521990,176619522],"parking":[786433,4521985,50855937,69599233,69664770,83361793,111542273,163446786,167903233,173277185,176619521],"peerentry":[786434,4587526,176619522],"peer":[786433,4587521,53542919,69599235,69664769,75956225,84475906,90898435,91029507,115146758,141099009,141230081,141557761,141819905,141950983,164495361,164560901,169476098,173342724,173473795,176619521],"peerlistcomplete":[786434,4653062,176619522],"peers":[786433,4653057,69599234,69664769,87293953,90898435,91029508,131530753,141033473,141099009,141557761,141819906,142082050,164495362,169738241,173342723,173408257,173473796,176619521],"peerstatus":[786434,4718598,91029505,142016517,173473793,176619522],"paused":[786434,5177345,5242881,51707909,51838981,69664770,83623939,83755009,85655557,91488261,91553795,91619332,91684870,91750405,91815941,91881477,91947013,112001031,112721925,118358023,118423554,143523847,144113671,144506881,144572417,145162247,163708931,163840001,167968773,173932549,173998083,174063621,174129159,174194693,174260229,174325765,174391301,176619522],"parameters":[786433,5439489,18219009,28442625,28508161,28573697,28704769,28835841,28901377,29032449,29229057,29294593,29753345,29818881,29949953,30081025,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867458,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33357825,33423361,33488897,33554433,33685505,33751041,34013185,34078721,34144257,34209793,34275329,34340865,34471937,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35520513,35586049,35717121,35782657,35913729,36044801,36175873,36241409,36372481,36438017,36503553,36634625,36700161,36831233,36896769,37027841,37224449,37552129,37748737,37879809,37945345,38076417,38141953,38273025,38338561,38404097,38469633,38600705,38666241,38797313,38862849,38993921,39059457,39190529,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40370177,40501249,40566785,40697857,40828929,40894465,40960001,41091073,41222145,41418753,41484289,41615361,41680897,41746433,41943041,42008577,42074113,42270721,42336257,42401793,42532865,42729473,42926081,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44761089,44892161,44957697,45088769,45154305,45350913,45481985,45613057,45744129,45875201,46006273,46137345,46268417,46399489,46661633,46792705,46923777,47054849,47185921,47316993,47448065,47775745,47906817,48037889,48234497,48365569,48496641,48758785,48889857,48955393,49086465,49217537,49283073,49348609,49545217,49676289,50200577,50266113,50331649,50462721,50593793,50659329,50790401,50855937,51249153,51314689,51380225,51511297,51642369,51707905,51773441,51838977,51970049,52101127,52232193,52363265,52494337,52756481,52822017,52953089,53018625,53149697,53215233,53542913,53805057,54001665,54067201,54132737,54198273,54263810,54394881,54460417,54525953,54657025,54788097,54919169,55050241,55312385,55377921,55443457,55508993,55574529,55705601,55771137,55836673,55902209,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64618497,64684033,64749569,65142785,65273857,65339393,65404929,65470465,65536001,65601537,65732610,65798146,65863681,65929217,65994753,66060289,66191361,66256897,66453505,66519041,66584577,66650113,66846721,66912257,67174401,67502081,67567617,67698689,67764225,67960833,68222977,68354049,68419585,68485121,68812801,68878337,68943873,69009409,69140481,69271553,69402625,69599233,69664769,76087297,77004802,83296258,83886081,90439682,93716481,110690305,111017986,113246214,139722754,153616385,157089795,160169985,160301057,163381251,163971073,164757505,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166133761,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,172883970,174456833,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176619523,176685057,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,179699713,179765249,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073],"public":[983043,1048579,1114115,1179651,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456451,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,7929859,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9961475,10027011,28442627,28508163,28573699,28639235,28704771,28770307,28835843,28901379,28966915,29032451,29097987,29163523,29229059,29294595,29360131,29425667,29491203,29556739,29622275,29687811,29753347,29818883,29884419,29949955,30015491,30081027,32768003,33488899,33685507,33751043,33816579,33882115,33947651,34013187,34078723,34144259,34209795,34275331,34340867,34406403,34537475,34668547,34734083,34799619,34865155,34930691,34996227,35061763,35127299,35192835,35258371,35323907,35389443,35454979,35520515,35586051,35651587,35717123,35782659,35848195,35913731,35979267,36044803,36110339,36175875,36241411,36306947,36372483,36438019,36503555,36569091,36634627,36700163,36765699,36831235,36896771,36962307,37027843,37093379,37158915,37224451,37289987,37355523,37421059,37486595,37552131,37617667,37683203,37748739,37814275,37879811,37945347,38010883,38076419,38141955,38207491,38273027,38338563,38404099,38469635,38535171,38600707,38666243,38731779,38797315,38862851,38928387,38993923,39059459,39124995,39190531,39256067,39321603,39387139,39452675,39518211,39583747,39649283,39714819,39780355,39845891,39911427,39976963,40042499,40108035,40173571,40239107,40304643,40370179,40435715,40501251,40566787,40632323,40697859,40763395,40828931,40894467,40960003,41025539,41091075,41156611,41222147,41287683,41353219,41418755,41615363,41680899,41746435,41811971,41877507,41943043,42008579,42074115,42139651,42205187,42270723,42336259,42401795,42467331,42532867,42598403,42663939,42729475,42795011,42860547,42926083,42991619,43057155,43122691,43188227,43253763,43319299,43384835,43450371,43515907,43581443,43646979,43712515,43778051,43843587,43909123,43974659,44040195,44105731,44171267,44236803,44302339,44367875,44433411,44498947,44564483,44630019,44695555,44761091,44826627,44892163,44957699,45023235,45088771,45154307,45219843,45285379,45350915,45416451,45481987,45547523,45613059,45678595,45744131,45809667,45875203,45940739,46006275,46071811,46137347,46202883,46268419,46333955,46399491,46465027,46530563,46596099,46661635,46727171,46792707,46858243,46923779,46989315,47054851,47120387,47185923,47251459,47316995,47382531,47448067,47513603,47579139,47644675,47710211,47775747,47841283,47906819,47972355,48037891,48103427,48168963,48234499,48300035,48365571,48431107,48496643,48562179,48627715,48693251,48758787,48824323,48889859,48955395,49020931,49086467,49152003,49217539,49283075,49348611,49414147,49479683,49545219,49610755,49676291,49741827,49872899,50003971,50135043,50200579,50266115,50331651,50397187,50462723,50528259,50593795,50659331,50724867,50790403,50855939,50921475,50987011,51052547,51183619,51249155,51314691,51380227,51445763,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101123,52166659,52232195,52297731,52363267,52428803,52494339,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346307,53411843,53477379,53542915,53608451,53673987,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591491,54657027,54722563,54788099,54853635,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950787,57016323,57081859,57147395,57212931,57278467,57409539,57475075,57540611,57606147,57671683,57737219,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851331,58916867,58982403,59047939,59113475,59179011,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60096515,60162051,60227587,60293123,60358659,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865987,61931523,61997059,62062595,62128131,62193667,62259203,62324739,62390275,62455811,62521347,62586883,62652419,62717955,62783491,62849027,62914563,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963139,64028675,64094211,64159747,64225283,64290819,64356355,64421891,64487427,64684035,64749571,64946179,65011715,65077251,65142787,65208323,65273859,65339395,65404931,65470467,65536003,65601539,65667075,65732611,65798147,65863683,65929219,65994755,66060291,66125827,66191363,66256899,66322435,66387971,66453507,66519043,66584579,66650115,66715651,66781187,66846723,66912259,66977795,67043331,67108867,67174403,67239939,67305475,67371011,67436547,67502083,67567619,67633155,67698691,67764227,67829763,67895299,67960835,68026371,68091907,68157443,68222979,68288515,68354051,68419587,68485123,68550659,68616195,68681731,68747267,68812803,68878339,68943875,69009411,69074947,69140483,69664771,94765059,94830595,94896131,94961667,95027203,95092739,95158275,95223811,95289347,95354883,95420419,95485955,95551491,95617027,95682563,95748099,95813635,95879171,95944707,96010243,96075779,96141315,96206851,96272387,96337923,96403459,96468995,96534531,96600067,96665603,96796675,96862211,96927747,96993283,97058819,97124355,97189891,97255427,97320963,97386499,97452035,97517571,97583107,97648643,97714179,97779715,97845251,97910787,97976323,98041859,98107395,98172931,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221507,99287043,99352579,99418115,99483651,99549187,99614723,99680259,99745795,99811331,99876867,99942403,100007939,100073475,100139011,100204547,100270083,100335619,100401155,100466691,100532227,100597763,100663299,100728835,100794371,100859907,100925443,100990979,101056515,101122051,101187587,101253123,101318659,101384195,101449731,101515267,101580803,101646339,101711875,101777411,101842947,101908483,101974019,102039555,102105091,102170627,102236163,102301699,102367235,102432771,102498307,102563843,102629379,102694915,102760451,102825987,102891523,102957059,103022595,103088131,103153667,103219203,103284739,103350275,103415811,103481347,103546883,103612419,103677955,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,104726531,104792067,104857603,104923139,104988675,105054211,105119747,105185283,105250819,105316355,105381891,105447427,105512963,105578499,105644035,105709571,105775107,105840643,105906179,105971715,106037251,106102787,106168323,106233859,106299395,106364931,106430467,106496003,106561539,106627075,106692611,106758147,106823683,106889219,106954755,107020291,107085827,107151363,107216899,107282435,107347971,107413507,107479043,107544579,107610115,107675651,107741187,107806723,107872259,107937795,108003331,108068867,108134403,108199939,108265475,108331011,108396547,108462083,108527619,108593155,108658691,108724227,108789763,108855299,108920835,108986371,109051907,109117443,109182979,109248515,109314051,109379587,109445123,109510659,109576195,109641731,109707267,109772803,109838339,109903875,109969411,110034947,110100483,110166019,110231555,110297091,110362627,110428163,110493699,110559235,110624771,110690307,110755843,110821379,110886915,110952451,111017987,111083523,111149059,111214595,111280131,111345667,111411203,111476739,111542275,111607811,111673347,111738883,111804419,111869955,111935491,112001027,112066563,112132099,112197635,112263171,112328707,112394243,112459779,112525315,112590851,112656387,112721923,112787459,112852995,112918531,112984067,113049603,113115139,113180675,113246211,113311747,113377283,113442819,113508355,113573891,113639427,113704963,113770499,113836035,113901571,113967107,114032643,114098179,114163715,114229251,114294787,114360323,114425859,114491395,114556931,114622467,114688003,114753539,114819075,114884611,114950147,115015683,115081219,115146755,115212291,115277827,115343363,115408899,115474435,115539971,115605507,115671043,115736579,115802115,115867651,115933187,115998723,116064259,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,128253955,128319491,128385027,128450563,128516099,128581635,128647171,128712707,128778243,128843779,128909315,128974851,129040387,129105923,129171459,129236995,129302531,129368067,129433603,129499139,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,130088963,130154499,130220035,130285571,130351107,130416643,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,131530755,131596291,131661827,131727363,131792899,131858435,131923971,131989507,132055043,132120579,132186115,132251651,132317187,132382723,132448259,132513795,132579331,132644867,132710403,132775939,132841475,132907011,132972547,133038083,133103619,133169155,133234691,133300227,133365763,133431299,133496835,133562371,133627907,133693443,133758979,133824515,133890051,133955587,134021123,134086659,134152195,134217731,134283267,134348803,134414339,134479875,134545411,134610947,134676483,134742019,134807555,134873091,134938627,135004163,135069699,135135235,135200771,135266307,135331843,135397379,135462915,135528451,135593987,135659523,135725059,135790595,135856131,135921667,135987203,136052739,136118275,136183811,136249347,136314883,136380419,136445955,136511491,136577027,136642563,136708099,136773635,136839171,136904707,136970243,137035779,137101315,137166851,137232387,137297923,137363459,137428995,137494531,137560067,137625603,137691139,137756675,137822211,137887747,137953283,138018819,138084355,138149891,138215427,138280963,138346499,138412035,138477571,138543107,138608643,138674179,138739715,138805251,138870787,138936323,139001859,139067395,139132931,139198467,139264003,139329539,139395075,139460611,139526147,139591683,139657219,139722755,139788291,139853827,139919363,139984899,140050435,140115971,140181507,140247043,140312579,140378115,140443651,140509187,140574723,140640259,140705795,140771331,140836867,140902403,140967939,141033475,141099011,141164547,141230083,141295619,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,142934019,142999555,143065091,143130627,143196163,143261699,143327235,143392771,143458307,143523843,143589379,143654915,143720451,143785987,143851523,143917059,143982595,144048131,144113667,144179203,144244739,144310275,144375811,144441347,144506883,144572419,144637955,144703491,144769027,144834563,144900099,144965635,145031171,145096707,145162243,145227779,145293315,145358851,145424387,145489923,145555459,145620995,145686531,145752067,145817603,145883139,145948675,146014211,146079747,146145283,146210819,146276355,146341891,146407427,146472963,146538499,146604035,146669571,146735107,146800643,146866179,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,148504579,148570115,148635651,148701187,148766723,148832259,148897795,148963331,149028867,149094403,149159939,149225475,149291011,149356547,149422083,149487619,149553155,149618691,149684227,149749763,149815299,149880835,149946371,150011907,150077443,150142979,150208515,150274051,150339587,150405123,150470659,150536195,150601731,150667267,150732803,150798339,150863875,150929411,150994947,151060483,151126019,151191555,151257091,151322627,151388163,151453699,151519235,151584771,151650307,151715843,151781379,151846915,151912451,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698883,152764419,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616387,153681923,153747459,153812995,153878531,153944067,154009603,154075139,154140675,154206211,154271747,154337283,154402819,154468355,154533891,154599427,154664963,154730499,154796035,154861571,154927107,154992643,155058179,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713539,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762116,156827652,156893188,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483012,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645700,159711236,159776772,159842308,159907843,159973380,160038916,160104451,160169987,160235523,160301059,160366595,160432131,160497667,160563203,160628740,160694276,160759812,160825348,160890884,160956420,161021956,161087492,161153028,161218564,161284100,161349636,161415172,161480708,161546244,161611780,161677316,161742852,161808388,161873924,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119107,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163840004,163905540,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199300,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510020,167575556,167641092,167706628,167772164,167837700,167903236,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410563,169476099,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131460,170196996,170262532,170328068,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638788,171704324,171769860,171835396,171900932,171966468,172032004,172097540,172163076,172228612,172294148,172359684,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015044,173080580,173146116,173211652,173277188,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129156,174194692,174260228,174325764,174391300,174456836,174522372,174587908,174653444,174718980,174784516,174850052,174915588,174981124,175046660,175112196,175177732,175243268,175308804,175374340,175439876,175505412,175570948,175636484,175702023,175767556,175833092,175898628,175964163,176029699,176095235,176160771,176226307,176291843,176357379,176422915,176488451,176553987,176619523,176685059,176750596,176816131,176881667,176947203,177012739,177078275,177143811,177209347,177274883,177340419,177405955,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243,177995779,178061315,178126851,178192387,178257923,178323459,178388995,178454531,178520067,178585603,178651139,178716675,178782211,178847747,178913283,178978819,179044355,179109892,179175428,179240964,179306500,179372036,179437572,179503108,179568643,179634179,179699715,179765251,179830788,179896323,179961859,180027395,180092931,180158467,180224003,180289539,180355075,180420611,180486147,180551683],"parkedcalleventhandler":[4325383,69533697,177537030],"parkedcallevent":[4325377,24182787,61603847,69599233,69664770,90636291,140574722,140640258,140705794,140771330,140836866,140902402,163512322,173080586,173211649,174784513,177537029],"parkedcallgiveupeventhandler":[4390919,69533697,177602566],"parkedcallgiveupevent":[4390913,24248323,61669383,69664770,90701827,167903233,173146122,177602565],"parkedcallscompleteeventhandler":[4456455,69533697,177668102],"parkedcallscompleteevent":[4456449,24313859,61734919,69599233,69664770,90767363,163512322,173211658,174784513,177668101],"parkedcalltimeouteventhandler":[4521991,69533697,177733638],"parkedcalltimeoutevent":[4521985,24379395,61800455,69664770,90832899,167903233,173277194,177733637],"peerentryeventhandler":[4587527,69533697,177799174],"peerentryevent":[4587521,24444931,61865990,69599234,69664770,90898435,140967939,141033474,141099010,141164547,141230082,141295619,141361155,141426691,141492227,141557762,141623299,141688835,164495362,164560898,173342729,173408257,174784513,177799173],"peerlistcompleteeventhandler":[4653063,69533697,177864710],"peerlistcompleteevent":[4653057,24510467,61931527,69599234,69664770,90963971,141754370,164495362,164560898,173408266,174784513,177864709],"peerstatuseventhandler":[4718599,69533697,177930246],"peerstatusevent":[4718593,24576003,61997063,69664770,91029507,141819906,141885442,141950978,142016514,142082050,171835393,173473802,177930245],"port":[6422530,7602177,8585217,34078726,34144262,34275334,34340872,42926086,43253766,65732614,65798150,77725697,77856770,93585411,96468993,96796674,152698887,156565506,157155329,157351938,176619523],"pool":[6422529,8060929,28377090,34144257,34275329,69074946,69795841,77856770,96927746,156565505,157351938,180551683],"provided":[6422530,8519681,8585217,10747910,30212097,30277633,30343169,30408705,31719425,31784961,46989313,47054849,69337091,69599233,69664769,70057988,70516738,74055682,156565506,157220870,157614081,158531585,159645697,161742850,164757505,175702017],"protected":[9175043,9830403,9895939,10092547,10158083,30146563,30212099,30277635,30343171,30408707,30474243,30539779,30605315,30670851,30736387,30801923,30867459,30932995,30998531,31064067,31129603,31195139,31260675,31326211,31391747,31457283,31522819,31588355,31653891,31719427,31784963,31850499,31916035,31981571,32047107,32112643,32178179,32243715,32309251,32374787,32440323,32505859,32571395,32636931,32702467,32833539,32899075,32964611,33030147,33095683,33161219,33226755,33292291,33357827,33423363,33554435,33619971,34471939,34603011,49807363,49938435,50069507,51118083,57344003,57802755,64815107,64880643,96731139],"particular":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,46399489,69599233,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415171,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"playback":[10616833,10747912,29294593,30212098,30277634,30343170,30408706,69337098,69599233,70057992,157024257,157220872,157614082,158597121,158662657,158728193,158793729,158859265,158924801,159645698,160628737],"part":[10616833,29360129,69271553,69402625,92143617,146210817,157024257,160169985,160301057,174587905],"parameter":[10682369,29818888,83296257,84475905,111017985,115146753,157155329,163381249,164560897],"parametermap":[10682369,29884423,157155329],"parametervalues":[10682369,29949960,157155329],"plays":[10747917,30212097,30277633,30343169,30408705,30998529,31064065,31129601,31326209,31391745,31588353,31653889,33357825,33423361,69337091,70057988,70254595,70385666,70451202,71041026,157220877,157614081,158138369,159645697],"play":[10747908,30212097,30277633,30343169,30408705,30998529,31064065,31129601,31653889,33357825,33423361,40370177,45744129,69337090,70057988,79691777,100728834,157220868,157614081,159449089,159645697],"pressed":[10747914,30212098,30277634,30343170,30408706,31326211,31391747,31916034,32047106,32112642,32178178,32309250,32440322,32571394,32702466,33423362,33554434,69337108,70057992,70385666,157220874,157614082,158138371,158597122,158662659,158728194,158793730,158859266,158924802,159645698],"prefix":[10747905,30605314,70123521,157220865],"presses":[10747907,30998529,31064065,31129601,31391745,36896769,69337089,70254595,78512129,98697217,157220867,158007297,158138369],"press":[10747908,31326211,31391747,36831233,36896769,69337090,70385668,78512129,98566145,157220868,158138371],"playmusiconhold":[10747906,31588358,31653894,70451203,157220866],"phonetics":[10747906,32505857,32571393,69337089,70844418,157220866,158859265],"priority":[10747905,33095687,40501254,45613062,52756487,52822023,69337089,69599234,70975489,75759618,77725698,79757314,80936962,83296261,84213762,85852161,86769665,86966273,87097345,90439682,92012545,92864513,93716485,96141318,100859910,104988678,110952449,111083521,111149063,114425862,119799814,129368069,140050438,146014209,150536198,153550849,153681921,153747463,157155330,157220865,159514627,161021954,163381255,164298756,168165377,169082881,169279489,169541633,172883970,174456833,175308801,177405957],"playing":[10747905,33292289,40304641,40370177,72417282,157220865,159449090],"pressing":[10747905,33423361,71041025,157220865],"pause":[11141121,30408705,35127298,35389441,71237633,77987841,97386497,157614082],"parkaction":[16908291,50790410,50855943,69599234,75169798,83361795,111345666,111411202,111476738,111542274,111607810,163119105,163446796],"pingaction":[17039363,51052550,69599234,83492867,111738882,163119105,163577866],"proxyaction":[17104899,51118086,69599233,83034114,83099650,83165186,83558405,109969410,163119107,163184642,163250178,163643404],"provide":[18219009,54263809,76087297,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,164757505,166199297,167510017,176750593,179830785],"parse":[18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804226,26869761,26935297,27000833,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,60096519,64225290,67698695,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,137625602,155320322,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702020,175767555,175833091,175898627,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643],"properties":[18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804226,26869763,26935299,27000835,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,57606145,60096513,60162049,60227586,67698689,67764225,69599234,69664771,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771971,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296261,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716485,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,109510657,110952449,111083521,111149057,153550849,153681921,153747457,156631041,156762113,156827649,156893185,157024257,157155329,157220865,157351937,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160169985,160235521,160301057,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856962,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381254,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575556,167641092,167706629,167772164,167837701,167903236,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131460,170196996,170262532,170328068,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638788,171704324,171769860,171835396,171900932,171966468,172032004,172097540,172163076,172228612,172294148,172359684,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015044,173080580,173146116,173211652,173277188,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867013,173932548,173998084,174063620,174129156,174194692,174260228,174325764,174391300,174456836,174522372,174587908,174653444,174718980,174784516,174850052,174915588,174981124,175046660,175112196,175177732,175243268,175308804,175374340,175439876,175505412,175570948,175636484,175702019,175767556,175833092,175898628,176291841,176619521,176750593,177405956,178913281,178978817,179044353,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643,179634177,179830785,180420609,180486145],"parser":[18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804225,26869762,26935298,27000834,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,57606145,60096513,60162049,67698689,67764225,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702017,175767554,175833090,175898626,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"parsespecial":[18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578306,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,57606150,60162054,67764230,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345026,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"prievent":[24641539,62062598,69664769,91095044,142147587,142213129,142278659,142344195,171835393,173539338],"protocol":[27131908,65077250,65142786,76808196,88014849,93585409,133169153,153026561,170459137,176619525],"particulary":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"picked":[28377089,69009409,180551681],"param":[28442625,28508164,28573699,28704770,29032450,29229057,29753345,29818881,29949953,31260673,32768002,32833537,32899073,32964609,33030145,33095681,33161217,33685505,33751041,34013185,34078724,34209793,34340869,34471937,37748737,38273025,40697857,41091073,41484289,41746433,41943041,42008577,42074113,42270721,42336257,42401794,42532865,42729473,42926083,43319297,43384833,43450370,43515906,43581441,43646977,43712514,43778050,43843585,43909121,43974658,44040194,44171266,44367873,44433409,44498946,44564482,45350914,45481998,46268418,46399489,46661633,46792706,46923778,47054849,47185921,47316993,47448066,47775745,50462721,50593794,50659329,50790403,51511301,51970051,52101124,52363265,52494337,53542913,53805057,54001665,54067202,54132739,54198276,54394882,54460419,54525955,54657026,54788097,54919169,55050241,55508993,55574529,55705602,55771137,55836673,55902209,56033281,56098817,56164353,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62521345,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225282,64290817,64356353,64421889,64487425,64684033,64749570,65273857,65339393,65404930,65470465,65536001,65601537,65798145,65994753,66060289,66191362,66256897,66453505,66519041,66584579,66846721,66912258,67174401,67502081,67960833,69009409],"pausedigit":[30408709,35127301,35389445,77987841,97386501,157614081],"played":[31784961,37945345,78839809,99024897,158531585],"param1":[32768006],"param2":[32768006],"poolsize":[34078726,34144261,34275333,34340872,77856769,96927749,157351937],"pausing":[35192833,35258369,35323905,35389441,71303172,157614084],"pathtoxml":[42336262,42401798],"params":[43515905,43778049,44040193,44564481],"paramarray":[43515905,43778049,44040193,44564481],"pbx":[45678593,45744129,69599233,69664769,73531394,161087490,162791425,172883969],"profile":[46989313,47054849,74055682,161742850],"performs":[49217537,49283073,49348609,69599233,74907651,162856963,163577857],"password":[49217538,49283073,49348609,65732614,65798150,69533697,69599233,74907649,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771971,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,93585411,109314049,109510657,110100481,152567815,160628737,160694274,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856964,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,176619523],"parkinglot":[50855941,83361793,111542277,163446785],"penalty":[51380233,51904513,51970055,69664769,75235329,75431938,83623940,83820545,85655554,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,112066568,112984070,118489094,143589382,144179206,144637958,145227782,163708933,163905539,167968770,173932546,173998082,174063618,174129154,174194691,174260226,174325762,174391298],"positive":[51380225,83623937,112066561,163708929],"penalties":[51380225,83623937,85655553,91488257,91553793,91619329,91684865,91815937,91881473,91947009,112066561,118489089,143589377,144179201,145227777,163708929,167968769,173932545,173998081,174063617,174129153,174260225,174325761,174391297],"partial":[55443457,69533697,85196802,116523010,167510020],"partialresult":[55443461,85196801,116523013,167510017],"parts":[55443457,116523009],"passed":[56229889,60358657,62455809,62586881,62652417,62717953,62783489,62849025,62914561,77725698,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,90439681,95813634,110100481,139722753,157155330,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,172883969],"parsed":[60096513,67698689],"property":[68485121,69599235,69664770,77660161,80609284,81133570,82903041,82968577,83230723,83296257,83623938,83755009,83951617,84279298,84606977,84738050,84803585,84869121,84934657,85065729,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143619,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93585409,93716481,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94765060,94830596,94896132,94961668,95027203,95092739,95158276,95223812,95289348,95354884,95420420,95485956,95551492,95617027,95682564,95748100,95813636,95879172,95944708,96010244,96075780,96141316,96206852,96272388,96337924,96403460,96468996,96534532,96600067,96665603,96731140,96796676,96862212,96927748,96993284,97058820,97124356,97189892,97255428,97320964,97386500,97452036,97517572,97583108,97648644,97714180,97779716,97845252,97910788,97976324,98041860,98107396,98172932,98238468,98304004,98369540,98435076,98500612,98566148,98631684,98697220,98762756,98828291,98893828,98959364,99024900,99090436,99155972,99221508,99287044,99352580,99418116,99483652,99549188,99614724,99680260,99745796,99811332,99876868,99942404,100007940,100073476,100139012,100204548,100270084,100335619,100401155,100466691,100532228,100597764,100663299,100728835,100794372,100859908,100925444,100990980,101056516,101122052,101187588,101253124,101318660,101384196,101449732,101515268,101580803,101646339,101711876,101777412,101842948,101908484,101974020,102039556,102105092,102170628,102236164,102301700,102367236,102432772,102498308,102563844,102629380,102694916,102760452,102825988,102891525,102957060,103022597,103088132,103153669,103219205,103284739,103350276,103415811,103481348,103546884,103612420,103677956,103743492,103809028,103874564,103940100,104005636,104071172,104136708,104202244,104267780,104333316,104398852,104464388,104529924,104595460,104660996,104726532,104792068,104857604,104923140,104988676,105054212,105119748,105185284,105250820,105316356,105381892,105447428,105512965,105578501,105644036,105709572,105775108,105840644,105906180,105971716,106037252,106102788,106168324,106233860,106299396,106364932,106430468,106496004,106561540,106627076,106692612,106758148,106823684,106889220,106954756,107020292,107085828,107151364,107216900,107282436,107347972,107413508,107479044,107544580,107610116,107675652,107741188,107806724,107872260,107937796,108003332,108068867,108134404,108199940,108265476,108331012,108396548,108462084,108527620,108593156,108658692,108724228,108789764,108855300,108920836,108986372,109051908,109117444,109182980,109248516,109314052,109379588,109445124,109510660,109576196,109641732,109707268,109772805,109838340,109903877,109969412,110034948,110100484,110166020,110231556,110297093,110362629,110428165,110493700,110559236,110624772,110690308,110755844,110821380,110886917,110952452,111017988,111083524,111149060,111214596,111280132,111345668,111411204,111476740,111542276,111607812,111673348,111738884,111804420,111869957,111935492,112001028,112066564,112132101,112197636,112263172,112328708,112394244,112459780,112525316,112590852,112656389,112721924,112787460,112852996,112918532,112984068,113049604,113115140,113180676,113246212,113311748,113377284,113442820,113508357,113573892,113639428,113704964,113770500,113836036,113901572,113967108,114032644,114098180,114163716,114229252,114294788,114360324,114425860,114491396,114556932,114622469,114688005,114753540,114819076,114884612,114950148,115015684,115081220,115146756,115212292,115277828,115343365,115408900,115474436,115539972,115605508,115671044,115736580,115802117,115867653,115933188,115998725,116064260,116129797,116195332,116260869,116326404,116391940,116457477,116523011,116588548,116654084,116719620,116785156,116850692,116916228,116981764,117047300,117112836,117178372,117243908,117309444,117374980,117440516,117506052,117571588,117637124,117702660,117768196,117833732,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423556,118489092,118554628,118620164,118685700,118751236,118816772,118882308,118947844,119013380,119078916,119144452,119209988,119275524,119341060,119406596,119472132,119537668,119603204,119668740,119734276,119799812,119865348,119930884,119996420,120061956,120127492,120193028,120258564,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156804,126222340,126287876,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598596,127664132,127729668,127795204,127860740,127926276,127991812,128057348,128122884,128188420,128253956,128319492,128385028,128450564,128516100,128581636,128647172,128712708,128778244,128843780,128909316,128974852,129040388,129105924,129171460,129236996,129302532,129368068,129433604,129499140,129564676,129630212,129695748,129761284,129826820,129892356,129957892,130023428,130088964,130154500,130220036,130285572,130351108,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661828,131727364,131792900,131858436,131923972,131989508,132055044,132120580,132186116,132251652,132317188,132382724,132448260,132513796,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103620,133169156,133234692,133300228,133365764,133431300,133496836,133562372,133627908,133693444,133758980,133824516,133890052,133955588,134021124,134086660,134152196,134217732,134283268,134348804,134414340,134479876,134545412,134610948,134676484,134742020,134807556,134873092,134938628,135004164,135069700,135135236,135200772,135266308,135331844,135397380,135462916,135528452,135593988,135659524,135725060,135790596,135856132,135921668,135987204,136052740,136118276,136183812,136249348,136314884,136380420,136445956,136511492,136577028,136642564,136708100,136773636,136839172,136904708,136970244,137035780,137101316,137166852,137232388,137297924,137363460,137428996,137494532,137560068,137625604,137691140,137756676,137822213,137887748,137953284,138018821,138084356,138149892,138215428,138280964,138346500,138412036,138477572,138543108,138608644,138674180,138739716,138805252,138870788,138936324,139001860,139067396,139132932,139198468,139264004,139329540,139395076,139460612,139526148,139591684,139657220,139722756,139788292,139853828,139919364,139984900,140050436,140115972,140181508,140247044,140312580,140378116,140443652,140509188,140574724,140640260,140705796,140771332,140836868,140902404,140967940,141033476,141099012,141164548,141230084,141295620,141361156,141426692,141492228,141557764,141623300,141688836,141754372,141819908,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802948,142868484,142934020,142999556,143065092,143130628,143196164,143261700,143327236,143392772,143458308,143523844,143589380,143654916,143720452,143785988,143851524,143917060,143982596,144048132,144113668,144179204,144244740,144310276,144375812,144441348,144506884,144572420,144637956,144703492,144769028,144834564,144900100,144965636,145031172,145096708,145162244,145227780,145293316,145358852,145424388,145489924,145555460,145620996,145686532,145752068,145817604,145883140,145948676,146014212,146079748,146145284,146210820,146276357,146341892,146407428,146472964,146538500,146604036,146669572,146735108,146800644,146866180,146931716,146997252,147062788,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147652612,147718148,147783684,147849220,147914756,147980292,148045828,148111364,148176900,148242436,148307972,148373508,148439044,148504580,148570116,148635652,148701188,148766724,148832260,148897796,148963332,149028868,149094404,149159940,149225476,149291012,149356548,149422084,149487620,149553156,149618692,149684228,149749764,149815300,149880836,149946372,150011908,150077444,150142980,150208516,150274052,150339588,150405124,150470660,150536196,150601732,150667268,150732804,150798340,150863876,150929412,150994948,151060484,151126020,151191556,151257092,151322628,151388164,151453700,151519236,151584772,151650308,151715844,151781380,151846916,151912452,151977988,152043524,152109060,152174596,152240132,152305669,152371204,152436740,152502276,152567812,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485317,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337284,154402820,154468356,154533892,154599428,154664964,154730500,154796036,154861572,154927108,154992644,155058180,155123716,155189252,155254788,155320324,155385860,155451396,155516933,155582468,155648004,155713540,155779076,155844612,155910148,155975684,156041220,156106756,156172292,156237828,156303363,156368900,156434436,156499972,157024257,160694276,161218562,162988033,163053569,163184641,163250177,163315715,163381249,163708930,163840001,164036609,164364291,164691969,164823042,164888577,164954113,165019649,165150721,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587907,174653442,174718978,174784515,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702019,175767554,175833090,175898626,176619521,177405953,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,180420609],"processing":[69271553,69533697,156827649,179044353],"problem":[69271553,156893185],"provides":[69271553,69599233,157220865,164757505],"parenthesis":[69337091,77660161,94830594,157024257,157810689,158072833,158203905],"parentheses":[69337089,158466049],"passing":[69402625,160104449],"period":[69533698,167510017,179830785],"permitted":[69599233,160628737],"previous":[69599233,160628737],"party":[69599234,88735745,135069697,160628738,171180033],"precondition":[69599234,162856961,163446785],"pong":[69599233,93585410,152633346,163577857,176619522],"plain":[69599233,164757505],"place":[69599233,164757505],"providing":[69664771,167706625,167837697,173867009],"pseudo":[69664770,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454338,137756673,151912449,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459138,170524673,170590209,170655745,170721281,170786817,170852354,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898626],"patches":[69664769,171180033],"pertaining":[69664769,171835393],"privilege":[69664769,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822213,155516933,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"proxy":[69664769,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505410,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"plan":[69664769,77725699,95682561,95879169,96141313,157155331,175702017],"private":[69664769,175702017],"parses":[69730306,179175425,179306497],"parsing":[69730305,179306497],"pairs":[77463553,77529089,77594625,80150529,80216065,84672513,85131265,85196801,93650945,94568449,115474433,156762113,156827649,156893185,159973377,160038913,164757505,166199297,167510017,176750593,179830785],"preloadedassembly":[80347137,101777414,160235521],"proxykey":[80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,110100487,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722],"processed":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,157089793,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721],"pick":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"park":[83361793,111345665,163446785],"parkedcalls":[83427329,111673345,163512321],"ping":[83492865,89063425,91029505,93585409,111738881,136708102,142082049,152633345,163577857,171507713,173473793,176619521],"possible":[85196801,92733441,93454337,116523009,149946369,151912449,167510017,175177729,175898625],"privileges":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822209,155516929,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"pausedreason":[85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,118423557,144441349,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"peercount":[87293953,131596294,169738241],"peername":[87359489,132186118,169803777],"parties":[87818241,133038086,170262529],"protocolidentifier":[88014849,133169157,170459137],"path":[88735745,135200769,171180033],"pagestransferred":[88735745,135331845,171180033],"pages":[88735745,135331841,171180033],"packet":[88997889,136118278,171442177],"position":[89128962,91160577,91226113,91291649,91357186,137363462,142540806,142671878,142737414,142934022,171573250,173604865,173670401,173735937,173801474],"presentation":[90308610,139591681,139657217,172752898],"parkingtime":[90636289,140902401,173080577],"peerevents":[90963969,141754369,173408257],"pee":[91029505,141950977,173473793],"prieventcode":[91095041,142278662,173539329],"people":[92012545,145686530,174456833],"percent":[92012545,145883137,174456833],"packetslost":[92405761,147324934,174850049],"pri":[93454337,151912449,175898625],"pinginterval":[93585409,152633349,176619521],"process":[157089795],"proper":[157089793]} \ No newline at end of file diff --git a/docs/fti/FTI_113.json b/docs/fti/FTI_113.json index ff7633f..ce90b96 100644 --- a/docs/fti/FTI_113.json +++ b/docs/fti/FTI_113.json @@ -1 +1 @@ -{"queueaddaction":[11665411,45678599,45744135,45809671,45875207,64094210,69730314,78118915,106299394,106364930,106430466,106496002,106561538,106627074,157548545,158138384],"queuelogaction":[11730947,45940742,46006283,64094209,69795844,78184451,106692611,106758147,106823683,106889219,106954755,107020291,157548545,158203914],"queuepauseaction":[11796483,46071815,46137351,46202887,46268423,46333959,64094210,69861388,78249987,107085826,107151362,107216898,107282434,157548545,158269458],"queuepenaltyaction":[11862019,46399494,46465033,64094209,69926916,78315523,107347971,107413507,107479043,107544579,157548545,158334986],"queuereloadaction":[11927555,46530566,46596106,64094209,69992452,78381059,107610115,107675651,107741187,107806723,107872259,157548545,158400522],"queueremoveaction":[11993091,46661639,46727175,64094210,70057990,78446595,107937794,108003330,108068866,157548545,158466060],"queueresetaction":[12058627,46792710,46858247,64094209,70123524,78512131,108134403,108199939,157548545,158531594],"queueruleaction":[12124163,46923783,46989320,64094209,70189062,78577667,108265475,108331011,157548545,158597132],"queuestatusaction":[12189699,47054852,47120390,64028676,64094210,64159748,78643203,108396546,108462082,108527618,157614081,158662666,168230914,168427522,168886274,168951810,172621825,172752897,173080577,173146113],"queuecallerabandonevent":[19202051,56623110,64159745,85655555,136839171,136904707,136970243,137035779,166264833,168034313,172425221],"queuecallerjoinevent":[19267587,56688647,64159746,85721091,137101315,168099850,168296449,172490757],"queuecallerleaveevent":[19333123,56754183,64159746,85786627,137166851,168165386,168296449,172556293],"queueentryevent":[19398659,56819719,64028673,64094209,64159746,85852163,137232386,137297922,137363458,137428994,137494530,158662658,168230922,169213953,172621830],"queueevent":[19464195,56885255,64159745,83623938,83689474,85721090,85786626,85917699,137560066,137625602,166002695,166068231,166264833,168099847,168165383,168296457],"queuememberaddedevent":[19529731,56950790,64028673,64159746,85983235,137691138,137756674,137822210,137887746,137953282,138018818,138084354,162398209,168361994,172687366],"queuememberevent":[19595267,57016327,64028674,64094209,64159746,86048771,138149890,138215426,138280962,138346498,138412034,138477570,138543107,138608642,138674178,138739714,158662658,168427530,169213953,172752902,173015041],"queuememberpausedevent":[19660803,57081862,64028673,64159746,86114307,138805250,138870786,138936322,162398209,168493066,172818438],"queuememberpauseevent":[19726339,57147398,64028673,64159746,86114306,86179843,138805249,138870785,139001858,162398209,168493059,168558601,172883974],"queuememberpenaltyevent":[19791875,57212934,64159746,86245379,139067394,162398209,168624138],"queuememberremovedevent":[19857411,57278470,64028673,64159746,86310915,139132930,162398209,168689674,172949510],"queuememberringinuseevent":[19922947,57344006,64159745,86376451,139198466,162398209,168755209],"queuememberstatusevent":[19988483,57409542,64028673,64159745,86441987,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,162398209,168820745,173015046],"queueparamsevent":[20054019,57475079,64028673,64094209,64159746,86507523,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,158662658,168886282,169213953,173080582],"queuestatuscompleteevent":[20119555,57540615,64028673,64094209,64159746,86573059,158662658,168951818,169213953,173146118],"queue":[22872065,39387137,39452673,45744135,45809671,45875207,46006278,46268423,46333959,46399489,46465031,46530562,46596104,46727175,46792705,46858247,63504385,64028686,64094214,64159761,69730307,69861378,69926914,69992452,70057985,70123522,78118916,78184449,78249986,78315521,78381057,78446594,78512129,78643202,79757315,79822849,80150540,80347138,80412675,80478211,80543747,83230723,83623942,83689475,85655553,85721091,85786627,85852164,85917699,85983241,86048776,86114315,86179852,86245388,86310923,86376460,86441993,86507529,106496002,106627078,106954758,107282438,107544582,107806726,108068870,108199942,108527622,111214598,111280129,112394241,112525313,112721921,112787459,112852993,112918529,112984065,113049606,113246209,114360326,131661825,131727361,131792897,137035782,137363457,137428998,137494529,137560065,137625606,137887747,137953281,138084353,138346497,138412034,138477569,138674182,138739714,139067393,139526147,139591681,139788289,139919362,140050434,140115970,140181510,140378113,140443651,158138376,158203905,158269445,158334979,158400517,158466052,158531587,158662661,159973377,162004995,162070529,162398221,162594818,162660355,162725891,162791428,165609475,166002695,166068228,168034305,168099844,168165380,168230917,168296451,168361995,168427529,168493068,168558605,168624141,168689677,168755212,168820746,168886282,170786817,170852353,172490753,172556289,172621825,172687362,172752897,172818433,172883969,172949506,173080577,174981121],"queries":[29425665,43384833,43450369,44040193,64094211,65667073,69271554,69468161,151977985,157024257,157155331,157417474],"query":[29425665,43384833,43450369,44040193,77004802,77135875,77398017,77463553,103153665,103219201,103481346,103546881,104267777,104398849,157024258,157155331,157417473,157483009],"queue_log":[45940737,46006273,69795842,158203906],"queues":[46137345,46202881,46530562,46596098,64028674,64094209,64159746,69861378,69992452,86048769,86507523,138412033,140115969,140247041,140443649,158269442,158400516,158662657,159776769,162594817,168427521,168886275,168951809,173146113],"qualified":[63766529,63897601,154599425,154730497],"queuecallerabandoneventhandler":[64028673,172425222],"queuecallerjoineventhandler":[64028673,172490757],"queuecallerleaveeventhandler":[64028673,172556293],"queueentryeventhandler":[64028673,172621829],"queuememberaddedeventhandler":[64028673,172687365],"queuemembereventhandler":[64028673,172752901],"queuememberpausedeventhandler":[64028673,172818437],"queuememberpauseeventhandler":[64028673,172883973],"queuememberremovedeventhandler":[64028673,172949509],"queuememberstatuseventhandler":[64028673,173015045],"queueparamseventhandler":[64028673,173080581],"queuestatuscompleteeventhandler":[64028673,173146117],"queried":[64159745,82640899,127729665,127795201,127860737,165019652],"quite":[64225281,173604865],"queueadd":[78118913,86048769,106299393,138412033,158138369,168427521],"queuepause":[78249985,107085825,158269441],"queueremove":[78446593,107937793,158466049],"queuestatus":[78643201,108396545,158662657],"queu":[86507521,140443649,168886273],"quoting":[151519233]} \ No newline at end of file +{"queues":[786434,1114113,5505025,51642369,51707905,52035586,52101122,69599233,69664770,75366402,75497476,91553793,92012547,143982593,145686529,145817601,146014209,163840002,163971076,164233217,168165377,173998081,174456835,174522369,176619522],"queue":[786447,1310721,3473409,3538945,4784129,4849665,4915201,4980737,5046273,5111810,5177345,5242881,5308418,5439489,28377089,44892161,44957697,51249159,51314695,51380231,51511302,51773447,51838983,51904513,51970055,52035586,52101128,52232199,52297729,52363271,69009409,69599238,69664785,75235331,75366402,75431938,75497476,75563009,75628546,83623940,83689473,83755010,83820545,83886081,83951618,84017153,84148226,85262339,85327873,85655564,85852162,85917699,85983235,86048771,88735747,89128966,89194499,91160577,91226115,91291651,91357188,91422723,91488265,91553801,91619339,91684876,91750412,91815947,91881484,91947017,92012553,112001026,112132102,112459782,112787462,113049606,113311750,113573894,113704966,114032646,116719622,116785153,117899265,118030337,118226945,118292483,118358017,118423553,118489089,118554630,118751233,119865350,137232385,137297921,137363457,142606342,142934017,142999558,143065089,143130625,143196166,143458307,143523841,143654913,143917057,143982594,144048129,144113665,144244742,144310274,144637953,145096707,145162241,145358849,145489922,145620994,145686530,145752070,145948673,146014211,163708936,163774465,163840005,163905539,163971077,164036612,164102147,164233221,167575555,167641089,167968781,168165378,168230915,168296451,168361988,171180035,171573255,171638788,173604865,173670404,173735940,173801477,173867011,173932555,173998090,174063628,174129165,174194701,174260237,174325772,174391306,174456842,176619535,180551681],"queuecallerabandon":[786433,4784133,176619521],"queueentryevent":[786434,4784129,4980738,24903683,62324743,69599233,69664770,91357187,142802946,142868482,142934018,142999554,143065090,164233218,173801482,174784513,176619522,178192389],"queuestatusaction":[786437,4784129,4980737,5046273,5439489,5505025,17694723,52559876,52625414,69599234,69664772,84148227,113901570,113967106,114032642,163184641,164233226,173801474,173998082,174456834,174522370,176619525],"queuecallerjoin":[786433,4849669,176619521],"queuecallerleave":[786433,4915205,176619521],"queueentry":[786433,4980741,176619521],"queuemember":[786433,5046277,176619521],"queuememberevent":[786434,5046274,5373953,25100291,62521351,69599233,69664770,91553795,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,164233218,173998090,174784513,176619522,178323461],"queuememberadded":[786433,5111813,176619521],"queuememberaddedevent":[786433,5111810,25034755,62455814,69664770,91488259,143261698,143327234,143392770,143458306,143523842,143589378,143654914,167968769,173932554,176619521,178257925],"queuememberpause":[786433,5177349,176619521],"queuememberpauseevent":[786434,5177346,5242881,25231363,62652422,69664770,91619330,91684867,144375809,144441345,144572418,167968769,174063619,174129161,176619522,178454533],"queuememberpaused":[786433,5242885,176619521],"queuememberpausedevent":[786433,5242882,25165827,62586886,69664770,91619331,144375810,144441346,144506882,167968769,174063626,176619521,178388997],"queuememberremoved":[786433,5308421,176619521],"queuememberremovedevent":[786433,5308418,25362435,62783494,69664770,91815939,144703490,167968769,174260234,176619521,178520069],"queuememberstatus":[786433,5373957,176619521],"queuememberstatusevent":[786433,5373954,25493507,62914566,69664769,91947011,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,167968769,174391305,176619521,178585605],"queueparams":[786433,5439493,176619521],"queueparamsevent":[786433,5439490,25559043,62980103,69599233,69664770,92012547,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,164233218,174456842,174784513,176619521,178651141],"queuestatuscomplete":[786433,5505029,176619521],"queuestatuscompleteevent":[786433,5505026,25624579,63045639,69599233,69664770,92078083,164233218,174522378,174784513,176619521,178716677],"queuecallerabandoneventhandler":[4784135,69533697,177995782],"queuecallerabandonevent":[4784129,24707075,62128134,69664769,91160579,142409731,142475267,142540803,142606339,171835393,173604873,177995781],"queuecallerjoineventhandler":[4849671,69533697,178061318],"queuecallerjoinevent":[4849665,24772611,62193671,69664770,91226115,142671875,173670410,173867009,178061317],"queuecallerleaveeventhandler":[4915207,69533697,178126854],"queuecallerleaveevent":[4915201,24838147,62259207,69664770,91291651,142737411,173735946,173867009,178126853],"queueentryeventhandler":[4980743,69533697,178192390],"queuemembereventhandler":[5046279,69533697,178323462],"queuememberaddedeventhandler":[5111815,69533697,178257926],"queuememberpauseeventhandler":[5177351,69533697,178454534],"queuememberpausedeventhandler":[5242887,69533697,178388998],"queuememberremovedeventhandler":[5308423,69533697,178520070],"queuememberstatuseventhandler":[5373959,69533697,178585606],"queueparamseventhandler":[5439495,69533697,178651142],"queuestatuscompleteeventhandler":[5505031,69533697,178716678],"queueaddaction":[17170435,51183623,51249159,51314695,51380231,69599234,75235338,83623939,111804418,111869954,111935490,112001026,112066562,112132098,163119105,163708944],"queuelogaction":[17235971,51445766,51511307,69599233,75300868,83689475,112197635,112263171,112328707,112394243,112459779,112525315,163119105,163774474],"queuepauseaction":[17301507,51576839,51642375,51707911,51773447,51838983,69599234,75366412,83755011,112590850,112656386,112721922,112787458,163119105,163840018],"queuepenaltyaction":[17367043,51904518,51970057,69599233,75431940,83820547,112852995,112918531,112984067,113049603,163119105,163905546],"queuereloadaction":[17432579,52035590,52101130,69599233,75497476,83886083,113115139,113180675,113246211,113311747,113377283,163119105,163971082],"queueremoveaction":[17498115,52166663,52232199,69599234,75563014,83951619,113442818,113508354,113573890,163119105,164036620],"queueresetaction":[17563651,52297734,52363271,69599233,75628548,84017155,113639427,113704963,163119105,164102154],"queueruleaction":[17629187,52428807,52494344,69599233,75694086,84082691,113770499,113836035,163119105,164167692],"queueevent":[24969219,62390279,69664769,89128962,89194498,91226114,91291650,91422723,143130626,143196162,171573255,171638791,171835393,173670407,173735943,173867017],"queuememberpenaltyevent":[25296899,62717958,69664770,91750403,144637954,167968769,174194698],"queuememberringinuseevent":[25427971,62849030,69664769,91881475,144769026,167968769,174325769],"queries":[34930689,48889857,48955393,49545217,69599235,71172097,74776578,74973185,157548545,162594817,162725891,162988034],"query":[34930689,48889857,48955393,49545217,82509826,82640899,82903041,82968577,108658689,108724225,108986370,109051905,109772801,109903873,162594818,162725891,162988033,163053569],"queue_log":[51445761,51511297,75300866,163774466],"qualified":[69271553,69402625,160169985,160301057],"queried":[69664769,88145923,133300225,133365761,133431297,170590212],"quite":[69730305,179175425],"queueadd":[83623937,91553793,111804417,143982593,163708929,173998081],"queuepause":[83755009,112590849,163840001],"queueremove":[83951617,113442817,164036609],"queuestatus":[84148225,113901569,164233217],"queu":[92012545,146014209,174456833],"quoting":[157089793]} \ No newline at end of file diff --git a/docs/fti/FTI_114.json b/docs/fti/FTI_114.json index b0282e2..8976bf6 100644 --- a/docs/fti/FTI_114.json +++ b/docs/fti/FTI_114.json @@ -1 +1 @@ -{"redirected":[1],"resources":[131073,196609,262145,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,36438022,36896774,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"reached":[196609,45350914,63832065,64094209,77856770,105971713,106102785,152436737,155058177,157876226],"release":[196609,262145],"resharper":[196609],"released":[262145],"reference":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63897601,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533890,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"response_key_value_separator":[917505,3342342,150994945],"returned":[983041,3538945,41484289,41549825,64094211,68550658,83623938,88539137,131661825,131727361,148963329,151781377,155058177,156172290,157614081,157679617,166002690,173604865],"return":[983041,3604481,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22937601,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903681,25165825,25296898,25362434,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26214401,26279937,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,28049409,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,37552129,38600705,38666241,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50069505,50135041,52101121,54591489,54657025,54722561,58720257,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,61669377,62062593,62128130,62193665,62259201,62324737,62521346,62586881,62783489,62849025,63832067,64094210,64159745,72155138,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,89325569,89522179,89587715,90112001,91095041,91160577,93323265,94830593,94896129,94961665,95158273,95223809,96075777,96141313,97779713,97845249,97910785,102563841,111017985,132186113,150732801,151453698,151781377,152240129,152502273,152633345,157614081,157679617,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617],"reply":[983041,3604481,5111811,23789571,63766530,71892993,72155137,89260033,89325569,151060481,151453700,151781377,154402817,154468353],"renameevent":[1245187,4325379,4390915,20316163,57737223,64028673,64159746,86769667,141099010,141164546,166264833,169148426,173277190],"response":[1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4587523,4653059,11141121,11206658,21561345,21626882,22085638,22151174,22216710,22282246,22347782,22413318,22478854,22544390,22609921,43778049,43843585,44236801,44367875,59113480,59572225,59637761,61014026,61341706,61472770,61538306,61603842,61669380,61734914,61800450,61865986,61931522,61997059,62062598,62128132,62193666,62259202,62324740,62390274,62455811,62521347,62586884,62652418,64028691,64094213,64159760,64225294,69402626,71303170,71630849,71696385,77266945,77791233,81526785,83755009,85065729,85524481,87621633,88080388,88342529,88408065,88473610,88539146,88604682,88670218,88735754,88801290,88866826,88932362,88997890,103809025,105250817,111017986,124321798,134938630,136511489,146604034,146669569,147456001,148635654,148832262,148897794,148963330,149028867,149094403,149159939,149225475,149291010,149356546,149422082,149487618,149553154,149618690,149684228,149749762,149815299,149880836,149946370,150011913,150077442,150142979,150208515,150274051,150339587,150405123,150470659,150536201,150601731,150667267,155582466,157286404,157417473,157483009,157614081,157679619,157810691,158007297,160169985,160235521,162988033,163053569,163774465,165019649,166133761,167444481,167510017,167641089,167772161,167837697,167903233,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170000385,170262529,170328065,170721282,171048966,171180033,171966465,172097537,172228609,172294145,172621825,172752897,173080577,173146113,173342722,173408257,173473795,173539347,173604884,173670419,173735957,173801491,173867027,173932564,173998107,174063621,174129153,174325761,174718977,174784513],"result":[1441793,4587526,5111810,23855107,24707073,24772609,24838145,24903681,26214401,26279937,49938433,63832067,64028673,64094210,64225281,72155137,79691778,80871425,81068033,81133569,81199105,88539137,89522178,111017986,115605510,115998726,117506054,121044998,148963333,151453699,152240129,152502273,152633345,157614081,157679617,161939460,163119105,163315713,163381249,163446785,173604866,173998081],"regex":[1900549,1966085,2424837,2490373,2621445,2686981,2752517,2818053,2883589,3407877],"reclaimed":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"returns":[4718593,4784129,4849666,4915202,4980738,5046273,5111813,5242892,5308417,5373953,7995394,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8519682,11141121,11206657,13172738,13238274,21626882,21692418,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282242,22347777,22413313,22478849,22544385,22675458,22740993,22806529,22872065,22937601,23592961,23658497,23789569,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707073,24772609,24838145,24903681,25165825,25427969,25690113,25755649,25952257,26214402,26279938,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,38600705,38666241,39714817,40828929,40960001,42598401,43122689,44236802,44367874,44498945,44892161,44957697,45023233,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50069505,50135041,58720257,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,61669378,62062593,62128129,62324737,62521345,62586881,63832104,64094210,64552964,64815106,65011716,72155139,72220683,73138177,73400321,74645506,74973185,75104257,75169794,76808193,77725697,78249985,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281603,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706434,82771970,82837506,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524486,85590017,85655553,85721089,85786625,85852161,85917697,85983235,86048769,86114306,86179842,86245378,86310915,86376450,86441987,86507529,86573057,86638593,86704131,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359495,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88735745,89325569,89522177,89587713,89653249,90112001,90177537,90308609,90374145,90439681,90636289,90963969,91029505,91095041,91160577,93323265,93978625,96075777,96141313,96731137,97714177,97779713,97845249,102563841,104988673,107282433,111017985,112656385,113442817,113639425,128450561,132448257,136249345,136380417,136445953,136511490,137822209,139132929,139460609,139853825,139919361,139984897,140050433,140115969,140247041,140312577,140443649,140902401,140967937,144506881,144572417,144637953,144703489,144900097,145031169,149487617,151060481,151126017,151191554,151257090,151322626,151388161,151453704,151584779,151650316,151715841,151781377,152043521,152109057,152174593,152240131,152305665,152371202,152436737,152502276,152567809,152633348,152698881,152829954,152895489,152961026,153026562,153092097,153157633,153223169,153288705,153354241,153419778,153485314,153812993,153878529,154075137,154140673,154206209,154271745,154402820,154468354,154533889,154599425,154664961,154730497,154796033,154861570,154927106,155123713,155189250,156827649,157417473,157483009,157614081,157679617,157745153,158269441,160628738,161939459,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529283,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085186,165150722,165216258,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903238,167968769,168034305,168099841,168165377,168230913,168296449,168361987,168427521,168493058,168558594,168624130,168689667,168755202,168820739,168886281,168951809,169017345,169082883,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738247,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,171180034,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735938,173801474,173867009,173932545,173998081,174260226,174850049,174915585,174981121],"represents":[4718593,4784129,5046273,5242881,5308417,5373953,8126465,8192001,8257537,8323073,8388609,8454145,8519681,21626881,21757953,21823489,21889025,21954561,22020097,22740993,22806529,22872065,64225282,151060481,151126017,151388161,151650305,151715841,151781377,154533889,154599425,154664961,154730497,154796033,154861569,154927105,171048961,171245569,171835393,173342721,173408257,173473793,173932545,173998081,174850049,174915585,174981121],"root":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"runtime":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"representation":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,71958529,72024065,72089601,74645505,74711041,79626241,79691777,83296257,83820545,88145921,89063425,130088961,131923969,151191554,151257090,151322626,154402818,154468354,160628738,161939458,165675009,166199297,171180034,174260226],"readreply":[5046273,23592967,151388161],"readrequest":[5046273,23658503,151388161],"retrieved":[5111809,23789569,151453697],"remember":[5242884,24707073,24772609,24838145,24903681,63832067,64552964,151650308,152043521,152567809,154075137],"retrieves":[5242881,25165825,42729473,63832065,64094211,69009409,151650305,152240129,156827650,158924801,158990337],"recordfile":[5242882,26214406,26279942,41484289,41549825,65011715,68550658,151650306,156172290],"record":[5242884,26214403,26279939,32374785,32440321,47448065,47513601,63832066,64028673,64094210,64159745,65011716,70320130,73334785,77791233,88211457,93847553,105054209,147718145,151650308,152961027,157810690,158793731,161087489,164102145,171835393],"received":[5242887,8454145,21561345,21626882,21954561,24576001,26214401,26279937,26411009,26804225,26935297,27066369,27197441,37552130,49938433,59113474,59572225,59637761,61145090,63766529,63832073,64028678,64094210,64159746,64225283,65011714,65077249,65208321,65273857,65339393,65404929,71303170,79691777,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230725,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88080385,88342529,88473604,88539140,88604676,88670212,88735748,88801284,88866820,88932356,111017987,129564673,129630209,129892353,132186114,147062785,148504577,149684225,149815297,149880833,150142977,151126017,151650311,152829953,152961025,153026561,153157633,153223169,153288705,153354241,154271746,154861569,155582465,157286401,161939459,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609478,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264835,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170721282,171048963,173342721,173408258,173473793,173539332,173604868,173670404,173735941,173801476,173867012,173932549,173998085,174260225],"recorded":[5242882,26214402,26279938,32374785,32440321,63832065,65011714,73334785,93716481,151650306,152961026],"reaching":[5242882,26214401,26279938,32440321,63832065,65011714,151650306,152961025],"returning":[5242885,26279937,26411009,26804225,26935297,27066369,27197441,32440321,63832070,65077249,65208321,65273857,65339393,65404929,151650309,153026561,153092097,153157633,153223169,153288705,153354241],"receive":[5242881,8454145,28049410,32047105,35913729,37486593,63832065,73203713,73269249,74579969,75104257,93388801,93454337,96010241,97714177,151519233,151650305,152829953,152895489,154271746,154861569,155123713],"rewind":[5636098,24903681,29556738,29622274,29687809,29753345,29818881,29884418,65732610,65798148,72482817,91947009,152043527],"receivecharcommand":[6422531,31916036,31981575,32047111,63832065,66322438,73203715,93388802,151846913,152829963],"receivetextcommand":[6488067,32112644,32178183,32243720,63832065,66387974,73269251,93454338,151846913,152895499],"recordfilecommand":[6553603,32309252,32374791,32440327,63832065,66453510,73334787,93519874,93585410,93650946,93716482,93782018,93847554,151846913,152961035],"resourcemappingstrategy":[8192003,36569093,36634627,36700167,36765704,63897601,67239942,74776579,96206851,154599435,154730500],"ressources":[8454145,37486593,154861569],"readline":[8454146,37486593,37552133,154861570],"reads":[8454145,37552129,63766529,151126017,154861569],"replaces":[11337730,13303810,13369346,13893634,13959170,14024706,14090242,16777218,21823490,44957697,45088769,50069505,50200577,60555265,60686337,157810690,162004994,162070530,162594818,162660354,162725890,162791426,165609474,171835394],"redirectaction":[12255235,47185927,47251463,47316999,64094209,70254600,78708739,108593154,108658691,108724226,108789762,108855298,108920834,157548545,158728205],"required":[12713985,48758786,64094210,70582273,75104257,77791233,88211457,97386497,105381889,147914753,151519233,155123713,157810689,159186947,171835393],"registryevent":[20185091,57606151,64159746,86638595,140509186,140574722,140640258,140705794,140771330,140836866,166264833,169017354,173211653],"reloadevent":[20250627,57671687,64159746,86704131,140902402,140967938,141033474,164954113,169082890],"responseevent":[20381699,21954561,44236801,57802759,61145095,64028673,64159745,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835203,87293954,87359490,87883778,87949314,141230082,141295618,148570118,157614081,157679617,162988039,163053575,164495367,164626439,165019655,166264833,167444487,167510023,167641095,167772167,167837703,168230919,168427527,168886279,168951815,169213962,169672711,169738247,170262535,170328071,173408258],"rtcpreceivedevent":[20447235,57868295,64159745,86900739,141361155,141426691,141492227,141557763,141623299,141688835,141754371,141819907,141885443,141950979,142016515,142082051,166264833,169279498],"rtcpsentevent":[20512771,57933831,64159745,86966275,142147587,142213123,142278659,142344195,142409731,142475267,142540803,142606339,142671875,142737411,142802947,142868483,166264833,169345034],"rtpreceiverstatevent":[20578307,57999367,64159745,87031811,142934019,142999555,143065091,143130627,143196163,143261699,166264833,169410570],"rtpsenderstatevent":[20643843,58064903,64159745,87097347,143327235,143392771,143458307,143523843,143589379,143654915,166264833,169476106],"reader":[21626882,59572225,59637761,63766530,64225281,71303170,154402817,154468353,171048962,173604865],"registerusereventclass":[21626881,59768838,170131457,171048961],"register":[21626881,59768833,64028673,64159746,86638593,140640257,169017346,170131457,171048961,173211649],"responsehandler":[21626881,22020099,59899920,61276163,61341700,61407239,64028673,71368705,88408067,148701187,148766723,148832259,171048961,173473800],"responseeventhandler":[21889027,60882947,60948484,61014020,61079560,64028673,88276995,148307971,148373507,148439043,173342728],"responseevents":[21954563,49938438,60030981,60096517,61145090,61210629,64028675,64159745,88276993,88342531,111017991,148439052,148504578,148570115,148635651,161939457,169213953,173342722,173408264],"running":[22806529,22872065,63176705,63569921,174915585,174981121],"realize":[22872065,63569921,174981121],"retrieve":[23789569,25165826,25690113,25755649,25952257,27721729,30408706,31129601,31195137,31522817,42401793,42532865,42729473,64028673,72679425,72941569,76808193,78970881,92340225,92995585,102629377,109641729,152240129,152502273,156827649,158990337,161939457],"rewinddigit":[24903685,29556741,29622277,29884421,72482817,91947013,152043521],"recording":[26214401,26279938,32374785,32440322,41353217,41418753,41484290,41549826,41615361,41680897,64094210,68485122,68550660,68616194,73334786,93519873,93585409,152961026,156106754,156172292,156237826,157745153,159121409],"requests":[28639233,28770305,40370177,48037889,64028673,64094214,68091905,70451201,72351745,91422721,151781377,155254785,155582466,157941761,158662657,158990337,159055873,159514625,161349633],"read":[30998529,44040193,63832065,64094210,69468161,72876034,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,92798978,113180673,139722753,152436739,157417474,159186945,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"request":[35979270,36241415,36569095,37027847,63766530,72220674,86638593,90898438,90963969,140705793,151126018,151584770,169017345],"resourcename":[36765702,37224454],"removes":[40697857,40763393,46727169,64094209,68288514,70057985,155779074,158466050],"record_file":[41484290,41549826,68550660,156172292],"reload":[46530561,46596097,48955398,49020934,64028673,64094210,64159745,69992450,79167491,86704133,110100487,140902404,141033473,158400514,159186949,161480705,169082886],"rules":[46596102,78381057,107872262,158400513],"removed":[46727169,64028673,64159746,78446593,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,108068865,112656385,158466049,162398209,168361985,168493058,168558593,168624129,168689666,168755201,168820737,172949505],"remove":[46727169,78446593,108003329,158466049],"reset":[46792705,46858241,70123522,158531586],"rule":[46989318,78577665,108331014,158597121],"redirects":[47251457,47316993,64094209,70254594,158728195],"redirect":[47251457,47316994,78708738,108593153,108855297,158728194],"renamecat":[48758785,64094209,159186945],"references":[63373313,63438849],"runnable":[63504390],"runs":[63766529,151126017],"receives":[63766530,63832066,152829953,152895489,154402817,154468353],"resource":[63766530,63897603,154533889,154599426,154730498],"recieve":[63832065,152436737],"recieved":[63832065,152436737],"reception":[63832068,152829954,152895489,154140673],"responsehandlerresult":[64028673,173473793],"responses":[64028673,170721281],"ring":[64028673,80478209,114753537,159776769,162725889],"reported":[64028678,64094212,64159751,85458945,136183809,155254785,157941761,158924801,159055873,160169985,162988033,163774465,167641089,167837698,168951809,169672705,170262529,172097537,172294145,173146113,174325761,174718977],"raised":[64028676,64159747,161611777,161677313,168558593,168755201,168820737,172490753,172556289],"registrer":[64028673,64159745,167903233,172359681],"registryeventhandler":[64028673,173211653],"registry":[64028673,173211649],"renameeventhandler":[64028673,173277189],"resumed":[64028673,64159745,170065921,174522369],"results":[64094210,155582465,157286401],"res":[64094211,64159749,155648001,157745153,159121409,165740545,167510017,167575553,167706625,170065921],"res_monitor":[64094211,155648001,157745153,159121409],"reports":[64094209,157810689],"repeatable":[64094209,159186945],"related":[64159750,162004993,162332673,162398209,164888577,164954113,165281793],"rung":[64159745,162594817],"report":[64159745,163774465],"res_features":[64159749,165740545,167510017,167575553,167706625,170065921],"replaced":[64159745,77725697,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,104857601,112656385,157745153,162398209,168361985,168493058,168558593,168624129,168689665,168755201,168820737],"ringinuse":[64159745,80150530,85983234,86114306,86179842,86245378,86310914,86376450,86441986,113115142,139198470,162398210,168361986,168493058,168558594,168624130,168689666,168755203,168820738],"restarted":[64159745,87228417,144244737,169607170],"recognized":[64159745,170131457],"raw":[64225281,173604865],"requires":[64225281,173735937],"requested":[64225281,86704132,140902404,169082884,173735937],"responsebuilder":[64225281,173735937],"resultcode":[72155137,80871425,89522181,115671046,151453697,163119105],"resultcodeaschar":[72155137,89587717,151453697],"rdnis":[72220673,90701830,151584769],"remoteaddress":[72220673,74973185,83165185,90767366,96993286,129433606,151584769,154861569,165543937],"remoteport":[72220673,74973185,90832902,97058822,151584769,154861569],"requesturl":[72220673,90963973,151584769],"resourcebundlename":[74776577,74907649,96206854,96534534,154599425,154730497],"reloaded":[79167489,110100481,159186945],"realtime":[80150530,86114306,86179842,86245378,86310914,86376450,112787458,162398210,168493058,168558594,168624130,168689666,168755202],"reason":[80150529,80281603,80412673,81526785,83755009,83820547,85065729,85983233,86114306,86179843,86245377,86310913,86376449,86441985,87621633,88997889,112918529,113639432,114491397,124256262,131923974,131989505,134873094,138936326,139001862,150470662,162398209,162529283,162660353,163774465,166133761,166199299,167444481,168361985,168493058,168558595,168624129,168689665,168755201,168820737,170000385,174063617],"ringtime":[80478209,114753541,162725889],"red":[81002497,87949313,115802113,146210817,163250177,170328065],"recovering":[81002497,87949313,115802113,146210817,163250177,170328065],"registrycount":[81788929,126091270,164167681],"reloadreason":[81788929,126156805,164167681],"reconnect":[82509826,82575362,82903042,86704130,87228418,88080389,127664134,146866177,147193857,147259393,147324929,147390465,164888578,164954114,165281794,169082882,169607170,171048965],"remotestationid":[83230721,129826821,165609473],"remote":[83230721,129826817,163905537,165609473],"resolution":[83230722,129892358,165609474],"row":[83230721,129892353,165609473],"rate":[83230721,129957889,165609473],"remotedropped":[83558401,131203078,165937153],"remotejbdelay":[83558401,131268614,165937153],"remotejitter":[83558401,131334150,165937153],"remotelosspercent":[83558401,131399686,165937153],"remoteooo":[83558401,131465222,165937153],"remotereceived":[83558401,131530758,165937153],"remotetotallost":[83558401,131596294,165937153],"reasoncode":[83820545,131989509,166199297],"realtimedevice":[85393409,135921670,167772161],"rejection":[85524481,136249346,167903233],"rejected":[85524482,86638596,136249345,136445953,140509186,140705794,167903234,169017348],"registered":[85524482,86638594,136380418,136445953,140705794,167903234,169017346],"registration":[85524482,86638599,136380417,136445954,140509186,140705793,140771329,140836867,167903234,169017351],"reachable":[85524482,136445953,136511489,167903234],"ratio":[86507521,140312578,168886273],"registrations":[86638593,140705793,169017345],"receptionreports":[86900737,141885446,169279489],"rtt":[86900737,87097345,141950982,143458310,169279489,169476097],"reportblock":[86966273,142475270,169345025],"receivedpackets":[87031809,143065094,169410561],"rrcount":[87031809,143130630,169410561],"restart":[87228418,144244741,144375809,169607170],"reconnecting":[88080385,146931713,171048961],"reconnection":[88080385,146931713,171048961],"reconnectintervalfast":[88080385,147193861,171048961],"reconnectintervalmax":[88080385,147259397,171048961],"reconnectretryfast":[88080385,147324933,171048961],"retry":[88080386,147324929,147390465,171048962],"reconnectretrymax":[88080385,147390469,171048961],"referencing":[88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,149684225,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"representing":[88539137,148963329,173604865],"readonly":[89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90636289,90701825,90898433,90963969,91029505,91095041,91160577,91226113,91750401,91881473,91947009,95748097,96075777,96141313,96600065,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104464385,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,109969409,110231553,110428161,110559233,110690305,110821377,110886913,111017985,131989505,134086657,146407425,146538497,147652609,148307969,148439041,148570113,148701185,148832257,149291009,149749761,150405121,150732801,150798337],"resulting":[150732801],"ref":[150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"rtp":[163905538]} \ No newline at end of file +{"redirected":[1],"resources":[131073,196609,262145,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,41943046,42401798,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"reached":[196609,50855938,69337089,69599233,83361794,111476737,111607809,158007297,160628737,163446786],"release":[196609,262145],"resharper":[196609],"released":[262145],"reference":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69402625,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104450,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"ring":[786433,1114113,85393409,85983233,88801281,90374145,90505217,117374977,120258561,167706625,168296449,171245569,172818433,172949505,176619521],"response":[786447,1507329,1572865,4325377,4456449,4587521,4653057,4784129,4980737,5046273,5439489,5505025,5701633,5767169,6291457,6356993,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10092547,10158083,16646145,16711682,27066369,27131906,27590662,27656198,27721734,27787270,27852806,27918342,27983878,28049414,28114945,49283073,49348609,49741825,49872899,64618504,65077249,65142785,66519050,66846730,66977794,67043330,67108866,67174404,67239938,67305474,67371010,67436546,67502083,67567622,67633156,67698690,67764226,67829764,67895298,67960835,68026371,68091908,68157442,69533701,69599237,69664784,69730318,74907650,76808194,77135873,77201409,82771969,83296257,87031809,89260033,90570753,91029505,93126657,93585412,93847553,93913089,93978634,94044170,94109706,94175242,94240778,94306314,94371850,94437386,94502914,109314049,110755841,116523010,129892358,140509190,142082049,152174594,152240129,153026561,154206214,154402822,154468354,154533890,154599427,154664963,154730499,154796035,154861570,154927106,154992642,155058178,155123714,155189250,155254788,155320322,155385859,155451396,155516930,155582473,155648002,155713539,155779075,155844611,155910147,155975683,156041219,156106761,156172291,156237827,161153026,162856964,162988033,163053569,163184641,163250179,163381251,163577857,168558593,168624129,169345025,170590209,171704321,173015041,173080577,173211649,173342721,173408257,173473793,173801473,173998081,174456833,174522369,174784513,175243265,175308801,175570945,175833089,175898625,176291842,176619541,176750593,178913282,178978817,179044355,179109907,179175444,179240979,179306517,179372051,179437587,179503124,179568667,179634181],"reported":[786438,1572865,4456449,4653057,5505025,5767169,6356993,69599236,69664775,90963969,141754369,160825345,163512321,164495361,164626433,168558593,169345025,173211649,173408258,174522369,175243265,175833089,176619526],"record":[786433,2293761,10747908,31719427,31784963,37879809,37945345,52953089,53018625,69337090,69599234,69664769,70516740,75825154,78839809,83296257,93716481,99352577,110559233,153288705,157220868,158531587,163381250,164364291,169672705,176619521,177405953],"requests":[786433,2555905,34144257,34275329,45875201,53542913,69599238,73596929,75956225,77856769,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,96927745,110100481,157351937,160628737,160694273,160759809,160825346,160890881,160956417,161021953,161087489,161153027,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512322,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495361,164560898,164626434,164691969,164757505,164823041,164888577,164954113,165019649,165085186,165150721,176619521],"reload":[786433,2686977,52035585,52101121,54460422,54525958,69599234,69664769,75497474,84672515,92209157,115605511,146472964,146604033,163971074,164757509,174653446,176619521],"raised":[786436,2883585,2949121,4849665,4915201,69664771,174129153,174325761,174391297,176619524],"registrer":[786433,4718593,69664769,173473793,176619521],"replaced":[786433,5242881,69664769,83230721,85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,110362625,118161409,163315713,167968769,173932545,174063618,174129153,174194689,174260225,174325761,174391297,176619521],"removed":[786434,5242881,5308417,52232193,69664770,83951617,85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,113573889,118161409,164036609,167968769,173932545,174063618,174129153,174194689,174260226,174325761,174391297,176619522],"registry":[786434,5570566,176619522],"register":[786433,5570561,27131905,65273857,69664770,92143617,146210817,174587906,175702017,176619522],"rename":[786433,5636101,176619521],"renameevent":[786433,5636098,6750211,9830403,9895939,25821187,63242247,69664770,92274691,146669570,146735106,171835393,174718986,176619521,178847749],"resumed":[786433,6094849,69664769,175636481,176619521],"remove":[983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,52232193,83951617,113508353,164036609],"registryeventhandler":[5570567,69533697,178782214],"registryevent":[5570561,25690115,63111175,69664770,92143619,146079746,146145282,146210818,146276354,146341890,146407426,171835393,174587914,178782213],"renameeventhandler":[5636103,69533697,178847750],"response_key_value_separator":[6422529,8847366,156565505],"returned":[6488065,9043969,46989313,47054849,69599235,74055682,89128962,94044161,137232385,137297921,154533889,157351937,160628737,161742850,163184641,163250177,171573250,179175425],"return":[6488065,9109505,10747905,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28442625,29097985,29163521,29294593,29360129,29425665,29491201,29556737,29622273,29818881,29884417,29949953,30015489,30212097,30277633,30343169,30408705,30670849,30801922,30867458,30932994,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31719425,31784961,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423361,33554433,34406401,34471937,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41484289,41746433,42074113,42336257,42532865,42795009,43057153,44105729,44171265,45219841,46333953,46465025,48103425,48627713,49741825,49872897,50003969,50397185,50462721,50528257,50921473,52559873,53280769,53411841,53608449,53870593,55115777,55574529,55640065,57606145,60096513,60162049,60227585,64225281,64684033,64749569,64815105,64880641,64946177,65011713,65339393,65404929,65470465,65536001,65601537,66060289,66125825,67174401,67567617,67633154,67698689,67764225,67829761,68026370,68091905,68288513,68354049,69337092,69599234,69664769,77660162,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,94830593,95027203,95092739,95617025,96600065,96665601,98828289,100335617,100401153,100466689,100663297,100728833,101580801,101646337,103284737,103350273,103415809,108068865,116523009,137756673,156303361,157024258,157220865,157351937,157548545,157810689,158072833,158203905,163184641,163250177,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702018,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177],"reply":[6488065,9109505,10616835,29294595,69271554,77398017,77660161,94765057,94830593,156631041,157024260,157351937,159973377,160038913],"result":[6946817,10092550,10616834,29360131,30212097,30277633,30343169,30408705,31719425,31784961,55443457,69337091,69533697,69599234,69730305,77660161,85196802,86376449,86573057,86638593,86704129,94044161,95027202,116523010,121110534,121503750,123011078,126550022,154533893,157024259,157810689,158072833,158203905,163184641,163250177,167510020,168689665,168886273,168951809,169017345,179175426,179568641],"regex":[7405573,7471109,7929861,7995397,8126469,8192005,8257541,8323077,8388613,8912901],"reclaimed":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"returns":[10223617,10289153,10354690,10420226,10485762,10551297,10616837,10747917,10813441,10878977,13500418,13565954,13631489,13697025,13762561,13828097,13893633,13959169,14024706,16646145,16711681,18677762,18743298,27131906,27197442,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787266,27852801,27918337,27983873,28049409,28180482,28246017,28311553,28377089,28442625,29097985,29163521,29294593,29360129,29425665,29491201,29556737,29622273,29818881,29884417,29949953,30015489,30212097,30277633,30343169,30408705,30670849,30932993,31195137,31260673,31457281,31719426,31784962,34406401,34471937,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41484289,41746433,42074113,42336257,42532865,42795009,44105729,44171265,45219841,46333953,46465025,48103425,48627713,49741826,49872898,50003969,50397185,50462721,50528257,50921473,52559873,53280769,53411841,53608449,53870593,55115777,55574529,55640065,64225281,64684033,64749569,64815105,64880641,64946177,65011713,65339393,65404929,65470465,65536001,65601537,66060289,66125825,67174402,67567617,67633153,67829761,68026369,68091905,69337130,69599234,70057988,70320130,70516740,77660163,77725707,78643201,78905345,80150530,80478209,80609281,80674818,82313217,83230721,83755009,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655554,85721089,85786627,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211458,88276994,88342530,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029510,91095041,91160577,91226113,91291649,91357185,91422721,91488259,91553793,91619330,91684866,91750402,91815939,91881474,91947011,92012553,92078081,92143617,92209155,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864519,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,94240769,94830593,95027201,95092737,95158273,95617025,95682561,95813633,95879169,95944705,96141313,96468993,96534529,96600065,96665601,98828289,99483649,101580801,101646337,102236161,103219201,103284737,103350273,108068865,110493697,112787457,116523009,118161409,118947841,119144449,134021121,138018817,141819905,141950977,142016513,142082050,143392769,144703489,145031169,145424385,145489921,145555457,145620993,145686529,145817601,145883137,146014209,146472961,146538497,150077441,150142977,150208513,150274049,150470657,150601729,155058177,156631041,156696577,156762114,156827650,156893186,156958721,157024264,157155339,157220877,157286401,157351937,157548546,157614081,157679617,157745153,157810691,157876225,157941762,158007297,158072836,158138369,158203908,158269441,158400514,158466049,158531586,158597122,158662657,158728193,158793729,158859265,158924801,158990338,159055874,159383553,159449089,159645697,159711233,159776769,159842305,159973380,160038914,160104449,160169985,160235521,160301057,160366593,160432130,160497666,160694273,160759810,162398209,162988033,163053569,163184641,163250177,163315713,163840001,166199298,167510019,167575553,167641089,167706625,167772161,167837697,167903233,167968770,168034305,168099843,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655746,170721282,170786818,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473798,173539329,173604865,173670401,173735937,173801473,173867009,173932547,173998081,174063618,174129154,174194690,174260227,174325762,174391299,174456841,174522369,174587905,174653443,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308807,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,176750594,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306498,179372034,179437569,179503105,179568641,179830786,180420609,180486145,180551681],"represents":[10223617,10289153,10551297,10747905,10813441,10878977,13631489,13697025,13762561,13828097,13893633,13959169,14024705,27131905,27262977,27328513,27394049,27459585,27525121,28246017,28311553,28377089,69730306,156631041,156696577,156958721,157220865,157286401,157351937,160104449,160169985,160235521,160301057,160366593,160432129,160497665,176619521,176816129,177405953,178913281,178978817,179044353,179503105,179568641,180420609,180486145,180551681],"root":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"runtime":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"representation":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,77463553,77529089,77594625,80150529,80216065,85131265,85196801,88801281,89325569,93650945,94568449,135659521,137494529,156762114,156827650,156893186,159973378,160038914,166199298,167510018,171245569,171769857,176750594,179830786],"readreply":[10551297,29097991,156958721],"readrequest":[10551297,29163527,156958721],"retrieved":[10616833,29294593,157024257],"remember":[10747908,30212097,30277633,30343169,30408705,69337091,70057988,157220868,157614081,158138369,159645697],"retrieves":[10747905,30670849,48234497,69337089,69599235,74514433,157220865,157810689,162398210,164495361,164560897],"reserved":[10747905,30932993,69337089,157220865,157548545],"ringing":[10747906,30932994,69337090,85393409,88801281,90374145,90505217,117374977,157220866,157548546,167706625,171245569,172818433,172949505],"remote":[10747905,30932993,69337089,88735745,135397377,157220865,157548545,169476097,171180033],"recordfile":[10747906,31719430,31784966,46989313,47054849,70516739,74055682,157220866,161742850],"received":[10747911,13959169,27066369,27131906,27459585,30081025,31719425,31784961,31916033,32309249,32440321,32571393,32702465,43057154,55443457,64618498,65077249,65142785,66650114,69271553,69337097,69533702,69599234,69664770,69730307,70516738,70582273,70713345,70778881,70844417,70909953,76808194,85196801,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735749,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93585409,93847553,93978628,94044164,94109700,94175236,94240772,94306308,94371844,94437380,116523011,135135233,135200769,135462913,137756674,152633345,154075137,155254785,155385857,155451393,155713537,156696577,157220871,158400513,158531585,158597121,158728193,158793729,158859265,158924801,159842306,160432129,161153025,162856961,167510019,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180038,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835395,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,176291842,176619523,178913281,178978818,179044353,179109892,179175428,179240964,179306501,179372036,179437572,179503109,179568645,179830785],"recorded":[10747906,31719426,31784962,37879809,37945345,69337089,70516738,78839809,99221505,157220866,158531586],"reaching":[10747906,31719425,31784962,37945345,69337089,70516738,157220866,158531585],"returning":[10747909,31784961,31916033,32309249,32440321,32571393,32702465,37945345,69337094,70582273,70713345,70778881,70844417,70909953,157220869,158597121,158662657,158728193,158793729,158859265,158924801],"raw":[10747905,32899073,69730305,157220865,179175425],"receive":[10747905,13959169,33554434,37552129,37748737,41418753,42991617,69337089,71892993,78708737,78774273,80084993,80609281,98893825,98959361,101515265,103219201,157089793,157220865,158400513,158466050,159842306,160432129,160694273],"rewind":[11141122,30408705,35061762,35127298,35192833,35258369,35323905,35389442,71237634,71303172,77987841,97452033,157614087],"receivecharcommand":[11927555,37421060,37486599,37552135,69337089,71827462,78708739,98893826,157417473,158400523],"receivetextcommand":[11993091,37617668,37683207,37748744,69337089,71892998,78774275,98959362,157417473,158466059],"recordfilecommand":[12058627,37814276,37879815,37945351,69337089,71958534,78839811,99024898,99090434,99155970,99221506,99287042,99352578,157417473,158531595],"resourcemappingstrategy":[13697027,42074117,42139651,42205191,42270728,69402625,72744966,80281603,101711875,160169995,160301060],"ressources":[13959169,42991617,160432129],"readline":[13959170,42991617,43057157,160432130],"reads":[13959169,43057153,69271553,156696577,160432129],"replaces":[16842754,18808834,18874370,19398658,19464194,19529730,19595266,22282242,27328514,50462721,50593793,55574529,55705601,66060289,66191361,163381250,167575554,167641090,168165378,168230914,168296450,168361986,171180034,177405954],"redirectaction":[17760259,52690951,52756487,52822023,69599233,75759624,84213763,114098178,114163714,114229250,114294786,114360322,114425858,163119105,164298765],"required":[18219009,54263810,69599234,76087297,80609281,83296257,93716481,102891521,110886913,153485313,157089793,160694273,163381249,164757507,177405953],"reloadevent":[25755651,63176711,69664770,92209155,146472962,146538498,146604034,170524673,174653450],"responseevent":[25886723,27459585,49741825,63307783,66650119,69533697,69664769,86245378,86310914,87621634,87752706,88145922,90570754,90636290,90767362,90898434,90963970,91357186,91553794,92012546,92078082,92340227,92798978,92864514,93388802,93454338,146800642,146866178,154140678,163184641,163250177,168558599,168624135,170065927,170196999,170590215,171835393,173015047,173080583,173211655,173342727,173408263,173801479,173998087,174456839,174522375,174784522,175243271,175308807,175833095,175898631,178978818],"rtcpreceivedevent":[25952259,63373319,69664769,92405763,146931715,146997251,147062787,147128323,147193859,147259395,147324931,147390467,147456003,147521539,147587075,147652611,171835393,174850058],"rtcpsentevent":[26017795,63438855,69664769,92471299,147718147,147783683,147849219,147914755,147980291,148045827,148111363,148176899,148242435,148307971,148373507,148439043,171835393,174915594],"rtpreceiverstatevent":[26083331,63504391,69664769,92536835,148504579,148570115,148635651,148701187,148766723,148832259,171835393,174981130],"rtpsenderstatevent":[26148867,63569927,69664769,92602371,148897795,148963331,149028867,149094403,149159939,149225475,171835393,175046666],"reader":[27131906,65077249,65142785,69271554,69730305,76808194,159973377,160038913,176619522,179175425],"registerusereventclass":[27131905,65273862,175702017,176619521],"responsehandler":[27131905,27525123,65404944,66781187,66846724,66912263,69533697,76873729,93913091,154271747,154337283,154402819,176619521,179044360],"responseeventhandler":[27394051,66387971,66453508,66519044,66584584,69533697,93782019,153878531,153944067,154009603,178913288],"responseevents":[27459587,55443462,65536005,65601541,66650114,66715653,69533699,69664769,93782017,93847555,116523015,154009612,154075138,154140675,154206211,167510017,174784513,178913282,178978824],"running":[28311553,28377089,68681729,69074945,180486145,180551681],"realize":[28377089,69074945,180551681],"retrieve":[29294593,30670850,31195137,31260673,31457281,33226753,35913730,36634625,36700161,37027841,47906817,48037889,48234497,69533697,78184449,78446593,78577665,82313217,84475905,97845249,98500609,98762753,108134401,115146753,157810689,158072833,158203905,162398209,164560897,167510017],"rewinddigit":[30408709,35061765,35127301,35389445,77987841,97452037,157614081],"recording":[31719425,31784962,37879809,37945346,46858241,46923777,46989314,47054850,47120385,47185921,69599234,73990146,74055684,74121218,78839810,99024897,99090433,158531586,161677314,161742852,161808386,163315713,164691969],"read":[36503553,49545217,69337089,69599234,74973185,78381058,85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,98304002,118685697,145293313,158007299,162988034,164757505,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"request":[41484294,41746439,42074119,42532871,69271554,77725698,92143617,96403462,96468993,146276353,156696578,157155330,174587905],"resourcename":[42270726,42729478],"removes":[46202881,46268417,52232193,69599233,73793538,75563009,161349634,164036610],"record_file":[46989314,47054850,74055684,161742852],"rules":[52101126,83886081,113377286,163971073],"reset":[52297729,52363265,75628546,164102146],"rule":[52494342,84082689,113836038,164167681],"redirects":[52756481,52822017,69599233,75759618,164298755],"redirect":[52756481,52822018,84213763,114098177,114163713,114360321,164298755],"renamecat":[54263809,69599233,164757505],"references":[68878337,68943873],"runnable":[69009414],"runs":[69271553,156696577],"receives":[69271554,69337090,158400513,158466049,159973377,160038913],"resource":[69271554,69402627,160104449,160169986,160301058],"recieve":[69337089,158007297],"recieved":[69337089,158007297],"reception":[69337092,158400514,158466049,159711233],"responsehandlerresult":[69533697,179044353],"responses":[69533697,176291841],"results":[69599234,161153025,162856961],"res":[69599235,69664773,161218561,163315713,164691969,171311105,173080577,173146113,173277185,175636481],"res_monitor":[69599235,161218561,163315713,164691969],"reports":[69599233,163381249],"repeatable":[69599233,164757505],"related":[69664774,167575553,167903233,167968769,170459137,170524673,170852353],"rung":[69664769,168165377],"report":[69664769,169345025],"res_features":[69664773,171311105,173080577,173146113,173277185,175636481],"ringinuse":[69664769,85655554,91488258,91619330,91684866,91750402,91815938,91881474,91947010,118620166,144769030,167968770,173932546,174063618,174129154,174194690,174260226,174325763,174391298],"restarted":[69664769,92733441,149815297,175177730],"recognized":[69664769,175702017],"requires":[69730305,179306497],"requested":[69730305,92209156,146472964,174653444,179306497],"responsebuilder":[69730305,179306497],"resultcode":[77660161,86376449,95027205,121176070,157024257,168689665],"resultcodeaschar":[77660161,95092741,157024257],"rdnis":[77725697,96206854,157155329],"remoteaddress":[77725697,80478209,88670209,96272390,102498310,135004166,157155329,160432129,171114497],"remoteport":[77725697,80478209,96337926,102563846,157155329,160432129],"requesturl":[77725697,96468997,157155329],"resourcebundlename":[80281601,80412673,101711878,102039558,160169985,160301057],"reloaded":[84672513,115605505,164757505],"realtime":[85655554,91619330,91684866,91750402,91815938,91881474,118292482,167968770,174063618,174129154,174194690,174260226,174325762],"reason":[85655553,85786627,85917697,87031809,89260033,89325571,90570753,91488257,91619330,91684867,91750401,91815937,91881473,91947009,93126657,94502913,118423553,119144456,119996421,129826822,137494534,137560065,140443654,144506886,144572422,156041222,167968769,168099843,168230913,169345025,171704321,171769859,173015041,173932545,174063618,174129155,174194689,174260225,174325761,174391297,175570945,179634177],"ringtime":[85983233,120258565,168296449],"red":[86507521,93454337,121307137,151781377,168820737,175898625],"recovering":[86507521,93454337,121307137,151781377,168820737,175898625],"registrycount":[87293953,131661830,169738241],"reloadreason":[87293953,131727365,169738241],"reconnect":[88014850,88080386,88408066,92209154,92733442,93585413,133234694,152436737,152764417,152829953,152895489,152961025,170459138,170524674,170852354,174653442,175177730,176619525],"remotestationid":[88735745,135397381,171180033],"resolution":[88735746,135462918,171180034],"row":[88735745,135462913,171180033],"rate":[88735745,135528449,171180033],"remotedropped":[89063425,136773638,171507713],"remotejbdelay":[89063425,136839174,171507713],"remotejitter":[89063425,136904710,171507713],"remotelosspercent":[89063425,136970246,171507713],"remoteooo":[89063425,137035782,171507713],"remotereceived":[89063425,137101318,171507713],"remotetotallost":[89063425,137166854,171507713],"reasoncode":[89325569,137560069,171769857],"realtimedevice":[90898433,141492230,173342721],"rejection":[91029505,141819906,173473793],"rejected":[91029506,92143620,141819905,142016513,146079746,146276354,173473794,174587908],"registered":[91029506,92143618,141950978,142016513,146276354,173473794,174587906],"registration":[91029506,92143623,141950977,142016514,146079746,146276353,146341889,146407427,173473794,174587911],"reachable":[91029506,142016513,142082049,173473794],"ratio":[92012545,145883138,174456833],"registrations":[92143617,146276353,174587905],"receptionreports":[92405761,147456006,174850049],"rtt":[92405761,92602369,147521542,149028870,174850049,175046657],"reportblock":[92471297,148045830,174915585],"receivedpackets":[92536833,148635654,174981121],"rrcount":[92536833,148701190,174981121],"restart":[92733442,149815301,149946369,175177730],"reconnecting":[93585409,152502273,176619521],"reconnection":[93585409,152502273,176619521],"reconnectintervalfast":[93585409,152764421,176619521],"reconnectintervalmax":[93585409,152829957,176619521],"reconnectretryfast":[93585409,152895493,176619521],"retry":[93585410,152895489,152961025,176619522],"reconnectretrymax":[93585409,152961029,176619521],"referencing":[93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155254785,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"representing":[94044161,154533889,179175425],"readonly":[94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96141313,96206849,96403457,96468993,96534529,96600065,96665601,96731137,97255425,97386497,97452033,101253121,101580801,101646337,102105089,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102957057,103284737,103481345,103546881,103743489,104726529,105054209,105316353,105447425,105644033,105775105,105971713,106102785,106168321,106299393,106496001,106692609,106823681,106954753,107085825,107282433,107347969,107413505,107479041,107610113,107806721,108003329,108199937,108462081,108593153,108789761,108920833,109117441,109248513,109641729,109707265,109838337,109969409,110231553,110624769,111345665,111673345,111738881,111804417,112197633,112590849,112852993,113115137,113442817,113639425,113770497,113901569,114098177,114491393,114753537,115015681,115081217,115212289,115277825,115408897,115474433,115736577,115933185,116064257,116195329,116326401,116391937,116523009,137560065,139657217,151977985,152109057,153223169,153878529,154009601,154140673,154271745,154402817,154861569,155320321,155975681,156303361,156368897],"resulting":[156303361],"ref":[156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"rtp":[169476098]} \ No newline at end of file diff --git a/docs/fti/FTI_115.json b/docs/fti/FTI_115.json index f5f488c..940a30d 100644 --- a/docs/fti/FTI_115.json +++ b/docs/fti/FTI_115.json @@ -1 +1 @@ -{"sandcastle":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"search":[65537],"sort":[65537],"section":[131073,46530561,46596097,64159745,69992450,158400514,164102145],"select":[131073],"source":[196609,50003974,50331654,50397190,50528262,50593798,50659334,50724869,50790406,50855942,50921478,50987014,51052550,51118086,51183622,51249158,51314694,51380230,51445766,51511302,51576838,51642374,51707910,51773446,51838982,51904518,51970054,52035590,52166662,52232198,52297734,52363270,52428806,52494342,52559878,52625414,52690950,52756486,52822022,52887558,52953094,53018630,53084166,53149702,53215238,53280774,53346310,53411846,53477382,53542918,53608454,53673990,53739526,53870598,53936134,54001670,54067206,54132742,54198278,54263814,54329350,54394886,54460422,54525958,54788097,54853637,54919174,54984710,55050246,55115782,55181318,55246854,55312390,55377926,55443462,55508998,55574534,55640070,55705606,55771142,55836678,55902214,55967750,56033286,56098822,56164358,56229894,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950789,57016326,57081861,57147397,57212933,57278469,57344005,57409541,57475078,57540614,57606150,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58785798,58851334,58916870,58982406,71172097,71958529,72024065,72089601,74645505,74711041,79167489,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706435,82771971,82837507,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88145921,89063425,110166017,128450561,128516097,132382725,151191553,151257089,151322625,154402817,154468353,159186945,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085187,165150723,165216259,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,174260225],"status":[196609,983042,3538945,3604481,5111810,23920643,49283073,49414145,63766530,64028673,64094210,64159745,70778881,70844417,79036417,80150531,80805890,82509825,82575361,82903041,82968577,83099649,83427329,84148225,84279297,84344833,84475905,85393410,85524484,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86638593,86704131,87228417,88604673,89194497,109707265,113246215,115343366,127664129,128712709,129236997,130416646,132907014,132972550,133038086,133431302,135987206,136249346,136511490,138084359,138739719,139788295,140705797,141033478,149225478,150798337,151453698,151519237,151781378,154402817,154468353,159055873,159318018,159383554,162398211,163053570,164888577,164954113,165281793,165347329,165478401,165806081,166526977,166658049,166723585,166854657,167772162,167903236,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820740,169017345,169082883,169607169,173015041,173670401,174915585],"separation":[196609],"special":[196609,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"serializeobjectstate":[327681,393217,458753,524289,589825,655361,720897,786433,851969,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"serialized":[327682,393218,458754,524290,589826,655362,720898,786434,851970,151191554,151257090,151322626,154402818,154468354,160628738,161939458,171180034,174260226],"state":[327681,393217,458753,524289,589825,655361,720897,786433,851969,22806530,63045633,63176705,64028682,64094215,64159754,74973185,79888387,80150530,82968579,83099649,83296259,84869123,85000195,85524481,85983233,86114306,86179842,86245378,86310914,86376450,86441985,86638593,87359489,87949313,96731137,111607809,111673345,111869958,113180673,113246209,128647174,128712705,129236993,136445954,139722753,140705793,145096710,146210817,151191553,151257089,151322625,154402817,154468353,154861569,155254786,157024257,158662657,159055874,159514625,160169985,160366593,160432129,160628737,161808385,161939457,162136067,162398210,162988033,163184641,163250177,165347332,165478402,165675011,167247875,167378948,167903233,168361985,168493058,168558594,168624130,168689666,168755202,168820737,168951809,169017345,169672705,169738241,170262529,170328066,170393601,171180033,171769857,173146113,174260225,174325761,174718977,174784513,174915586],"size":[917505,2555905,63635457,72351745,91422721,150994945,151781377,174981121],"separator":[917505,3211265,150994945],"show_version_files_pattern":[917505,3407878,150994945],"sc511_causes_exception":[983041,3538949,23003142,23068678,23199750,151781377],"set":[983044,1114114,3538946,3604482,3735553,3801089,8519682,11337731,13303811,13369347,13893635,13959171,14024707,14090243,16777219,21823491,23789569,25755649,25952257,27721729,30539779,30867457,30932993,35192833,35586049,38731777,38797313,42860546,42991617,43843585,45023233,45154306,45350915,46399489,46465025,47644673,47710209,50135041,50266114,54788097,60620801,60751874,62980097,63832070,64028675,64094211,64159747,64225281,66060290,67567618,69926914,71172097,72220673,72482819,72548354,72613890,72679426,72744966,72810498,72876035,72941570,73007107,73203713,73269249,73334790,73400322,73465860,73531394,73596930,73662466,73728002,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252290,74317828,74383363,74448899,74514434,74579969,75038723,75104260,75169793,75563009,75628546,75694081,76677122,76742658,76808193,76873734,76939266,77004802,77070337,77135874,77201409,77266950,77398017,77463553,77725701,77791251,77856771,78118918,78249987,78446594,78643202,78708740,78774277,78839812,78970881,79101953,79167492,79233026,79298561,79364097,79429633,79560705,79757321,79822854,79888397,79953924,80019461,80085000,80150533,80216069,80281605,80347144,80412684,80478220,80543753,80609285,80674821,80740358,80805900,80871428,80936964,81002501,81068036,81133572,81199108,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788933,81854469,81920004,81985540,82051076,82116614,82182148,82247686,82313220,82378756,82444292,82509830,82575365,82640905,82706442,82771978,82837514,82903045,82968582,83034116,83099656,83165188,83230737,83296271,83361800,83427332,83492868,83558404,83623949,83689478,83755012,83820549,83886084,83951621,84017157,84082693,84148229,84213765,84279301,84344837,84410376,84475908,84541444,84606980,84672516,84738052,84803590,84869133,84934665,85000205,85065734,85131276,85196808,85262342,85327880,85393416,85458951,85524487,85590020,85655556,85721094,85786630,85852171,85917702,85983243,86048783,86114308,86179845,86245382,86310917,86376453,86441995,86507528,86573062,86638600,86704133,86769670,86835206,86900740,86966276,87031812,87097348,87162884,87228423,87293958,87359494,87425028,87490564,87556100,87621636,87687177,87752708,87818246,87883782,87949320,88080389,88211473,88473607,88539143,88604678,88670214,88735752,88801288,88866822,88932358,89325569,89653249,90505220,90570756,90767364,90832900,91291652,91357188,91422724,91488260,91553796,91619333,91684869,91815941,92012549,92078085,92143621,92209157,92274693,92340229,92405766,92471302,92536838,92602373,92667909,92733445,92798981,92864517,92930053,92995589,93061125,93126661,93192197,93257732,93323268,93388805,93454341,93519877,93585413,93650949,93716485,93782021,93847557,93913093,93978629,94044165,94109701,94175237,94240773,94306309,94371845,94437381,94502917,94568453,94633989,94699525,94765061,94830597,94896133,94961669,95027205,95092741,95158277,95223813,95289349,95354885,95420422,95485958,95551493,95617029,95682565,95748097,95813638,95879173,95944709,96010245,96206852,96272388,96337924,96403460,96468996,96534532,96665604,97255429,97320966,97386501,97517573,97583109,97648645,97714180,97845252,97910789,98107396,98172932,98304004,98369540,98435076,98500612,98566148,98631684,98697220,98762756,98828292,98893828,98959364,99024900,99090436,99155972,99287044,99352580,99418116,99483652,99614724,99680260,99745796,99876869,100007941,100073477,100204549,100335620,100401156,100532228,100728836,100859908,100925444,101056516,101122052,101253124,101384196,101515268,101646340,101711876,102039556,102170629,102236165,102367237,102432773,102563844,102629381,102760454,102825990,102891526,103022598,103153669,103219205,103350277,103481349,103546885,103677957,103809029,103874566,103940101,104005637,104071173,104267781,104398853,104529924,104595461,104660996,104792069,104857606,104923142,104988676,105054213,105185285,105250821,105316358,105381893,105447431,105512965,105578502,105644039,105709574,105775110,105906181,105971717,106037253,106102788,106364933,106430469,106496005,106561542,106627077,106758148,106823684,106889220,106954756,107020292,107151365,107216901,107282437,107413508,107479044,107544580,107675652,107741188,107806724,107872260,108003333,108068869,108199940,108331012,108462085,108527621,108658692,108724229,108789765,108855301,108920837,109051909,109117446,109182982,109314053,109379589,109445126,109641733,109838341,110034949,110100486,110166021,110297093,110362629,110493701,110624773,110755845,110952453,111083525,111149061,111214597,111280134,111345669,111411207,111476740,111542279,111607813,111673349,111738884,111804420,111869956,111935492,112001029,112066564,112132101,112197637,112263173,112328709,112394244,112459780,112525316,112590852,112656388,112721924,112787460,112852996,112918533,112984068,113049604,113115140,113180676,113246212,113311749,113377284,113442820,113508356,113573892,113639429,113704964,113770500,113836036,113901573,113967109,114032644,114098180,114163716,114229252,114294788,114360324,114425861,114491397,114556933,114622469,114688005,114753541,114819077,114884612,114950149,115015684,115081221,115146757,115212293,115277829,115343365,115408901,115474436,115539972,115605508,115671044,115736580,115802117,115867652,115933188,115998724,116064260,116129796,116195332,116260868,116326404,116391940,116457476,116523012,116588548,116654084,116719620,116785156,116850692,116916228,116981764,117047300,117112836,117178372,117243908,117309444,117374980,117440516,117506052,117571588,117637124,117702660,117768196,117833732,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423556,118489092,118554628,118620164,118685700,118751236,118816772,118882308,118947844,119013380,119078916,119144452,119209988,119275524,119341060,119406596,119472132,119537668,119603204,119668740,119734276,119799812,119865348,119930884,119996420,120061956,120127492,120193028,120258564,120324100,120389636,120455172,120520708,120586244,120651780,120717316,120782852,120848388,120913924,120979460,121044996,121110532,121176068,121241604,121307140,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156805,126222340,126287877,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598597,127664133,127729669,127795205,127860741,127926276,127991813,128057349,128122885,128188421,128253957,128319492,128385028,128450564,128516101,128581636,128647173,128712709,128778244,128843780,128909316,128974852,129040389,129105925,129171461,129236997,129302532,129368068,129433604,129499141,129564677,129630213,129695749,129761285,129826821,129892357,129957893,130023429,130088965,130154501,130220037,130285573,130351109,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661831,131727367,131792901,131858437,131923972,132055045,132120581,132186117,132251653,132317188,132382724,132448260,132513797,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103621,133169157,133234693,133300229,133365764,133431300,133496836,133562372,133627908,133693444,133758980,133824517,133890052,133955589,134021124,134152197,134217732,134283269,134348805,134414341,134479877,134545412,134610948,134676484,134742020,134807556,134873092,134938628,135004165,135069701,135135237,135200773,135266309,135331845,135397380,135462916,135528452,135593988,135659525,135725060,135790596,135856132,135921668,135987205,136052740,136118276,136183813,136249351,136314884,136380420,136445956,136511492,136577028,136642564,136708100,136773636,136839172,136904708,136970244,137035780,137101316,137166852,137232389,137297925,137363461,137428997,137494533,137560069,137625605,137691141,137756677,137822212,137887749,137953285,138018821,138084357,138149893,138215429,138280965,138346501,138412037,138477573,138543108,138608645,138674181,138739717,138805252,138870788,138936324,139001860,139067397,139132932,139198468,139264005,139329540,139395077,139460612,139526149,139591685,139657221,139722756,139788293,139853828,139919364,139984900,140050436,140115972,140181509,140247044,140312580,140378117,140443652,140509189,140574724,140640261,140705797,140771332,140836869,140902404,140967940,141033476,141099013,141164549,141230085,141295621,141361156,141426692,141492228,141557764,141623300,141688836,141754372,141819908,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802948,142868484,142934020,142999556,143065092,143130628,143196164,143261700,143327236,143392772,143458308,143523844,143589380,143654916,143720452,143785988,143851524,143917060,143982596,144048132,144113668,144179204,144244741,144310276,144375813,144441348,144506884,144572420,144637956,144703492,144769028,144834564,144900100,144965636,145031172,145096708,145162244,145227780,145293316,145358852,145424388,145489924,145555460,145620996,145686533,145752068,145817604,145883140,145948676,146014212,146079749,146145285,146210821,146276357,146341892,146472964,146604036,146669572,146735110,146800644,146866181,146931717,146997252,147062789,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147718149,147783685,147849222,147914757,147980295,148045829,148111367,148176903,148242438,148373509,148504580,148635652,148766725,148897797,148963333,149028868,149094404,149159940,149225476,149356549,149422085,149487620,149553157,149618693,149684229,149815301,149880837,149946373,150011909,150077444,150142981,150208516,150274052,150339588,150470660,150536196,150601732,150667268,150863876,150929412,151584769,151781380,152043523,152109058,152174594,152240132,152305670,152371202,152436741,152502276,152567811,152633346,152829953,152895489,152961030,153026562,153092100,153157634,153223170,153288706,153354242,153419777,153485313,153550849,153616385,153681921,153747457,153878529,153944066,154009604,154075139,154140676,154206210,154271745,154927106,155058180,155123716,155189249,155582465,155648002,155713537,156696578,156762114,156827649,156893190,156958722,157024258,157089793,157155330,157220865,157286407,157417473,157483009,157745157,157810711,157876227,158138374,158269443,158334978,158466050,158662658,158728196,158793733,158859270,158990337,159121409,159186948,159252482,159318017,159383553,159449089,159580161,159776769,162005004,162070537,162136077,162201604,162267141,162332680,162398213,162463749,162529285,162594828,162660367,162725903,162791436,162856965,162922501,162988038,163053580,163119108,163184644,163250181,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163971076,164036612,164102148,164167685,164233221,164298756,164364292,164429828,164495366,164560900,164626438,164691972,164757508,164823044,164888582,164954117,165019657,165085194,165150730,165216266,165281797,165347334,165412868,165478408,165543940,165609492,165675023,165740552,165806084,165871620,165937156,166002701,166068230,166133764,166199301,166264837,166330373,166395909,166461445,166526981,166592517,166658053,166723589,166789128,166854660,166920196,166985732,167051268,167116804,167182342,167247885,167313417,167378957,167444486,167510029,167575560,167641094,167706632,167772168,167837703,167903239,167968772,168034308,168099846,168165382,168230923,168296454,168361995,168427535,168493060,168558597,168624134,168689669,168755205,168820747,168886280,168951814,169017352,169082885,169148422,169213958,169279492,169345028,169410564,169476100,169541636,169607175,169672710,169738246,169803780,169869316,169934852,170000388,170065929,170131461,170196998,170262534,170328072,171048965,171835412,171966465,173539335,173604871,173670406,173735942,173801480,173867017,173932550,173998086,174653441,174850049],"schangup_causes_exception":[983041,3604485,23003142,23068678,23199750,151781377],"setvaraction":[1114115,3735554,3801090,3866626,12386307,47579143,47644679,47710215,64094209,70385672,78839811,109248514,109314050,109379586,109445122,157548545,158859277],"store":[1114113,3866625,78839809,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,109379585,132055041,149749761,158859266,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"specifiy":[1310721,4456449,171048961],"synchronization":[1310721,4456449,171048961],"summary":[1900545,1966081,2162689,2228225,2293761,2359297,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3145729,3276801,3342337,3407873,3473409,3670017,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4521985,4587521,4653057,22937601,23134209,23592961,23658497,24117249,24313857,24379393,24444929,24510465,25427969,26148865,27262977,27394049,28180481,28311553,28377089,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36044801,36241409,36306945,36569089,36634625,36831233,36896769,37027841,37093377,37289985,37355521,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38862849,38928385,38993921,39059457,39714817,40828929,40960001,42598401,43122689,44498945,44892161,45416449,47054849,47775745,47906817,48103425,48365569,48431105,48496641,48562177,48627713,48693249,49610753,58720257,59047937,59179009,59244545,59310081,59375617,59441153,59899905,60030977,60096513,60882945,60948481,61014017,61276161,61341697,62324737,62586881,89391105,89456641,89718785,89784321,89849857,89915393,89980929,90046465,90243073,90505217,90570753,90701825,90767361,90832897,90898433,91226113,91488257,91553793,93257729,96206849,96272385,96534529,96600065,96665601,96796673,96862209,96927745,96993281,97058817,97124353,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99549185,99614721,99680257,99745793,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102301697,102498305,102694913,104529921,104595457,106692609,106758145,106823681,106889217,106954753,107020289,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,108134401,108199937,108265473,108331009,108658689,109510657,109576193,111476737,111738881,111804417,111869953,111935489,112066561,113377281,113508353,113573889,113704961,113770497,113836033,114032641,114098177,114163713,114229249,114294785,114360321,114884609,115015681,115474433,115539969,115605505,115671041,115736577,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,126025729,126091265,126222337,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127926273,128319489,128385025,128581633,128778241,128843777,128909313,128974849,129302529,129368065,129433601,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133890049,134217729,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135397377,135593985,135725057,135790593,135856129,135921665,136052737,136118273,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,138543105,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144310273,144441345,144769025,144834561,144965633,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145752065,145817601,145883137,145948673,146014209,146341889,146407425,146472961,146538497,147652609,148307969,148373505,148439041,148570113,148635649,148701185,148766721,148832257,149028865,149094401,149159937,149225473,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150994945,151388161,151519233,151781377,151846913,151912449,151977985,154337281,154664961,154861569,154992641,155385857,155451393,155516929,155779073,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,158072833,158203905,158334977,158400513,158531585,158597121,160497665,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161546241,161873921,162070529,162201601,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163840001,163905537,163971073,164036609,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,165412865,165543937,165871617,165937153,166330369,166526977,166723585,166854657,166920193,166985729,167051265,167116801,167444481,167968769,168034305,169279489,169345025,169410561,169476097,169541633,169803777,170196993,170459137,171835393,172425217,173670401,174063617,174194689],"syntax":[1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,5111811,12713985,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920642,23986179,24051715,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758786,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63832066,70582273,74645506,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075779,96141315,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453700,151519234,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502274,152567809,152633346,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402819,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186946,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"static":[1900547,1966083,2031617,2097153,2162689,2228225,2293761,2359297,2424835,2490371,2555905,2621443,2686979,2752515,2818051,2883587,2949123,3014657,3080193,3145731,3211265,3276803,3342339,3407875,3473411,3932161,3997697,4063233,4128769,4194305,4259841,36831235,36896771,38600707,62783491,62849027,64094209,80150530,85983235,86048770,86114306,86179842,86245378,86310914,86376450,86441987,112787458,137887747,138412034,139526147,150994945,159186945,162398210,168361987,168427522,168493058,168558594,168624130,168689666,168755202,168820739],"shared":[1900545,1966081,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3145729,3276801,3342337,3407873,3473409,36831233,36896769,38600705,62783489,62849025],"string":[2031621,2228229,2359301,3014661,3211269,3670021,3735557,3801093,3866629,3932165,3997701,4063237,4128773,4194309,4259845,4325381,4390917,4587525,4653066,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5242942,5308417,5373953,5636101,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454147,8519694,12713999,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073283,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299203,21364737,21430273,21495809,21626882,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22675457,22740994,22806529,22872065,23330822,23396358,23527431,23789578,23855110,23986181,24051717,24117254,24248327,24313869,24379402,24444941,24510470,24576005,24707078,24772620,24838156,24903710,24969226,25034758,25100300,25165841,25231375,25296902,25362444,25493516,25559052,25624588,25690123,25755667,25821196,25886732,25952266,26148872,26214418,26279954,26345479,26411022,26542086,26607628,26673170,26738696,26804238,26869766,26935309,27000839,27066382,27197447,27394055,27459590,27525126,27656199,27721738,27852806,27918349,27983877,28573706,28704775,28770310,28835851,28901381,28966925,29032454,29163526,29294598,29425670,29491206,29556748,29622290,29687814,29753356,29818892,29884446,29949958,30015494,30081036,30146566,30212102,30277644,30343174,30408714,30474246,30539791,30605318,30670854,30736396,30801926,30867462,30932998,30998534,31064070,31129606,31195148,31260678,31326220,31391756,31457286,31522821,31588358,31719430,31784966,31916038,32112646,32309254,32374802,32440338,32505862,32571398,32636940,32702470,32833542,32899084,32964626,33030150,33095686,33161228,33226758,33292294,33357836,33423366,33488902,33554444,33619974,33751046,33816582,33882117,33947654,34013189,34078726,34209798,34275333,34340870,34406405,34471942,34537477,34603014,34734086,34865158,34930694,35061766,35127302,35192844,35258374,35323910,35389452,35454988,35520518,35586054,35651590,35717125,35782662,36110346,36175877,36503559,36765703,36831240,36896776,37224455,37552133,37617671,37683207,37748741,37879816,37945353,38010889,38141960,38207497,38273033,38404104,38469641,38535177,38666248,38797318,38928392,38993929,39059465,39256070,39387148,39452690,39583750,39649286,39845902,39977200,40108056,40239122,40370182,40501260,40632326,40763408,40894470,41156615,41287696,41418768,41549831,41680903,41811975,41943056,42270727,42401804,42532876,42729484,42860562,42991622,43253766,43384838,43450380,43581446,43712524,43778066,43843608,44040199,44171271,44498950,44695564,44761106,44826642,44957708,45023244,45088782,45154318,45285403,45350936,45744140,45809682,45875218,46006327,46137350,46202886,46268428,46333964,46465051,46596136,46727180,46858247,46989319,47251474,47317016,47448076,47513612,47644684,47710226,48037895,48300039,48496648,48562194,48627742,48693292,48758814,48889872,48955410,49020955,49152008,49807366,49872902,49938437,50069516,50135052,50200590,50266126,52101144,54591500,54657048,54722568,58720276,59179013,59244559,59441157,60227602,60293141,60358662,60424198,60555276,60620810,60686350,60751884,61669381,61997070,62062603,62193676,62259224,62324742,62455822,62586886,62717957,62849030,62980101,63307782,63438854,63635461,63832069,64159746,64421890,64487425,64552970,64618499,64684035,64749571,64815107,64880644,64946177,65011718,65077253,65142790,65208324,65273859,65339397,65404929,65470465,65536003,65601540,65667073,65732613,65798154,65863683,65929219,65994755,66060291,66125827,66191364,66256897,66453510,66519043,66584582,66650115,66715651,66781187,66846721,66912257,66977793,67043333,67174401,67239937,67305473,67371011,67436547,67502083,67567617,67633155,67698689,67764229,67829762,67895308,67960836,68026371,68091905,68157442,68222977,68288514,68354049,68419586,68485122,68550657,68616193,68681729,68747266,68812801,68878338,68943874,69009410,69074947,69140481,69206017,69271555,69337089,69402633,69468161,69533697,69599240,69664775,69730312,69795845,69861382,69926915,69992452,70057986,70123521,70189057,70254599,70320132,70385669,70451201,70516737,70582287,70647815,70713345,70975490,71237633,71499782,71565314,71630850,71696386,71761921,71827458,71958529,72024065,72089601,73531393,74645505,74711041,77398017,77463553,79167489,79626241,79691777,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230723,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88145921,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,89063425,89325574,89391110,89653254,89718790,89784326,90112006,90177542,90243078,90374150,90439686,90636294,90701830,90963974,91029510,91095046,91160582,91553799,91619335,91684871,91750406,91881478,91947014,92012551,92078087,92143623,92209159,92274695,92340231,92405767,92471303,92536839,92602375,92667911,92733447,92930055,92995591,93061127,93126663,93257735,93323271,93585415,93650951,93716487,93913095,93978631,94044167,94109703,94240775,94306312,94371847,94437383,94502919,94568455,94633991,94699527,94830599,94896135,95027207,95092743,95158279,95223815,95289351,95420423,95485959,95551495,95617031,95748102,95813638,95944711,96075782,96141318,96206854,96337927,96403463,96468999,96534534,97189895,97255431,97452039,97517575,97583111,97648647,97779719,97845255,97976327,98041863,98107399,98172935,98238471,98304007,98369543,98435079,98500615,98566151,98631687,98697223,98762759,98828295,98893831,98959367,99024903,99221511,99287047,99352583,99418119,99483655,99549191,99614727,99680263,99745799,99811335,99876871,99942407,100007943,100073479,100139015,100204551,100270087,100335623,100401159,100466695,100532231,100597767,100663303,100728839,100794375,100859911,100925447,100990983,101056519,101122055,101187591,101253127,101318663,101384199,101449735,101515271,101580807,101646343,101711879,101777415,101842951,101908487,101974023,102039559,102105095,102170631,102236167,102301703,102367239,102432775,102498311,102563847,102629383,102694919,102760455,102825991,102891527,102957063,103022599,103088135,103153671,103219207,103284743,103350279,103415815,103481351,103546887,103612423,103677959,103743495,103809031,103874567,103940103,104005639,104071175,104136711,104202247,104267784,104333319,104398856,104464390,104529927,104595464,104660999,104726535,104792071,104857607,104923143,105054215,105119751,105185287,105316359,105381895,105447431,105512967,105578503,105644039,105775111,105840647,105906183,105971719,106037255,106102791,106168327,106233863,106299399,106364935,106430471,106627079,106692615,106758151,106823687,106889223,106954759,107020295,107085831,107151367,107282439,107347975,107413511,107479047,107544583,107610119,107675655,107741191,107806727,107872263,107937799,108003335,108068871,108134407,108199943,108265479,108331015,108396551,108462087,108527623,108593159,108658695,108724231,108789767,108855303,108986375,109117447,109182983,109248519,109314055,109379591,109445127,109510663,109576199,109641735,109707271,109772807,109838343,109903879,109969420,110034951,110100488,110166023,110231559,110297095,110428167,110559239,110690311,110821383,110886919,111083527,111149063,111214599,111280135,111345671,111411207,111476743,111542279,111607815,111673351,111738887,111804423,111869959,111935495,112001031,112132103,112197639,112263175,112328711,112525319,112656391,112721927,112787463,112918535,113049607,113180679,113311751,113377287,113442823,113508359,113573895,113639431,113704967,113770503,113836039,113901575,113967111,114032647,114098183,114163719,114229255,114294791,114360327,114491399,114622471,114819079,114884615,114950151,115015687,115081223,115146759,115277831,115343367,115408903,115474439,115605511,115736583,115802119,115867655,115933191,115998727,116064263,116129799,116195335,116326407,116391943,116457479,116523015,116588551,116654087,116719623,116785159,116850695,116916231,116981767,117047303,117112839,117178375,117243911,117309447,117374983,117440519,117571591,117637127,117702663,117768199,117833735,117899271,117964807,118030343,118095879,118161415,118226951,118292487,118358023,118423559,118489095,118554631,118620167,118685703,118751239,118816775,118882311,118947847,119013383,119078919,119144455,119209991,119275527,119341063,119406599,119472135,119537671,119603207,119668743,119734279,119799815,119865351,119930887,119996423,120061959,120127495,120193031,120258567,120324103,120389639,120455175,120520711,120586247,120651783,120717319,120782855,120848391,120913927,120979463,121110535,121176071,121241607,121307143,121372679,121438215,121503751,121569287,121634823,121700359,121765895,121831431,121896967,121962503,122028039,122093575,122159111,122224647,122290183,122355719,122421255,122486791,122552327,122617863,122683399,122748935,122814471,122880007,122945543,123011079,123076615,123142151,123207687,123273223,123338759,123404295,123469831,123535367,123600903,123666439,123731975,123797511,123994119,124059655,124125191,124190727,124256263,124321799,124387335,124452871,124518407,124583943,124715015,124780551,124846087,124911623,124977159,125042695,125173767,125239303,125304839,125370375,125435911,125566983,125632519,125698055,125763591,125829127,125894663,125960199,126156807,126287879,126353415,126418951,126484487,126550023,126615559,126681095,126746631,126812167,126877703,126943239,127008775,127074311,127139847,127205383,127270919,127336455,127533063,127598599,127729671,127795207,127860743,127926279,127991815,128057351,128122887,128188423,128253959,128319495,128385031,128450567,128516103,128581639,128647175,128712711,128843783,128909319,129040391,129105927,129171463,129302535,129368071,129433607,129499144,129564679,129630215,129695751,129826823,130088967,130154503,130220039,130285575,130351111,130416647,130482183,130547719,131072007,131661831,131727367,131923975,132055058,132120583,132251655,132317191,132513799,132579335,132644871,132710407,132775943,133103623,133365767,133431303,133562375,133627911,133693447,133758983,133824519,133890055,133955591,134021127,134152199,134217735,134283271,134348807,134414343,134545415,134610951,134676487,134742023,134807559,134938631,135004167,135069703,135135239,135200775,135266311,135462919,135528455,135659527,135856135,135987207,136249351,136314887,136380423,136445959,136577031,136642567,136708103,136773639,137035783,137101319,137166855,137232391,137297927,137428999,137625607,137822215,137887751,138280967,138346503,138412039,138477575,138674183,138870791,138936327,139001863,139132935,139460615,139526151,139722759,140181511,140378119,140509191,140574727,140640263,140705799,140771334,140836871,140902407,140967943,141033479,141099015,141164551,141230087,141295623,141361159,141492231,141688839,141819911,141950983,142213127,142540807,142868487,143720455,144048135,144113671,144375815,144506887,144572423,144637959,144703495,144769031,144834567,144900103,145096711,145162247,145227783,145293319,145424391,145489927,145555463,145620999,145686535,145752071,145817607,145883143,146079751,146145287,146210823,146276359,146341895,146800647,146997255,147587079,147652614,147718151,147783687,147849223,147914759,147980295,148045831,148111367,148897799,148963335,149028871,149094407,149159943,149291014,149356551,149553159,149684231,149749776,149880839,149946375,150011912,150077447,150142983,150208519,150274055,150536199,150667271,150929415,151060481,151126017,151191556,151257090,151322626,151388161,151453698,151650366,151715841,151781381,151977985,152043535,152109059,152174595,152371203,152436739,152502275,152567812,152698881,152895490,152961030,153026564,153092102,153157637,153223171,153288708,153354241,153878529,153944065,154075141,154402818,154468354,154533890,154599426,154664961,154730498,154796033,154861571,154927118,155058177,155123717,155189250,155385868,155451396,155516931,155582465,155648002,155713537,155779074,155975681,156041218,156106754,156172289,156237825,156303361,156368898,156631041,156696578,156762114,156827650,156893187,156958721,157089793,157155331,157220865,157286409,157417474,157483010,157745160,157876231,158138376,158203909,158269446,158334979,158400516,158466050,158531585,158597121,158728199,158793732,158859269,158990337,159121409,159186967,159252481,160628740,161939458,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774469,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609476,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131463,170196995,170262531,170328067,171048968,171180036,171245569,171835393,173342721,173408257,173473793,173539332,173604868,173670404,173735940,173801476,173867012,173932550,173998086,174260226,174850050,174915587,174981121],"specified":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242882,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740996,22806529,22872065,25886721,40697858,40763394,41091073,41156609,41222146,41287682,41353217,41418753,41484291,41549827,41615361,41680897,41746433,41811969,41877506,41943042,44040193,44171265,62783489,62849025,62914561,62980097,63832066,64880641,68288516,68354050,68419588,68485122,68550662,68616194,68681730,68747268,71761922,74842113,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398018,77463554,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507522,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080387,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,96337921,104267777,104398849,104660993,132317185,140312578,146997249,147128321,147587073,150077441,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650306,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567810,152633345,152698882,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664962,154730497,154796033,154861569,154927105,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779078,155844610,155910146,155975684,156041222,156106756,156172296,156237828,156303364,156368902,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417475,157483011,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,160628737,161939457,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886275,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,171048964,171180033,171245569,171835393,173342721,173408257,173473793,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063617,174260225,174850053,174915585,174981121],"serves":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"shallow":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"sendcommand":[4718593,5308417,22937608,28180487,151060481,151715841],"subsequent":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"sets":[4849665,4915201,4980737,5242885,5636098,7995393,8060929,11337729,13172737,13238273,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21692417,21823489,22675457,27459585,27525121,27590657,27656193,27721729,29556737,29622273,42860545,45088769,45744129,45809665,45875201,47448065,47513601,47644673,47710209,50200577,60686337,63832068,64094212,65470466,65732610,69074945,70320130,70385666,71958531,72024067,72089603,72351747,74448897,74645507,74711043,77791233,79167489,79626243,79691779,84803585,86638593,88080391,88145923,89063427,89194498,91291649,91357185,91422721,93323265,95813633,97845249,105512961,105775105,110100481,113442817,113639425,134021121,136249345,136380417,136445953,139853825,139919361,139984897,140050433,140115969,140247041,140312577,140771329,144506881,144572417,144637953,144703489,144900097,145031169,146604033,146669569,146800641,146997249,147128321,147456001,147587073,150863873,150929409,151191556,151257092,151322628,151650309,151781379,152043522,153681921,153747457,153944065,154009601,154140673,154402820,154468356,155058177,155123713,155189249,156893185,157810690,158793730,158859267,159186945,160628740,161939460,162004993,162070529,162594817,162660353,162725889,162791425,165609473,167182337,169017345,171048967,171180036,171835393,174260228,174915586],"serializationinfo":[4849665,4915201,4980737,7995393,8060929,13172737,13238273,21692417,22675457,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"streamfilecommand":[5111809,7667715,23789569,35258372,35323911,35389447,35454983,63832065,67043336,74383363,95551490,95617026,95682562,151453697,151846913,152567809,154075149],"stopped":[5111809,23789569,64028673,151453697,161415169],"supported":[5111809,23920641,64094209,64159745,72220673,90308609,151453697,151584769,155713537,166264833],"success":[5111809,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23920641,62128129,63832065,64094209,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,150011905,151453697,152895489,159186945,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"synopsis":[5111809,23986178,36110343,74645506,96075783,151453697,154402819],"sent":[5111810,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23986178,24051714,42991618,43843586,62062593,63832066,64028677,64094215,64159745,64225284,72155137,76939266,77266946,79167489,86638594,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89325569,103022594,103874562,109969409,140705794,150142977,151453699,151519233,153419777,153485313,156827649,156958723,157286402,157810689,158662657,158924802,158990337,159186945,161153025,161218561,161284097,161349633,161415169,165019649,169017346,173539330,173604867,173670402,173735938,173801475,173867011,173932546,173998083],"sc_invalid_command_syntax":[5111810,23986177,24051713,151453698,151519233],"stream":[5242884,8454145,24707074,24772610,24838146,24903682,25821185,25886721,26214401,26279937,29687809,29753345,29818881,29884417,30867457,30932993,30998529,31326209,31391745,32374785,32440321,35323905,35389441,35454977,37486593,63832066,64552964,72482817,72876033,73007105,73334785,74383362,91684865,92733441,93126657,93650945,95617026,151650308,152043522,152436738,152567809,152961025,154075138,154861569],"seek":[5242886,24707073,24772609,24838145,24903681,26214401,26279937,63832067,64552964,65011714,151650310,152043521,152961025,154075137],"sample":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,151650308,152043521,154075137],"starts":[5242885,24707073,24772609,24838145,24903681,25100289,41484289,41549825,44695553,44761089,44826625,63832066,64028673,64094211,64159745,64552964,64618497,68550658,69599235,85524481,136380417,151650309,152043521,154075137,156172290,157745156,157810690,166658049,167903233,171442177],"streaming":[5242885,24838145,24903681,25493505,25559041,25624577,25821185,25886722,29687809,29753345,29818882,29884418,31391745,35323905,35389441,35454978,63832067,64749571,64880642,65798148,67043331,72482817,73007105,74383361,91815937,93192193,95682561,151650309,152043525,152436737,152567811,154075140],"starting":[5242883,25493505,25559041,25624577,63832065,64749571,151650307,152436737],"seconds":[5242884,25821185,25886721,26214401,26279938,26476545,26542081,26607617,26673153,27131905,27197441,27328513,31326209,31391745,32440321,32768001,32833537,32899073,32964609,33685505,33751041,34144257,39256065,63832067,64094209,64880641,65011714,66191361,66584577,73465857,73728001,73924609,75038721,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216065,80281602,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805890,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131266,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852162,85917697,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507523,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359491,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88211458,94175233,94765057,94961666,97320961,105709569,112590849,113639425,115212289,132448257,135331841,137494529,137756673,138215425,139395073,140050433,140247041,145031175,148242434,151650308,152567809,152961025,153092098,153354242,153550850,155058178,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398210,162463745,162529282,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053570,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510018,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230914,168296449,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886275,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738243,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171835394],"sequence":[5242882,26214401,26279937,63832065,64094209,65011714,151650306,152961025,159186945],"specify":[5242882,26214401,26279937,42991617,43843585,63832067,64094211,65011714,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939267,77004802,77070338,77135874,77201410,77266947,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791236,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,103022593,103874561,104660994,105381889,105775105,132317186,150077442,151650306,152829953,152895489,152961025,155058178,155123715,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958724,157024258,157089794,157155330,157220866,157286403,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810692,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186947,159252482,159318018,159383554,159449090,159514626,159580162,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"samples":[5242882,24838145,24903681,26214401,26279938,29818881,29884417,32440321,35454977,63832065,65011714,72482817,73334785,74383361,91815937,93782017,95682561,151650306,152043521,152961026,154075137],"sayalpha":[5242882,26345478,26411014,65077251,151650306],"says":[5242894,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,32768001,32833537,32899073,32964609,65077250,65142788,65208322,65273858,65339394,65404930,66584580,151650318,153092100],"saydatetime":[5242884,26476550,26542086,26607622,26673158,65142789,151650308],"saydigits":[5242882,26738694,26804230,65208323,151650306],"saynumber":[5242882,26869766,26935302,65273859,151650306],"sayphonetic":[5242882,27000838,27066374,65339395,151650306],"saytime":[5242882,27131910,27197446,65404931,151650306],"service":[5242881,27262984,86507522,140247042,140312578,151650305,168886274],"setautohangup":[5242881,27328518,151650305],"setcallerid":[5242881,27394055,151650305],"setcontext":[5242881,27459590,151650305],"setextension":[5242881,27525126,151650305],"setpriority":[5242882,27590663,27656199,65470467,151650306],"setvariable":[5242881,11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,27721733,45088775,50200583,60686343,62062593,151650305,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"stopmusiconhold":[5242881,27787269,151650305],"stops":[5242881,27787265,41353217,41418753,41615361,41680897,68485122,68616194,151650305,156106754,156237826],"streamfile":[5242882,27852806,27918342,65536003,151650306],"sends":[5242881,8454146,21626881,27983873,37617665,37683201,59703297,63832067,64094211,64225281,151650305,153419777,153485313,154206209,154861570,155713537,157089793,159186945,171048961,173604865],"system":[5242881,22806529,23003146,23068680,23199750,23330817,23396354,23527430,23789569,24248323,24313860,24444932,24576001,24707073,24772610,24838147,24903686,24969218,25034753,25100290,25165828,25231363,25296897,25362434,25493505,25559042,25624579,25690113,25755652,25821186,25886723,25952257,26148867,26214404,26279943,26345473,26411010,26476545,26542082,26607619,26673156,26738689,26804226,26869761,26935298,27000833,27066370,27131905,27197442,27328514,27394051,27459586,27525122,27590658,27656194,27721730,27852801,27918338,27983875,28049409,28573711,28639234,28704770,28770307,28835870,28966916,29425665,29556738,29622275,29687809,29753346,29818883,29884422,30015489,30081026,30212097,30277634,30408706,30539779,30670849,30736386,30867457,30932994,30998531,31129601,31195138,31326210,31391747,31522817,31719425,32047105,32243714,32374788,32440327,32571393,32636930,32768002,32833538,32899075,32964612,33095681,33161218,33292289,33357826,33488897,33554434,33685505,33751042,33882113,34013185,34144257,34275329,34406401,34537473,34865153,34996225,35061761,35192836,35323905,35389442,35454979,35586050,35717122,35913729,36110338,36175873,36438018,36503554,36765698,36831236,36896776,37224450,37421068,37617665,37683201,37748739,37814275,37879811,37945352,38010888,38076419,38141955,38207496,38273032,38338563,38404099,38469640,38535176,38666244,38731777,38797314,38862851,38928387,38993928,39059464,39256066,39387138,39452675,39583745,39649282,39845894,39977170,40108036,40239107,40370177,40501250,40632321,40763398,40894466,41156610,41287686,41418758,41549826,41680898,41811970,41943046,42270722,42401794,42532866,42729474,42860547,42991618,43253761,43384833,43450370,43581441,43712514,43778051,43843589,44040193,44171265,44695554,44761091,44826628,44957699,45088774,45154308,45285388,45350916,45744130,45809667,45875204,46006302,46137345,46202882,46268418,46333955,46465036,46596116,46727170,46858242,46989314,47251460,47316997,47448066,47513603,47644674,47710211,48037890,48300034,48496643,48562184,48627727,48693272,48758789,48889862,48955404,49020940,49152006,49283074,49414146,49545218,49807361,49872898,49938433,50069507,50200582,50266116,52101121,54591490,54657025,58720266,59244549,59637761,59768834,59965443,60096516,60227588,60293130,60358657,60424194,60555267,60686342,60751876,61079556,61407235,61669379,61997060,62062593,62193666,62259201,62455812,62717953,62849025,62914561,62980097,63176705,63307777,63373313,63438850,63635458,63700993,63832065,64159745,76939265,77266945,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228418,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,103022593,103874561,132251649,144375809,149946369,150994945,151060481,151126017,151191554,151257090,151322626,151388161,151453697,151584769,151650306,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206210,154271745,154402818,154468354,154533889,154599425,154664961,154730497,154796033,154861569,154927106,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958722,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548546,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160628738,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939458,162004995,162070531,162136067,162201605,162267142,162332675,162398213,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264837,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213957,169279491,169345027,169410563,169476099,169541635,169607172,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171048961,171114497,171180034,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998083,174063617,174129153,174194689,174260226,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915586,174981121],"start":[5373953,22806529,28311558,63176709,63373317,63438853,64159745,151781377,163119105,174915585],"stop":[5373953,28377094,151781377],"sayalphacommand":[6619139,32505860,32571399,32636935,63832065,66519046,73400323,93913090,93978626,151846913,153026571],"saydatetimecommand":[6684675,32702468,32768008,32833543,32899079,32964615,63832065,66584586,73465859,94044162,94109698,94175234,94240770,151846913,153092111],"saydigitscommand":[6750211,33030148,33095687,33161223,63832065,66650118,73531395,94306306,94371842,151846913,153157643],"saynumbercommand":[6815747,33226756,33292295,33357831,63832065,66715654,73596931,94437378,94502914,151846913,153223179],"sayphoneticcommand":[6881283,33423364,33488902,33554439,63832065,66781189,73662467,94568450,94633986,151846913,153288714],"saytimecommand":[6946819,33619972,33685511,33751047,63832065,66846726,73728003,94699522,94765058,151846913,153354251],"sendimagecommand":[7012355,33816580,33882118,63832065,73793539,94830594,151846913,153419785],"sendtextcommand":[7077891,33947652,34013190,63832065,73859075,94896130,151846913,153485321],"setautohangupcommand":[7143427,34078724,34144262,63832065,73924611,94961666,151846913,153550857],"setcalleridcommand":[7208963,34209796,34275334,63832065,73990147,95027202,151846913,153616393],"setcontextcommand":[7274499,34340868,34406405,63832065,74055683,95092738,151846913,153681928],"setextensioncommand":[7340035,34471940,34537477,63832065,74121219,95158274,151846913,153747464],"setmusicoffcommand":[7405571,34603012,34668550,63832065,151846913,153813001],"setmusiconcommand":[7471107,34734084,34799623,34865159,63832065,66912262,74186755,95223810,151846913,153878539],"setprioritycommand":[7536643,34406401,34537473,34930692,34996231,35061767,63832066,66977798,74252291,95289346,95354882,151846913,153681921,153747457,153944076],"setvariablecommand":[7602179,35127300,35192838,63832065,74317827,95420418,95485954,151846913,154009608],"scriptmapping":[8257539,36438023,36831242,36896781,36962310,63897601,67174401,74842115,96272387,96337922,96403458,96468994,154533889,154664970],"savemappings":[8257537,36896776,154664961],"serversocket":[8388611,37289988,37355523,37421065,63963138,154796042],"socketconnection":[8454147,23068681,23199751,23724038,28246022,37289989,37486594,37552130,37617666,37683202,37748741,63963137,64356353,74973187,96600067,96665603,96731138,96796675,96862211,96927747,96993283,97058819,97124355,151060481,154861577],"socket":[8454148,21626881,23068678,23199751,23724038,28246022,37486593,37552129,37617665,37683201,59506690,63766530,63963137,64094209,74973185,88080385,96731137,147521537,151126019,154796033,154861573,157286401,171048962],"suitable":[8519681,38600705,154927105],"sending":[11141121,11206657,44236801,44367873,64094212,64225281,79691777,111017985,155582465,157286401,157614082,157679617,157876225,161939457,173735937],"setvariables":[11337729,13303809,13369345,13893633,13959169,14024705,14090241,16777217,21823489,45154311,50266119,60751878,157810689,162004993,162070529,162594817,162660353,162725889,162791425,165609473,171835393],"setcdruserfieldaction":[12320771,47382535,47448071,47513607,64094211,70320136,78774275,108986370,109051906,109117442,109182978,157548545,158793743],"sippeersaction":[12451843,47775748,47841286,64028674,64094209,64159746,78905347,109510659,157614081,158924809,167772161,167837698,172228609,172294145],"sipshowpeeraction":[12517379,47906820,47972359,48037896,64028674,64094209,64159746,70451206,78970883,109576195,109641730,157614081,158990347,167772161,167837698,172228609,172294145],"statusaction":[12582915,48103428,48168966,64028674,64094210,64159746,79036419,109707266,157614081,159055882,169672706,169738242,174129153,174325761],"stopmonitoraction":[12648451,48234503,48300040,64094210,70516742,79101955,109772802,109838338,157548545,159121420],"sparing":[12713985,48758785,70582273,159186945],"sections":[12713985,48758785,70582273,159186945],"supply":[12713985,48758785,70582273,159186945],"showdialplancompleteevent":[20709379,58130439,64159745,87162883,143720451,143785987,143851523,143917059,143982595,166264833,169541642],"shutdownevent":[20774915,58195975,64159746,87228419,144048131,144113667,144179203,144244738,144310275,144375810,164954113,169607178],"statuscompleteevent":[20840451,58261511,64028673,64094209,64159746,87293955,144441347,159055874,169213953,169672714,174129157,174325761],"statusevent":[20905987,58327047,64028673,64094209,64159746,87359491,144506882,144572418,144637954,144703490,144769027,144834563,144900098,144965635,145031170,145096707,159055874,169213953,169672705,169738250,174129153,174194693],"server":[21626882,59506690,59703297,60227585,60293121,63766530,64028676,64094216,64159752,64225282,75038725,75104261,75169797,75235333,75300869,75366405,75431941,75497477,75563013,75628549,75694086,75759621,75825157,75890693,75956229,76021765,76087301,76152837,76218373,76283909,76349445,76414981,76480517,76546053,76611589,76677125,76742661,76808197,76873733,76939269,77004805,77070341,77135877,77201413,77266949,77332485,77398021,77463557,77529093,77594629,77660165,77725701,77791237,77856773,77922309,77987845,78053381,78118917,78184453,78249989,78315525,78381061,78446597,78512133,78577669,78643205,78708741,78774277,78839813,78905349,78970885,79036421,79101957,79167493,79233029,79298565,79364101,79429637,79495173,79560709,79757319,79822855,79888391,79953927,80019463,80084999,80150535,80216071,80281607,80347143,80412679,80478215,80543751,80609287,80674823,80740359,80805895,80871431,80936967,81002503,81068039,81133575,81199111,81264647,81330183,81395719,81461255,81526791,81592327,81657863,81723399,81788935,81854471,81920007,81985543,82051079,82116615,82182151,82247687,82313223,82378759,82444295,82509831,82575367,82640903,82706439,82771975,82837511,82903047,82968583,83034119,83099655,83165191,83230728,83296263,83361799,83427335,83492871,83558407,83623943,83689479,83755015,83820551,83886087,83951623,84017159,84082695,84148231,84213767,84279303,84344839,84410375,84475911,84541447,84606983,84672519,84738055,84803591,84869127,84934663,85000199,85065735,85131271,85196807,85262343,85327879,85393415,85458951,85524487,85590023,85655559,85721095,85786631,85852167,85917703,85983239,86048775,86114311,86179847,86245383,86310919,86376455,86441991,86507527,86573063,86638600,86704135,86769671,86835207,86900743,86966279,87031815,87097351,87162887,87228424,87293959,87359495,87425031,87490567,87556103,87621639,87687175,87752711,87818247,87883783,87949319,88080388,88473606,88539142,88604678,88670214,88735750,88801286,88866822,88932358,100204545,104661001,105775108,111280132,129630209,132186114,132317193,140640257,144244737,146800641,146997249,147128321,147587073,149815297,150077449,151126017,151322625,155058181,155123717,155189253,155254789,155320325,155385861,155451397,155516933,155582472,155648005,155713543,155779077,155844613,155910149,155975685,156041221,156106757,156172293,156237829,156303365,156368901,156434437,156499973,156565509,156631045,156696581,156762117,156827653,156893189,156958725,157024261,157089798,157155333,157220869,157286406,157351942,157417477,157483013,157548549,157614085,157679621,157745157,157810693,157876229,157941765,158007301,158072837,158138373,158203909,158269445,158334981,158400517,158466053,158531589,158597125,158662661,158728197,158793733,158859269,158924805,158990341,159055877,159121413,159186950,159252485,159318021,159383557,159449093,159514629,159580165,162004999,162070535,162136071,162201607,162267143,162332679,162398215,162463751,162529287,162594823,162660359,162725895,162791431,162856967,162922503,162988039,163053575,163119111,163184647,163250183,163315719,163381255,163446791,163512327,163577863,163643399,163708935,163774471,163971079,164036615,164102151,164167687,164233223,164298759,164364295,164429831,164495367,164560903,164626439,164691975,164757511,164823047,164888584,164954119,165019655,165085191,165150727,165216263,165281800,165347335,165412871,165478407,165543943,165609480,165675015,165740551,165806087,165871623,165937159,166002695,166068231,166133767,166199303,166264840,166330375,166395911,166461447,166526983,166592519,166658055,166723591,166789127,166854663,166920199,166985735,167051271,167116807,167182343,167247879,167313415,167378951,167444487,167510023,167575559,167641095,167706631,167772167,167837703,167903240,167968775,168034311,168099847,168165383,168230919,168296455,168361991,168427527,168493063,168558599,168624135,168689671,168755207,168820743,168886279,168951815,169017354,169082888,169148423,169213959,169279495,169345031,169410567,169476103,169541639,169607177,169672711,169738247,169803783,169869319,169934855,170000391,170065927,170131463,170196999,170262535,170328071,170721281,171048966,172359681,173211650,173539334,173604870,173670406,173735942,173801478,173867014,173932551,173998087],"sendaction":[21626883,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,59834376,59899914,59965448,62062593,71368708,88080386,147456002,171048965,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"send":[21626882,27983873,33882113,34013185,35717121,37617665,37683201,42991617,43843585,59834369,59965442,64094209,64159748,71368706,73793537,73859073,74514433,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694082,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939266,77004801,77070337,77135873,77201409,77266946,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791234,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88080387,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,94830594,94896130,95944705,100204545,103022593,103874561,104660993,105250817,132317185,140836865,146735106,147062785,150077441,153419777,153485313,154206209,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713538,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958722,157024257,157089793,157155329,157220865,157286402,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876226,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131461,170196993,170262529,170328065,171048965,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sendeventgeneratingaction":[21626882,60030985,60096521,71434243,171048962],"stored":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,62062595,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"setchannel":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sip":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,25362433,43450369,45744129,45809665,45875201,48037889,62062593,64028676,64094210,64159748,70451201,72220673,78118913,81788930,81854465,85393412,85524485,86638597,87425025,91095042,106364929,125960194,126287873,135462914,135528449,135987201,136249345,136314881,136380418,136511489,140574721,140640258,140705793,140836865,145555457,151584769,158138369,158924801,158990338,164167682,164233217,165806081,167772164,167903238,169017350,169803777,169869313,170655745,172359681,173211649,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174391297],"shutdown":[22872065,63569925,64028673,87228419,144375815,161480705,169607171,174981121],"sub":[23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23724033,24182785,24248321,24576001,24641537,24969217,25034753,25100289,25231361,26017793,26083329,26148865,26345473,26476545,26738689,26869761,27000833,27131905,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27983873,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,29097985,29229057,29360129,29425665,29556737,29622273,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31653889,31719425,31850497,31981569,32047105,32178177,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34668545,34799617,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35848193,35913729,36044801,36110337,36175873,36306945,36372481,36438017,36503553,36634625,36700161,36765697,36896769,36962305,37093377,37158913,37224449,37355521,37421057,37486593,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40894465,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44302337,44433409,44564481,44630017,44695553,44761089,44826625,45088769,45154305,45219841,45285377,45350913,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530562,46596098,46661633,46727169,46792705,46858241,46923777,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47841281,47972353,48037889,48168961,48234497,48300033,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49676289,49741825,49807361,49872897,49938433,50003969,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58785793,58851329,58916865,58982401,59047937,59113473,59572225,59637761,59703297,59768833,60162049,60227585,60293121,60358657,60424193,60489729,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61734913,61800449,61865985,61931521,61997057,62390273,62455809,62652417,62717953,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,69992450,158400514,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"strategy":[23199745,63897601,72351745,86507522,91357185,140378118,151781377,154533889,168886274],"script":[23199745,63766529,63897601,72220678,74842113,90177537,90374145,90636289,90963969,91029510,96468993,151584774,154599425,154664961,154730497],"skip":[24838145,24903681,26279937,29818881,29884417,32440321,35454977,72482817,73334785,74383361,91815937,93782017,95682561,152043521,152961025,154075137],"standard":[25559041,25624577,30932993,30998529,63963137,72876033,92864513,152436737,154796033],"silence":[26279937,32440321],"say":[26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,63832070,66584577,73400321,73465857,73531393,73596929,73662465,73728001,93978625,94175233,94306305,94502913,94633985,94765057,153026562,153092099,153157634,153223170,153288706,153354242],"said":[26607617,26673153,32899073,32964609,73465857,94044161,153092097],"saying":[26673153,32964609,73465857,94240769,153092097],"serve":[28639233,28770305,64094209,72351746,88080385,91357185,91422721,146931713,151781378,157548545,171048961],"sc511_causesexception":[28835848],"schangup_causesexception":[28835848],"support":[29687809,29753345,29818881,29884417,63832071,64290817,65798148,152043524,152829954,152895489,153419778,153485314,163905537,174915585],"sayphonticcommand":[33488897,66781185,153288705],"sealed":[36241409,36306945,36569089,36634625,37027841,37093377,45023233,45154305,50135041,50266113,60882945,61014017,61276161,132055042,148307969,148373506,148701185,148766722,149749761,150994945,154927106],"soft":[39649285,64159745,75169793,97910789,155189249,165609473],"separate":[40894465,64094210,155844610,155910145],"separated":[42991617,43843585,76939265,77266945,77463553,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934658,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801282,88866817,88932353,103022593,103874561,104398849,105775105,132251649,134152193,149553153,149946369,156958721,157286401,157483009,157810689,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313410,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867010,173932545,173998081],"security":[43712513,69402625,157286401],"secret":[43712517,77266948,104005640,157286404],"specific":[45744129,45809665,45875201,63766529,63832065,64094209,71958529,72024065,72089601,74645505,74711041,78118913,79167489,79626241,79691777,88145921,89063425,106364929,110100481,151191554,151257089,151322625,152109057,154402817,154468353,158138369,159186946,160628737,161939457,171180033,174260225],"statistics":[46792705,46858241,70123522,158531586],"second":[47316993],"srcfilename":[48889862,48955398,49020934,64094209,79167489,110166021,159186946],"successful":[63832068,64094210,64159745,85983233,86048769,86441985,86638593,88080385,137756673,138215425,139395073,140705793,146866177,152109057,152174593,152305665,154140673,157286401,157876225,164888577,168361985,168427521,168820737,169017345,171048961],"setting":[63832065,64094209,64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281602,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507523,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,113639425,132448257,140115969,140247041,153550849,155058177,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529282,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755202,168820737,168886275,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"supports":[63832065,75563009,77266945,99876865,103809025,153944065,155582465,157286401],"strategies":[63897601],"single":[63897601,64028673,64159745,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,154533889,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133762,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170917889,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sciptmapping":[63897601,154533889],"successfully":[64028675,64159746,151519233,159645697,160038913,161939457,162463745,162856961],"simple":[64028673,173473793],"stores":[64028673,173473793],"started":[64028673,64159746,161611777,165085185,169082881],"setup":[64028673,64159745,166133761,170917889],"sit":[64028673,64159745,166133761,170917889],"shows":[64028674,64159745,170328065,173015041,174784513],"statuscompleteeventhandler":[64028673,174129157],"statuseventhandler":[64028673,174194694],"series":[64094209,157614081],"short":[64094209,157810689],"setvar":[64094209,78839809,109248513,158859266],"succeeded":[64094209,159186945],"specifying":[64094209,64159745,159186945,170131457],"strings":[64094209,79167489,88539137,109969409,148963329,159186946,173604865],"switches":[64094210,159318017,159383553],"spandsp":[64159747,165609475],"switch":[64159745,79298561,79364097,110493697,110624769,159318017,159383553,165609473],"subclass":[64159746,166264833,170131457],"shut":[64159745,87228417,144375809,169607170],"setter":[64159745,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132055041,149749761,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sha":[64290817,174850049],"sized":[64290817,174981121],"stacktrace":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"stack":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"socketencoding":[72351745,88080385,91488262,147521541,151781377,171048961],"scriptassmebly":[74842113,96337925,154664961],"scriptclass":[74842114,96337921,96403461,154664962],"scriptname":[74842113,96468997,154664961],"ser":[77791233,105578497,157810689],"setcdruserfield":[78774273,108986369,158793729],"stopmonitor":[79101953,109772801,159121409],"servers":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"sourced":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132382721,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"serviced":[80150529,86114305,86179841,86245377,86310913,86376449,112394241,162398209,168493057,168558593,168624129,168689665,168755201],"stateinterface":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113180677,139722757,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"subevent":[80871425,81068033,82706433,82771969,82837505,115736582,116064262,128581638,163119105,163315713,165085185,165150721,165216257],"secondbridgecreator":[81133569,117571590,163381249],"secondbridgename":[81133569,117637126,163381249],"secondbridgenumchannels":[81133569,117702662,163381249],"secondbridgetechnology":[81133569,117768198,163381249],"secondbridgetype":[81133569,117833734,163381249],"secondbridgeuniqueid":[81133569,117899270,163381249],"secondtransfereraccountcode":[81133569,117964806,163381249],"secondtransferercalleridname":[81133569,118030342,163381249],"secondtransferercalleridnum":[81133569,118095878,163381249],"secondtransfererchannel":[81133569,118161414,163381249],"secondtransfererchannelstate":[81133569,118226950,163381249],"secondtransfererchannelstatedesc":[81133569,118292486,163381249],"secondtransfererconnectedlinename":[81133569,118358022,163381249],"secondtransfererconnectedlinenum":[81133569,118423558,163381249],"secondtransferercontext":[81133569,118489094,163381249],"secondtransfererexten":[81133569,118554630,163381249],"secondtransfererlanguage":[81133569,118620166,163381249],"secondtransfererpriority":[81133569,118685702,163381249],"secondtransfereruniqueid":[81133569,118751238,163381249],"src":[81723393,82706433,82771969,82837505,125763590,128450565,164102145,165085185,165150721,165216257],"starttime":[81723393,88997889,125829126,150601734,164102145,174063617],"sipcallid":[81854465,87425025,126681094,145162246,164233217,169803777],"sipfullcontact":[81854465,126746630,164233217],"srcuniqueid":[82706433,82771969,82837505,128516101,165085185,165150721,165216257],"station":[83230722,129695745,129826817,165609474],"screening":[84803586,134021121,134086657,167182338],"span":[85590017,136773638,167968769],"spent":[85852161,137494529,168230913],"statically":[86048769,138412033,168427521],"servicelevel":[86507522,140247046,168886274],"servicelevelperf":[86507521,140312581,168886273],"sure":[86638593,140705793,169017345],"subsystem":[86704129,140902401,169082881],"senderssrc":[86900737,142016518,169279489],"sequencenumbercycles":[86900737,142082054,169279489],"sentntp":[86966273,142540806,169345025],"sentoctets":[86966273,142606342,169345025],"sentpackets":[86966273,87097345,142671878,143523846,169345025,169476097],"sentrtp":[86966273,142737414,169345025],"ssrc":[87031809,87097345,143196166,143654918,169410561,169476097],"srcount":[87097345,143589382,169476097],"sequencenumber":[87228417,87818241,144310278,146014214,169607169,170196993],"signalling":[87949313,146341894,170328065],"synchronous":[88080387,146604033,146669569,147456001,171048963],"slow":[88080385,147259393,171048961],"sleeptime":[88080386,147456006,171048962],"sleep":[88080385,147456001,171048961],"small":[88080385,147456001,171048961],"sbyte":[150732804],"signed":[150732803],"sealedattribute":[150994945,154927105],"sc_success":[151519233],"sc_invalid_or_unknown_command":[151519233],"sc_dead_channel":[151519233],"sender":[159645701,159711237,159776773,159842309,159907845,159973381,160038917,160104453,160169989,160235525,160301061,160366597,160432133,160563205,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153029,161218565,161284101,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,170393605,170459141,170524677,170590213,170655749,170786821,170852357,170917893,170983429,171114501,171311109,171376645,171442181,171507717,171573253,171638789,171704325,171769861,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359685,172425221,172490757,172556293,172621829,172687365,172752901,172818437,172883973,172949509,173015045,173080581,173146117,173211653,173277189,174129157,174194693,174325765,174391301,174456837,174522373,174587909,174653445,174718981,174784517]} \ No newline at end of file +{"sandcastle":[65537,131073,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"search":[65537],"sort":[65537],"section":[131073,52035585,52101121,69664769,75497474,163971074,169672705],"select":[131073],"source":[196609,55508998,55836678,55902214,56033286,56098822,56164358,56229893,56295430,56360966,56426502,56492038,56557574,56623110,56688646,56754182,56819718,56885254,56950790,57016326,57081862,57147398,57212934,57278470,57344006,57409542,57475078,57540614,57671686,57737222,57802758,57868294,57933830,57999366,58064902,58130438,58195974,58261510,58327046,58392582,58458118,58523654,58589190,58654726,58720262,58785798,58851334,58916870,58982406,59047942,59113478,59179014,59244550,59375622,59441158,59506694,59572230,59637766,59703302,59768838,59834374,59899910,59965446,60030982,60293121,60358661,60424198,60489734,60555270,60620806,60686342,60751878,60817414,60882950,60948486,61014022,61079558,61145094,61210630,61276166,61341702,61407238,61472774,61538310,61603846,61669382,61734918,61800454,61865990,61931526,61997062,62062598,62128134,62193670,62259206,62324742,62390278,62455813,62521350,62586885,62652421,62717957,62783493,62849029,62914565,62980102,63045638,63111174,63176710,63242246,63307782,63373318,63438854,63504390,63569926,63635462,63700998,63766534,63832070,63897606,63963142,64028678,64094214,64159750,64290822,64356358,64421894,64487430,76677121,77463553,77529089,77594625,80150529,80216065,84672513,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211459,88276995,88342531,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93650945,94568449,115671041,134021121,134086657,137953285,156762113,156827649,156893185,159973377,160038913,164757505,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655747,170721283,170786819,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176750593,179830785],"status":[196609,786434,5373953,5701637,6488066,9043969,9109505,10616834,10747905,29425667,30932994,54788097,54919169,69271554,69337090,69599234,69664769,76283905,76349441,84541441,85655555,86310914,88014849,88080385,88408065,88473601,88604673,88932353,89653249,89784321,89849857,89980929,90898434,91029508,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92143617,92209155,92733441,94109697,94699521,115212289,118751239,120848390,133234689,134283269,134807557,135987206,138477574,138543110,138608646,139001862,141557766,141819906,142082050,143654919,144310279,145358855,146276357,146604038,154796038,156368897,157024258,157089797,157220865,157351938,157548546,159973377,160038913,164626433,164888578,164954114,167968771,168624130,170459137,170524673,170852353,170917889,171048961,171376641,172097537,172228609,172294145,172425217,173342722,173473796,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391300,174587905,174653443,175177729,176619522,179240961,180486145],"separation":[196609],"special":[196609,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"serializeobjectstate":[327681,393217,458753,524289,589825,655361,720897,851969,917505,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"serialized":[327682,393218,458754,524290,589826,655362,720898,851970,917506,156762114,156827650,156893186,159973378,160038914,166199298,167510018,176750594,179830786],"state":[327681,393217,458753,524289,589825,655361,720897,786442,851969,917505,1572865,1703937,1769473,3014657,3145729,4194305,5505025,5767169,6291457,6356993,28311554,68550657,68681729,69599239,69664778,80478209,85393412,85655554,88473603,88604673,88801284,90374148,90505220,91029505,91488257,91619330,91684866,91750402,91815938,91881474,91947009,92143617,92864513,93454337,102236161,117112833,117178369,117374982,118685697,118751233,134217734,134283265,134807553,142016514,145293313,146276353,150667270,151781377,156762113,156827649,156893185,159973377,160038913,160432129,160825346,162594817,164233217,164626434,165085185,166199297,167510017,167706628,167968770,168558593,168755201,168820737,170917892,171048962,171245572,172818436,172949509,173473793,173932545,174063618,174129154,174194690,174260226,174325762,174391297,174522369,174587905,175243265,175308801,175833089,175898626,176619530,176750593,179830785,180486146],"successfully":[786434,983041,1376257,69533697,69664770,157089793,167510017,168034305,168427521,176619522],"set":[786435,1114113,4325377,6225921,6488068,6619138,9043970,9109506,9240577,9306113,10747905,14024706,16842755,18808835,18874371,19398659,19464195,19529731,19595267,22282243,27328515,29294593,31260673,31457281,32899073,33226753,36044803,36372481,36438017,40697857,41091073,44236801,44302337,48365570,48496641,49348609,50528257,50659330,50855939,51904513,51970049,53149697,53215233,55640065,55771138,60293121,66125825,66256898,68485121,69337094,69599235,69664771,69730305,71565314,73072642,75431938,76677121,77725697,77987843,78053378,78118914,78184450,78249990,78315522,78381059,78446594,78512131,78577665,78708737,78774273,78839814,78905346,78970884,79036418,79101954,79167490,79233026,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757314,79822852,79888387,79953923,80019458,80084993,80543747,80609284,80674817,81068033,81133570,81199105,82182146,82247682,82313217,82378758,82444290,82509826,82575361,82640898,82706433,82771974,82903041,82968577,83230725,83296275,83361795,83623942,83755011,83951618,84148226,84213765,84279301,84344836,84475905,84606977,84672516,84738050,84803585,84869121,84934657,85065729,85262345,85327878,85393425,85458948,85524485,85590024,85655557,85721093,85786629,85852168,85917708,85983244,86048777,86114309,86179845,86245382,86310924,86376452,86441988,86507525,86573060,86638596,86704132,86769668,86835204,86900740,86966276,87031812,87097348,87162884,87228420,87293957,87359493,87425028,87490564,87556100,87621638,87687172,87752710,87818244,87883780,87949316,88014854,88080389,88145929,88211466,88277002,88342538,88408069,88473606,88539140,88604680,88670212,88735761,88801299,88866824,88932356,88997892,89063428,89128973,89194502,89260036,89325573,89391108,89456645,89522181,89587717,89653253,89718789,89784325,89849861,89915400,89980932,90046468,90112004,90177540,90243076,90308617,90374161,90439689,90505233,90570758,90636300,90701832,90767366,90832904,90898440,90963975,91029511,91095044,91160580,91226118,91291654,91357195,91422726,91488267,91553807,91619332,91684869,91750406,91815941,91881477,91947019,92012552,92078086,92143624,92209157,92274694,92340230,92405764,92471300,92536836,92602372,92667908,92733447,92798982,92864518,92930052,92995588,93061124,93126660,93192201,93257732,93323270,93388806,93454345,93585413,93716497,93978631,94044167,94109702,94175238,94240776,94306312,94371846,94437382,94830593,95158273,96010244,96075780,96272388,96337924,96796676,96862212,96927748,96993284,97058820,97124357,97189893,97320965,97517573,97583109,97648645,97714181,97779717,97845253,97910790,97976326,98041862,98107397,98172933,98238469,98304005,98369541,98435077,98500613,98566149,98631685,98697221,98762757,98828292,98893829,98959365,99024901,99090437,99155973,99221509,99287045,99352581,99418117,99483653,99549189,99614725,99680261,99745797,99811333,99876869,99942405,100007941,100073477,100139013,100204549,100270085,100335621,100401157,100466693,100532229,100597765,100663301,100728837,100794373,100859909,100925446,100990982,101056517,101122053,101187589,101253121,101318662,101384197,101449733,101515269,101711876,101777412,101842948,101908484,101974020,102039556,102170628,102760453,102825990,102891525,103022597,103088133,103153669,103219204,103350276,103415813,103612420,103677956,103809028,103874564,103940100,104005636,104071172,104136708,104202244,104267780,104333316,104398852,104464388,104529924,104595460,104660996,104792068,104857604,104923140,104988676,105119748,105185284,105250820,105381893,105512965,105578501,105709573,105840644,105906180,106037252,106233860,106364932,106430468,106561540,106627076,106758148,106889220,107020292,107151364,107216900,107544580,107675653,107741189,107872261,107937797,108068868,108134405,108265478,108331014,108396550,108527622,108658693,108724229,108855301,108986373,109051909,109182981,109314053,109379590,109445125,109510661,109576197,109772805,109903877,110034948,110100485,110166020,110297093,110362630,110428166,110493700,110559237,110690309,110755845,110821382,110886917,110952455,111017989,111083526,111149063,111214598,111280134,111411205,111476741,111542277,111607812,111869957,111935493,112001029,112066566,112132101,112263172,112328708,112394244,112459780,112525316,112656389,112721925,112787461,112918532,112984068,113049604,113180676,113246212,113311748,113377284,113508357,113573893,113704964,113836036,113967109,114032645,114163717,114229253,114294789,114360325,114425861,114556933,114622470,114688006,114819077,114884613,114950150,115146757,115343365,115539973,115605510,115671045,115802117,115867653,115998725,116129797,116260869,116457477,116588549,116654085,116719621,116785158,116850693,116916231,116981767,117047303,117112837,117178373,117243908,117309444,117374981,117440516,117506053,117571588,117637125,117702661,117768197,117833733,117899268,117964804,118030340,118095876,118161412,118226948,118292484,118358020,118423557,118489092,118554628,118620164,118685700,118751236,118816773,118882308,118947844,119013380,119078916,119144453,119209988,119275524,119341060,119406597,119472133,119537668,119603204,119668740,119734276,119799812,119865348,119930885,119996421,120061957,120127493,120193029,120258565,120324101,120389636,120455173,120520708,120586245,120651781,120717317,120782853,120848389,120913925,120979460,121044996,121110532,121176068,121241604,121307141,121372676,121438212,121503748,121569284,121634820,121700356,121765892,121831428,121896964,121962500,122028036,122093572,122159108,122224644,122290180,122355716,122421252,122486788,122552324,122617860,122683396,122748932,122814468,122880004,122945540,123011076,123076612,123142148,123207684,123273220,123338756,123404292,123469828,123535364,123600900,123666436,123731972,123797508,123863044,123928580,123994116,124059652,124125188,124190724,124256260,124321796,124387332,124452868,124518404,124583940,124649476,124715012,124780548,124846084,124911620,124977156,125042692,125108228,125173764,125239300,125304836,125370372,125435908,125501444,125566980,125632516,125698052,125763588,125829124,125894660,125960196,126025732,126091268,126156804,126222340,126287876,126353412,126418948,126484484,126550020,126615556,126681092,126746628,126812164,126877700,126943236,127008772,127074308,127139844,127205380,127270916,127336452,127401988,127467524,127533060,127598596,127664132,127729668,127795204,127860740,127926276,127991812,128057348,128122884,128188420,128253956,128319492,128385028,128450564,128516100,128581636,128647172,128712708,128778244,128843780,128909316,128974852,129040388,129105924,129171460,129236996,129302532,129368068,129433604,129499140,129564676,129630212,129695748,129761284,129826820,129892356,129957892,130023428,130088964,130154500,130220036,130285572,130351108,130416644,130482180,130547716,130613252,130678788,130744324,130809860,130875396,130940932,131006468,131072004,131137540,131203076,131268612,131334148,131399684,131465220,131530756,131596292,131661828,131727365,131792900,131858437,131923972,131989508,132055044,132120580,132186116,132251652,132317188,132382724,132448260,132513796,132579332,132644868,132710404,132775940,132841476,132907012,132972548,133038084,133103620,133169157,133234693,133300229,133365765,133431301,133496836,133562373,133627909,133693445,133758981,133824517,133890052,133955588,134021124,134086661,134152196,134217733,134283269,134348804,134414340,134479876,134545412,134610949,134676485,134742021,134807557,134873092,134938628,135004164,135069701,135135237,135200773,135266309,135331845,135397381,135462917,135528453,135593989,135659525,135725061,135790597,135856133,135921669,135987204,136052740,136118276,136183812,136249348,136314884,136380420,136445956,136511492,136577028,136642564,136708100,136773636,136839172,136904708,136970244,137035780,137101316,137166852,137232391,137297927,137363461,137428997,137494532,137625605,137691141,137756677,137822213,137887748,137953284,138018820,138084357,138149892,138215428,138280964,138346500,138412036,138477572,138543108,138608644,138674181,138739717,138805253,138870789,138936324,139001860,139067396,139132932,139198468,139264004,139329540,139395077,139460615,139526149,139591684,139722757,139788292,139853829,139919365,139984901,140050437,140115972,140181508,140247044,140312580,140378116,140443652,140509188,140574725,140640261,140705797,140771333,140836869,140902405,140967940,141033476,141099012,141164548,141230085,141295620,141361156,141426692,141492228,141557765,141623300,141688836,141754373,141819911,141885444,141950980,142016516,142082052,142147588,142213124,142278660,142344196,142409732,142475268,142540804,142606340,142671876,142737412,142802949,142868485,142934021,142999557,143065093,143130629,143196165,143261701,143327237,143392772,143458309,143523845,143589381,143654917,143720453,143785989,143851525,143917061,143982597,144048133,144113668,144179205,144244741,144310277,144375812,144441348,144506884,144572420,144637957,144703492,144769028,144834565,144900100,144965637,145031172,145096709,145162245,145227781,145293316,145358853,145424388,145489924,145555460,145620996,145686532,145752069,145817604,145883140,145948677,146014212,146079749,146145284,146210821,146276357,146341892,146407429,146472964,146538500,146604036,146669573,146735109,146800645,146866181,146931716,146997252,147062788,147128324,147193860,147259396,147324932,147390468,147456004,147521540,147587076,147652612,147718148,147783684,147849220,147914756,147980292,148045828,148111364,148176900,148242436,148307972,148373508,148439044,148504580,148570116,148635652,148701188,148766724,148832260,148897796,148963332,149028868,149094404,149159940,149225476,149291012,149356548,149422084,149487620,149553156,149618692,149684228,149749764,149815301,149880836,149946373,150011908,150077444,150142980,150208516,150274052,150339588,150405124,150470660,150536196,150601732,150667268,150732804,150798340,150863876,150929412,150994948,151060484,151126020,151191556,151257093,151322628,151388164,151453700,151519236,151584772,151650309,151715845,151781381,151846917,151912453,152043524,152174596,152240132,152305670,152371204,152436741,152502277,152567812,152633349,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153288709,153354245,153419782,153485317,153550855,153616389,153681927,153747463,153812998,153944069,154075140,154206212,154337285,154468357,154533893,154599428,154664964,154730500,154796036,154927109,154992645,155058180,155123717,155189253,155254789,155385861,155451397,155516933,155582469,155648004,155713541,155779076,155844612,155910148,156041220,156106756,156172292,156237828,156434436,156499972,157155329,157220865,157351940,157614083,157679618,157745154,157810692,157876230,157941762,158007301,158072836,158138371,158203907,158400513,158466049,158531590,158597122,158662660,158728194,158793730,158859266,158924802,158990337,159055873,159121409,159186945,159252481,159318017,159449089,159514626,159580164,159645699,159711236,159776770,159842305,160497666,160628740,160694276,160759809,161153025,161218562,161284097,162267138,162332674,162398209,162463750,162529282,162594818,162660353,162725890,162791425,162856967,162988033,163053569,163315717,163381271,163446787,163708934,163840003,163905538,164036610,164233218,164298757,164364293,164429830,164560897,164691969,164757508,164823042,164888577,164954113,165019649,165150721,167575564,167641097,167706641,167772164,167837701,167903240,167968773,168034309,168099845,168165388,168230927,168296463,168361996,168427525,168493061,168558598,168624140,168689668,168755204,168820741,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169541636,169607172,169672708,169738245,169803781,169869316,169934852,170000388,170065926,170131460,170196998,170262532,170328068,170393604,170459142,170524677,170590217,170655754,170721290,170786826,170852357,170917894,170983428,171048968,171114500,171180052,171245587,171311112,171376644,171442180,171507716,171573261,171638790,171704324,171769861,171835397,171900933,171966469,172032005,172097541,172163077,172228613,172294149,172359688,172425220,172490756,172556292,172621828,172687364,172752905,172818449,172883977,172949521,173015046,173080589,173146120,173211654,173277192,173342728,173408263,173473799,173539332,173604868,173670406,173735942,173801483,173867014,173932555,173998095,174063620,174129157,174194694,174260229,174325765,174391307,174456840,174522374,174587912,174653445,174718982,174784518,174850052,174915588,174981124,175046660,175112196,175177735,175243270,175308806,175374340,175439876,175505412,175570948,175636489,175702021,175767558,175833094,175898633,176619528,177405972,179109895,179175431,179240966,179306502,179372040,179437577,179503110,179568646,180420609],"sent":[786437,2359297,2424833,2490369,2555905,2621441,10616834,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,29491202,29556738,48496642,49348610,67567617,69337090,69599239,69664769,69730308,77660161,82444290,82771970,84672513,92143618,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94830593,108527618,109379586,115474433,146276354,155713537,157024259,157089793,158990337,159055873,162398209,162529283,162856962,163381249,164233217,164495362,164560897,164757505,170590209,174587906,176619525,179109890,179175427,179240962,179306498,179372035,179437571,179503106,179568643],"stopped":[786433,2621441,10616833,29294593,157024257,176619521],"shutdown":[786433,2686977,28377089,69074949,92733443,149946375,175177731,176619521,180551681],"started":[786433,2883585,69664770,170655745,174653441,176619521],"sip":[786436,3342337,4718593,5570561,5963777,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,30867457,48955393,51249153,51314689,51380225,53542913,67567617,69599234,69664772,75956225,77725697,83623937,87293954,87359489,90898436,91029509,92143621,92930049,96600066,111869953,131530754,131858433,141033474,141099009,141557761,141819905,141885441,141950978,142082049,146145281,146210818,146276353,146407425,151126017,157155329,163708929,164495361,164560898,169738242,169803777,171376641,173342724,173473798,174587910,175374337,175439873,176619524,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"single":[786433,3604481,69402625,69664769,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110100481,110166017,137887745,155648001,160104449,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704322,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"setup":[786433,3604481,69664769,171704321,176619521],"sit":[786433,3604481,69664769,171704321,176619521],"starts":[786433,3866625,10747909,30212097,30277633,30343169,30408705,30605313,46989313,47054849,50200577,50266113,50331649,69337090,69599235,69664769,70057988,70123521,74055682,75104259,91029505,141950977,157220869,157614081,159645697,161742850,163315716,163381250,172228609,173473793,176619521],"sippeersaction":[786434,4587521,4653057,17956867,53280772,53346310,69599233,69664770,84410371,115015683,163184641,164495369,173342721,173408258,176619522],"sipshowpeeraction":[786434,4587521,4653057,18022403,53411844,53477383,53542920,69599233,69664770,75956230,84475907,115081219,115146754,163184641,164560907,173342721,173408258,176619522],"server":[786435,4718593,5570562,27131906,65011714,65208321,65732609,65798145,69271554,69533697,69599240,69664776,69730306,80543749,80609285,80674821,80740357,80805893,80871429,80936965,81002501,81068037,81133573,81199110,81264645,81330181,81395717,81461253,81526789,81592325,81657861,81723397,81788933,81854469,81920005,81985541,82051077,82116613,82182149,82247685,82313221,82378757,82444293,82509829,82575365,82640901,82706437,82771973,82837509,82903045,82968581,83034117,83099653,83165189,83230725,83296261,83361797,83427333,83492869,83558405,83623941,83689477,83755013,83820549,83886085,83951621,84017157,84082693,84148229,84213765,84279301,84344837,84410373,84475909,84541445,84606981,84672517,84738053,84803589,84869125,84934661,85000197,85065733,85262343,85327879,85393415,85458951,85524487,85590023,85655559,85721095,85786631,85852167,85917703,85983239,86048775,86114311,86179847,86245383,86310919,86376455,86441991,86507527,86573063,86638599,86704135,86769671,86835207,86900743,86966279,87031815,87097351,87162887,87228423,87293959,87359495,87425031,87490567,87556103,87621639,87687175,87752711,87818247,87883783,87949319,88014855,88080391,88145927,88211463,88276999,88342535,88408071,88473607,88539143,88604679,88670215,88735752,88801287,88866823,88932359,88997895,89063431,89128967,89194503,89260039,89325575,89391111,89456647,89522183,89587719,89653255,89718791,89784327,89849863,89915399,89980935,90046471,90112007,90177543,90243079,90308615,90374151,90439687,90505223,90570759,90636295,90701831,90767367,90832903,90898439,90963975,91029511,91095047,91160583,91226119,91291655,91357191,91422727,91488263,91553799,91619335,91684871,91750407,91815943,91881479,91947015,92012551,92078087,92143624,92209159,92274695,92340231,92405767,92471303,92536839,92602375,92667911,92733448,92798983,92864519,92930055,92995591,93061127,93126663,93192199,93257735,93323271,93388807,93454343,93585412,93978630,94044166,94109702,94175238,94240774,94306310,94371846,94437382,105709569,110166025,111280132,116785156,135200769,137756674,137887753,146210817,149815297,152371201,152567809,152698881,153157633,155385857,155648009,156696577,156893185,160628741,160694277,160759813,160825349,160890885,160956421,161021957,161087493,161153032,161218565,161284103,161349637,161415173,161480709,161546245,161611781,161677317,161742853,161808389,161873925,161939461,162004997,162070533,162136069,162201605,162267141,162332677,162398213,162463749,162529285,162594821,162660358,162725893,162791429,162856966,162922502,162988037,163053573,163119109,163184645,163250181,163315717,163381253,163446789,163512325,163577861,163643397,163708933,163774469,163840005,163905541,163971077,164036613,164102149,164167685,164233221,164298757,164364293,164429829,164495365,164560901,164626437,164691973,164757510,164823045,164888581,164954117,165019653,165085189,165150725,167575559,167641095,167706631,167772167,167837703,167903239,167968775,168034311,168099847,168165383,168230919,168296455,168361991,168427527,168493063,168558599,168624135,168689671,168755207,168820743,168886279,168951815,169017351,169082887,169148423,169213959,169279495,169345031,169541639,169607175,169672711,169738247,169803783,169869319,169934855,170000391,170065927,170131463,170196999,170262535,170328071,170393607,170459144,170524679,170590215,170655751,170721287,170786823,170852360,170917895,170983431,171048967,171114503,171180040,171245575,171311111,171376647,171442183,171507719,171573255,171638791,171704327,171769863,171835400,171900935,171966471,172032007,172097543,172163079,172228615,172294151,172359687,172425223,172490759,172556295,172621831,172687367,172752903,172818439,172883975,172949511,173015047,173080583,173146119,173211655,173277191,173342727,173408263,173473800,173539335,173604871,173670407,173735943,173801479,173867015,173932551,173998087,174063623,174129159,174194695,174260231,174325767,174391303,174456839,174522375,174587914,174653448,174718983,174784519,174850055,174915591,174981127,175046663,175112199,175177737,175243271,175308807,175374343,175439879,175505415,175570951,175636487,175702023,175767559,175833095,175898631,176291841,176619529,179109894,179175430,179240966,179306502,179372038,179437574,179503111,179568647],"shows":[786434,5373953,6291457,69664769,175898625,176619522],"statusevent":[786433,5701634,26411011,63832071,69599233,69664770,92864515,150077442,150142978,150208514,150274050,150339587,150405123,150470658,150536195,150601730,150667267,164626434,174784513,175243265,175308810,176619521,179765253],"statusaction":[786434,5701633,5767169,18087939,53608452,53673990,69599234,69664770,84541443,115212290,163184641,164626442,175243266,175308802,176619522],"statuscomplete":[786433,5767173,176619521],"statuscompleteevent":[786433,5767170,26345475,63766535,69599233,69664770,92798979,150011907,164626434,174784513,175243274,176619521,179699717],"syntax":[983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10616835,18219009,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425666,29491203,29556739,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263810,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69337090,76087297,80150530,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580803,101646339,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024260,157089794,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072834,158138369,158203906,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973379,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757506,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"summary":[1835009,1900545,1966081,2031617,2097153,2162689,2228225,2752513,3080193,3211265,5832705,7405569,7471105,7667713,7733249,7798785,7864321,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8454145,8650753,8781825,8847361,8912897,8978433,9175041,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,10027009,10092545,10158081,28442625,28639233,29097985,29163521,29622273,29818881,29884417,29949953,30015489,32768001,33685505,33816577,33882113,34406401,34471937,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41484289,41549825,41746433,41811969,42074113,42139649,42336257,42401793,42532865,42598401,42795009,42860545,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44367873,44433409,44498945,44564481,45219841,46333953,46465025,48103425,48627713,50003969,50397185,50921473,52559873,53280769,53411841,53608449,53870593,53936129,54001665,54067201,54132737,54198273,55115777,64225281,64552961,64684033,64749569,64815105,64880641,64946177,65404929,65536001,65601537,66387969,66453505,66519041,66781185,66846721,67829761,68091905,94896129,94961665,95223809,95289345,95354881,95420417,95485953,95551489,95748097,96010241,96075777,96206849,96272385,96337921,96403457,96731137,96993281,97058817,101711873,101777409,102039553,102105089,102170625,102301697,102367233,102432769,102498305,102563841,102629377,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,105054209,105119745,105185281,105250817,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107806721,108003329,108199937,110034945,112197633,112263169,112328705,112394241,112459777,112525313,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113639425,113704961,113770497,113836033,115015681,115081217,117243905,117309441,117571585,118882305,119013377,119078913,119209985,119275521,119341057,119537665,119603201,119668737,119734273,119799809,119865345,120389633,120520705,120979457,121044993,121110529,121176065,121241601,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131596289,131661825,131792897,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133496833,133890049,133955585,134152193,134348801,134414337,134479873,134545409,134873089,134938625,135004161,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139788289,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140967937,141164545,141295617,141361153,141426689,141492225,141623297,141688833,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149880833,150011905,150339585,150405121,150536193,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151322625,151388161,151453697,151519233,151584769,151977985,152043521,152109057,153223169,153878529,153944065,154009601,154140673,154206209,154271745,154337281,154402817,154599425,154664961,154730497,154796033,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156565505,156958721,157089793,157351937,157417473,157483009,159907841,160235521,160432129,160563201,160956417,161021953,161087489,161349633,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,163643393,163774465,163905537,163971073,164102145,164167681,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167641089,167772161,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169410561,169476097,169541633,169607169,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170983425,171114497,171442177,171507713,171900929,172097537,172294145,172425217,172490753,172556289,172621825,172687361,173015041,173539329,173604865,174850049,174915585,174981121,175046657,175112193,175374337,175767553,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176685057,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,179240961,179634177,179699713,179765249,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073],"statuseventhandler":[5701639,69533697,179765254],"statuscompleteeventhandler":[5767175,69533697,179699718],"size":[6422529,8060929,69140481,77856769,96927745,156565505,157351937,180551681],"separator":[6422529,8716289,156565505],"show_version_files_pattern":[6422529,8912902,156565505],"sc511_causes_exception":[6488065,9043973,28508166,28573702,28704774,157351937],"schangup_causes_exception":[6488065,9109509,28508166,28573702,28704774,157351937],"setvaraction":[6619139,9240578,9306114,9371650,17891331,53084167,53149703,53215239,69599233,75890696,84344835,114753538,114819074,114884610,114950146,163119105,164429837],"store":[6619137,9371649,84344833,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,114884609,137625601,155320321,164429826,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"specifiy":[6815745,9961473,176619521],"synchronization":[6815745,9961473,176619521],"static":[7405571,7471107,7536641,7602177,7667713,7733249,7798785,7864321,7929859,7995395,8060929,8126467,8192003,8257539,8323075,8388611,8454147,8519681,8585217,8650755,8716289,8781827,8847363,8912899,8978435,9437185,9502721,9568257,9633793,9699329,9764865,42336259,42401795,44105731,68288515,68354051,69599233,85655554,91488259,91553794,91619330,91684866,91750402,91815938,91881474,91947011,118292482,143458307,143982594,145096707,156565505,164757505,167968770,173932547,173998082,174063618,174129154,174194690,174260226,174325762,174391299],"shared":[7405569,7471105,7929857,7995393,8126465,8192001,8257537,8323073,8388609,8454145,8650753,8781825,8847361,8912897,8978433,42336257,42401793,44105729,68288513,68354049],"string":[7536645,7733253,7864325,8519685,8716293,9175045,9240581,9306117,9371653,9437189,9502725,9568261,9633797,9699333,9764869,9830405,9895941,10092549,10158090,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10747966,10813441,10878977,11141125,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959171,14024718,18219023,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578307,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804227,26869761,26935297,27000833,27131906,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28180481,28246018,28311553,28377089,28835846,28901382,29032455,29294602,29360134,29491205,29556741,29622278,29753351,29818893,29884426,29949965,30015494,30081029,30212102,30277644,30343180,30408734,30474250,30539782,30605324,30670865,30736399,30801926,30867468,30998540,31064076,31129612,31195147,31260691,31326220,31391756,31457290,31653894,31719442,31784978,31850503,31916046,32047110,32112652,32178194,32243720,32309262,32374790,32440333,32505863,32571406,32702471,32899078,32964614,33030150,33161223,33226762,33357830,33423373,33488901,34078730,34209799,34275334,34340875,34406405,34471949,34537478,34668550,34799622,34930694,34996230,35061772,35127314,35192838,35258380,35323916,35389470,35454982,35520518,35586060,35651590,35717126,35782668,35848198,35913738,35979270,36044815,36110342,36175878,36241420,36306950,36372486,36438022,36503558,36569094,36634630,36700172,36765702,36831244,36896780,36962310,37027845,37093382,37224454,37289990,37421062,37617670,37814278,37879826,37945362,38010886,38076422,38141964,38207494,38338566,38404108,38469650,38535174,38600710,38666252,38731782,38797318,38862860,38928390,38993926,39059468,39124998,39256070,39321606,39387141,39452678,39518213,39583750,39714822,39780357,39845894,39911429,39976966,40042501,40108038,40239110,40370182,40435718,40566790,40632326,40697868,40763398,40828934,40894476,40960012,41025542,41091078,41156614,41222149,41287686,41615370,41680901,42008583,42270727,42336264,42401800,42729479,43057157,43122695,43188231,43253765,43384840,43450377,43515913,43646984,43712521,43778057,43909128,43974665,44040201,44171272,44302342,44433416,44498953,44564489,44761094,44892172,44957714,45088774,45154310,45350926,45482224,45613080,45744146,45875206,46006284,46137350,46268432,46399494,46661639,46792720,46923792,47054855,47185927,47316999,47448080,47775751,47906828,48037900,48234508,48365586,48496646,48758790,48889862,48955404,49086470,49217548,49283090,49348632,49545223,49676295,50003974,50200588,50266130,50331666,50462732,50528268,50593806,50659342,50790427,50855960,51249164,51314706,51380242,51511351,51642374,51707910,51773452,51838988,51970075,52101160,52232204,52363271,52494343,52756498,52822040,52953100,53018636,53149708,53215250,53542919,53805063,54001672,54067218,54132766,54198316,54263838,54394896,54460434,54525979,54657032,55312390,55377926,55443461,55574540,55640076,55705614,55771150,57606168,60096524,60162072,60227592,64225300,64684037,64749583,64946181,65732626,65798165,65863686,65929222,66060300,66125834,66191374,66256908,67174405,67502094,67567627,67698700,67764248,67829766,67960846,68091910,68222981,68354054,68485125,68812806,68943878,69140485,69337093,69664770,69926914,69992449,70057994,70123523,70189059,70254595,70320131,70385668,70451201,70516742,70582277,70647814,70713348,70778883,70844421,70909953,70975489,71041027,71106564,71172097,71237637,71303178,71368707,71434243,71499779,71565315,71630851,71696388,71761921,71958534,72024067,72089606,72155139,72220675,72286211,72351745,72417281,72482817,72548357,72679425,72744961,72810497,72876035,72941571,73007107,73072641,73138179,73203713,73269253,73334786,73400332,73465860,73531395,73596929,73662466,73728001,73793538,73859073,73924610,73990146,74055681,74121217,74186753,74252290,74317825,74383362,74448898,74514434,74579971,74645505,74711041,74776579,74842113,74907657,74973185,75038721,75104264,75169799,75235336,75300869,75366406,75431939,75497476,75563010,75628545,75694081,75759623,75825156,75890693,75956225,76021761,76087311,76152839,76218369,76480514,76742657,77004806,77070338,77135874,77201410,77266945,77332482,77463553,77529089,77594625,79036417,80150529,80216065,82903041,82968577,84672513,85131265,85196801,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735747,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93650945,93978627,94044163,94109699,94175235,94240771,94306307,94371843,94437379,94568449,94830598,94896134,95158278,95223814,95289350,95617030,95682566,95748102,95879174,95944710,96141318,96206854,96468998,96534534,96600070,96665606,97058823,97124359,97189895,97255430,97386502,97452038,97517575,97583111,97648647,97714183,97779719,97845255,97910791,97976327,98041863,98107399,98172935,98238471,98435079,98500615,98566151,98631687,98762759,98828295,99090439,99155975,99221511,99418119,99483655,99549191,99614727,99745799,99811336,99876871,99942407,100007943,100073479,100139015,100204551,100335623,100401159,100532231,100597767,100663303,100728839,100794375,100925447,100990983,101056519,101122055,101253126,101318662,101449735,101580806,101646342,101711878,101842951,101908487,101974023,102039558,102694919,102760455,102957063,103022599,103088135,103153671,103284743,103350279,103481351,103546887,103612423,103677959,103743495,103809031,103874567,103940103,104005639,104071175,104136711,104202247,104267783,104333319,104398855,104464391,104529927,104726535,104792071,104857607,104923143,104988679,105054215,105119751,105185287,105250823,105316359,105381895,105447431,105512967,105578503,105644039,105709575,105775111,105840647,105906183,105971719,106037255,106102791,106168327,106233863,106299399,106364935,106430471,106496007,106561543,106627079,106692615,106758151,106823687,106889223,106954759,107020295,107085831,107151367,107216903,107282439,107347975,107413511,107479047,107544583,107610119,107675655,107741191,107806727,107872263,107937799,108003335,108068871,108134407,108199943,108265479,108331015,108396551,108462087,108527623,108593159,108658695,108724231,108789767,108855303,108920839,108986375,109051911,109117447,109182983,109248519,109314055,109379591,109445127,109510663,109576199,109641735,109707271,109772808,109838343,109903880,109969414,110034951,110100488,110166023,110231559,110297095,110362631,110428167,110559239,110624775,110690311,110821383,110886919,110952455,111017991,111083527,111149063,111280135,111345671,111411207,111476743,111542279,111607815,111673351,111738887,111804423,111869959,111935495,112132103,112197639,112263175,112328711,112394247,112459783,112525319,112590855,112656391,112787463,112852999,112918535,112984071,113049607,113115143,113180679,113246215,113311751,113377287,113442823,113508359,113573895,113639431,113704967,113770503,113836039,113901575,113967111,114032647,114098183,114163719,114229255,114294791,114360327,114491399,114622471,114688007,114753543,114819079,114884615,114950151,115015687,115081223,115146759,115212295,115277831,115343367,115408903,115474444,115539975,115605512,115671047,115736583,115802119,115933191,116064263,116195335,116326407,116391943,116588551,116654087,116719623,116785159,116850695,116916231,116981767,117047303,117112839,117178375,117243911,117309447,117374983,117440519,117506055,117637127,117702663,117768199,117833735,118030343,118161415,118226951,118292487,118423559,118554631,118685703,118816775,118882311,118947847,119013383,119078919,119144455,119209991,119275527,119341063,119406599,119472135,119537671,119603207,119668743,119734279,119799815,119865351,119996423,120127495,120324103,120389639,120455175,120520711,120586247,120651783,120782855,120848391,120913927,120979463,121110535,121241607,121307143,121372679,121438215,121503751,121569287,121634823,121700359,121831431,121896967,121962503,122028039,122093575,122159111,122224647,122290183,122355719,122421255,122486791,122552327,122617863,122683399,122748935,122814471,122880007,122945543,123076615,123142151,123207687,123273223,123338759,123404295,123469831,123535367,123600903,123666439,123731975,123797511,123863047,123928583,123994119,124059655,124125191,124190727,124256263,124321799,124387335,124452871,124518407,124583943,124649479,124715015,124780551,124846087,124911623,124977159,125042695,125108231,125173767,125239303,125304839,125370375,125435911,125501447,125566983,125632519,125698055,125763591,125829127,125894663,125960199,126025735,126091271,126156807,126222343,126287879,126353415,126418951,126484487,126615559,126681095,126746631,126812167,126877703,126943239,127008775,127074311,127139847,127205383,127270919,127336455,127401991,127467527,127533063,127598599,127664135,127729671,127795207,127860743,127926279,127991815,128057351,128122887,128188423,128253959,128319495,128385031,128450567,128516103,128581639,128647175,128712711,128778247,128843783,128909319,128974855,129040391,129105927,129171463,129236999,129302535,129368071,129564679,129630215,129695751,129761287,129826823,129892359,129957895,130023431,130088967,130154503,130285575,130351111,130416647,130482183,130547719,130613255,130744327,130809863,130875399,130940935,131006471,131137543,131203079,131268615,131334151,131399687,131465223,131530759,131727367,131858439,131923975,131989511,132055047,132120583,132186119,132251655,132317191,132382727,132448263,132513799,132579335,132644871,132710407,132775943,132841479,132907015,133103623,133169159,133300231,133365767,133431303,133496839,133562375,133627911,133693447,133758983,133824519,133890055,133955591,134021127,134086663,134152199,134217735,134283271,134414343,134479879,134610951,134676487,134742023,134873095,134938631,135004167,135069704,135135239,135200775,135266311,135397383,135659527,135725063,135790599,135856135,135921671,135987207,136052743,136118279,136642567,137232391,137297927,137494535,137625618,137691143,137822215,137887751,138084359,138149895,138215431,138280967,138346503,138674183,138936327,139001863,139132935,139198471,139264007,139329543,139395079,139460615,139526151,139591687,139722759,139788295,139853831,139919367,139984903,140115975,140181511,140247047,140312583,140378119,140509191,140574727,140640263,140705799,140771335,140836871,141033479,141099015,141230087,141426695,141557767,141819911,141885447,141950983,142016519,142147591,142213127,142278663,142344199,142606343,142671879,142737415,142802951,142868487,142999559,143196167,143392775,143458311,143851527,143917063,143982599,144048135,144244743,144441351,144506887,144572423,144703495,145031175,145096711,145293319,145752071,145948679,146079751,146145287,146210823,146276359,146341894,146407431,146472967,146538503,146604039,146669575,146735111,146800647,146866183,146931719,147062791,147259399,147390471,147521543,147783687,148111367,148439047,149291015,149618695,149684231,149946375,150077447,150142983,150208519,150274055,150339591,150405127,150470663,150667271,150732807,150798343,150863879,150994951,151060487,151126023,151191559,151257095,151322631,151388167,151453703,151650311,151715847,151781383,151846919,151912455,152371207,152567815,153157639,153223174,153288711,153354247,153419783,153485319,153550855,153616391,153681927,154468359,154533895,154599431,154664967,154730503,154861574,154927111,155123719,155254791,155320336,155451399,155516935,155582472,155648007,155713543,155779079,155844615,156106759,156237831,156499975,156631041,156696577,156762116,156827650,156893186,156958721,157024258,157220926,157286401,157351941,157548545,157614095,157679619,157745155,157941763,158007299,158072835,158138372,158269441,158466050,158531590,158597124,158662662,158728197,158793731,158859268,158924801,159449089,159514625,159645701,159973378,160038914,160104450,160169986,160235521,160301058,160366593,160432131,160497678,160628737,160694277,160759810,160956428,161021956,161087491,161153025,161218562,161284097,161349634,161546241,161611778,161677314,161742849,161808385,161873921,161939458,162201601,162267138,162332674,162398210,162463747,162529281,162660353,162725891,162791425,162856969,162988034,163053570,163315720,163446791,163708936,163774469,163840006,163905539,163971076,164036610,164102145,164167681,164298759,164364292,164429829,164560897,164691969,164757527,164823041,166199300,167510018,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345029,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180036,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702023,175767555,175833091,175898627,176619528,176750596,176816129,177405953,178913281,178978817,179044353,179109892,179175428,179240964,179306500,179372036,179437572,179503110,179568646,179830786,180420610,180486147,180551681],"specified":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747906,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246020,28311553,28377089,31391745,46202882,46268418,46596097,46661633,46727170,46792706,46858241,46923777,46989315,47054851,47120385,47185921,47251457,47316993,47382530,47448066,49545217,49676289,68288513,68354049,68419585,68485121,69337091,70385665,73793540,73859074,73924612,73990146,74055686,74121218,74186754,74252292,77266946,80347137,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903042,82968578,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012546,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585411,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,101842945,109772801,109903873,110166017,137887745,145883138,152567809,152698881,153157633,155648001,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220866,157286401,157351937,157417473,157483009,157548546,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138370,158203905,158269442,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235522,160301057,160366593,160432129,160497665,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349638,161415170,161480706,161546244,161611782,161677316,161742856,161808388,161873924,161939462,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988035,163053571,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,166199297,167510017,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456835,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,176619524,176750593,176816129,177405953,178913281,178978817,179044353,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642,179634177,179830785,180420613,180486145,180551681],"serves":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"shallow":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"sendcommand":[10223617,10813441,28442632,33685511,156631041,157286401],"subsequent":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"sets":[10354689,10420225,10485761,10747910,11141122,13500417,13565953,16842753,18677761,18743297,18808833,18874369,19398657,19464193,19529729,19595265,22282241,27197441,27328513,28180481,32899073,32964609,33030145,33095681,33161217,33226753,35061761,35127297,48365569,50593793,51249153,51314689,51380225,52953089,53018625,53149697,53215233,55705601,66191361,69337092,69599236,70975490,71237634,74579969,75825154,75890690,77463555,77529091,77594627,77856771,79953921,80150531,80216067,83296257,84672513,85131267,85196803,90308609,92143617,93585415,93650947,94568451,94699522,96796673,96862209,96927745,98828289,101318657,103350273,111017985,111280129,115605505,118947841,119144449,139591681,141819905,141950977,142016513,145424385,145489921,145555457,145620993,145686529,145817601,145883137,146341889,150077441,150142977,150208513,150274049,150470657,150601729,152174593,152240129,152371201,152567809,152698881,153026561,153157633,156434433,156499969,156762116,156827652,156893188,157220870,157351939,157614082,159252481,159318017,159514625,159580161,159711233,159973380,160038916,160628737,160694273,160759809,162463745,163381250,164364290,164429827,164757505,166199300,167510020,167575553,167641089,168165377,168230913,168296449,168361985,171180033,172752897,174587905,176619527,176750596,177405953,179830788,180486146],"serializationinfo":[10354689,10420225,10485761,13500417,13565953,18677761,18743297,27197441,28180481,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"streamfilecommand":[10616833,13172739,29294593,40763396,40828935,40894471,40960007,69337089,72548360,79888387,101056514,101122050,101187586,157024257,157417473,158138369,159645709],"supported":[10616833,29425665,69599233,69664769,77725697,95813633,157024257,157155329,161284097,171835393],"success":[10616833,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,29425665,67633153,69337089,69599233,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155582465,157024257,158466049,164757505,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"synopsis":[10616833,29491202,41615367,80150530,101580807,157024257,159973379],"sc_invalid_command_syntax":[10616834,29491201,29556737,157024258,157089793],"stream":[10747908,13959169,30212098,30277634,30343170,30408706,31326209,31391745,31719425,31784961,35192833,35258369,35323905,35389441,36372481,36438017,36503553,36831233,36896769,37879809,37945345,40828929,40894465,40960001,42991617,69337090,70057988,77987841,78381057,78512129,78839809,79888386,97189889,98238465,98631681,99155969,101122050,157220868,157614082,158007298,158138369,158531585,159645698,160432129],"seek":[10747910,30212097,30277633,30343169,30408705,31719425,31784961,69337091,70057988,70516738,157220870,157614081,158531585,159645697],"sample":[10747908,30212097,30277633,30343169,30408705,69337090,70057988,157220868,157614081,159645697],"streaming":[10747909,30343169,30408705,30998529,31064065,31129601,31326209,31391746,35192833,35258369,35323906,35389442,36896769,40828929,40894465,40960002,69337091,70254595,70385666,71303172,72548355,77987841,78512129,79888385,97320961,98697217,101187585,157220869,157614085,158007297,158138371,159645700],"starting":[10747907,30998529,31064065,31129601,69337089,70254595,157220867,158007297],"seconds":[10747908,31326209,31391745,31719425,31784962,31981569,32047105,32112641,32178177,32636929,32702465,32833537,36831233,36896769,37945345,38273025,38338561,38404097,38469633,39190529,39256065,39649281,44761089,69337091,69599233,70385665,70516738,71696385,72089601,78970881,79233025,79429633,80543745,83296257,85262337,85327873,85393409,85458945,85524481,85590017,85655554,85721089,85786626,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310914,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636290,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357186,91422721,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012547,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864515,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93716482,99680257,100270081,100466690,102825985,111214593,118095873,119144449,120717313,138018817,140902401,143065089,143327233,143785985,144965633,145620993,145817601,150601735,153812994,157220868,158138369,158531585,158662658,158924802,159121410,160628738,163381249,167575553,167641089,167706625,167772161,167837697,167903233,167968770,168034305,168099842,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624130,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080578,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801474,173867009,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456835,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308803,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,177405954],"sequence":[10747906,31719425,31784961,69337089,69599233,70516738,157220866,158531585,164757505],"specify":[10747906,31719425,31784961,48496641,49348609,69337091,69599235,70516738,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444292,82509827,82575363,82640899,82706435,82771972,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296261,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,108527617,109379585,110100481,110166018,110886913,111280129,137887746,155648002,157220866,158400513,158466049,158531585,160628739,160694276,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529285,162594819,162660355,162725891,162791427,162856964,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381253,163446787,163512323,163577859,163643395,163708931,163774467,163840003,163905539,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757508,164823043,164888579,164954115,165019651,165085187,165150723,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"samples":[10747906,30343169,30408705,31719425,31784962,35323905,35389441,37945345,40960001,69337089,70516738,77987841,78839809,79888385,97320961,99287041,101187585,157220866,157614081,158531586,159645697],"sayalpha":[10747906,31850502,31916038,70582275,157220866],"says":[10747918,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,38273025,38338561,38404097,38469633,70582274,70647812,70713346,70778882,70844418,70909954,72089604,157220878,158662660],"saydatetime":[10747908,31981574,32047110,32112646,32178182,70647813,157220868],"saydigits":[10747906,32243718,32309254,70713347,157220866],"saynumber":[10747906,32374790,32440326,70778883,157220866],"sayphonetic":[10747906,32505862,32571398,70844419,157220866],"saytime":[10747906,32636934,32702470,70909955,157220866],"service":[10747905,32768008,92012546,145817602,145883138,157220865,174456834],"setautohangup":[10747905,32833542,157220865],"setcallerid":[10747905,32899078,157220865],"setcontext":[10747905,32964614,157220865],"setextension":[10747905,33030150,157220865],"setpriority":[10747906,33095687,33161223,70975491,157220866],"setvariable":[10747905,16842753,18808833,18874369,19398657,19464193,19529729,19595265,22282241,27328513,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,33226757,50593799,55705607,66191367,67567617,157220865,163381249,167575553,167641089,168165377,168230913,168296449,168361985,171180033,177405953,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"stopmusiconhold":[10747905,33292293,157220865],"stops":[10747905,33292289,46858241,46923777,47120385,47185921,73990146,74121218,157220865,161677314,161808386],"streamfile":[10747906,33357830,33423366,71041027,157220866],"sends":[10747905,13959170,27131905,33488897,43122689,43188225,65208321,69337091,69599235,69730305,157220865,158990337,159055873,159776769,160432130,161284097,162660353,164757505,176619521,179175425],"system":[10747905,28311553,28508170,28573704,28704774,28835841,28901378,29032454,29294593,29753347,29818884,29949956,30081025,30212097,30277634,30343171,30408710,30474242,30539777,30605314,30670852,30736387,30801921,30867458,30998529,31064066,31129603,31195137,31260676,31326210,31391747,31457281,31653889,31719428,31784967,31850497,31916034,31981569,32047106,32112643,32178180,32243713,32309250,32374785,32440322,32505857,32571394,32636929,32702466,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33357825,33423362,33488899,33554433,34078735,34144258,34209794,34275331,34340894,34471940,34930689,35061762,35127299,35192833,35258370,35323907,35389446,35520513,35586050,35717121,35782658,35913730,36044803,36175873,36241410,36372481,36438018,36503555,36634625,36700162,36831234,36896771,37027841,37224449,37552129,37748738,37879812,37945351,38076417,38141954,38273026,38338562,38404099,38469636,38600705,38666242,38797313,38862850,38993921,39059458,39190529,39256066,39387137,39518209,39649281,39780353,39911425,40042497,40370177,40501249,40566785,40697860,40828929,40894466,40960003,41091074,41222146,41418753,41615362,41680897,41943042,42008578,42270722,42336260,42401800,42729474,42926092,43122689,43188225,43253763,43319299,43384835,43450376,43515912,43581443,43646979,43712520,43778056,43843587,43909123,43974664,44040200,44171268,44236801,44302338,44367875,44433411,44498952,44564488,44761090,44892162,44957699,45088769,45154306,45350918,45482194,45613060,45744131,45875201,46006274,46137345,46268422,46399490,46661634,46792710,46923782,47054850,47185922,47316994,47448070,47775746,47906818,48037890,48234498,48365571,48496642,48758785,48889857,48955394,49086465,49217538,49283075,49348613,49545217,49676289,50200578,50266115,50331652,50462723,50593798,50659332,50790412,50855940,51249154,51314691,51380228,51511326,51642369,51707906,51773442,51838979,51970060,52101140,52232194,52363266,52494338,52756484,52822021,52953090,53018627,53149698,53215235,53542914,53805058,54001667,54067208,54132751,54198296,54263813,54394886,54460428,54525964,54657030,54788098,54919170,55050242,55312385,55377922,55443457,55574531,55705606,55771140,57606145,60096514,60162049,64225290,64749573,65142785,65273858,65470467,65601540,65732612,65798154,65863681,65929218,66060291,66191366,66256900,66584580,66912259,67174403,67502084,67567617,67698690,67764225,67960836,68222977,68354049,68419585,68485121,68681729,68812801,68878337,68943874,69140482,69206017,69337089,69664769,82444289,82771969,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733442,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,108527617,109379585,137822209,149946369,155516929,156565505,156631041,156696577,156762114,156827650,156893186,156958721,157024257,157155329,157220866,157286401,157351937,157417474,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776770,159842305,159973378,160038914,160104449,160169985,160235521,160301057,160366593,160432129,160497666,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529282,162594817,162660353,162725889,162791425,162856962,162922497,162988033,163053569,163119106,163184642,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166133761,166199298,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510018,167575555,167641091,167706627,167772165,167837702,167903235,167968773,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835397,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784517,174850051,174915587,174981123,175046659,175112195,175177732,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833091,175898627,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176619521,176685057,176750594,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568643,179634177,179699713,179765249,179830786,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486146,180551681],"start":[10878977,28311553,33816582,68681733,68878341,68943877,69664769,157351937,168689665,180486145],"stop":[10878977,33882118,157351937],"sayalphacommand":[12124163,38010884,38076423,38141959,69337089,72024070,78905347,99418114,99483650,157417473,158597131],"saydatetimecommand":[12189699,38207492,38273032,38338567,38404103,38469639,69337089,72089610,78970883,99549186,99614722,99680258,99745794,157417473,158662671],"saydigitscommand":[12255235,38535172,38600711,38666247,69337089,72155142,79036419,99811330,99876866,157417473,158728203],"saynumbercommand":[12320771,38731780,38797319,38862855,69337089,72220678,79101955,99942402,100007938,157417473,158793739],"sayphoneticcommand":[12386307,38928388,38993926,39059463,69337089,72286213,79167491,100073474,100139010,157417473,158859274],"saytimecommand":[12451843,39124996,39190535,39256071,69337089,72351750,79233027,100204546,100270082,157417473,158924811],"sendimagecommand":[12517379,39321604,39387142,69337089,79298563,100335618,157417473,158990345],"sendtextcommand":[12582915,39452676,39518214,69337089,79364099,100401154,157417473,159055881],"setautohangupcommand":[12648451,39583748,39649286,69337089,79429635,100466690,157417473,159121417],"setcalleridcommand":[12713987,39714820,39780358,69337089,79495171,100532226,157417473,159186953],"setcontextcommand":[12779523,39845892,39911429,69337089,79560707,100597762,157417473,159252488],"setextensioncommand":[12845059,39976964,40042501,69337089,79626243,100663298,157417473,159318024],"setmusicoffcommand":[12910595,40108036,40173574,69337089,157417473,159383561],"setmusiconcommand":[12976131,40239108,40304647,40370183,69337089,72417286,79691779,100728834,157417473,159449099],"setprioritycommand":[13041667,39911425,40042497,40435716,40501255,40566791,69337090,72482822,79757315,100794370,100859906,157417473,159252481,159318017,159514636],"setvariablecommand":[13107203,40632324,40697862,69337089,79822851,100925442,100990978,157417473,159580168],"scriptmapping":[13762563,41943047,42336266,42401805,42467334,69402625,72679425,80347139,101777411,101842946,101908482,101974018,160104449,160235530],"savemappings":[13762561,42401800,160235521],"serversocket":[13893635,42795012,42860547,42926089,69468162,160366602],"socketconnection":[13959171,28573705,28704775,29229062,33751046,42795013,42991618,43057154,43122690,43188226,43253765,69468161,69861377,80478211,102105091,102170627,102236162,102301699,102367235,102432771,102498307,102563843,102629379,156631041,160432137],"socket":[13959172,27131905,28573702,28704775,29229062,33751046,42991617,43057153,43122689,43188225,65011714,69271554,69468161,69599233,80478209,93585409,102236161,153092097,156696579,160366593,160432133,162856961,176619522],"suitable":[14024705,44105729,160497665],"sending":[16646145,16711681,49741825,49872897,69599236,69730305,85196801,116523009,161153025,162856961,163184642,163250177,163446785,167510017,179306497],"setvariables":[16842753,18808833,18874369,19398657,19464193,19529729,19595265,22282241,27328513,50659335,55771143,66256902,163381249,167575553,167641089,168165377,168230913,168296449,168361985,171180033,177405953],"setcdruserfieldaction":[17825795,52887559,52953095,53018631,69599235,75825160,84279299,114491394,114556930,114622466,114688002,163119105,164364303],"stopmonitoraction":[18153475,53739527,53805064,69599234,76021766,84606979,115277826,115343362,163119105,164691980],"sparing":[18219009,54263809,76087297,164757505],"sections":[18219009,54263809,76087297,164757505],"supply":[18219009,54263809,76087297,164757505],"showdialplancompleteevent":[26214403,63635463,69664769,92667907,149291011,149356547,149422083,149487619,149553155,171835393,175112202],"shutdownevent":[26279939,63700999,69664770,92733443,149618691,149684227,149749763,149815298,149880835,149946370,170524673,175177738],"sendaction":[27131907,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,65339400,65404938,65470472,67567617,76873732,93585410,153026562,176619525,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"send":[27131906,33488897,39387137,39518209,41222145,43122689,43188225,48496641,49348609,65339393,65470466,69599233,69664772,76873730,79298561,79364097,80019457,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199106,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444290,82509825,82575361,82640897,82706433,82771970,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296258,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143618,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93585411,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,100335618,100401154,101449729,105709569,108527617,109379585,110166017,110755841,137887745,146407425,152305666,152633345,155648001,158990337,159055873,159776769,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284098,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529282,162594817,162660353,162725889,162791425,162856962,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381250,163446786,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587906,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702021,175767553,175833089,175898625,176619525,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"sendeventgeneratingaction":[27131906,65536009,65601545,76939267,176619522],"stored":[27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,67567619,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"setchannel":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"sub":[28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29229057,29687809,29753345,30081025,30146561,30474241,30539777,30605313,30736385,31522817,31588353,31653889,31850497,31981569,32243713,32374785,32505857,32636929,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33488897,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34603009,34734081,34865153,34930689,35061761,35127297,35192833,35258369,35323905,35389441,35520513,35586049,35717121,35782657,35913729,36044801,36175873,36241409,36372481,36438017,36503553,36634625,36700161,36831233,36896769,37027841,37158913,37224449,37355521,37486593,37552129,37683201,37748737,37879809,37945345,38076417,38141953,38273025,38338561,38404097,38469633,38600705,38666241,38797313,38862849,38993921,39059457,39190529,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40173569,40304641,40370177,40501249,40566785,40697857,40828929,40894465,40960001,41091073,41222145,41353217,41418753,41549825,41615361,41680897,41811969,41877505,41943041,42008577,42139649,42205185,42270721,42401793,42467329,42598401,42663937,42729473,42860545,42926081,42991617,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46399489,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49807361,49938433,50069505,50135041,50200577,50266113,50331649,50593793,50659329,50724865,50790401,50855937,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035586,52101122,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53346305,53477377,53542913,53673985,53739521,53805057,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55181313,55246849,55312385,55377921,55443457,55508993,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64290817,64356353,64421889,64487425,64552961,64618497,65077249,65142785,65208321,65273857,65667073,65732609,65798145,65863681,65929217,65994753,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67239937,67305473,67371009,67436545,67502081,67895297,67960833,68157441,68222977,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,75497474,163971074,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166133761,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176685057,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,179699713,179765249,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073],"strategy":[28704769,69402625,77856769,92012546,96862209,145948678,157351937,160104449,174456834],"script":[28704769,69271553,69402625,77725702,80347137,95682561,95879169,96141313,96468993,96534534,101974017,157155334,160169985,160235521,160301057],"skip":[30343169,30408705,31784961,35323905,35389441,37945345,40960001,77987841,78839809,79888385,97320961,99287041,101187585,157614081,158531585,159645697],"standard":[31064065,31129601,36438017,36503553,69468161,78381057,98369537,158007297,160366593],"silence":[31784961,37945345],"say":[31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,38076417,38141953,38273025,38338561,38404097,38469633,38600705,38666241,38797313,38862849,38993921,39059457,39190529,39256065,69337094,72089601,78905345,78970881,79036417,79101953,79167489,79233025,99483649,99680257,99811329,100007937,100139009,100270081,158597122,158662659,158728194,158793730,158859266,158924802],"said":[32112641,32178177,38404097,38469633,78970881,99549185,158662657],"saying":[32178177,38469633,78970881,99745793,158662657],"serve":[34144257,34275329,69599233,77856770,93585409,96862209,96927745,152502273,157351938,163119105,176619521],"sc511_causesexception":[34340872],"schangup_causesexception":[34340872],"support":[35192833,35258369,35323905,35389441,69337095,69795841,71303172,157614084,158400514,158466049,158990338,159055874,169476097,180486145],"sayphonticcommand":[38993921,72286209,158859265],"sealed":[41746433,41811969,42074113,42139649,42532865,42598401,50528257,50659329,55640065,55771137,66387969,66519041,66781185,137625602,153878529,153944066,154271745,154337282,155320321,156565505,160497666],"soft":[45154309,69664769,80674817,103415813,160759809,171180033],"separate":[46399489,69599234,161415170,161480705],"separated":[48496641,49348609,82444289,82771969,82968577,83296257,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439682,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306306,94371841,94437377,108527617,109379585,109903873,111280129,137822209,139722753,155123713,155516929,162529281,162856961,163053569,163381249,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883970,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437570,179503105,179568641],"security":[49217537,74907649,162856961],"secret":[49217541,82771972,109510664,162856964],"specific":[51249153,51314689,51380225,69271553,69337089,69599233,77463553,77529089,77594625,80150529,80216065,83623937,84672513,85131265,85196801,93650945,94568449,111869953,115605505,156762114,156827649,156893185,157679617,159973377,160038913,163708929,164757506,166199297,167510017,176750593,179830785],"statistics":[52297729,52363265,75628546,164102146],"second":[52822017],"srcfilename":[54394886,54460422,54525958,69599233,84672513,115671045,164757506],"successful":[69337092,69599234,69664769,91488257,91553793,91947009,92143617,93585409,143327233,143785985,144965633,146276353,152436737,157679617,157745153,157876225,159711233,162856961,163446785,170459137,173932545,173998081,174391297,174587905,176619521],"setting":[69337089,69599233,69664769,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786626,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012547,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,119144449,138018817,145686529,145817601,159121409,160628737,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099842,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325762,174391297,174456835,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"supports":[69337089,81068033,82771969,105381889,109314049,159514625,161153025,162856961],"strategies":[69402625],"sciptmapping":[69402625,160104449],"simple":[69533697,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,179044353],"stores":[69533697,179044353],"series":[69599233,163184641],"short":[69599233,163381249],"setvar":[69599233,84344833,114753537,164429826],"succeeded":[69599233,164757505],"specifying":[69599233,69664769,164757505,175702017],"strings":[69599233,84672513,94044161,115474433,154533889,164757506,179175425],"switches":[69599234,164888577,164954113],"spandsp":[69664771,171180035],"switch":[69664769,84803585,84869121,115998721,116129793,164888577,164954113,171180033],"subclass":[69664770,171835393,175702017],"shut":[69664769,92733441,149946369,175177730],"setter":[69664769,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137625601,155320321,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702018,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"sha":[69795841,180420609],"sized":[69795841,180551681],"stacktrace":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"stack":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"socketencoding":[77856769,93585409,96993286,153092101,157351937,176619521],"scriptassmebly":[80347137,101842949,160235521],"scriptclass":[80347138,101842945,101908485,160235522],"scriptname":[80347137,101974021,160235521],"situations":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721],"step":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721],"ser":[83296257,111083521,163381249],"setcdruserfield":[84279297,114491393,164364289],"stopmonitor":[84606977,115277825,164691969],"servers":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822209,155516929,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"sourced":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,137953281,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"states":[85393409,88801281,90374145,90505217,117374977,167706625,171245569,172818433,172949505],"serviced":[85655553,91619329,91684865,91750401,91815937,91881473,117899265,167968769,174063617,174129153,174194689,174260225,174325761],"stateinterface":[85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,118685701,145293317,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"subevent":[86376449,86573057,88211457,88276993,88342529,121241606,121569286,134152198,168689665,168886273,170655745,170721281,170786817],"secondbridgecreator":[86638593,123076614,168951809],"secondbridgename":[86638593,123142150,168951809],"secondbridgenumchannels":[86638593,123207686,168951809],"secondbridgetechnology":[86638593,123273222,168951809],"secondbridgetype":[86638593,123338758,168951809],"secondbridgeuniqueid":[86638593,123404294,168951809],"secondtransfereraccountcode":[86638593,123469830,168951809],"secondtransferercalleridname":[86638593,123535366,168951809],"secondtransferercalleridnum":[86638593,123600902,168951809],"secondtransfererchannel":[86638593,123666438,168951809],"secondtransfererchannelstate":[86638593,123731974,168951809],"secondtransfererchannelstatedesc":[86638593,123797510,168951809],"secondtransfererconnectedlinename":[86638593,123863046,168951809],"secondtransfererconnectedlinenum":[86638593,123928582,168951809],"secondtransferercontext":[86638593,123994118,168951809],"secondtransfererexten":[86638593,124059654,168951809],"secondtransfererlanguage":[86638593,124125190,168951809],"secondtransfererpriority":[86638593,124190726,168951809],"secondtransfereruniqueid":[86638593,124256262,168951809],"src":[87228417,88211457,88276993,88342529,131334150,134021125,169672705,170655745,170721281,170786817],"starttime":[87228417,94502913,131399686,156172294,169672705,179634177],"sipcallid":[87359489,92930049,132251654,150732806,169803777,175374337],"sipfullcontact":[87359489,132317190,169803777],"srcuniqueid":[88211457,88276993,88342529,134086661,170655745,170721281,170786817],"station":[88735746,135266305,135397377,171180034],"screening":[90308610,139591681,139657217,172752898],"span":[91095041,142344198,173539329],"spent":[91357185,143065089,173801473],"statically":[91553793,143982593,173998081],"servicelevel":[92012546,145817606,174456834],"servicelevelperf":[92012545,145883141,174456833],"sure":[92143617,146276353,174587905],"subsystem":[92209153,146472961,174653441],"senderssrc":[92405761,147587078,174850049],"sequencenumbercycles":[92405761,147652614,174850049],"sentntp":[92471297,148111366,174915585],"sentoctets":[92471297,148176902,174915585],"sentpackets":[92471297,92602369,148242438,149094406,174915585,175046657],"sentrtp":[92471297,148307974,174915585],"ssrc":[92536833,92602369,148766726,149225478,174981121,175046657],"srcount":[92602369,149159942,175046657],"sequencenumber":[92733441,93323265,149880838,151584774,175177729,175767553],"signalling":[93454348,151912464,175898636],"synchronous":[93585411,152174593,152240129,153026561,176619523],"slow":[93585409,152829953,176619521],"sleeptime":[93585410,153026566,176619522],"sleep":[93585409,153026561,176619521],"small":[93585409,153026561,176619521],"sbyte":[156303364],"signed":[156303363],"sealedattribute":[156565505,160497665],"sc_success":[157089793],"sc_invalid_or_unknown_command":[157089793],"sc_dead_channel":[157089793],"sender":[165216261,165281797,165347333,165412869,165478405,165543941,165609477,165675013,165740549,165806085,165871621,165937157,166002693,166133765,166264837,166330373,166395909,166461445,166526981,166592517,166658053,166723589,166789125,166854661,166920197,166985733,167051269,167116805,167182341,167247877,167313413,167378949,167444485,175964165,176029701,176095237,176160773,176226309,176357381,176422917,176488453,176553989,176685061,176881669,176947205,177012741,177078277,177143813,177209349,177274885,177340421,177471493,177537029,177602565,177668101,177733637,177799173,177864709,177930245,177995781,178061317,178126853,178192389,178257925,178323461,178388997,178454533,178520069,178585605,178651141,178716677,178782213,178847749,179699717,179765253,179896325,179961861,180027397,180092933,180158469,180224005,180289541,180355077]} \ No newline at end of file diff --git a/docs/fti/FTI_116.json b/docs/fti/FTI_116.json index 2549e3e..883bac7 100644 --- a/docs/fti/FTI_116.json +++ b/docs/fti/FTI_116.json @@ -1 +1 @@ -{"topic":[1],"title":[65537,131073],"topics":[131073],"todo":[131073,262147],"talk":[196609],"thanks":[196609],"type":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,6422531,6488067,6553603,6619139,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,7929857,7995395,8060931,8126467,8192003,8257539,8323075,8388611,8454147,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141124,11206660,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561345,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937602,23003140,23068675,23199748,23330817,23396354,23527426,23592961,23658497,23724033,23789570,23855105,23920641,23986177,24051713,24117249,24248321,24313858,24379393,24444930,24510465,24576001,24707074,24772611,24838148,24903687,24969218,25034753,25100290,25165827,25231363,25296898,25362435,25427969,25493506,25559043,25624580,25690114,25755651,25821187,25886724,25952258,26148865,26214405,26279944,26345473,26411011,26476545,26542083,26607620,26673157,26738689,26804227,26869761,26935299,27000833,27066371,27131905,27197443,27262978,27328513,27394049,27459585,27525121,27590657,27656193,27721730,27852801,27918339,27983874,28049410,28180481,28246017,28508161,28573700,28639234,28704769,28770307,28835845,28901377,28966914,29032449,29163521,29294593,29425665,29491201,29556738,29622275,29687809,29753346,29818883,29884422,29949953,30015489,30081026,30146561,30212097,30277634,30343169,30408706,30474241,30539779,30605313,30670849,30736386,30801921,30867457,30932994,30998531,31064065,31129601,31195138,31260673,31326210,31391747,31457281,31522817,31588353,31719425,31784961,31916033,32047105,32112641,32243713,32309249,32374788,32440327,32505857,32571393,32636930,32702465,32768001,32833538,32899075,32964612,33030145,33095681,33161218,33226753,33292289,33357826,33423361,33488897,33554434,33619969,33685505,33751042,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34734081,34865153,34930689,34996225,35061761,35127297,35192834,35258369,35323905,35389442,35454979,35520513,35586049,35651585,35717122,35782657,35913729,35979266,36110338,36175873,36241410,36438017,36503553,36569090,36765697,36831234,36896770,37027842,37224449,37289985,37421059,37552129,37617665,37683201,37748739,37814273,37879809,37945346,38010882,38076417,38141953,38207490,38273026,38338561,38404097,38469634,38535170,38600705,38666243,38731778,38797315,38862849,38928385,38993922,39059458,39256066,39387138,39452675,39583745,39649282,39714823,39845890,39976974,40108036,40239107,40370177,40501250,40632321,40763394,40828935,40894465,40960007,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,42401794,42532866,42598407,42729474,42860547,42991617,43122689,43253761,43384833,43450370,43581441,43712514,43778051,43843588,44040193,44171265,44236807,44367874,44498945,44695554,44761091,44826628,44892167,44957698,45023233,45088770,45154305,45285379,45350916,45416455,45744130,45809667,45875204,46006277,46137345,46202882,46268418,46333955,46465027,46596100,46727170,46858241,46989313,47054855,47251460,47316997,47448066,47513603,47644674,47710211,47775751,47906823,48037889,48103431,48300033,48365569,48496641,48562178,48627715,48693252,48758789,48889858,48955395,49020931,49152002,49283073,49414145,49545217,49610759,49807361,49872898,49938434,50003969,50069506,50135041,50200578,50266113,50331649,50397185,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101122,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591491,54657026,54722561,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720259,58785793,58851329,58916865,58982401,59113473,59179010,59244547,59310081,59375617,59441153,59506689,59637761,59768839,59834370,59899907,59965443,60030978,60096515,60227588,60293125,60358657,60424194,60489729,60555266,60620801,60686338,60751873,60948481,61014017,61079555,61145089,61341697,61407234,61669378,61997057,62062594,62128129,62193667,62259202,62324737,62455809,62521345,62586881,62717953,62783489,62849026,62914561,62980097,63307777,63373313,63438850,63504385,63635458,63766529,64094211,71892993,71958529,72024065,72089601,72155137,72220675,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854466,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524482,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095048,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287874,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314882,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574722,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994946,151060484,151126021,151191556,151257092,151322628,151388164,151453700,151519233,151584774,151650308,151715844,151781380,151846916,151912452,151977988,152043524,152109060,152174596,152240132,152305668,152371204,152436740,152502276,152567812,152633348,152698884,152764420,152829956,152895492,152961028,153026564,153092100,153157636,153223172,153288708,153354244,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075140,154140676,154206212,154271748,154337282,154402820,154468356,154533892,154599428,154664964,154730500,154796036,154861572,154927108,154992641,155058180,155123716,155189252,155254788,155320324,155385860,155451396,155516932,155582468,155648004,155713541,155779076,155844612,155910148,155975684,156041220,156106756,156172292,156237828,156303364,156368900,156434436,156499972,156565508,156631044,156696580,156762116,156827652,156893188,156958724,157024260,157089796,157155332,157220868,157286404,157351940,157417476,157483012,157548548,157614086,157679622,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645699,159711235,159776771,159842307,159907843,159973379,160038915,160104451,160169987,160235523,160301059,160366595,160432131,160497665,160563203,160628740,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163840001,163905537,163971076,164036612,164102148,164167684,164233221,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216260,165281796,165347332,165412868,165478404,165543940,165609476,165675012,165740548,165806084,165871620,165937156,166002692,166068228,166133764,166199300,166264836,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575556,167641092,167706628,167772164,167837700,167903237,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017349,169082884,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607172,169672708,169738244,169803780,169869316,169934852,170000388,170065924,170131461,170196996,170262532,170328068,170393603,170459139,170524675,170590211,170655747,170721282,170786819,170852355,170917891,170983427,171048964,171114499,171180036,171245572,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835396,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342724,173408260,173473796,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129155,174194691,174260228,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850052,174915588,174981124],"top":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,150994945,151060483,151126018,151191556,151257092,151322628,151388162,151453699,151584771,151650307,151715842,151781380,151846914,151912450,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698883,152764418,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616387,153681923,153747459,153812994,153878531,153944067,154009603,154075139,154140675,154206211,154271747,154337281,154402820,154468356,154533890,154599427,154664963,154730499,154796034,154861571,154927106,155058179,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713540,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827651,156893187,156958723,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859268,158924803,158990339,159055875,159121411,159186948,159252483,159318019,159383555,159449091,159514627,159580163,160628740,161939460,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148420,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170721282,171048964,171180036,171245570,171835395,173342723,173408259,173473795,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063619,174260228,174850051,174915587,174981122],"timeoutexception":[851971,22675459,62717958,64028674,88080386,89063427,146604033,146669569,161939461,171048962,174260234],"thread":[917505,2555905,8454146,22806531,22872066,28639233,28770305,37486593,37552129,63045634,63176705,63307778,63373314,63438851,63504385,63569921,63635457,64290817,71827459,72351745,89194500,91422721,150798337,150863874,150929409,150994945,151781377,154861570,174915594,174981123],"true":[983042,3473412,3538945,3604481,21626881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,26279937,32440321,39649281,42532865,44826625,46202881,46333953,47513601,54591489,59506690,62128129,62193665,64094209,68943873,72220673,73334785,75104257,77725697,77791233,78118913,78249985,78774273,85983233,86441985,87228417,88080387,88801281,90308609,93519873,97386497,97910785,104988673,105250817,105775108,106496001,107216897,109051905,111280132,137953281,139591681,144244737,146735105,146866177,146931713,149618689,151584769,151781378,152961025,155123713,156762113,157745153,157810690,158138369,158269441,158793729,168361985,168820737,169607169,171048964,173539329,173604865,173670401,173735937,173801473,173867010,173932545,173998081],"throw":[983042,3538945,3604481,151781378],"try":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,88080385,146931713,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"tostring":[4718593,4784129,4849665,4915201,4980737,5046273,5111810,5177346,5242881,5308417,5373953,5439490,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075586,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432578,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544386,22609922,22675457,22740993,22806529,22872065,24117256,24510472,29032456,44498952,54722566,62324744,62586888,151060481,151126017,151191553,151257089,151322625,151388161,151453698,151584770,151650305,151715841,151781377,151846914,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548546,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063618,174260225,174850049,174915585,174981121],"timeout":[5242891,21626882,25559048,25624584,25821185,25886727,26214409,26279946,28049415,30867457,30933000,30998536,31326209,31391751,31981569,32047109,32178177,32243718,32374790,32440327,35848193,35913733,39256071,45285382,45350920,49938434,59637766,59834369,59965447,60096518,62717953,63832074,64028673,64094212,64749570,64880642,65011718,66060291,66191362,66322433,66387969,67108865,67698689,71368706,72155137,72876035,73007106,73203713,73269249,73334786,74448897,74579969,75038722,77791234,77856772,79691777,85131265,86638595,88080385,88211458,89325569,92864519,93192198,93388805,93454341,93847558,95813637,96010245,97320966,105709574,105971713,106102791,111017986,135331845,140705794,140836865,147062785,148242438,151453697,151650315,152436743,152567813,152829955,152895491,152961029,154140673,154271749,155058182,157810691,157876228,161939458,167510017,169017347,171048963,171835394],"time":[5242888,25559041,25624577,26214402,26279938,26476552,26542088,26607625,26673162,27131911,27197447,27328518,30932993,30998529,32374785,32440321,32768009,32833544,32899081,32964618,33685510,33751046,34144261,63832071,64028674,64094210,65011714,65142788,65404930,66584582,72876033,73334785,73465861,73728002,73924609,75104257,77791233,79757314,79822850,79888386,79953922,80019458,80084994,80150532,80216066,80281603,80347138,80412676,80478212,80543746,80609282,80674818,80740354,80805891,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524484,85590018,85655554,85721090,85786626,85852162,85917698,85983236,86048771,86114307,86179844,86245380,86310916,86376452,86441988,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88080387,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,92864513,93847553,94044161,94175239,94240769,94765062,94961669,97714177,105709569,112459777,112590849,113639425,114425857,114556929,114688001,114753537,115212289,132186113,132448257,136511494,137756673,138215425,139329537,139395073,146604033,146669569,147456001,148242433,149815297,151650312,152436737,152829953,152895489,152961026,153092108,153354245,153550849,155058178,155123713,157810689,161939457,162004994,162070530,162136066,162201602,162267138,162332674,162398212,162463746,162529283,162594818,162660356,162725892,162791426,162856962,162922498,162988034,163053571,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903236,167968770,168034306,168099842,168165378,168230914,168296450,168361988,168427523,168493059,168558596,168624132,168689668,168755204,168820740,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,171048963,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174260225],"timezone":[5242881,26673159,32964615,65142785,66584577,73465858,94240774,151650305,153092099],"tddmodecommand":[7733251,35520516,35586055,63832065,74448899,95748098,95813634,151846913,154140681],"text":[8454145,26345478,26411014,27000838,27066374,32571398,32636934,33488902,33554438,34013190,37421060,37552130,37748737,60293122,63832073,72155137,73269249,73400322,73662466,73859074,89325570,93454337,93978630,94633990,94896135,151453697,152829955,152895491,153026562,153288706,153485318,154861569],"transferevent":[20971523,58392583,64159745,87425027,145162243,145227779,145293315,145358851,145424387,145489923,145555458,145620994,166264833,169803786,174325765],"threadclass":[22806531,63045634,63111170,63176706,63242247,63307782,63373318,63438854,64290817,71827463,89194499,150798338,150863874,150929410,174915596],"threadstate":[22806529,63176705,174915585],"threadpool":[22872067,63504387,63569922,63635462,64290817,174981129],"turn":[22872065,63569921,174981121],"throwable":[23396353],"thrown":[23396353,63766531,64028676,151257089,154402817,154468353,160628737,161939457,171180033,174260225],"times":[25559041,25624577,30932993,30998529,64028673,64159745,72876033,92864513,152436737,167706625,172163073],"threads":[28639233,28770305,63635459,64290817,72351745,91422721,151781377,174915585,174981121],"tdd":[35586049,63832066,74448897,95813633,154140676],"totaltype":[39976966,75366401,99024902,155385857],"transfer":[40042497,40108036,67960834,75431939,79560705,83230721,99352577,99418113,99483649,110952449,129957889,155451397,159580161,165609473],"transfere":[40108033,75431937,99287041,155451393],"two":[40173569,40239105,44826625,64028675,64159749,68026370,77725697,81526785,83755009,87621633,88080385,104988673,123863041,147456001,155516930,157745153,163119105,163774466,166133763,170000386,170917890,171048961,174456833],"tone":[40239110,75497473,99745798,155516929],"triple":[47251457,47316993,70254594,158728194],"threading":[61079556,61407235,63373313,63438849],"threadstart":[63373319,63438855,71827458,174915586],"talking":[63766529,64028674,64159746,80805890,115408898,151322625,161415169,163053570,166592513,166658049,171442177],"testvariable":[63832067,152240129,152502273,152633345],"transmission":[63832069,153419778,153485314,154140673],"turns":[63832066,153812993,153878529],"triggered":[64028731,64159813,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160366593,160432129,161087489,161480705,161742849,161808385,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163774465,164102145,164888577,165085185,165150721,165216257,165281793,165347329,165478401,165609473,165675009,165740545,165806081,166002689,166068225,166133761,166199297,166395905,166461441,166592513,166658049,166789121,167182337,167247873,167313409,167378945,167510017,167575553,167641089,167706625,167772161,167837697,167903233,168099841,168165377,168230913,168361985,168427521,168493057,168624129,168689665,168886273,168951809,169017345,169148417,169213953,169607169,169672705,169738241,169869313,169934849,170000385,170065921,170262529,170328065,170393601,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172621825,172687361,172752897,172818433,172883969,172949505,173080577,173146113,173211649,173277185,174129153,174325761,174391297,174456833,174522369,174587905,174718977,174784513],"torn":[64028673,161153025],"telephones":[64028673,64159745,166133761,170917889],"turned":[64028673,64159745,166199297,170983425],"talker":[64028673,171442177],"transfereventhandler":[64028673,174325765],"timeouts":[64094209,155058177],"test":[64094209,155320321],"temporarily":[64094209,158269441],"tells":[64094209,159186945],"transfers":[64094209,159580161],"triggerd":[64159745,169082881],"targetsite":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"throws":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"tcp":[72351745,91291649,151781377],"tcpclient":[74973185,97124364,154861569],"typically":[79167489,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,109969409,150011905,159186945,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"timestamp":[79757315,79822851,79888387,79953923,80019459,80084995,80150531,80216067,80281603,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296259,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,132448263,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067],"timestampevents":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,132448257,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"technology":[80150530,85983234,86114306,86179842,86245378,86310914,86376450,86441986,112525313,113180673,139722753,162398210,168361986,168493058,168558594,168624130,168689666,168755202,168820738],"took":[80150529,85524481,86114305,86179841,86245377,86310913,86376449,112590849,136511489,162398209,167903233,168493057,168558593,168624129,168689665,168755201],"terminated":[80412673,114491393,162660353],"talktime":[80412673,114556933,162660353],"talked":[80412673,114556929,162660353],"talkingto":[80805889,115408901,163053569],"toor":[80805889,115408897,163053569],"transfereeaccountcode":[81133569,81199105,118816774,121110534,163381249,163446785],"transfereecalleridname":[81133569,81199105,118882310,121176070,163381249,163446785],"transfereecalleridnum":[81133569,81199105,118947846,121241606,163381249,163446785],"transfereechannel":[81133569,81199105,119013382,121307142,163381249,163446785],"transfereechannelstate":[81133569,81199105,119078918,121372678,163381249,163446785],"transfereechannelstatedesc":[81133569,81199105,119144454,121438214,163381249,163446785],"transfereeconnectedlinename":[81133569,81199105,119209990,121503750,163381249,163446785],"transfereeconnectedlinenum":[81133569,81199105,119275526,121569286,163381249,163446785],"transfereecontext":[81133569,81199105,119341062,121634822,163381249,163446785],"transfereeexten":[81133569,81199105,119406598,121700358,163381249,163446785],"transfereelanguage":[81133569,81199105,119472134,121765894,163381249,163446785],"transfereepriority":[81133569,81199105,119537670,121831430,163381249,163446785],"transfereeuniqueid":[81133569,81199105,119603206,121896966,163381249,163446785],"transfertargetaccountcode":[81133569,119668742,163381249],"transfertargetcalleridname":[81133569,119734278,163381249],"transfertargetcalleridnum":[81133569,119799814,163381249],"transfertargetchannel":[81133569,119865350,163381249],"transfertargetchannelstate":[81133569,119930886,163381249],"transfertargetchannelstatedesc":[81133569,119996422,163381249],"transfertargetconnectedlinename":[81133569,120061958,163381249],"transfertargetconnectedlinenum":[81133569,120127494,163381249],"transfertargetcontext":[81133569,120193030,163381249],"transfertargetlanguage":[81133569,120258566,163381249],"transfertargetpriority":[81133569,120324102,163381249],"transfertargetuniqueid":[81133569,120389638,163381249],"transfereraccountcode":[81199105,121962502,163446785],"transferercalleridname":[81199105,122028038,163446785],"transferercalleridnum":[81199105,122093574,163446785],"transfererchannel":[81199105,122159110,163446785],"transfererchannelstate":[81199105,122224646,163446785],"transfererchannelstatedesc":[81199105,122290182,163446785],"transfererconnectedlinename":[81199105,122355718,163446785],"transfererconnectedlinenum":[81199105,122421254,163446785],"transferercontext":[81199105,122486790,163446785],"transfererlanguage":[81199105,122552326,163446785],"transfererpriority":[81199105,122617862,163446785],"transfereruniqueid":[81199105,122683398,163446785],"talkingstatus":[82444289,127533062,164823041],"transferred":[83230721,129761281,165609473],"transferrate":[83230721,129957893,165609473],"textual":[83296257,83820545,130088961,131923969,165675009,166199297],"textsupport":[85393409,136052742,167772161],"total":[86507521,140312578,168886273],"theirlastsr":[86966273,142802950,169345025],"transit":[87031809,143261702,169410561],"targetchannel":[87425025,145227782,169803777],"targetuniqueid":[87425025,145293318,169803777],"transfer2parking":[87425025,145358854,169803777],"transfercontext":[87425025,145424390,169803777],"transferexten":[87425025,145489926,169803777],"transfermethod":[87425025,145555461,169803777],"transfertype":[87425025,145620997,169803777],"throwing":[88080386,146604033,146669569,171048962],"ther":[88080385,146931713,171048961],"threw":[88080385,146931713,171048961],"track":[88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,150142977,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081]} \ No newline at end of file +{"topic":[1],"title":[65537,131073],"topics":[131073],"todo":[131073,262147],"talk":[196609],"thanks":[196609],"type":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13434881,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646148,16711684,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27066369,27131907,27197443,27262979,27328515,27394051,27459587,27525123,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,28114947,28180483,28246019,28311555,28377091,28442626,28508164,28573699,28704772,28835841,28901378,29032450,29097985,29163521,29229057,29294594,29360129,29425665,29491201,29556737,29622273,29753345,29818882,29884417,29949954,30015489,30081025,30212098,30277635,30343172,30408711,30474242,30539777,30605314,30670851,30736387,30801922,30867459,30932993,30998530,31064067,31129604,31195138,31260675,31326211,31391748,31457282,31653889,31719429,31784968,31850497,31916035,31981569,32047107,32112644,32178181,32243713,32309251,32374785,32440323,32505857,32571395,32636929,32702467,32768002,32833537,32899073,32964609,33030145,33095681,33161217,33226754,33357825,33423363,33488898,33554434,33685505,33751041,34013185,34078724,34144258,34209793,34275331,34340869,34406401,34471938,34537473,34668545,34799617,34930689,34996225,35061762,35127299,35192833,35258370,35323907,35389446,35454977,35520513,35586050,35651585,35717121,35782658,35848193,35913730,35979265,36044803,36110337,36175873,36241410,36306945,36372481,36438018,36503555,36569089,36634625,36700162,36765697,36831234,36896771,36962305,37027841,37093377,37224449,37289985,37421057,37552129,37617665,37748737,37814273,37879812,37945351,38010881,38076417,38141954,38207489,38273025,38338562,38404099,38469636,38535169,38600705,38666242,38731777,38797313,38862850,38928385,38993921,39059458,39124993,39190529,39256066,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40239105,40370177,40435713,40501249,40566785,40632321,40697858,40763393,40828929,40894466,40960003,41025537,41091073,41156609,41222146,41287681,41418753,41484290,41615362,41680897,41746434,41943041,42008577,42074114,42270721,42336258,42401794,42532866,42729473,42795009,42926083,43057153,43122689,43188225,43253763,43319297,43384833,43450370,43515906,43581441,43646977,43712514,43778050,43843585,43909121,43974658,44040194,44105729,44171267,44236802,44302339,44367873,44433409,44498946,44564482,44761090,44892162,44957699,45088769,45154306,45219847,45350914,45481998,45613060,45744131,45875201,46006274,46137345,46268418,46333959,46399489,46465031,46661633,46792706,46923778,47054849,47185921,47316993,47448066,47775745,47906818,48037890,48103431,48234498,48365571,48496641,48627713,48758785,48889857,48955394,49086465,49217538,49283075,49348612,49545217,49676289,49741831,49872898,50003969,50200578,50266115,50331652,50397191,50462722,50528257,50593794,50659329,50790403,50855940,50921479,51249154,51314691,51380228,51511301,51642369,51707906,51773442,51838979,51970051,52101124,52232194,52363265,52494337,52559879,52756484,52822021,52953090,53018627,53149698,53215235,53280775,53411847,53542913,53608455,53805057,53870593,54001665,54067202,54132739,54198276,54263813,54394882,54460419,54525955,54657026,54788097,54919169,55050241,55115783,55312385,55377922,55443458,55508993,55574530,55640065,55705602,55771137,55836673,55902209,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606146,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096515,60162050,60227585,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225283,64290817,64356353,64421889,64487425,64618497,64684034,64749571,64815105,64880641,64946177,65011713,65142785,65273863,65339394,65404931,65470467,65536002,65601539,65732612,65798149,65863681,65929218,65994753,66060290,66125825,66191362,66256897,66453505,66519041,66584579,66650113,66846721,66912258,67174402,67502081,67567618,67633153,67698691,67764226,67829761,67960833,68026369,68091905,68222977,68288513,68354050,68419585,68485121,68812801,68878337,68943874,69009409,69140482,69271553,69599235,77398017,77463553,77529089,77594625,77660161,77725699,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359490,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029506,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143618,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600072,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858434,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885442,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145282,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565506,156631044,156696581,156762116,156827652,156893188,156958724,157024260,157089793,157155334,157220868,157286404,157351940,157417476,157483012,157548548,157614084,157679620,157745156,157810692,157876228,157941764,158007300,158072836,158138372,158203908,158269444,158334980,158400516,158466052,158531588,158597124,158662660,158728196,158793732,158859268,158924804,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645700,159711236,159776772,159842308,159907842,159973380,160038916,160104452,160169988,160235524,160301060,160366596,160432132,160497668,160563201,160628740,160694276,160759812,160825348,160890884,160956420,161021956,161087492,161153028,161218564,161284101,161349636,161415172,161480708,161546244,161611780,161677316,161742852,161808388,161873924,161939460,162004996,162070532,162136068,162201604,162267140,162332676,162398212,162463748,162529284,162594820,162660356,162725892,162791428,162856964,162922500,162988036,163053572,163119108,163184646,163250182,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774468,163840004,163905540,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888580,164954116,165019652,165085188,165150724,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068225,166133763,166199300,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510020,167575556,167641092,167706628,167772164,167837700,167903236,167968772,168034308,168099844,168165380,168230916,168296452,168361988,168427524,168493060,168558596,168624132,168689668,168755204,168820740,168886276,168951812,169017348,169082884,169148420,169213956,169279492,169345028,169410561,169476097,169541636,169607172,169672708,169738244,169803781,169869316,169934852,170000388,170065924,170131460,170196996,170262532,170328068,170393604,170459140,170524676,170590212,170655748,170721284,170786820,170852356,170917892,170983428,171048964,171114500,171180036,171245572,171311108,171376644,171442180,171507716,171573252,171638788,171704324,171769860,171835396,171900932,171966468,172032004,172097540,172163076,172228612,172294148,172359684,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015044,173080580,173146116,173211652,173277188,173342724,173408260,173473797,173539332,173604868,173670404,173735940,173801476,173867012,173932548,173998084,174063620,174129156,174194692,174260228,174325764,174391300,174456836,174522372,174587909,174653444,174718980,174784516,174850052,174915588,174981124,175046660,175112196,175177732,175243268,175308804,175374340,175439876,175505412,175570948,175636484,175702021,175767556,175833092,175898628,175964163,176029699,176095235,176160771,176226307,176291842,176357379,176422915,176488451,176553987,176619524,176685059,176750596,176816132,176881667,176947203,177012739,177078275,177143811,177209347,177274883,177340419,177405956,177471491,177537027,177602563,177668099,177733635,177799171,177864707,177930243,177995779,178061315,178126851,178192387,178257923,178323459,178388995,178454531,178520067,178585603,178651139,178716675,178782211,178847747,178913284,178978820,179044356,179109892,179175428,179240964,179306500,179372036,179437572,179503108,179568644,179634180,179699715,179765251,179830788,179896323,179961859,180027395,180092931,180158467,180224003,180289539,180355075,180420612,180486148,180551684],"top":[327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582273,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,156565505,156631043,156696578,156762116,156827652,156893188,156958722,157024259,157155331,157220867,157286402,157351940,157417474,157483010,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334978,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859267,158924803,158990339,159055875,159121411,159186947,159252483,159318019,159383554,159449091,159514627,159580163,159645699,159711235,159776771,159842307,159907841,159973380,160038916,160104450,160169987,160235523,160301059,160366594,160432131,160497666,160628739,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284100,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840003,163905539,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429828,164495363,164560899,164626435,164691971,164757508,164823043,164888579,164954115,165019651,165085187,165150723,166199300,167510020,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587907,174653443,174718980,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833091,175898627,176291842,176619525,176750596,176816130,177405955,178913283,178978819,179044355,179109892,179175428,179240964,179306500,179372036,179437572,179503108,179568644,179634179,179830788,180420611,180486147,180551682],"triggered":[786492,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1703937,1769473,2293761,2686977,2818049,3014657,3145729,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4980737,5046273,5111809,5177345,5242881,5308417,5439489,5505025,5570561,5636097,5701633,5767169,5898241,5963777,6029313,6094849,6160385,6291457,6356993,69664837,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689666,168755201,168820737,169345025,169672705,170459137,170655745,170721281,170786817,170852353,170917889,171048961,171180033,171245569,171311105,171376641,171573249,171638785,171704321,171769857,171966465,172032001,172163073,172228609,172359681,172752897,172818433,172883969,172949505,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173670401,173735937,173801473,173932545,173998081,174063617,174194689,174260225,174456833,174522369,174587905,174718977,174784513,175177729,175243265,175308801,175439873,175505409,175570945,175636481,175833089,175898625,176619580],"torn":[786433,2359297,176619521],"talking":[786434,2621441,3866625,69271553,69664770,86310914,120913922,156893185,168624130,172163073,172228609,176619522],"two":[786435,3604482,6029313,45678593,45744129,50331649,69664773,73531394,83230721,87031809,89260033,93126657,93585409,110493697,129433601,153026561,161087490,163315713,168689665,169345026,171704323,175570946,176619524],"telephones":[786433,3604481,69664769,171704321,176619521],"turned":[786433,3670017,69664769,171769857,176619521],"talker":[786433,3866625,176619521],"times":[786433,4521985,31064065,31129601,36438017,36503553,69664769,78381057,98369537,158007297,173277185,176619521],"transfer":[786433,5832710,45547521,45613060,73465858,80936963,85065729,88735745,104857601,104923137,104988673,116457473,135528449,161021957,165150721,171180033,176619521],"timeoutexception":[917507,28180483,68222982,69533698,93585410,94568451,152174593,152240129,167510021,176619522,179830794],"transfereventhandler":[5832711,69533697,179896326],"transferevent":[5832705,26476547,63897607,69664769,92930051,150732803,150798339,150863875,150929411,150994947,151060483,151126018,151191554,171835393,175374346,179896325],"thread":[6422529,8060929,13959170,28311555,28377090,34144257,34275329,42991617,43057153,68550658,68681729,68812802,68878338,68943875,69009409,69074945,69140481,69795841,77332483,77856769,94699524,96927745,156368897,156434434,156499969,156565505,157351937,160432130,180486154,180551683],"true":[6488066,8978436,9043969,9109505,27131905,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,31784961,37945345,45154305,48037889,50331649,51707905,51838977,53018625,60096513,65011714,67633153,67698689,69599233,74448897,77725697,78839809,80609281,83230721,83296257,83623937,83755009,84279297,91488257,91553793,91947009,92733441,93585411,94306305,95813633,99024897,102891521,103415809,110493697,110755841,111280132,112001025,112721921,114556929,116785156,143523841,144113665,145162241,149815297,152305665,152436737,152502273,155189249,157155329,157351938,158531585,160694273,162332673,163315713,163381250,163708929,163840001,164364289,173932545,173998081,174391297,175177729,176619524,179109889,179175425,179240961,179306497,179372033,179437570,179503105,179568641],"throw":[6488066,9043969,9109505,157351938],"try":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,93585409,152502273,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"tostring":[10223617,10289153,10354689,10420225,10485761,10551297,10616834,10682370,10747905,10813441,10878977,10944514,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580610,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937602,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049410,28114946,28180481,28246017,28311553,28377089,29622280,30015496,34537480,50003976,60227590,67829768,68091912,156631041,156696577,156762113,156827649,156893185,156958721,157024258,157155330,157220865,157286401,157351937,157417474,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568642,179634178,179830785,180420609,180486145,180551681],"timeout":[10747915,27131906,31064072,31129608,31326209,31391751,31719433,31784970,33554439,36372481,36438024,36503560,36831233,36896775,37486593,37552133,37683201,37748742,37879814,37945351,41353217,41418757,44761095,50790406,50855944,55443458,65142790,65339393,65470471,65601542,68222977,69337098,69533697,69599236,70254594,70385666,70516742,71565315,71696386,71827457,71892993,72613889,73203713,76873730,77660161,78381059,78512130,78708737,78774273,78839810,79953921,80084993,80543746,83296258,83361796,85196801,90636289,92143619,93585409,93716482,94830593,98369543,98697222,98893829,98959365,99352582,101318661,101515269,102825990,111214598,111476737,111607815,116523010,140902405,146276354,146407425,152633345,153812998,157024257,157220875,158007303,158138373,158400515,158466051,158531589,159711233,159842309,160628742,163381251,163446788,167510018,173080577,174587907,176619523,177405954],"time":[10747912,31064065,31129601,31719426,31784962,31981576,32047112,32112649,32178186,32636935,32702471,32833542,36438017,36503553,37879809,37945345,38273033,38338568,38404105,38469642,39190534,39256070,39649285,69337095,69533698,69599234,70516738,70647812,70909954,72089606,78381057,78839809,78970885,79233026,79429633,80609281,83296257,85262338,85327874,85393410,85458946,85524482,85590018,85655556,85721090,85786627,85852162,85917700,85983236,86048770,86114306,86179842,86245378,86310915,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029508,91095042,91160578,91226114,91291650,91357186,91422722,91488260,91553795,91619331,91684868,91750404,91815940,91881476,91947012,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93585411,93716481,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,98369537,99352577,99549185,99680263,99745793,100270086,100466693,103219201,111214593,117964801,118095873,119144449,119930881,120061953,120193025,120258561,120717313,137756673,138018817,142082054,143327233,143785985,144900097,144965633,152174593,152240129,153026561,153812993,155385857,157220872,158007297,158400513,158466049,158531586,158662668,158924805,159121409,160628738,160694273,163381249,167510017,167575554,167641090,167706626,167772162,167837698,167903234,167968772,168034306,168099843,168165378,168230916,168296452,168361986,168427522,168493058,168558594,168624131,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473796,173539330,173604866,173670402,173735938,173801474,173867010,173932548,173998083,174063619,174129156,174194692,174260228,174325764,174391300,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,176619523,177405953,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179830785],"timezone":[10747905,32178183,38469639,70647809,72089601,78970882,99745798,157220865,158662659],"tddmodecommand":[13238275,41025540,41091079,69337089,79953923,101253122,101318658,157417473,159711241],"text":[13959169,31850502,31916038,32505862,32571398,37748737,38076422,38141958,38993926,39059462,39518214,42926084,43057154,43253761,65798146,69337097,71892993,77660161,78774273,78905346,79167490,79364098,94830594,98959361,99483654,100139014,100401159,157024257,158400515,158466052,158597122,158859266,159055878,160432129],"threadclass":[28311555,68550658,68616194,68681730,68747271,68812806,68878342,68943878,69795841,77332487,94699523,156368898,156434434,156499970,180486156],"threadstate":[28311553,68681729,180486145],"threadpool":[28377091,69009411,69074946,69140486,69795841,180551689],"turn":[28377089,69074945,180551681],"throwable":[28901377],"thrown":[28901377,69271555,69533700,156827649,159973377,160038913,166199297,167510017,176750593,179830785],"threads":[34144257,34275329,69140483,69795841,77856769,96927745,157351937,180486145,180551681],"tdd":[41091073,69337090,79953921,101318657,159711236],"totaltype":[45481990,80871425,104529926,160956417],"transfere":[45613057,80936961,104792065,161021953],"tone":[45744134,81002497,93454341,105250822,151912453,161087489,175898629],"triple":[52756481,52822017,75759618,164298754],"threading":[66584580,66912259,68878337,68943873],"threadstart":[68878343,68943879,77332482,180486146],"testvariable":[69337091,157810689,158072833,158203905],"transmission":[69337093,158990338,159055874,159711233],"turns":[69337090,159383553,159449089],"timeouts":[69599233,160628737],"test":[69599233,160890881],"temporarily":[69599233,163840001],"tells":[69599233,164757505],"transfers":[69599233,165150721],"triggerd":[69664769,174653441],"targetsite":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"throws":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"tcp":[77856769,96796673,157351937],"tcpclient":[80478209,102629388,160432129],"typically":[84672513,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,115474433,155582465,164757505,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"timestamp":[85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211459,88276995,88342531,88408067,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91226115,91291651,91357187,91422723,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257731,93323267,93388803,93454339,138018823,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833091,175898627],"timestampevents":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,138018817,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"technology":[85655554,91488258,91619330,91684866,91750402,91815938,91881474,91947010,118030337,118685697,145293313,167968770,173932546,174063618,174129154,174194690,174260226,174325762,174391298],"took":[85655553,91029505,91619329,91684865,91750401,91815937,91881473,118095873,142082049,167968769,173473793,174063617,174129153,174194689,174260225,174325761],"terminated":[85917697,119996417,168230913],"talktime":[85917697,120061957,168230913],"talked":[85917697,120061953,168230913],"talkingto":[86310913,120913925,168624129],"toor":[86310913,120913921,168624129],"transfereeaccountcode":[86638593,86704129,124321798,126615558,168951809,169017345],"transfereecalleridname":[86638593,86704129,124387334,126681094,168951809,169017345],"transfereecalleridnum":[86638593,86704129,124452870,126746630,168951809,169017345],"transfereechannel":[86638593,86704129,124518406,126812166,168951809,169017345],"transfereechannelstate":[86638593,86704129,124583942,126877702,168951809,169017345],"transfereechannelstatedesc":[86638593,86704129,124649478,126943238,168951809,169017345],"transfereeconnectedlinename":[86638593,86704129,124715014,127008774,168951809,169017345],"transfereeconnectedlinenum":[86638593,86704129,124780550,127074310,168951809,169017345],"transfereecontext":[86638593,86704129,124846086,127139846,168951809,169017345],"transfereeexten":[86638593,86704129,124911622,127205382,168951809,169017345],"transfereelanguage":[86638593,86704129,124977158,127270918,168951809,169017345],"transfereepriority":[86638593,86704129,125042694,127336454,168951809,169017345],"transfereeuniqueid":[86638593,86704129,125108230,127401990,168951809,169017345],"transfertargetaccountcode":[86638593,125173766,168951809],"transfertargetcalleridname":[86638593,125239302,168951809],"transfertargetcalleridnum":[86638593,125304838,168951809],"transfertargetchannel":[86638593,125370374,168951809],"transfertargetchannelstate":[86638593,125435910,168951809],"transfertargetchannelstatedesc":[86638593,125501446,168951809],"transfertargetconnectedlinename":[86638593,125566982,168951809],"transfertargetconnectedlinenum":[86638593,125632518,168951809],"transfertargetcontext":[86638593,125698054,168951809],"transfertargetlanguage":[86638593,125763590,168951809],"transfertargetpriority":[86638593,125829126,168951809],"transfertargetuniqueid":[86638593,125894662,168951809],"transfereraccountcode":[86704129,127467526,169017345],"transferercalleridname":[86704129,127533062,169017345],"transferercalleridnum":[86704129,127598598,169017345],"transfererchannel":[86704129,127664134,169017345],"transfererchannelstate":[86704129,127729670,169017345],"transfererchannelstatedesc":[86704129,127795206,169017345],"transfererconnectedlinename":[86704129,127860742,169017345],"transfererconnectedlinenum":[86704129,127926278,169017345],"transferercontext":[86704129,127991814,169017345],"transfererlanguage":[86704129,128057350,169017345],"transfererpriority":[86704129,128122886,169017345],"transfereruniqueid":[86704129,128188422,169017345],"talkingstatus":[87949313,133103622,170393601],"transferred":[88735745,135331841,171180033],"transferrate":[88735745,135528453,171180033],"textual":[88801281,89325569,135659521,137494529,171245569,171769857],"textsupport":[90898433,141623302,173342721],"total":[92012545,145883138,174456833],"theirlastsr":[92471297,148373510,174915585],"transit":[92536833,148832262,174981121],"targetchannel":[92930049,150798342,175374337],"targetuniqueid":[92930049,150863878,175374337],"transfer2parking":[92930049,150929414,175374337],"transfercontext":[92930049,150994950,175374337],"transferexten":[92930049,151060486,175374337],"transfermethod":[92930049,151126021,175374337],"transfertype":[92930049,151191557,175374337],"throwing":[93585410,152174593,152240129,176619522],"ther":[93585409,152502273,176619521],"threw":[93585409,152502273,176619521],"track":[93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155713537,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641]} \ No newline at end of file diff --git a/docs/fti/FTI_117.json b/docs/fti/FTI_117.json index 5b962ce..50a0735 100644 --- a/docs/fti/FTI_117.json +++ b/docs/fti/FTI_117.json @@ -1 +1 @@ -{"updateconfigaction":[1179651,3932163,3997699,4063235,4128771,4194307,4259843,12713987,48365572,48431107,48496644,48562181,48627718,48693255,48758786,48824327,48889865,48955402,49020938,64094210,70582274,70647818,79167491,109903874,109969410,110034946,110100482,110166018,157679617,159186960],"useasyncevents":[1310721,4456453,171048961],"unknown":[5111809,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299201,21364738,21430274,21495810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23920641,36175873,52101121,54591489,54657025,62193665,62259201,64028673,64159745,79757313,79822849,79888387,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296259,83361793,83427329,83492865,83558401,83623939,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869123,84934657,85000195,85065729,85131265,85196801,85262337,85327873,85393410,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638595,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,111411201,111542273,131661825,131727361,132055041,135987201,140509186,149749761,151453697,162004995,162070531,162136069,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840001,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675013,165740547,165806083,165871619,165937155,166002693,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247877,167313411,167378949,167444483,167510019,167575555,167641091,167706627,167772164,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017349,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934852,170000387,170065923,170131458,170196995,170262531,170328067,171114497,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083],"usage":[5111809,24051714,36110343,74645505,96141317,151453697,154402818],"updates":[5242881,22740993,25231361,62914561,63832065,64094209,151650305,152305665,156893185,174850049],"user":[5242891,21626881,24772609,24838145,24903681,25493507,25559044,25624581,25821187,25886723,26214401,26279937,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918338,29753345,29818882,29884418,31326209,31391745,32374785,32440321,32636929,32833537,32899073,32964609,33161217,33357825,33554433,33751041,35389441,35454978,40697857,40763393,41222145,41287681,41877505,41943041,47448065,47513602,59768833,63832068,64028679,64094209,64159750,64749574,64880644,65536001,68288514,68419586,68747266,70320130,71958529,72024065,72089601,72482817,73007105,73334785,73400321,73465857,73531393,73596929,73662465,73728001,74383361,74645505,74711041,77791233,78774276,79626241,79691777,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805890,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393410,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638594,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88145921,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,91619329,93061121,93585409,93913089,94109697,94371841,94437377,94568449,94699521,95551489,105512961,109051906,109117441,109182977,115212289,132251649,135528449,140771333,149946369,151191553,151257089,151322625,151650315,152043521,152436738,152567811,152961025,153026561,153092097,153157633,153223169,153288705,153354241,154075137,154402817,154468353,155779074,156041218,156368898,157810689,158793735,160628737,161153025,161218562,161284097,161349633,161415169,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053570,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592514,166658050,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772162,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017346,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131461,170196993,170262529,170328065,171048961,171180033,171442177,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174260225],"unlike":[5242881,25690113,63832065,64094209,64815105,151650305,152502273,159186945],"understands":[5242881,25690113,63832065,64815105,151650305,152502273],"unblocked":[8454145,37486593,154861569],"update":[12713985,22740993,25231362,48758786,62914566,64094209,70582273,79167489,110100481,159186947,174850049],"unaffected":[12713985,48758785,70582273,159186945],"unholdevent":[21037059,58458119,64028673,64159746,87490563,165806081,166264833,169869322,174391302],"unknownevent":[21102595,58523655,64159746,87556099,166264833,169934858],"unlinkevent":[21168131,58589191,64028673,64159747,87621635,163774466,170000394,174456838],"unparkedcallevent":[21233667,58654727,64028673,64159746,87687171,145686530,162332673,170065930,174522374],"userevent":[21299203,58720262,58785799,64028673,64159752,87752707,145752067,166264833,170131472,174587910],"using":[21626882,22740994,59572225,59637761,62783489,62849025,62980097,63766529,63897601,63963137,64028674,64094209,64159749,64225281,71303170,71761922,77266946,79691777,103809025,104005633,111017985,151126017,154533889,154796033,155582465,157286402,160038913,160104449,161939457,162463745,162529281,162856961,162922497,170131457,171048962,173539329,174850051],"util":[22740993,22806529,22872065,62783490,62849026,62914562,62980098,63045634,63111170,63176706,63242242,63307778,63373314,63438850,63504387,63569922,63635458,64290818,71761921,71827457,89128961,89194497,150732802,150798338,150863874,150929410,174850051,174915587,174981123],"unless":[22806529,63111169,174915585],"unit":[23134210,23265281,23461889,23592961,23658497,23855105,23920641,23986177,24051713,24117250,24182785,24379393,24510466,24641538,24969217,25034753,25100289,25231361,25427969,26017794,26083330,26148865,26345473,26476545,26738689,26869761,27000833,27131905,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787266,27852801,27983873,28114945,28180481,28311554,28377090,28442625,28901377,29032450,29097985,29163522,29229057,29294594,29360129,29491202,29556737,29622273,29949954,30146562,30343170,30474242,30605314,30801922,31064066,31260674,31457282,31588354,31653889,31784962,31850497,31916034,31981569,32112642,32178177,32309250,32505858,32702466,33030146,33226754,33423362,33619970,33816578,33947650,34078722,34209794,34340866,34471938,34603010,34668545,34734082,34799617,34930690,35127298,35258370,35520514,35651586,35782658,35848193,36044802,36306948,36372481,36634628,36700161,36896769,36962305,37093380,37158913,37289985,37355522,37486594,37552129,37617665,37683201,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39321601,39518209,39714818,39780353,39911425,40042497,40173569,40304641,40435713,40566785,40697857,40828930,40960002,41025537,41091073,41222145,41353217,41484289,41615361,41746433,41877505,42008577,42074113,42139649,42205185,42336257,42467329,42598402,42663937,42795009,42926081,43057153,43122690,43188225,43319297,43515905,43646977,43909121,43974657,44105729,44236801,44302337,44367873,44433409,44498946,44564481,44630017,44892162,45023234,45088769,45154306,45219841,45416450,45481985,45547521,45613057,45678593,45940737,46071809,46399489,46530561,46661633,46792705,46923777,47054850,47120385,47185921,47382529,47579137,47775746,47841281,47906818,47972353,48103426,48168961,48234497,48365570,48431106,48496641,48562177,48627713,48693249,48758785,48824321,49086465,49217537,49348609,49479681,49610754,49676289,49741825,50135042,50200577,50266114,50462721,53805057,54722562,54788097,59047938,59113473,59310081,59375617,59441153,59506689,59572226,59637761,59703298,59768833,60162049,60620801,60686337,60751873,60817409,60882948,60948481,61014018,61145089,61210625,61276164,61341698,61472769,61538305,61603841,61734913,61800449,61865985,61931521,62128129,62324738,62390273,62521345,62586882,62652417,62783489,62914561,63045634,63111172,63176706,63242241,63504385,63569922,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160563201,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,170393601,170459137,170524673,170590209,170655745,170786817,170852353,170917889,170983425,171114497,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,174129153,174194689,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513],"unpause":[24903681,29622273,29884417,72482817,91881473,152043521],"universal":[26476545,26542081,26607617,26673153,32768001,32833537,32899073,32964609,63832065,66584577,73465857,94175233,153092098,153354241],"utc":[26476545,26542081,26607617,26673154,32768001,32833537,32899073,32964610,63832065,66584577,73465857,80150529,86114305,86179841,86245377,86310913,86376449,94175233,112590849,153092098,153354241,162398209,168493057,168558593,168624129,168689665,168755201],"uses":[29687809,29753345,29818881,29884417,65798148,86638593,140705793,152043524,169017345],"unitamount":[39976966,75366401,99090438,155385857],"unittype":[39976966,75366401,99155974,155385857],"users":[40894465,64094209,155844610],"used":[41484289,41549825,42205185,42270721,43778049,43843585,63897601,64094210,64290817,68550658,68812802,77266945,77791233,79167489,85524481,86638596,88080385,88211457,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,97910785,103809025,105054209,109969409,136380417,140640257,140705793,140771329,140836865,147456001,147718145,150142977,151519233,154533889,155058177,156172290,156631042,157286401,157810689,158007297,159186945,167903233,169017348,171048961,171835393,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174915585],"unlocks":[41746433,41811969,68681730,156303362],"unmutes":[41877505,41943041,68747266,156368898],"updateconfig":[42205185,42270721,64094209,68812802,156631042,159186945],"username":[43712518,43778054,43843590,60227590,60293126,64028673,77266946,85524481,86638597,88080387,104071174,136380417,140771329,140836872,147587079,157286402,160628737,167903233,169017349,171048963],"unread":[44040193,64094209,69468161,157417474],"uniqueid":[46006278,64159746,72220673,78184449,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,91160581,107020294,132513797,150142981,150667270,151584769,158203905,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264834,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131458,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617],"unavailable":[46137346,46202882,46268418,46333954,69861380,78249987,107151361,107216897,107282433,158269447],"unavailbale":[46202881,46333953,78249985,107216897,158269441],"unvailable":[46268417,46333953],"userfield":[47448070,47513606,78774273,81723393,109182981,125894662,158793729,164102145],"updated":[52101121,54657025,62259201,80150529,85983233,86179841,86245377,86310913,86376449,86441985,112459777,139329537,162398209,168361985,168558593,168624129,168689665,168755201,168820737],"usereventclass":[59768838,170131457],"usually":[60227585,60293121,64028673,64159745,161087489,164102145],"unsigned":[62914561],"underlying":[63700993,154927105],"usally":[63766529,151322625],"url":[63766529,63897601,72220673,90963969,151584769,154599425,154730497],"useful":[63897601,154533889],"unhandledevent":[64028673,88080386,146735106,171048962,171114497],"unpaused":[64028674,64159746,168493057,168558593,172818433,172883969],"unholdeventhandler":[64028673,174391301],"unlinkeventhandler":[64028673,174456837],"unparkedcalleventhandler":[64028673,174522373],"usereventhandler":[64028673,174587909],"unsuccessful":[64094209,157286401],"unavailabe":[64094209,158269441],"unlink":[64159746,81526785,83755009,87621633,123863041,163774467,166133761,170000385],"ugly":[64225282,173735938],"unqiue":[72220673,91160578,151584769],"unique":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706435,82771971,82837507,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361795,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,128253953,128516097,130285569,130351105,132513793,150142978,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085187,165150723,165216259,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740547,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"usernum":[80019457,83951617,84017153,84082689,84148225,84213761,84279297,84344833,112066566,162267137,166330369,166395905,166461441,166526977,166592513,166658049,166723585],"unlinked":[81526785,83755009,87621633,123863041,163774465,166133761,170000385],"uniqueid1":[81526785,83361793,83755009,87621633,124387334,130285573,163774465,165740545,166133761,170000385],"uniqueid2":[81526785,83361793,83755009,87621633,124452870,130351109,163774465,165740545,166133761,170000385],"usercount":[81788929,126222342,164167681],"unreachable":[85393409,85524482,86638593,135987201,136445953,136511489,140705793,167772161,167903234,169017345],"unmonitored":[85393409,135987201,167772161],"unregistration":[85524481,136249346,167903233],"unregistered":[85524483,86638593,136249346,136445953,140705793,167903235,169017345],"unlimited":[86507521,140115969,168886273],"uncleanly":[87228417,144375809,169607169],"unclean":[87228417,144375809,169607169],"usereventname":[87752705,145752070,170131457],"unassigned":[88080385,146735105,171048961],"unassgned":[88080385,146735105,171048961],"unable":[151519235],"understood":[151519233],"unknnown":[163905537]} \ No newline at end of file +{"using":[786434,1376257,1441793,27131906,28246018,65077249,65142785,68288513,68354049,68485121,69271553,69402625,69468161,69599233,69664773,69730305,76808194,77266946,82771970,85196801,109314049,109510657,116523009,156696577,160104449,160366593,161153025,162856962,167510017,168034305,168099841,168427521,168493057,175702017,176619524,179109889,180420611],"usually":[786433,2293761,65732609,65798145,69664769,169672705,176619521],"user":[786439,2359297,2424834,2490369,2555905,2621441,3866625,10747915,27131905,30277633,30343169,30408705,30998531,31064068,31129605,31326211,31391747,31719425,31784961,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423362,35258369,35323906,35389442,36831233,36896769,37879809,37945345,38141953,38338561,38404097,38469633,38666241,38862849,39059457,39256065,40894465,40960002,46202881,46268417,46727169,46792705,47382529,47448065,52953089,53018626,65273857,69337092,69599233,69664774,70254598,70385668,71041025,73793538,73924610,74252290,75825154,77463553,77529089,77594625,77987841,78512129,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79888385,80150529,80216065,83296257,84279300,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310914,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898434,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143618,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93650945,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94568449,97124353,98566145,99090433,99418113,99614721,99876865,99942401,100073473,100204545,101056513,111017985,114556930,114622465,114688001,120717313,137822209,141099009,146341893,155516929,156762113,156827649,156893185,157220875,157614081,158007298,158138371,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159645697,159973377,160038913,161349634,161611778,161939458,163381249,164364295,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624130,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163074,172228610,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342722,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587906,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702021,175767553,175833089,175898625,176619528,176750593,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179830785],"unpaused":[786434,5177345,5242881,69664770,174063617,174129153,176619522],"unhandledevent":[786434,5898246,93585410,152305666,176619524],"unknown":[786433,5898241,10616833,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804225,26869762,26935298,27000834,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,29425665,41680897,57606145,60096513,60162049,67698689,67764225,69664769,85262337,85327873,85393412,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801284,88866817,88932353,88997889,89063425,89128963,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308610,90374148,90439681,90505220,90570753,90636289,90701825,90767361,90832897,90898434,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143619,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,116916225,116981761,117047297,137232385,137297921,137625601,139460609,141557761,146079746,155320321,157024257,167575555,167641091,167706630,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410561,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245574,171311107,171376643,171442179,171507715,171573253,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752900,172818438,172883971,172949510,173015043,173080579,173146115,173211651,173277187,173342724,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456835,174522371,174587909,174653443,174718979,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505412,175570947,175636483,175702018,175767555,175833091,175898627,176619521,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643],"unhold":[786433,5963781,176619521],"unholdevent":[786433,5963778,26542083,63963143,69664770,92995587,171376641,171835393,175439882,176619521,179961861],"unlink":[786433,6029317,69664770,87031809,89260033,93126657,129433601,169345027,171704321,175570945,176619521],"unlinkevent":[786433,6029314,26673155,64094215,69664771,93126659,169345026,175570954,176619521,180027397],"unparkedcall":[786433,6094853,176619521],"unparkedcallevent":[786433,6094850,26738691,64159751,69664770,93192195,151257090,167903233,175636490,176619521,180092933],"userevents":[786433,6160389,176619521],"userevent":[786433,6160386,26804227,64225286,64290823,69664776,93257731,151322627,171835393,175702032,176619521,180158469],"unholdeventhandler":[5963783,69533697,179961862],"unlinkeventhandler":[6029319,69533697,180027398],"unparkedcalleventhandler":[6094855,69533697,180092934],"usereventhandler":[6160391,69533697,180158470],"updateconfigaction":[6684675,9437187,9502723,9568259,9633795,9699331,9764867,18219011,53870596,53936131,54001668,54067205,54132742,54198279,54263810,54329351,54394889,54460426,54525962,69599234,76087298,76152842,84672515,115408898,115474434,115539970,115605506,115671042,163250177,164757520],"useasyncevents":[6815745,9961477,176619521],"usage":[10616833,29556738,41615367,80150529,101646341,157024257,159973378],"updates":[10747905,28246017,30736385,68419585,69337089,69599233,157220865,157876225,162463745,180420609],"unlike":[10747905,31195137,69337089,69599233,70320129,157220865,158072833,164757505],"understands":[10747905,31195137,69337089,70320129,157220865,158072833],"unblocked":[13959169,42991617,160432129],"update":[18219009,28246017,30736386,54263810,68419590,69599233,76087297,84672513,115605505,164757507,180420609],"unaffected":[18219009,54263809,76087297,164757505],"unknownevent":[26607619,64028679,69664770,93061123,171835393,175505418],"util":[28246017,28311553,28377089,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009411,69074946,69140482,69795842,77266945,77332481,94633985,94699521,156303362,156368898,156434434,156499970,180420611,180486147,180551683],"unless":[28311553,68616193,180486145],"unit":[28639234,28770305,28966913,29097985,29163521,29360129,29425665,29491201,29556737,29622274,29687809,29884417,30015490,30146562,30474241,30539777,30605313,30736385,30932993,31522818,31588354,31653889,31850497,31981569,32243713,32374785,32505857,32636929,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292290,33357825,33488897,33619969,33685505,33816578,33882114,33947649,34406401,34537474,34603009,34668546,34734081,34799618,34865153,34996226,35061761,35127297,35454978,35651586,35848194,35979266,36110338,36306946,36569090,36765698,36962306,37093378,37158913,37289986,37355521,37421058,37486593,37617666,37683201,37814274,38010882,38207490,38535170,38731778,38928386,39124994,39321602,39452674,39583746,39714818,39845890,39976962,40108034,40173569,40239106,40304641,40435714,40632322,40763394,41025538,41156610,41287682,41353217,41549826,41811972,41877505,42139652,42205185,42401793,42467329,42598404,42663937,42795009,42860546,42991618,43057153,43122689,43188225,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44826625,45023233,45219842,45285377,45416449,45547521,45678593,45809665,45940737,46071809,46202881,46333954,46465026,46530561,46596097,46727169,46858241,46989313,47120385,47251457,47382529,47513601,47579137,47644673,47710209,47841281,47972353,48103426,48168961,48300033,48431105,48562177,48627714,48693249,48824321,49020929,49152001,49414145,49479681,49610753,49741825,49807361,49872897,49938433,50003970,50069505,50135041,50397186,50528258,50593793,50659330,50724865,50921474,50987009,51052545,51118081,51183617,51445761,51576833,51904513,52035585,52166657,52297729,52428801,52559874,52625409,52690945,52887553,53084161,53280770,53346305,53411842,53477377,53608450,53673985,53739521,53870594,53936130,54001665,54067201,54132737,54198273,54263809,54329345,54591489,54722561,54853633,54984705,55115778,55181313,55246849,55640066,55705601,55771138,55967745,59310081,60227586,60293121,64552962,64618497,64815105,64880641,64946177,65011713,65077250,65142785,65208322,65273857,65667073,66125825,66191361,66256897,66322433,66387972,66453505,66519042,66650113,66715649,66781188,66846722,66977793,67043329,67108865,67239937,67305473,67371009,67436545,67633153,67829762,67895297,68026369,68091906,68157441,68288513,68419585,68550658,68616196,68681730,68747265,69009409,69074946,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166133761,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,175964161,176029697,176095233,176160769,176226305,176357377,176422913,176488449,176553985,176685057,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,179699713,179765249,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073],"unpause":[30408705,35127297,35389441,77987841,97386497,157614081],"universal":[31981569,32047105,32112641,32178177,38273025,38338561,38404097,38469633,69337089,72089601,78970881,99680257,158662658,158924801],"utc":[31981569,32047105,32112641,32178178,38273025,38338561,38404097,38469634,69337089,72089601,78970881,85655553,91619329,91684865,91750401,91815937,91881473,99680257,118095873,158662658,158924801,167968769,174063617,174129153,174194689,174260225,174325761],"uses":[35192833,35258369,35323905,35389441,71303172,92143617,146276353,157614084,174587905],"unitamount":[45481990,80871425,104595462,160956417],"unittype":[45481990,80871425,104660998,160956417],"users":[46399489,69599233,161415170],"used":[46989313,47054849,47710209,47775745,49283073,49348609,69402625,69599234,69795841,74055682,74317826,82771969,83296257,84672513,85393409,88801281,90374145,90505217,91029505,92143620,93585409,93716481,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,103415809,109314049,110559233,115474433,117374977,141950977,146210817,146276353,146341889,146407425,153026561,153288705,155713537,157089793,160104449,160628737,161742850,162201602,162856961,163381249,163577857,164757505,167706625,171245569,172818433,172949505,173473793,174587908,176619521,177405953,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,180486145],"unlocks":[47251457,47316993,74186754,161873922],"unmutes":[47382529,47448065,74252290,161939458],"updateconfig":[47710209,47775745,69599233,74317826,162201602,164757505],"username":[49217542,49283078,49348614,65732614,65798150,69533697,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771971,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,91029505,92143621,93585411,109576198,110100481,141950977,146341889,146407432,153157639,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856963,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,173473793,174587909,176619523],"unread":[49545217,69599233,74973185,162988034],"uniqueid":[51511302,69664770,77725697,83689473,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,96665605,112525318,138084357,155713541,156237830,157155329,163774465,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702018,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177],"unavailable":[51642370,51707906,51773442,51838978,75366404,83755011,112656385,112721921,112787457,163840007],"unavailbale":[51707905,51838977,83755009,112721921,163840001],"unvailable":[51773441,51838977],"userfield":[52953094,53018630,84279297,87228417,114688005,131465222,164364289,169672705],"updated":[57606145,60162049,67764225,85655553,91488257,91684865,91750401,91815937,91881473,91947009,117964801,144900097,167968769,173932545,174129153,174194689,174260225,174325761,174391297],"usereventclass":[65273862],"unsigned":[68419585],"underlying":[69206017,160497665],"usally":[69271553,156893185],"url":[69271553,69402625,77725697,96468993,157155329,160169985,160301057],"useful":[69402625,160104449],"unsuccessful":[69599233,162856961],"unavailabe":[69599233,163840001],"ugly":[69730306,179306498],"unqiue":[77725697,96665602,157155329],"unique":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211459,88276995,88342531,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866819,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,133824513,134086657,135856129,135921665,138084353,155713538,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655747,170721283,170786819,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311107,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"usernum":[85524481,89456641,89522177,89587713,89653249,89718785,89784321,89849857,117571590,167837697,171900929,171966465,172032001,172097537,172163073,172228609,172294145],"unlinked":[87031809,89260033,93126657,129433601,169345025,171704321,175570945],"uniqueid1":[87031809,88866817,89260033,93126657,129957894,135856133,169345025,171311105,171704321,175570945],"uniqueid2":[87031809,88866817,89260033,93126657,130023430,135921669,169345025,171311105,171704321,175570945],"usercount":[87293953,131792902,169738241],"unreachable":[90898433,91029506,92143617,141557761,142016513,142082049,146276353,173342721,173473794,174587905],"unmonitored":[90898433,141557761,173342721],"unregistration":[91029505,141819906,173473793],"unregistered":[91029507,92143617,141819906,142016513,146276353,173473795,174587905],"unlimited":[92012545,145686529,174456833],"uncleanly":[92733441,149946369,175177729],"unclean":[92733441,149946369,175177729],"usereventname":[93257729,151322630,175702017],"unassigned":[93585409,152305665,176619521],"unassgned":[93585409,152305665,176619521],"unable":[157089795],"understood":[157089793],"unknnown":[169476097]} \ No newline at end of file diff --git a/docs/fti/FTI_118.json b/docs/fti/FTI_118.json index 3421bc9..377940c 100644 --- a/docs/fti/FTI_118.json +++ b/docs/fti/FTI_118.json @@ -1 +1 @@ -{"version":[131076,196610,262148,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,82509825,88080385,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598594,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652615,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888578,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048962,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"various":[131073],"var_delimiter":[917505,1310721,3473418,4521990,150994945,171048961],"variable":[1114114,3735553,3801089,5242885,11337732,13303812,13369348,13893636,13959172,14024708,14090244,16777220,21823492,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,25690116,25755651,25952259,27721730,31129606,31195142,31522822,43384839,43450375,44957698,45088770,47644679,47710216,48627718,48693254,48758790,50069506,50200578,60555266,60686338,62062594,63832073,64028673,64094211,64815107,69271554,70385666,72155137,72941570,73072641,74317826,77135876,77791235,78839810,79757313,79822849,80347137,80412673,80478209,80543745,83230721,87818243,89325569,92995590,93257734,95485958,103481346,103546886,105775111,109445126,111280133,146079745,146145286,151453697,151650309,152240129,152502278,152633348,154009603,157155335,157810695,158859271,159186945,162004997,162070533,162594821,162660357,162725893,162791429,165609477,170196995,171835396,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174653441],"varname":[1114113,3801093,77791233,105775105,157810689,158859265],"varvalue":[1114113,3866629,158859265],"value":[1114113,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866626,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,5242890,12713985,22085634,22151170,22216706,22282243,22347778,22413314,22478850,22544386,22937601,23592961,23658497,23789570,23855105,23920641,23986177,24051713,24117249,24313857,24379393,24444929,24510465,24707074,24772610,24838146,24903682,25165825,25231367,25296897,25362433,25427969,25493505,25559042,25624578,25690115,25755651,25821185,25886721,25952259,26214401,26279937,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27721731,27918337,28049409,28901377,28966913,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30539782,30605313,30801921,30932993,30998529,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35192838,35258369,35520513,35651585,35782657,35979265,36241409,36569089,36831233,37027841,37289985,37552129,38600705,38666241,39714817,40828929,40960001,42401793,42598401,42729473,42860546,43122689,44236801,44367873,44498945,44892161,44957697,45023233,45088774,45416449,47054849,47448066,47513603,47644679,47710215,47775745,47906817,48103425,48365569,48693254,48758791,49610753,50069505,50135041,52101121,54591498,54657025,54722561,58720264,59179009,59244545,59310081,59375617,59441153,59506689,59834369,59899905,59965441,60030977,60096513,60555265,60620801,60686342,61669378,62062596,62128129,62193674,62259201,62324737,62521345,62586881,62783489,62849025,63766529,63832081,63897601,64094215,64159745,64552964,64815106,68878337,69009409,69074945,70320130,70385666,70582273,71958530,72024066,72089602,72155137,72744962,72876033,74317826,74645506,74711042,76873729,77791234,78774275,78839810,79167489,79626242,79691778,82640897,85983233,86048769,86441985,87818242,88080385,88145922,88211457,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,89063426,89128961,89194498,89260033,89325570,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505218,90570754,90636289,90701825,90767362,90832898,90898433,90963969,91029505,91095041,91160577,91226113,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750401,91815938,91881473,91947009,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536840,92602370,92667906,92733442,92798978,92864515,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420424,95485954,95551490,95617026,95682562,95748097,95813634,95879170,95944706,96010242,96075777,96141313,96206850,96272386,96337922,96403458,96468994,96534530,96600065,96665602,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255426,97320962,97386498,97452033,97517570,97583106,97648642,97714178,97779713,97845250,97910786,97976321,98041857,98107394,98172930,98238465,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221505,99287042,99352578,99418114,99483650,99549185,99614722,99680258,99745794,99811329,99876866,99942401,100007938,100073474,100139009,100204546,100270081,100335618,100401154,100466689,100532226,100597761,100663297,100728834,100794369,100859906,100925442,100990977,101056514,101122050,101187585,101253122,101318657,101384194,101449729,101515266,101580801,101646338,101711874,101777409,101842945,101908481,101974017,102039554,102105089,102170626,102236162,102301697,102367234,102432770,102498305,102563842,102629378,102694913,102760450,102825986,102891523,102957057,103022594,103088129,103153666,103219202,103284737,103350274,103415809,103481346,103546882,103612417,103677954,103743489,103809026,103874562,103940098,104005634,104071170,104136705,104202241,104267778,104333313,104398850,104464385,104529922,104595458,104660994,104726529,104792066,104857602,104923138,104988674,105054210,105119745,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709571,105775107,105840641,105906178,105971714,106037250,106102786,106168321,106233857,106299393,106364930,106430466,106496002,106561538,106627074,106692609,106758146,106823682,106889218,106954754,107020290,107085825,107151362,107216898,107282434,107347969,107413506,107479042,107544578,107610113,107675650,107741186,107806722,107872258,107937793,108003330,108068866,108134401,108199938,108265473,108331010,108396545,108462082,108527618,108593153,108658690,108724226,108789762,108855298,108920834,108986369,109051908,109117442,109182979,109248513,109314050,109379592,109445122,109510657,109576193,109641730,109707265,109772801,109838338,109903873,109969410,110034946,110100482,110166018,110231553,110297090,110362626,110428161,110493698,110559233,110624770,110690305,110755842,110821377,110886913,110952450,111017985,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860739,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989505,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086657,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953283,138018818,138084354,138149890,138215426,138280962,138346498,138412035,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591683,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079752,146145282,146210818,146276354,146341890,146407425,146472962,146538497,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456003,147521538,147587074,147652609,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242435,148307969,148373506,148439041,148504578,148570113,148635650,148701185,148766722,148832257,148897794,148963330,149028866,149094402,149159938,149225474,149291009,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011907,150077442,150142978,150208514,150274050,150339586,150405121,150470658,150536194,150601730,150667266,150732803,150798338,150863875,150929410,151191554,151257090,151322626,151453697,151519233,151650314,152043521,152240129,152305667,152436737,152502273,152567809,152633345,152829953,153026561,153092097,153157633,153223169,153288705,153354241,154009603,154075137,154271746,154402818,154468354,154599425,154730497,154992641,156696577,156827650,156893187,157810690,158793735,158859270,159186948,160497665,160628738,161939458,163840001,163905537,165019649,168361985,168427521,168820737,170131457,170196994,171048961,171180034,171835393,173539332,173604868,173670404,173735941,173801476,173867012,173932548,173998084,174260226,174850049,174915586],"val":[1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,27721733,42860549,50200582,76873729,82640897,102891525,127860741,156893185,165019649],"variables":[5242881,11337730,13303810,13369346,13893634,13959170,14024706,14090242,16777218,21823490,25690113,45023233,45154305,50135041,50266113,60620801,60751873,63832065,64815105,77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,151650305,152502273,157810692,162004995,162070531,162594819,162660355,162725891,162791427,165609475,171835394],"verbose":[5242882,27983878,63832065,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,151650306,154206209,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"verbosecommand":[7798787,35651588,35717126,63832065,74514435,95879170,95944706,151846913,154206217],"visibility":[8519683,38666241,38731777,38797313,67567618,154927107],"visible":[8519682,38731788,38797324,67567619,154927106],"varsetevent":[21364739,58851335,64159745,87818243,145817603,145883139,145948675,146014211,146079746,146145282,166264833,170197002,174653445],"void":[23134210,24641538,24969218,25034754,25100290,25231362,26017794,26083330,26148866,26345474,26476546,26738690,26869762,27000834,27131906,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27983874,28180482,28311554,28377090,29556738,29622274,36044802,36306946,36634626,36896770,37093378,37355522,37486594,37617666,37683202,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38731778,38797314,38862850,38928386,38993922,39059458,45088770,45154306,48431106,48496642,48562178,48627714,48693250,48758786,50200578,50266114,59047938,59113474,59572226,59637762,59703298,59768834,60686338,60751874,60882946,60948482,61014018,61145090,61276162,61341698,62914562,63045634,63111170,63176706,63504386,63569922,90505217,90570753,90767361,90832897,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91815937,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95813633,95879169,95944705,96010241,96206849,96272385,96337921,96403457,96468993,96534529,96665601,97255425,97320961,97386497,97517569,97583105,97648641,97714177,97845249,97910785,98107393,98172929,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99287041,99352577,99418113,99483649,99614721,99680257,99745793,99876865,100007937,100073473,100204545,100335617,100401153,100532225,100728833,100859905,100925441,101056513,101122049,101253121,101384193,101515265,101646337,101711873,102039553,102170625,102236161,102367233,102432769,102563841,102629377,102760449,102825985,102891521,103022593,103153665,103219201,103350273,103481345,103546881,103677953,103809025,103874561,103940097,104005633,104071169,104267777,104398849,104529921,104595457,104660993,104792065,104857601,104923137,104988673,105054209,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105906177,105971713,106037249,106102785,106364929,106430465,106496001,106561537,106627073,106758145,106823681,106889217,106954753,107020289,107151361,107216897,107282433,107413505,107479041,107544577,107675649,107741185,107806721,107872257,108003329,108068865,108199937,108331009,108462081,108527617,108658689,108724225,108789761,108855297,108920833,109051905,109117441,109182977,109314049,109379585,109445121,109641729,109838337,110034945,110100481,110166017,110297089,110362625,110493697,110624769,110755841,110952449,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146472961,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148373505,148504577,148635649,148766721,148897793,148963329,149028865,149094401,149159937,149225473,149356545,149422081,149487617,149553153,149618689,149684225,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150470657,150536193,150601729,150667265,150863873,150929409,159645698,159711234,159776770,159842306,159907842,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160563202,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,170393602,170459138,170524674,170590210,170655746,170786818,170852354,170917890,170983426,171114498,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,174129154,174194690,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514],"virtual":[24117249,24510465,27262977,28901377,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,36241409,36306945,36569089,36634625,37027841,37093377,39714817,40828929,40960001,42598401,43122689,44236801,44367873,44498945,44892161,45023233,45154305,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50135041,50266113,52101121,54591490,54657026,54722561,58720257,60882945,61014017,61276161,61341698,62193666,62259202,62324737,62586881,63111170,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104464385,104595458,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,110231553,110428161,110559233,110690305,110821377,110886913,132055041,148307969,148373505,148701185,148766721,149749761],"verbosity":[27983873,35717121],"voice":[40501249,44695554,44761091,44826628,64028675,64159748,69599235,75628545,77725699,100073473,104857601,104923137,104988673,155648001,157745158,163774465,166133762,170000385,170917890,174456833],"vars":[45154311,50266119,60751878],"varible":[63832066,152502273,152633345],"voicemail":[64028673,64159745,166789121,171507713],"varseteventhandler":[64028673,174653445],"var":[64094209,79167489,109969409,159186946],"versions":[64159745,79691777,111017985,161939457,163774465],"vipcall":[64159747,170131459],"vipcallevent":[64159747,170131459],"var1":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"var2":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"values":[79167490,87228417,109969410,144375809,159186946,169607169],"valid":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"videosupport":[85393409,136118278,167772161]} \ No newline at end of file +{"version":[131076,196610,262148,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,88014849,93585409,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169154,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223175,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459138,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619522,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"various":[131073],"voice":[786435,3604482,6029313,46006273,50200578,50266115,50331652,69664772,75104259,81133569,83230723,105578497,110362625,110428161,110493697,161218561,163315718,169345025,171704322,175570945,176619523],"voicemail":[786433,3932161,69664769,172359681,176619521],"varset":[786433,6225925,176619521],"variable":[786433,6225921,6619138,9240577,9306113,10747909,16842756,18808836,18874372,19398660,19464196,19529732,19595268,22282244,27328516,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,31195140,31260675,31457283,33226754,36634630,36700166,37027846,48889863,48955399,50462722,50593794,53149703,53215240,54132742,54198278,54263814,55574530,55705602,66060290,66191362,67567618,69337097,69599235,70320131,74776578,75890690,77660161,78446594,78577667,79822850,82640900,83296259,84344834,85262337,85327873,85852161,85917697,85983233,86048769,88735745,93323267,94830593,98500614,98762759,100990982,108986370,109051910,111280135,114950150,116785157,151650305,151715846,157024257,157220869,157810689,158072838,158203910,159580163,162725895,163381255,164429831,164757505,167575557,167641093,168165381,168230917,168296453,168361989,171180037,175767555,176619521,177405956,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"void":[983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,28639234,30146562,30474242,30539778,30605314,30736386,31522818,31588354,31653890,31850498,31981570,32243714,32374786,32505858,32636930,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33488898,33685506,33816578,33882114,35061762,35127298,41549826,41811970,42139650,42401794,42598402,42860546,42991618,43122690,43188226,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44236802,44302338,44367874,44433410,44498946,44564482,50593794,50659330,53936130,54001666,54067202,54132738,54198274,54263810,55705602,55771138,64552962,64618498,65077250,65142786,65208322,65273858,66191362,66256898,66387970,66453506,66519042,66650114,66781186,66846722,68419586,68550658,68616194,68681730,69009410,69074946,96010241,96075777,96272385,96337921,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97320961,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101318657,101384193,101449729,101515265,101711873,101777409,101842945,101908481,101974017,102039553,102170625,102760449,102825985,102891521,103022593,103088129,103153665,103219201,103350273,103415809,103612417,103677953,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104792065,104857601,104923137,104988673,105119745,105185281,105250817,105381889,105512961,105578497,105709569,105840641,105906177,106037249,106233857,106364929,106430465,106561537,106627073,106758145,106889217,107020289,107151361,107216897,107544577,107675649,107741185,107872257,107937793,108068865,108134401,108265473,108331009,108396545,108527617,108658689,108724225,108855297,108986369,109051905,109182977,109314049,109379585,109445121,109510657,109576193,109772801,109903873,110034945,110100481,110166017,110297089,110362625,110428161,110493697,110559233,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111411201,111476737,111542273,111607809,111869953,111935489,112001025,112066561,112132097,112263169,112328705,112394241,112459777,112525313,112656385,112721921,112787457,112918529,112984065,113049601,113180673,113246209,113311745,113377281,113508353,113573889,113704961,113836033,113967105,114032641,114163713,114229249,114294785,114360321,114425857,114556929,114622465,114688001,114819073,114884609,114950145,115146753,115343361,115539969,115605505,115671041,115802113,115867649,115998721,116129793,116260865,116457473,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,152043521,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153944065,154075137,154206209,154337281,154468353,154533889,154599425,154664961,154730497,154796033,154927105,154992641,155058177,155123713,155189249,155254785,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,156041217,156106753,156172289,156237825,156434433,156499969,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166133762,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,175964162,176029698,176095234,176160770,176226306,176357378,176422914,176488450,176553986,176685058,176881666,176947202,177012738,177078274,177143810,177209346,177274882,177340418,177471490,177537026,177602562,177668098,177733634,177799170,177864706,177930242,177995778,178061314,178126850,178192386,178257922,178323458,178388994,178454530,178520066,178585602,178651138,178716674,178782210,178847746,179699714,179765250,179896322,179961858,180027394,180092930,180158466,180224002,180289538,180355074],"value":[983043,1048579,1114115,1179651,1245187,1310723,1376259,1441795,1507331,1572867,1638403,1703939,1769475,1835011,1900547,1966083,2031619,2097155,2162691,2228227,2293763,2359299,2424835,2490371,2555907,2621443,2686979,2752515,2818051,2883587,2949123,3014659,3080195,3145731,3211267,3276803,3342339,3407875,3473411,3538947,3604483,3670019,3735555,3801091,3866627,3932163,3997699,4063235,4128771,4194307,4259843,4325379,4390915,4456451,4521987,4587523,4653059,4718595,4784131,4849667,4915203,4980739,5046275,5111811,5177347,5242883,5308419,5373955,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,6619137,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371650,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10747914,18219009,27590658,27656194,27721730,27787267,27852802,27918338,27983874,28049410,28442625,29097985,29163521,29294594,29360129,29425665,29491201,29556737,29622273,29818881,29884417,29949953,30015489,30212098,30277634,30343170,30408706,30670849,30736391,30801921,30867457,30932993,30998529,31064066,31129602,31195139,31260675,31326209,31391745,31457283,31719425,31784961,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33226755,33423361,33554433,34406401,34471937,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36044806,36110337,36306945,36438017,36503553,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40697862,40763393,41025537,41156609,41287681,41484289,41746433,42074113,42336257,42532865,42795009,43057153,44105729,44171265,45219841,46333953,46465025,47906817,48103425,48234497,48365570,48627713,49741825,49872897,50003969,50397185,50462721,50528257,50593798,50921473,52559873,52953090,53018627,53149703,53215239,53280769,53411841,53608449,53870593,54198278,54263815,55115777,55574529,55640065,57606145,60096522,60162049,60227585,64225288,64684033,64749569,64815105,64880641,64946177,65011713,65339393,65404929,65470465,65536001,65601537,66060289,66125825,66191366,67174402,67567620,67633153,67698698,67764225,67829761,68026369,68091905,68288513,68354049,69271553,69337105,69402625,69599239,69664769,70057988,70320130,74383361,74514433,74579969,75825154,75890690,76087297,77463554,77529090,77594626,77660161,78249986,78381057,79822850,80150530,80216066,82378753,83296258,84279299,84344834,84672513,85131266,85196802,88145921,91488257,91553793,91947009,93323266,93585409,93650946,93716481,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94568450,94633985,94699522,94765057,94830594,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010242,96075778,96141313,96206849,96272386,96337922,96403457,96468993,96534529,96600065,96665601,96731137,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255425,97320962,97386497,97452033,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041864,98107394,98172930,98238466,98304002,98369539,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925448,100990978,101056514,101122050,101187586,101253121,101318658,101384194,101449730,101515266,101580801,101646337,101711874,101777410,101842946,101908482,101974018,102039554,102105089,102170626,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760450,102825986,102891522,102957057,103022594,103088130,103153666,103219202,103284737,103350274,103415810,103481345,103546881,103612418,103677954,103743489,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726529,104792066,104857602,104923138,104988674,105054209,105119746,105185282,105250818,105316353,105381890,105447425,105512962,105578498,105644033,105709570,105775105,105840642,105906178,105971713,106037250,106102785,106168321,106233858,106299393,106364930,106430466,106496001,106561538,106627074,106692609,106758146,106823681,106889218,106954753,107020290,107085825,107151362,107216898,107282433,107347969,107413505,107479041,107544578,107610113,107675650,107741186,107806721,107872258,107937794,108003329,108068866,108134402,108199937,108265474,108331010,108396547,108462081,108527618,108593153,108658690,108724226,108789761,108855298,108920833,108986370,109051906,109117441,109182978,109248513,109314050,109379586,109445122,109510658,109576194,109641729,109707265,109772802,109838337,109903874,109969409,110034946,110100482,110166018,110231553,110297090,110362626,110428162,110493698,110559234,110624769,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214595,111280131,111345665,111411202,111476738,111542274,111607810,111673345,111738881,111804417,111869954,111935490,112001026,112066562,112132098,112197633,112263170,112328706,112394242,112459778,112525314,112590849,112656386,112721922,112787458,112852993,112918530,112984066,113049602,113115137,113180674,113246210,113311746,113377282,113442817,113508354,113573890,113639425,113704962,113770497,113836034,113901569,113967106,114032642,114098177,114163714,114229250,114294786,114360322,114425858,114491393,114556932,114622466,114688003,114753537,114819074,114884616,114950146,115015681,115081217,115146754,115212289,115277825,115343362,115408897,115474434,115539970,115605506,115671042,115736577,115802114,115867650,115933185,115998722,116064257,116129794,116195329,116260866,116326401,116391937,116457474,116523009,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431299,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560065,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657217,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523843,143589378,143654914,143720450,143785986,143851522,143917058,143982595,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162243,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650312,151715842,151781378,151846914,151912450,151977985,152043522,152109057,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026563,153092098,153157634,153223169,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812995,153878529,153944066,154009601,154075138,154140673,154206210,154271745,154337282,154402817,154468354,154533890,154599426,154664962,154730498,154796034,154861569,154927106,154992642,155058178,155123714,155189250,155254786,155320321,155385858,155451394,155516930,155582467,155648002,155713538,155779074,155844610,155910146,155975681,156041218,156106754,156172290,156237826,156303363,156368898,156434435,156499970,156762114,156827650,156893186,157024257,157089793,157220874,157614081,157810689,157876227,158007297,158072833,158138369,158203905,158400513,158597121,158662657,158728193,158793729,158859265,158924801,159580163,159645697,159842306,159973378,160038914,160169985,160301057,160563201,162267137,162398210,162463747,163381250,164364295,164429830,164757508,166068225,166199298,167510018,169410561,169476097,170590209,173932545,173998081,174391297,175702017,175767554,176619521,176750594,177405953,179109891,179175427,179240963,179306500,179372035,179437571,179503107,179568643,179830786,180420609,180486146],"varseteventhandler":[6225927,69533697,180224006],"varsetevent":[6225921,26869763,64356359,69664769,93323267,151388163,151453699,151519235,151584771,151650306,151715842,171835393,175767562,180224005],"var_delimiter":[6422529,6815745,8978442,10027014,156565505,176619521],"varname":[6619137,9306117,83296257,111280129,163381249,164429825],"varvalue":[6619137,9371653,164429825],"val":[7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,33226757,48365573,55705606,82378753,88145921,108396549,133431301,162463745,170590209],"values":[10747905,30932993,69337089,84672514,92733441,93454337,115474434,149946369,151912449,157220865,157548545,164757506,175177729,175898625],"variables":[10747905,16842754,18808834,18874370,19398658,19464194,19529730,19595266,22282242,27328514,31195137,50528257,50659329,55640065,55771137,66125825,66256897,69337089,70320129,83296258,85262337,85327873,85852161,85917697,85983233,86048769,88735745,111280130,116785153,157220865,158072833,163381252,167575555,167641091,168165379,168230915,168296451,168361987,171180035,177405954],"verbose":[10747906,33488902,69337089,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822209,155516929,157220866,159776769,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"verbosecommand":[13303811,41156612,41222150,69337089,80019459,101384194,101449730,157417473,159776777],"visibility":[14024707,44171265,44236801,44302337,73072642,160497667],"visible":[14024706,44236812,44302348,73072643,160497666],"virtual":[29622273,30015489,32768001,34406401,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41746433,41811969,42074113,42139649,42532865,42598401,45219841,46333953,46465025,48103425,48627713,49741825,49872897,50003969,50397185,50528257,50659329,50921473,52559873,53280769,53411841,53608449,53870593,55115777,55640065,55771137,57606145,60096514,60162050,60227585,64225281,66387969,66519041,66781185,66846722,67698690,67764226,67829761,68091905,68616194,102694913,102957057,103284737,103481345,103546881,103743489,104726529,105054209,105316353,105447425,105644033,105775105,105971713,106102785,106168321,106299393,106496001,106692609,106823681,106954753,107085825,107282433,107347969,107413505,107479041,107610113,107806721,108003329,108199937,108462081,108593153,108789761,108920833,109117441,109248513,109641729,109707265,109838337,109969409,110100482,110231553,110624769,111345665,111673345,111738881,111804417,112197633,112590849,112852993,113115137,113442817,113639425,113770497,113901569,114098177,114491393,114753537,115015681,115081217,115212289,115277825,115408897,115736577,115933185,116064257,116195329,116326401,116391937,137625601,153878529,153944065,154271745,154337281,155320321],"verbosity":[33488897,41222145],"vars":[50659335,55771143,66256902],"varible":[69337090,158072833,158203905],"var":[69599233,84672513,115474433,164757506],"versions":[69664769,85196801,116523009,167510017,169345025],"vipcall":[69664771,175702019],"vipcallevent":[69664771,175702019],"var1":[83296258,85262337,85327873,85852161,85917697,85983233,86048769,88735745,111280130,116785153,163381250,167575553,167641089,168165377,168230913,168296449,168361985,171180033],"var2":[83296258,85262337,85327873,85852161,85917697,85983233,86048769,88735745,111280130,116785153,163381250,167575553,167641089,168165377,168230913,168296449,168361985,171180033],"valid":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"videosupport":[90898433,141688838,173342721]} \ No newline at end of file diff --git a/docs/fti/FTI_119.json b/docs/fti/FTI_119.json index 820b364..8111653 100644 --- a/docs/fti/FTI_119.json +++ b/docs/fti/FTI_119.json @@ -1 +1 @@ -{"welcome":[131073,196609],"www":[196610],"wchar_t":[3145729,3276801,3342337,3473409,4521985,25821185,25886721,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,28049409,89587714],"waits":[5242888,25493505,25559041,25624577,25821186,25886722,28049409,63832067,64749571,64880644,151650312,152567810,154271745],"waiting":[5242882,25821185,25886721,44171265,63635457,63832065,64094210,64225281,64880642,69533697,77463553,77791233,80805889,83623937,83689473,84410370,85721089,85786625,85917697,86507523,88801281,104398849,105250817,115343361,133103617,133300229,137560065,139919362,140115970,140443649,149618693,151650306,152567809,157483011,157810690,163053569,166002689,166068225,166789122,168099841,168165377,168296449,168886275,173867010,174981121],"waitfordigit":[5242881,28049413,151650305],"waitfordigitcommand":[7864323,35782660,35848199,35913735,63832065,67108870,74579971,96010242,151846913,154271755],"write":[8454145,37617669,63766529,64094209,151650305,154861569,159186945],"writeex":[8454145,37683205,154861569],"warning":[8519684,38862856,38928392,38993929,39059465,67633157,154927108,154992641],"want":[12713985,29818881,29884417,35454977,48758785,64094210,70582273,157810690,159186945],"waitsleepjoin":[22806529,63045633,174915585],"work":[22872065,48758786,63569921,64094210,159186946,174981121],"wait":[25559041,25624577,25886721,28049410,30932993,30998529,31391745,31981569,32047105,32178177,35913729,60096513,63832066,66322433,66387969,72876033,73007105,73203713,73269249,74579969,85852161,88080386,92864513,93192193,93388801,93454337,96010241,137494533,146604033,146669569,152436737,152567809,152829955,152895491,154271745,168230913,171048962],"wav":[26214401,26279937,32374785,32440321,73334785,77725697,93716481,104923137,152961025,157745153],"worker":[28639233,28770305,63635457,72351745,91422721,151781377],"written":[40501250,44695553,44761089,44826625,64094209,68157441,75628545,77725697,100073473,104857601,155648002,157745153,157810689],"writes":[44695553,44761089,44826625,69599235,157745155],"wraps":[63766529,151322625],"wish":[64094209,157810689],"wheather":[72220673,90308609,151584769],"wrapuptime":[75104257,97714181,155123713],"weight":[86507525,140443657,168886277],"writeonly":[91291649,91357185,91422721,95813633,96206849,96534529,140771329]} \ No newline at end of file +{"welcome":[131073,196609],"www":[196610],"wchar_t":[8650753,8781825,8847361,8978433,10027009,31326209,31391745,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423361,33554433,95092738],"waits":[10747912,30998529,31064065,31129601,31326210,31391746,33554433,69337091,70254595,70385668,157220872,158138370,159842305],"waiting":[10747906,31326209,31391745,49676289,69140481,69337089,69599234,69730305,70385666,75038721,82968577,83296257,86310913,89128961,89194497,89915394,91226113,91291649,91422721,92012547,94306305,109903873,110755841,120848385,138674177,138870789,143130625,145489922,145686530,146014209,155189253,157220866,158138369,163053571,163381250,168624129,171573249,171638785,172359682,173670401,173735937,173867009,174456835,179437570,180551681],"waitfordigit":[10747905,33554437,157220865],"waitfordigitcommand":[13369347,41287684,41353223,41418759,69337089,72613894,80084995,101515266,157417473,159842315],"write":[13959169,43122693,69271553,69599233,157220865,160432129,164757505],"writeex":[13959169,43188229,160432129],"warning":[14024708,44367880,44433416,44498953,44564489,73138181,160497668,160563201],"want":[18219009,35323905,35389441,40960001,54263809,69599234,76087297,163381250,164757505],"waitsleepjoin":[28311553,68550657,180486145],"work":[28377089,54263810,69074945,69599234,164757506,180551681],"wait":[31064065,31129601,31391745,33554434,36438017,36503553,36896769,37486593,37552129,37683201,37748737,41418753,65601537,69337090,71827457,71892994,78381057,78512129,78708737,78774273,80084993,91357185,93585410,98369537,98697217,98893825,98959361,101515265,143065093,152174593,152240129,158007297,158138369,158400515,158466052,159842305,173801473,176619522],"wav":[31719425,31784961,37879809,37945345,78839809,83230721,99221505,110428161,158531585,163315713],"worker":[34144257,34275329,69140481,77856769,96927745,157351937],"written":[46006274,50200577,50266113,50331649,69599233,73662465,81133569,83230721,105578497,110362625,161218562,163315713,163381249],"writes":[50200577,50266113,50331649,75104259,163315715],"wraps":[69271553,156893185],"wish":[69599233,163381249],"wheather":[77725697,95813633,157155329],"wrapuptime":[80609281,103219205,160694273],"weight":[92012549,146014217,174456837],"wink":[93454338,151912450,175898626],"writeonly":[96796673,96862209,96927745,101318657,101711873,102039553,146341889]} \ No newline at end of file diff --git a/docs/fti/FTI_120.json b/docs/fti/FTI_120.json index 48ace48..d2579cf 100644 --- a/docs/fti/FTI_120.json +++ b/docs/fti/FTI_120.json @@ -1 +1 @@ -{"xmlfilepath":[36503558],"xml":[63897601,154533889],"xxxxxx":[64094213,79167489,109969409,159186950]} \ No newline at end of file +{"xmlfilepath":[42008582],"xml":[69402625,160104449],"xxxxxx":[69599237,84672513,115474433,164757510]} \ No newline at end of file diff --git a/docs/fti/FTI_121.json b/docs/fti/FTI_121.json index 67647f1..1cee112 100644 --- a/docs/fti/FTI_121.json +++ b/docs/fti/FTI_121.json @@ -1 +1 @@ -{"yes":[40239105,64028673,64159746,79167489,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,110100481,132448257,159186945,159776769,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594818,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"yellow":[81002497,87949313,115802113,146210817,163250177,170328065]} \ No newline at end of file +{"yes":[786433,1114113,45744129,69664770,84672513,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,115605505,138018817,164757505,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521],"yellow":[86507521,93454337,121307137,151781377,168820737,175898625]} \ No newline at end of file diff --git a/docs/fti/FTI_122.json b/docs/fti/FTI_122.json index da3a827..28ab218 100644 --- a/docs/fti/FTI_122.json +++ b/docs/fti/FTI_122.json @@ -1 +1 @@ -{"zapappi":[196609],"zapdialoffhookaction":[12779523,49086471,49152009,64094210,70713350,79233027,110231554,110297090,110362626,157548545,159252492],"zapdndoffaction":[12845059,49217543,49283080,64094209,70778886,79298563,110428162,110493698,157548545,159318027],"zapdndonaction":[12910595,49348615,49414152,64094211,70844422,79364099,110559234,110624770,157548545,159318017,159383564],"zaphangupaction":[12976131,49479687,49545224,64094210,70909958,79429635,110690306,110755842,157548545,159449100],"zapshowchannelsaction":[13041667,49610756,49676294,64028674,64094210,64159746,79495171,110821378,157614081,159514634,170262530,170328066,174718977,174784513],"zaptransferaction":[13107203,49741830,64094210,79560707,110886914,110952450,157548545,159580170],"zapshowchannelscompleteevent":[21430275,58916871,64028673,64094209,64159746,87883779,159514626,169213953,170262538,174718982],"zapshowchannelsevent":[21495811,58982407,64028674,64094209,64159746,87949315,146210818,146276354,146341891,159514626,169213953,170262529,170328074,174587905,174784518],"zap":[49152001,49283073,49414145,49545218,64028677,64094216,64159749,70713345,70778881,70844417,70909954,79233025,79298561,79364097,79429633,79560705,87949314,110362625,110493697,110624769,110755841,110952449,146210817,146276353,159252483,159318019,159383555,159449092,159514627,159580162,160366593,160432129,161808385,163184641,163250177,165347329,170262529,170328067,174718977,174784513],"zapchannel":[49152006,49283078,49414150,49545222,79233025,79298561,79364097,79429633,79560705,110362629,110493701,110624773,110755845,110952453,159252481,159318017,159383553,159449089,159580161],"zapshowchannelscompleteeventhandler":[64028673,174718981],"zapshowchannelseventhandler":[64028673,174784517],"zapdialoffhook":[79233025,110231553,159252481],"zapdndoff":[79298561,110428161,159318017],"zapdndon":[79364097,110559233,159383553],"zaphangup":[79429633,110690305,159449089],"zapshowchannels":[79495169,110821377,159514625],"zaptransfer":[79560705,110886913,159580161],"zapata":[87949313,146276353,170328065],"zero":[88080385,147062785,171048961]} \ No newline at end of file +{"zapappi":[196609],"zap":[786437,1703937,1769473,3014657,6291457,6356993,54657025,54788097,54919169,55050242,69599240,69664773,76218369,76283905,76349441,76414978,84738049,84803585,84869121,84934657,85065729,93454339,115867649,115998721,116129793,116260865,116457473,151781377,151846913,151912449,164823043,164888579,164954115,165019652,165085187,165150722,168755201,168820737,170917889,175833089,175898628,176619525],"zapshowchannelsevent":[786434,6160385,6291458,27000835,64487431,69599233,69664770,93454339,151781378,151846914,151912450,165085186,174784513,175833089,175898634,176619522,180355077],"zapshowchannels":[786433,6291461,85000193,116326401,165085185,176619521],"zapshowchannelsaction":[786434,6291457,6356993,18546691,55115780,55181318,69599234,69664770,85000195,116326402,163184641,165085194,175833090,175898626,176619522],"zapshowchannelscomplete":[786433,6356997,176619521],"zapshowchannelscompleteevent":[786433,6356994,26935299,64421895,69599233,69664770,93388803,165085186,174784513,175833098,176619521,180289541],"zapshowchannelseventhandler":[6291463,69533697,180355078],"zapshowchannelscompleteeventhandler":[6356999,69533697,180289542],"zapdialoffhookaction":[18284547,54591495,54657033,69599234,76218374,84738051,115736578,115802114,115867650,163119105,164823052],"zapdndoffaction":[18350083,54722567,54788104,69599233,76283910,84803587,115933186,115998722,163119105,164888587],"zapdndonaction":[18415619,54853639,54919176,69599235,76349446,84869123,116064258,116129794,163119105,164888577,164954124],"zaphangupaction":[18481155,54984711,55050248,69599234,76414982,84934659,116195330,116260866,163119105,165019660],"zaptransferaction":[18612227,55246854,69599234,85065731,116391938,116457474,163119105,165150730],"zapchannel":[54657030,54788102,54919174,55050246,84738049,84803585,84869121,84934657,85065729,115867653,115998725,116129797,116260869,116457477,164823041,164888577,164954113,165019649,165150721],"zapdialoffhook":[84738049,115736577,164823041],"zapdndoff":[84803585,115933185,164888577],"zapdndon":[84869121,116064257,164954113],"zaphangup":[84934657,116195329,165019649],"zaptransfer":[85065729,116391937,165150721],"zapata":[93454337,151846913,175898625],"zero":[93585409,152633345,176619521]} \ No newline at end of file diff --git a/docs/fti/FTI_97.json b/docs/fti/FTI_97.json index 565999e..d4def5d 100644 --- a/docs/fti/FTI_97.json +++ b/docs/fti/FTI_97.json @@ -1 +1 @@ -{"automatically":[1,5242881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,27328513,34144257,41484289,41549825,62062593,63832065,68550658,73924609,94961666,151650305,153550850,156172290,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"asternet":[65537,131073,196614,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900550,1966086,2031621,2097157,2162694,2228230,2293766,2359302,2424838,2490374,2555909,2621446,2686982,2752518,2818054,2883590,2949126,3014661,3080197,3145734,3211269,3276806,3342342,3407878,3473414,3538949,3604485,3670022,3735557,3801093,3866629,3932166,3997702,4063238,4128774,4194310,4259846,4325382,4390918,4456453,4521990,4587526,4653062,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937612,23003155,23068684,23134214,23199757,23265285,23330821,23396357,23461893,23527431,23592967,23658503,23724040,23789573,23855109,23920645,23986181,24051717,24117255,24182789,24248326,24313864,24379399,24444936,24510471,24576005,24641541,24707078,24772614,24838150,24903686,24969221,25034757,25100293,25165830,25231365,25296901,25362437,25427975,25493509,25559045,25624581,25690117,25755654,25821189,25886725,25952261,26017797,26083333,26148871,26214405,26279941,26345477,26411013,26476549,26542085,26607621,26673157,26738693,26804229,26869765,26935301,27000837,27066373,27131909,27197445,27262992,27328518,27394055,27459590,27525126,27590662,27656198,27721733,27787269,27852805,27918341,27983877,28049413,28114949,28180490,28246024,28311558,28377094,28442629,28508168,28573710,28639237,28704774,28770309,28835850,28901383,28966920,29032455,29097989,29163527,29229061,29294599,29360133,29425669,29491207,29556741,29622277,29687813,29753349,29818885,29884421,29949959,30015493,30081029,30146567,30212101,30277637,30343175,30408709,30474247,30539781,30605319,30670853,30736389,30801927,30867461,30932997,30998533,31064071,31129605,31195141,31260679,31326213,31391749,31457287,31522821,31588359,31653893,31719429,31784967,31850501,31916039,31981573,32047109,32112647,32178181,32243718,32309255,32374789,32440325,32505863,32571397,32636933,32702471,32768006,32833541,32899077,32964613,33030151,33095685,33161221,33226759,33292293,33357829,33423367,33488901,33554437,33619975,33685509,33751045,33816583,33882117,33947655,34013189,34078727,34144261,34209799,34275333,34340871,34406405,34471943,34537477,34603015,34668549,34734087,34799621,34865157,34930695,34996229,35061765,35127303,35192838,35258375,35323909,35389445,35454981,35520519,35586054,35651591,35717125,35782663,35848197,35913733,35979276,36044806,36110341,36175877,36241420,36306950,36372485,36438023,36503558,36569100,36634630,36700165,36765702,36831240,36896779,36962309,37027852,37093382,37158917,37224454,37289991,37355526,37421064,37486597,37552133,37617669,37683205,37748741,37814279,37879815,37945352,38010888,38076423,38141959,38207496,38273032,38338567,38404103,38469640,38535176,38600709,38666252,38731782,38797318,38862855,38928391,38993928,39059464,39124997,39190533,39256069,39321605,39387141,39452677,39518213,39583749,39649285,39714823,39780357,39845895,39911429,39976979,40042501,40108037,40173573,40239109,40304645,40370181,40435717,40501253,40566789,40632325,40697861,40763399,40828935,40894470,40960007,41025541,41091077,41156614,41222149,41287687,41353221,41418759,41484293,41549830,41615365,41680902,41746437,41811974,41877509,41943047,42008581,42074117,42139653,42205189,42270726,42336261,42401797,42467333,42532869,42598407,42663941,42729477,42795013,42860549,42926085,42991621,43057157,43122695,43188229,43253765,43319301,43384837,43450373,43515909,43581445,43646981,43712518,43778053,43843589,43909125,43974661,44040197,44105733,44171269,44236807,44302341,44367879,44433413,44498951,44564485,44630021,44695557,44761093,44826629,44892167,44957703,45023238,45088775,45154310,45219845,45285384,45350917,45416455,45481989,45547525,45613061,45678597,45744133,45809669,45875205,45940741,46006282,46071813,46137349,46202885,46268421,46333957,46399493,46465032,46530565,46596105,46661637,46727173,46792709,46858246,46923781,46989318,47054855,47120389,47185925,47251461,47316997,47382533,47448069,47513605,47579141,47644677,47710213,47775751,47841285,47906823,47972357,48037894,48103431,48168965,48234501,48300038,48365575,48431110,48496647,48562184,48627721,48693258,48758789,48824325,48889863,48955400,49020936,49086469,49152007,49217541,49283078,49348613,49414150,49479685,49545222,49610759,49676293,49741829,49807365,49872901,49938438,50003976,50069511,50135046,50200583,50266118,50331656,50397192,50462725,50528264,50593800,50659336,50724870,50790408,50855944,50921480,50987016,51052552,51118088,51183624,51249160,51314696,51380232,51445768,51511304,51576840,51642376,51707912,51773448,51838984,51904520,51970056,52035592,52101125,52166664,52232200,52297736,52363272,52428808,52494344,52559880,52625416,52690952,52756488,52822024,52887560,52953096,53018632,53084168,53149704,53215240,53280776,53346312,53411848,53477384,53542920,53608456,53673992,53739528,53805061,53870600,53936136,54001672,54067208,54132744,54198280,54263816,54329352,54394888,54460424,54525960,54591493,54657029,54722565,54788101,54853638,54919176,54984712,55050248,55115784,55181320,55246856,55312392,55377928,55443464,55509000,55574536,55640072,55705608,55771144,55836680,55902216,55967752,56033288,56098824,56164360,56229896,56295432,56360968,56426504,56492040,56557576,56623112,56688648,56754184,56819720,56885256,56950790,57016328,57081862,57147398,57212934,57278470,57344006,57409542,57475080,57540616,57606152,57671688,57737224,57802760,57868296,57933832,57999368,58064904,58130440,58195976,58261512,58327048,58392584,58458120,58523656,58589192,58654728,58720265,58785800,58851336,58916872,58982408,59047942,59113478,59179020,59244558,59310087,59375623,59441159,59506693,59572231,59637765,59703301,59768838,59834378,59899923,59965450,60030988,60096524,60162053,60227589,60293126,60358661,60424197,60489736,60555271,60620806,60686343,60751878,60817413,60882950,60948490,61014026,61079568,61145094,61210629,61276166,61341706,61407242,61472773,61538309,61603845,61669383,61734917,61800453,61865989,61931525,61997062,62062597,62128134,62193669,62259205,62324743,62390277,62455814,62521350,62586887,62652421,62717957,62783493,62849029,62914565,62980101,63045637,63111173,63176709,63242245,63307781,63373317,63438853,63504392,63569925,63635461,63700995,63766532,63832067,63897604,63963139,64028675,64094212,64159747,64225283,64290819,64356354,64421890,64487426,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601538,65667074,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322434,66387970,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912258,66977794,67043330,67108866,67174402,67239938,67305474,67371010,67436546,67502082,67567618,67633154,67698690,67764226,67829762,67895298,67960834,68026370,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009410,69074946,69140482,69206018,69271554,69337090,69402626,69468162,69533698,69599234,69664770,69730306,69795842,69861378,69926914,69992450,70057986,70123522,70189058,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041026,71106562,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260037,89325573,89391110,89456646,89522181,89587717,89653253,89718790,89784326,89849862,89915398,89980934,90046470,90112005,90177541,90243078,90308613,90374149,90439685,90505222,90570758,90636293,90701830,90767366,90832902,90898438,90963973,91029509,91095045,91160581,91226118,91291653,91357189,91422725,91488262,91553798,91619333,91684869,91750405,91815941,91881477,91947013,92012549,92078085,92143621,92209157,92274693,92340229,92405765,92471301,92536837,92602373,92667909,92733445,92798981,92864517,92930053,92995589,93061125,93126661,93192197,93257734,93323269,93388805,93454341,93519877,93585413,93650949,93716485,93782021,93847557,93913093,93978629,94044165,94109701,94175237,94240773,94306309,94371845,94437381,94502917,94568453,94633989,94699525,94765061,94830597,94896133,94961669,95027205,95092741,95158277,95223813,95289349,95354885,95420421,95485957,95551493,95617029,95682565,95748101,95813637,95879173,95944709,96010245,96075781,96141317,96206854,96272390,96337925,96403461,96468997,96534534,96600070,96665606,96731141,96796678,96862214,96927750,96993286,97058822,97124358,97189893,97255429,97320965,97386501,97452037,97517573,97583109,97648645,97714181,97779717,97845253,97910789,97976325,98041861,98107398,98172934,98238470,98304006,98369542,98435078,98500614,98566150,98631686,98697222,98762758,98828294,98893830,98959366,99024902,99090438,99155974,99221510,99287045,99352581,99418117,99483653,99549190,99614726,99680262,99745798,99811333,99876869,99942405,100007941,100073477,100139013,100204549,100270086,100335622,100401158,100466694,100532230,100597766,100663302,100728838,100794374,100859910,100925446,100990982,101056518,101122054,101187590,101253126,101318662,101384198,101449734,101515270,101580806,101646342,101711878,101777414,101842950,101908486,101974022,102039558,102105094,102170629,102236165,102301702,102367237,102432773,102498310,102563845,102629381,102694918,102760453,102825989,102891525,102957061,103022597,103088133,103153669,103219205,103284741,103350277,103415813,103481349,103546885,103612421,103677957,103743493,103809029,103874565,103940101,104005637,104071173,104136709,104202245,104267781,104333317,104398853,104464389,104529926,104595462,104660997,104726533,104792069,104857605,104923141,104988677,105054213,105119749,105185285,105250821,105316357,105381893,105447429,105512965,105578501,105644037,105709573,105775109,105840645,105906181,105971717,106037253,106102789,106168325,106233861,106299397,106364933,106430469,106496005,106561541,106627077,106692614,106758150,106823686,106889222,106954758,107020294,107085829,107151365,107216901,107282437,107347974,107413510,107479046,107544582,107610118,107675654,107741190,107806726,107872262,107937797,108003333,108068869,108134406,108199942,108265478,108331014,108396549,108462085,108527621,108593157,108658694,108724229,108789765,108855301,108920837,108986373,109051909,109117445,109182981,109248517,109314053,109379589,109445125,109510662,109576198,109641733,109707269,109772805,109838341,109903877,109969413,110034949,110100485,110166021,110231557,110297093,110362629,110428165,110493701,110559237,110624773,110690309,110755845,110821381,110886917,110952453,111017989,111083525,111149061,111214597,111280133,111345669,111411205,111476742,111542277,111607813,111673349,111738886,111804422,111869958,111935494,112001029,112066566,112132101,112197637,112263173,112328709,112394245,112459781,112525317,112590853,112656389,112721925,112787461,112852997,112918533,112984069,113049605,113115141,113180677,113246213,113311749,113377286,113442821,113508358,113573894,113639429,113704966,113770502,113836038,113901573,113967109,114032646,114098182,114163718,114229254,114294790,114360326,114425861,114491397,114556933,114622469,114688005,114753541,114819077,114884614,114950149,115015686,115081221,115146757,115212293,115277829,115343365,115408901,115474438,115539974,115605510,115671046,115736582,115802117,115867654,115933190,115998726,116064262,116129798,116195334,116260870,116326406,116391942,116457478,116523014,116588550,116654086,116719622,116785158,116850694,116916230,116981766,117047302,117112838,117178374,117243910,117309446,117374982,117440518,117506054,117571590,117637126,117702662,117768198,117833734,117899270,117964806,118030342,118095878,118161414,118226950,118292486,118358022,118423558,118489094,118554630,118620166,118685702,118751238,118816774,118882310,118947846,119013382,119078918,119144454,119209990,119275526,119341062,119406598,119472134,119537670,119603206,119668742,119734278,119799814,119865350,119930886,119996422,120061958,120127494,120193030,120258566,120324102,120389638,120455174,120520710,120586246,120651782,120717318,120782854,120848390,120913926,120979462,121044998,121110534,121176070,121241606,121307142,121372678,121438214,121503750,121569286,121634822,121700358,121765894,121831430,121896966,121962502,122028038,122093574,122159110,122224646,122290182,122355718,122421254,122486790,122552326,122617862,122683398,122748934,122814470,122880006,122945542,123011078,123076614,123142150,123207686,123273222,123338758,123404294,123469830,123535366,123600902,123666438,123731974,123797510,123863045,123928582,123994118,124059654,124125190,124190726,124256262,124321798,124387334,124452870,124518406,124583942,124649478,124715014,124780550,124846086,124911622,124977158,125042694,125108230,125173766,125239302,125304838,125370374,125435910,125501446,125566982,125632518,125698054,125763590,125829126,125894662,125960197,126025734,126091270,126156805,126222342,126287877,126353414,126418950,126484486,126550022,126615558,126681094,126746630,126812166,126877702,126943238,127008774,127074310,127139846,127205382,127270918,127336454,127401990,127467526,127533062,127598597,127664133,127729669,127795205,127860741,127926278,127991813,128057349,128122885,128188421,128253957,128319494,128385030,128450565,128516101,128581638,128647173,128712709,128778246,128843782,128909318,128974854,129040389,129105925,129171461,129236997,129302534,129368070,129433606,129499141,129564677,129630213,129695749,129761285,129826821,129892357,129957893,130023429,130088965,130154501,130220037,130285573,130351109,130416646,130482182,130547718,130613254,130678790,130744326,130809862,130875398,130940934,131006470,131072006,131137542,131203078,131268614,131334150,131399686,131465222,131530758,131596294,131661829,131727365,131792901,131858437,131923973,131989509,132055045,132120581,132186117,132251653,132317189,132382725,132448261,132513797,132579334,132644870,132710406,132775942,132841478,132907014,132972550,133038086,133103621,133169157,133234693,133300229,133365766,133431302,133496838,133562374,133627910,133693446,133758982,133824517,133890054,133955589,134021125,134086661,134152197,134217734,134283269,134348805,134414341,134479877,134545414,134610950,134676486,134742022,134807558,134873094,134938630,135004165,135069701,135135237,135200773,135266309,135331845,135397382,135462917,135528453,135593990,135659525,135725062,135790598,135856134,135921670,135987205,136052742,136118278,136183813,136249349,136314885,136380421,136445957,136511493,136577030,136642566,136708102,136773638,136839174,136904710,136970246,137035782,137101318,137166854,137232389,137297925,137363461,137428997,137494533,137560069,137625605,137691141,137756677,137822213,137887749,137953285,138018821,138084357,138149893,138215429,138280965,138346501,138412037,138477573,138543110,138608645,138674181,138739717,138805253,138870789,138936325,139001861,139067397,139132933,139198469,139264005,139329541,139395077,139460613,139526149,139591685,139657221,139722757,139788293,139853829,139919365,139984901,140050437,140115973,140181509,140247045,140312581,140378117,140443653,140509189,140574725,140640261,140705797,140771333,140836869,140902405,140967941,141033477,141099013,141164549,141230085,141295621,141361158,141426694,141492230,141557766,141623302,141688838,141754374,141819910,141885446,141950982,142016518,142082054,142147590,142213126,142278662,142344198,142409734,142475270,142540806,142606342,142671878,142737414,142802950,142868486,142934022,142999558,143065094,143130630,143196166,143261702,143327238,143392774,143458310,143523846,143589382,143654918,143720454,143785990,143851526,143917062,143982598,144048134,144113670,144179206,144244741,144310278,144375813,144441350,144506885,144572421,144637957,144703493,144769030,144834566,144900101,144965638,145031173,145096710,145162246,145227782,145293318,145358854,145424390,145489926,145555461,145620997,145686533,145752070,145817606,145883142,145948678,146014214,146079749,146145285,146210821,146276357,146341894,146407430,146472966,146538502,146604037,146669573,146735109,146800645,146866181,146931717,146997253,147062789,147128325,147193861,147259397,147324933,147390469,147456005,147521541,147587077,147652614,147718149,147783685,147849221,147914757,147980293,148045829,148111365,148176901,148242437,148307974,148373510,148439046,148504581,148570118,148635654,148701190,148766726,148832262,148897797,148963333,149028870,149094406,149159942,149225478,149291013,149356549,149422085,149487621,149553157,149618693,149684229,149749765,149815301,149880837,149946373,150011909,150077445,150142981,150208518,150274054,150339590,150405126,150470662,150536198,150601734,150667270,150732805,150798341,150863877,150929413,150994951,151060486,151126022,151191562,151257095,151322631,151388167,151453702,151519238,151584774,151650310,151715846,151781383,151846957,151912456,151977992,152043527,152109063,152174599,152240135,152305671,152371207,152436743,152502279,152567816,152633351,152698887,152764423,152829959,152895495,152961031,153026567,153092103,153157639,153223175,153288711,153354247,153419783,153485319,153550855,153616391,153681927,153747463,153812999,153878535,153944071,154009607,154075143,154140679,154206215,154271751,154337286,154402823,154468359,154533894,154599431,154664967,154730503,154796038,154861575,154927110,154992646,155058183,155123719,155189255,155254794,155320328,155385864,155451400,155516936,155582473,155648007,155713543,155779080,155844616,155910152,155975688,156041224,156106760,156172296,156237832,156303368,156368904,156434440,156499976,156565512,156631048,156696584,156762120,156827657,156893191,156958727,157024263,157089800,157155335,157220871,157286409,157351943,157417480,157483016,157548607,157614101,157679626,157745159,157810698,157876231,157941770,158007303,158072840,158138375,158203912,158269447,158334984,158400520,158466055,158531592,158597128,158662664,158728199,158793735,158859271,158924808,158990344,159055880,159121415,159186952,159252487,159318023,159383559,159449095,159514632,159580167,159645702,159711238,159776774,159842310,159907846,159973382,160038918,160104454,160169990,160235526,160301062,160366598,160432134,160497670,160563207,160628742,160694279,160759815,160825351,160890887,160956423,161021959,161087494,161153030,161218566,161284102,161349638,161415174,161480710,161546247,161611782,161677318,161742854,161808390,161873927,161939463,162005004,162070538,162136074,162201617,162267152,162332682,162398224,162463751,162529287,162594824,162660361,162725897,162791433,162856967,162922503,162988041,163053577,163119111,163184647,163250183,163315720,163381256,163446792,163512330,163577865,163643401,163708937,163774473,163840006,163905542,163971081,164036618,164102151,164167688,164233224,164298761,164364297,164429833,164495369,164560905,164626441,164691977,164757513,164823049,164888584,164954123,165019657,165085192,165150728,165216265,165281800,165347335,165412872,165478407,165543944,165609481,165675016,165740551,165806087,165871624,165937160,166002696,166068232,166133768,166199303,166264897,166330377,166395912,166461448,166526985,166592520,166658056,166723593,166789127,166854664,166920200,166985736,167051272,167116808,167182343,167247880,167313415,167378952,167444489,167510025,167575560,167641097,167706632,167772168,167837706,167903239,167968776,168034312,168099848,168165384,168230921,168296459,168361992,168427529,168493064,168558600,168624136,168689672,168755208,168820744,168886281,168951817,169017351,169082888,169148423,169213979,169279496,169345032,169410568,169476104,169541640,169607176,169672713,169738249,169803784,169869319,169934855,170000392,170065928,170131463,170197000,170262537,170328073,170393606,170459143,170524678,170590214,170655750,170721286,170786822,170852358,170917894,170983430,171048966,171114502,171180038,171245574,171311110,171376646,171442182,171507718,171573254,171638790,171704326,171769862,171835399,171900934,171966470,172032006,172097542,172163078,172228614,172294150,172359686,172425223,172490758,172556294,172621830,172687366,172752902,172818438,172883974,172949510,173015046,173080582,173146118,173211654,173277190,173342726,173408262,173473798,173539337,173604872,173670408,173735943,173801480,173867016,173932551,173998094,174063623,174129158,174194695,174260231,174325766,174391302,174456838,174522374,174587910,174653446,174718982,174784518,174850054,174915590,174981126],"asterisk":[196611,5111810,5242896,11141121,11206657,21626883,23986177,24051713,24576001,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25690113,25755649,26476545,26542081,26607617,26673153,27983873,44236801,44367873,59506690,59572225,59637761,60227586,60293122,63766530,63832076,64028678,64094229,64159781,64225282,64552964,64618498,64815106,65142788,71303170,75563009,75694081,77266945,77791233,79691777,79757317,79822853,79888388,79953924,80019460,80084996,80150546,80216068,80281604,80347141,80412677,80478213,80543749,80609284,80674820,80740356,80805892,80871428,80936964,81002500,81068036,81133572,81199108,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788932,81854468,81920004,81985540,82051076,82116612,82182148,82247684,82313220,82378756,82444292,82509828,82575364,82640900,82706436,82771972,82837508,82903044,82968580,83034116,83099652,83165188,83230726,83296260,83361796,83427332,83492868,83558404,83623940,83689476,83755012,83820548,83886084,83951620,84017156,84082692,84148228,84213764,84279300,84344836,84410372,84475908,84541444,84606980,84672516,84738052,84803588,84869124,84934660,85000196,85065732,85131268,85196804,85262340,85327876,85393412,85458948,85524484,85590020,85655556,85721092,85786628,85852164,85917700,85983243,86048773,86114320,86179858,86245393,86310929,86376465,86441993,86507524,86573060,86638596,86704132,86769668,86835204,86900740,86966276,87031812,87097348,87162884,87228420,87293956,87359492,87425028,87490564,87556100,87621636,87687172,87752708,87818244,87883780,87949316,88080389,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,99876865,100204545,103809025,105709569,111017985,111280129,112394241,112459777,112525313,112590849,112656386,112721921,112787457,112852993,112918529,112984065,113115137,113180673,113246209,129630209,132186114,132251649,132448257,138739713,146800641,146931713,146997249,147128321,147587073,149815297,149946369,151126017,151322625,151453698,151519236,151650320,152043521,152109057,152174593,152240129,152305665,152502274,152633346,152895489,153092097,153944065,155123713,155254785,155582466,155713538,156827650,156893186,157089793,157286402,157614082,157679618,157810691,158269441,158662657,158924802,158990338,159186945,161939457,162004997,162070533,162136068,162201604,162267140,162332676,162398226,162463748,162529284,162594821,162660357,162725893,162791429,162856964,162922500,162988037,163053573,163119108,163184644,163250180,163315716,163381252,163446788,163512324,163577860,163643396,163708932,163774471,163971076,164036612,164102148,164167684,164233220,164298756,164364292,164429828,164495364,164560900,164626436,164691972,164757508,164823044,164888582,164954116,165019653,165085188,165150724,165216261,165281798,165347333,165412868,165478404,165543940,165609479,165675012,165740548,165806085,165871620,165937156,166002692,166068228,166133766,166199300,166264839,166330372,166395908,166461444,166526980,166592516,166658052,166723588,166789124,166854660,166920196,166985732,167051268,167116804,167182340,167247876,167313412,167378948,167444484,167510020,167575557,167641092,167706629,167772164,167837701,167903237,167968772,168034308,168099844,168165380,168230916,168296452,168361996,168427525,168493075,168558611,168624145,168689682,168755217,168820745,168886276,168951813,169017349,169082885,169148420,169213956,169279492,169345028,169410564,169476100,169541636,169607174,169672708,169738244,169803780,169869317,169934852,170000388,170065925,170131461,170196996,170262532,170328068,170721281,170917890,171048968,172359681,172883969,173211649,173539330,173604866,173670402,173735938,173801474,173867010,173932547,173998083],"ami":[196610,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"allows":[196609,1310721,4456449,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242889,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,24707073,24772609,24838145,24903681,26542081,26607617,26673153,27918337,32833537,32899073,32964609,63832065,64028673,64094209,64552964,65142787,65536001,66584579,75104258,77791233,97386497,97714177,105250817,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650313,151715841,151781377,151846913,151912449,151977985,152043522,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092100,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123715,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810690,157876226,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048962,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"application":[196609,1310721,4456449,5242884,25296904,25362441,27459585,27525121,27590657,27656193,30670854,30736391,34406401,34537473,34996225,35061761,63832070,64028673,64094214,64159745,65470466,71958529,72024065,72089601,72810499,74055681,74121217,74252290,74645505,74711041,77791237,79626241,79691778,84934659,88145921,88211459,89063425,92602374,92667905,95092737,95158274,95289345,95354881,105185286,105381889,105512963,111017985,134152193,134283270,147783686,148045825,151191553,151257089,151322625,151650308,152371206,153681922,153747458,153944067,154402817,154468353,155123713,157810698,160628737,161939458,167313411,170131457,171048961,171180033,171442177,171835395,174260225],"applications":[196609],"add":[262145,25231362,45744130,45809666,45875202,64159747,78118915,106364930,106430465,158138371,164102145,170131458],"agiexception":[327683,4849667,23265287,23330823,23396359,63766529,64421894,71958531,151191563,151257093,151322629,154402821,154468357],"agihangupexception":[393219,4915203,23461894,63766530,72024067,151191553,151257098],"aginetworkexception":[458755,4980739,23527432,63766530,72089603,151191553,151322634],"authenticationfailedexception":[655363,13172739,49807367,49872903,64028674,70975494,79626243,88080385,146931713,160628748,171048961],"agi_additional_attribute_pattern":[917505,1966086,150994945],"agi_additional_attributes_pattern":[917505,1900550,150994945],"agi_bind_address":[917505,2031621,150994945],"agi":[917507,2031617,2097153,2555905,63766529,64094209,64159745,71892993,72220680,75300865,89260033,90177537,90308612,90374145,90636289,90963969,98041857,150994947,151060481,151191553,151584776,155320322,163119105],"address":[917505,2031617,28770305,85393409,135659521,150994945,167772161],"agi_bind_port":[917505,2097157,150994945],"agi_default_max_digits":[917505,2162694,150994945],"agi_default_resource_bundle_name":[917505,2228230,150994945],"agi_default_timeout":[917505,2293766,150994945],"agi_end_of_proper_usage":[917505,2359302,150994945],"agi_parameter_pattern":[917505,2424838,150994945],"agi_parenthesis_pattern":[917505,2490374,150994945],"agi_pool_size":[917505,2555909,150994945],"agi_result_pattern":[917505,2621446,150994945],"agi_script_pattern":[917505,2686982,150994945],"agi_status_pattern":[917505,2752518,150994945],"agi_synopsis_pattern":[917505,2818054,150994945],"asterisk_version":[917505,2883590,150994945],"asteriskfastagi":[983043,3538946,3604482,5373955,28311555,28377091,28442631,28508168,28573707,28639239,28704776,28770311,28835852,63766529,65601552,72351747,91291650,91357187,91422722,91488259,151781398],"agichannel":[983042,3538945,3604481,4718595,22937605,23003147,23068682,27262984,63766530,64356358,71892995,89260034,91226118,151060492,151781378],"action":[1048577,1114113,1179649,3670019,3735554,3801090,3866626,3932163,3997699,4063235,4128771,4194307,4259843,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141122,11206658,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713986,12779521,12845057,12910593,12976129,13041665,13107201,21626882,22085637,22151173,22216709,22282245,22347781,22413317,22478853,22544389,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714820,39780354,39845892,39911426,39976976,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763396,40828932,40894467,40960004,41025538,41091074,41156611,41222146,41287684,41353218,41418756,41484290,41549827,41615362,41680899,41746434,41811971,41877506,41943044,42008578,42074114,42139650,42205189,42270726,42336258,42401794,42467330,42532866,42598404,42663938,42729474,42795010,42860546,42926082,42991618,43057154,43122692,43188226,43253763,43319298,43384834,43450370,43515906,43581442,43646978,43712515,43778050,43843586,43909122,43974658,44040194,44105730,44171266,44236804,44302338,44367876,44433410,44498948,44564482,44630018,44695554,44761090,44826626,44892164,44957700,45023235,45088772,45154307,45219842,45285381,45350914,45416452,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006279,46071810,46137346,46202882,46268418,46333954,46399490,46465029,46530562,46596102,46661634,46727170,46792706,46858243,46923778,46989315,47054852,47120386,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775748,47841282,47906820,47972354,48037891,48103428,48168962,48234498,48300035,48365572,48431107,48496650,48562187,48627724,48693261,48758793,48824322,48889860,48955397,49020933,49086466,49152004,49217538,49283075,49348610,49414147,49479682,49545219,49610756,49676290,49741826,59179018,59244555,59572226,59834378,59899915,59965450,60030986,60096522,61079562,61407241,62062597,64028675,64094224,64159749,64225285,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812807,68878337,68943873,69009409,69074945,69140481,69206018,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70582274,70647809,70713345,70778881,70844417,70909953,71368706,75038724,75104260,75169796,75235332,75300868,75366403,75431939,75497475,75563012,75628548,75694084,75759619,75825155,75890691,75956227,76021763,76087299,76152835,76218371,76283907,76349443,76414979,76480515,76546051,76611587,76677123,76742659,76808195,76873731,76939268,77004804,77070340,77135876,77201412,77266948,77332484,77398020,77463557,77529091,77594627,77660163,77725700,77791236,77856772,77922308,77987844,78053379,78118916,78184451,78249988,78315523,78381059,78446596,78512131,78577667,78643204,78708740,78774276,78839812,78905347,78970883,79036420,79101956,79167494,79233028,79298564,79364100,79429636,79495172,79560708,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835202,87293954,87359490,87883778,87949314,88014849,88080386,88276993,88408065,88473605,88539141,88604677,88670213,88735749,88801285,88866821,88932357,97189897,97255426,97320962,97386498,97452041,97517570,97583106,97648642,97714178,97779722,97845250,97910786,97976329,98041865,98107395,98172931,98238474,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,99221514,99287042,99352578,99418114,99483650,99549194,99614723,99680259,99745795,99811337,99876866,99942409,100007938,100073474,100139017,100204546,100270090,100335619,100401155,100466698,100532227,100597770,100663306,100728835,100794378,100859907,100925443,100990986,101056515,101122051,101187594,101253123,101318666,101384195,101449738,101515267,101580810,101646339,101711875,101777418,101842954,101908490,101974026,102039555,102105098,102170626,102236162,102301706,102367234,102432770,102498314,102563842,102629378,102694922,102760450,102825986,102891522,102957065,103022594,103088137,103153666,103219202,103284745,103350274,103415817,103481346,103546882,103612425,103677954,103743497,103809026,103874562,103940098,104005634,104071170,104136713,104202249,104267778,104333321,104398851,104464392,104529923,104595459,104660994,104726537,104792066,104857602,104923138,104988674,105054210,105119753,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840649,105906178,105971714,106037250,106102786,106168329,106233865,106299401,106364930,106430466,106496002,106561538,106627074,106692618,106758147,106823683,106889219,106954755,107020291,107085833,107151362,107216898,107282434,107347978,107413507,107479043,107544579,107610122,107675651,107741187,107806723,107872259,107937801,108003330,108068866,108134410,108199939,108265482,108331011,108396553,108462082,108527618,108593161,108658691,108724226,108789762,108855298,108920834,108986377,109051906,109117442,109182978,109248521,109314050,109379586,109445122,109510666,109576202,109641730,109707273,109772809,109838338,109903881,109969411,110034946,110100483,110166018,110231561,110297090,110362626,110428169,110493698,110559241,110624770,110690313,110755842,110821385,110886921,110952450,141230081,141295617,146407430,147456002,148307976,148701192,148897793,149684226,149880833,150011905,150142977,155058184,155123719,155189255,155254792,155320328,155385863,155451399,155516935,155582473,155648007,155713543,155779079,155844615,155910151,155975687,156041223,156106759,156172295,156237831,156303367,156368903,156434439,156499975,156565511,156631053,156696583,156762119,156827655,156893190,156958727,157024263,157089801,157155335,157220871,157286409,157351943,157417479,157483016,157548607,157614100,157679625,157745159,157810699,157876231,157941768,158007303,158072839,158138375,158203911,158269447,158334983,158400519,158466055,158531591,158597127,158662665,158728199,158793735,158859272,158924807,158990343,159055880,159121415,159186959,159252487,159318023,159383559,159449095,159514632,159580167,161611777,161677313,162988035,163053571,164495362,164626434,165019651,165085185,165150721,167444482,167510020,167641091,167772162,167837700,168230915,168427523,168886275,168951811,169213956,169672707,169738243,170262531,170328067,170721281,171048964,171966465,173342721,173473793,173539340,173604876,173670410,173735946,173801483,173867019,173932554,173998094],"action_append":[1179649,3932166,159186945],"action_delcat":[1179649,3997702,159186945],"action_delete":[1179649,4063238,159186945],"action_newcat":[1179649,4128774,159186945],"action_renamecat":[1179649,4194310,159186945],"action_update":[1179649,4259846,159186945],"arrive":[1310721,4456449,171048961],"attributes":[1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,4653062,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,52101126,54657030,61997062,62062594,62259206,62455814,64159747,64225282,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132055046,149749766,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131460,170196993,170262529,170328065,173539332,173604868,173670404,173735942,173801476,173867012,173932548,173998084],"assembly":[1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,74842114,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272392,96337923,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664963,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121],"array":[3276801,3342337,3473409,4521985,22740994,38010881,38273025,38535169,39059457,62914564,150732803,174850050],"api":[3473409,60227585,60293121,77529089,77594625,77660161,78053377,79691777,86048769,86638593,104464385,105775105,111017985,111280129,138412033,140705793,154730497,157548545,157614081,157679617,158072833,161939457,168427521,169017345],"agiconnectionhandler":[4784131,23134211,23199752,63504390,63766530,151126026],"agireader":[5046275,23003152,23592964,23658500,23724039,63766530,64356353,151060481,151126017,151388170],"agireply":[5111811,22937605,23592965,23789570,23855106,23920642,23986178,24051714,24117252,24182791,24248328,63766530,64487430,72155139,89260038,89325570,89391107,89456643,89522178,89587714,151453708],"additional":[5111810,23789570,64094209,64159746,71958529,72024065,72089601,74645505,74711041,78708737,79626241,79691777,88145921,89063425,108855297,151191553,151257089,151322625,151453698,151519233,154402817,154468353,158728194,160628737,161939457,169213953,170131457,171180033,174260225],"attribute":[5111810,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789572,62062596,64225282,88080385,111017985,147456001,151453698,171048961,173539330,173604866,173670402,173735938,173801474,173867010,173932547,173998083],"agirequest":[5177347,23658501,24313861,24379396,24444933,24510468,24576006,27262984,35979272,36241418,36569098,37027850,63766531,72220675,89653250,89718787,89784323,89849859,89915395,89980931,90046467,90112002,90177538,90243075,90308610,90374146,90439682,90505219,90570755,90636290,90701827,90767363,90832899,90898435,90963970,91029506,91095042,91160578,151257089,151584778],"agiscript":[5242883,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165827,25231362,25296898,25362434,25427972,25493506,25559042,25624578,25690114,25755651,25821186,25886722,25952258,26017794,26083330,26148868,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262981,27328515,27394052,27459587,27525123,27590659,27656195,27721730,27787266,27852802,27918338,27983874,28049410,28114950,35979269,36241414,36569094,37027846,63766532,63897602,64552962,64618498,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,72286211,74842113,91226115,96403457,151126017,151650313,154599426,154664961,154730498],"answer":[5242881,24641541,151650305],"answers":[5242881,24641537,151650305],"allowing":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,151650308,152043521,154075137],"audio":[5242884,24707073,24772609,24838145,24903681,63832066,64552964,72220674,90308610,151584770,151650308,152043521,154075137],"ascii":[5242884,24707073,24772609,24838145,24903681,63832074,64552964,88080385,147521537,151650308,152043521,152567809,153026561,153092097,153157633,153223169,153288705,153354241,154075137,154271745,171048961],"available":[5242890,22872065,24707073,24772609,24838145,24903681,25690113,25755649,26476545,26542081,26607617,26673153,46202882,46333953,63504385,63832068,64028673,64094215,64159760,64552964,64815106,65142788,69861377,78249988,79757314,79822850,79888386,79953922,80019458,80084994,80150542,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983239,86048772,86114318,86179854,86245389,86310925,86376461,86441989,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,107151361,107216898,107282433,112394241,112459777,112525313,112590849,112721921,112787457,112852993,112918529,112984065,113115137,113180673,113246209,132251649,132448257,138739714,138805249,138870785,149946369,151519233,151650314,152043521,152502273,152895489,153092097,155123713,155254785,156893185,158269447,158924801,158990337,162004994,162070530,162136066,162201602,162267138,162332674,162398222,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988035,163053571,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019651,165085186,165150722,165216259,165281794,165347331,165412866,165478402,165543938,165609475,165675010,165740546,165806083,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575555,167641090,167706627,167772162,167837699,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361992,168427524,168493071,168558607,168624141,168689678,168755213,168820741,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869315,169934850,170000386,170065923,170131458,170196994,170262530,170328066,172883969,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174981121],"adds":[5242881,12713985,21954561,22872065,25231361,45744129,45809665,45875201,45940737,46006273,48758785,61145089,63504385,63832065,64028673,64094210,69730307,69795842,70582273,151650305,152305665,156893185,158138372,158203906,159186945,173342721,173408257,174981121],"allowed":[5242882,25624577,26214401,26279937,63832065,65011714,151650306,152961025],"autohangup":[5242881,27328513,34144257,63832065,151650305,153550849],"agiwriter":[5308419,23003152,28180484,28246023,63766530,64356353,151060481,151715850],"agicommand":[5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,6422531,6488067,6553603,6619139,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,22937608,28180487,28901380,28966917,29032452,29097990,63832065,151519236,151846923,151912456,151977992,152043528,152109064,152174600,152240136,152305672,152371208,152436744,152502280,152567816,152633352,152698888,152764424,152829960,152895496,152961032,153026568,153092104,153157640,153223176,153288712,153354248,153419784,153485320,153550856,153616392,153681928,153747464,153813000,153878536,153944072,154009608,154075144,154140680,154206216,154271752],"answercommand":[5505027,29163524,29229062,63832065,151846913,151912458],"accept":[8388609,37289991,154796033],"associated":[8454145,37486593,71958529,72024065,72089601,74645505,74711041,79626241,79691777,80150529,86114305,86179841,86310913,86376449,88145921,89063425,112984065,151191553,151257089,151322625,154402817,154468353,154861569,160628737,161939457,162398209,168493057,168558593,168689665,168755201,171180033,174260225],"absolutetimeoutaction":[8585219,39190535,39256071,64094210,67698694,75038723,97189890,97255426,97320962,155058188,157548545],"agentcallbackloginaction":[8650755,39321607,39387143,39452679,64094210,67764232,75104259,97386498,97452034,97517570,97583106,97648642,97714178,155123726,157548545],"agentlogoffaction":[8716291,39518215,39583751,39649287,64094210,67829768,75169795,97779714,97845250,97910786,155189262,157548545],"agentsaction":[8781827,39714820,39780358,64028674,64094210,64159746,75235331,97976322,155254794,157614081,160169985,160235521,162988034,163053570],"actioncompleteeventclass":[8781826,9371650,9437186,10354690,11141121,11337730,11468802,12189698,12451842,12517378,12582914,13041666,39714824,40828936,40960008,42598408,44236806,44892168,45416456,47054856,47775752,47906824,48103432,49610760,64094209,155254786,155844610,155910146,156827650,157614082,157810690,157941762,158662658,158924802,158990338,159055874,159514626],"agiaction":[8847363,39845896,64094209,75300867,98041858,98107395,98172931,155320329,157548545],"aocmessageaction":[8912899,39911430,39976980,64094209,67895300,75366403,98238467,98304003,98369539,98435075,98500611,98566147,98631683,98697219,98762755,98828291,98893827,98959363,99024899,99090435,99155971,155385866,157548545],"atxferaction":[8978435,40042502,40108038,64094209,67960836,75431939,99221507,99287042,99352578,99418114,99483650,155451402,157548545],"actioncompleteresponseclass":[10616834,11206657,12713986,43122696,44367878,48365576,64094209,157089794,157679618,159186946],"addcommand":[12713990,48431111,48496648,48562185,48627722,48693259,48758790,64094209,70582279,159186951],"abstractagentevent":[13303811,50003975,64159745,79757315,80412675,80478211,80543747,83230723,111083522,111149058,111214594,162005001,162070529,162660360,162725896,162791432,165609480],"abstractagentvariables":[13303812,13369347,13893636,13959172,14024708,14090244,16777220,50069508,50135043,50200580,50266115,50331655,64159745,79757313,79822851,80347137,80412673,80478209,80543745,83230721,111280130,162005002,162070538,162594826,162660358,162725894,162791430,165609478,166264833],"abstractchannelevent":[13434883,50397191,64159745,79888387,83296265,84869129,85000201,111345666,111411202,111476739,111542274,111607810,111673346,111738883,111804419,111869955,162136073,165675022,166264833,167247886,167378958],"abstractconfbridgeevent":[13500419,50462727,50528264,64159745,71041030,79953923,81920001,81985537,82051073,82182145,82313217,82378753,82444289,111935491,162201613,164298758,164364294,164429830,164560902,164691974,164757510,164823046,166264833],"abstractmeetmeevent":[13565955,50593799,64159745,80019459,83951618,84017154,84082690,84148226,84213762,84279298,84344834,112001026,112066563,162267146,166264833,166330375,166395911,166461447,166526983,166592519,166658055,166723591],"abstractparkedcallevent":[13631491,50659335,64159745,80084995,85196804,85327876,87687172,112132098,112197634,112263170,112328706,162332681,166264833,167575561,167706633,170065929],"abstractqueuememberevent":[13697027,50724870,64159745,80150531,85983239,86114316,86179854,86245389,86310925,86376461,86441989,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,162398218,166264833,168361996,168493073,168558611,168624146,168689682,168755218,168820746],"agentcallbackloginevent":[13762563,50790407,64159746,80216067,113311746,113377283,159645701,162463754,162529281,166264833],"agentcallbacklogoffevent":[13828099,50855943,64159747,80281603,113442818,113508355,113573891,113639426,159711237,162463745,162529290,162922497,166264833],"agentcalledevent":[13893635,50921479,64159746,80347139,113704963,113770499,113836035,113901570,113967106,114032643,114098179,114163715,114229251,114294787,114360323,159776773,162070529,162594826],"agentcompleteevent":[13959171,50987015,64028673,64159746,80412675,114425858,114491394,114556930,159842310,162004993,162660362],"agentconnectevent":[14024707,51052551,64028673,64159746,80478211,114622466,114688002,114753538,159907846,162004993,162725898],"agentdumpevent":[14090243,51118087,64028673,64159746,80543747,159973382,162004993,162791434],"agentloginevent":[14155779,51183623,64028673,64159746,80609283,114819074,114884611,160038918,162856970,162922497,166264833],"agentlogoffevent":[14221315,51249159,64028673,64159745,80674819,114950146,115015683,160104454,162856961,162922505,166264833],"agentscompleteevent":[14286851,51314695,64028673,64094209,64159746,80740355,155254786,160169990,162988042,169213953],"agentsevent":[14352387,51380231,64028673,64094209,64159746,80805891,115081218,115146754,115212290,115277826,115343362,115408898,155254786,160235526,163053578,169213953],"agiexecevent":[14417923,51445767,64159745,80871427,115474435,115539971,115605507,115671043,115736579,160301061,163119113,166264833],"alarmclearevent":[14483459,51511303,64159745,80936963,160366597,163184649,166264833],"alarmevent":[14548995,51576839,64028674,64159747,81002499,115802114,160366593,160432134,163184641,163250186,166264833],"asyncagievent":[14614531,51642375,64159745,81068035,115867651,115933187,115998723,116064259,163315722,166264833],"attendedtransferevent":[14680067,51707911,64159745,81133571,116129795,116195331,116260867,116326403,116391939,116457475,116523011,116588547,116654083,116719619,116785155,116850691,116916227,116981763,117047299,117112835,117178371,117243907,117309443,117374979,117440515,117506051,117571587,117637123,117702659,117768195,117833731,117899267,117964803,118030339,118095875,118161411,118226947,118292483,118358019,118423555,118489091,118554627,118620163,118685699,118751235,118816771,118882307,118947843,119013379,119078915,119144451,119209987,119275523,119341059,119406595,119472131,119537667,119603203,119668739,119734275,119799811,119865347,119930883,119996419,120061955,120127491,120193027,120258563,120324099,120389635,160563205,163381258,166264833],"asteris":[21626882,41484289,41549825,43712514,43778049,43843585,59572225,59637761,64094210,64159745,64225282,68550658,71303170,75104258,77266945,83230721,88080387,97386497,97714177,104005633,129564673,146997249,147128321,147587073,155123715,155713537,156172290,157286401,162267137,165609473,171048965,173604865,173735937],"ans":[21626881,59965441,71368705,171048961],"addevent":[21954561,61145093,173408257],"alert_info":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,62062594,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"alertinfo":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"algorithm":[22740994,40304641,40370177,43778049,43843585,62783490,62849031,62980103,68091906,71761922,77266945,103809025,155582466,157286401,174850051],"append":[22740993,47513606,48758785,62914561,64094210,64159745,78774275,109051910,109182977,158793732,159186945,170131457,174850049],"addjob":[22872065,63504390,63635457,174981122],"active":[22872065,63504385,64028673,64094212,64159745,87228417,144375809,155910145,157941761,159055874,169607169,169738241,174129153,174981121],"agiexeption":[23330817,23396353,64421890,151191554],"abstract":[24117249,24510465,27262979,28901379,29032449,29163521,29294593,29491201,29949953,30146561,30343169,30474241,30605313,30801921,31064065,31260673,31457281,31588353,31784961,31916033,32112641,32309249,32505857,32702465,33030145,33226753,33423361,33619969,33816577,33947649,34078721,34209793,34340865,34471937,34603009,34734081,34930689,35127297,35258369,35520513,35651585,35782657,35979265,36044801,36241409,36306945,36569089,36634625,37027841,37093377,39714817,40828929,40960001,42598401,43122689,44236803,44367875,44498945,44892161,45023233,45154305,45416449,47054849,47775745,47906817,48103425,48365569,49610753,50135041,50266113,52101121,54591489,54657025,54722561,58720257,59047937,59113473,60882945,61014017,61276161,61341697,62193665,62259201,62324737,62586881,63111169,63766529,64159754,97189889,97452033,97779713,97976321,98041857,98238465,99221505,99549185,99811329,99942401,100139009,100270081,100466689,100597761,100663297,100794369,100990977,101187585,101318657,101449729,101580801,101777409,101842945,101908481,101974017,102105089,102301697,102498305,102694913,102957057,103088129,103284737,103415809,103612417,103743489,104136705,104202241,104333313,104464387,104595457,104726529,105119745,105840641,106168321,106233857,106299393,106692609,107085825,107347969,107610113,107937793,108134401,108265473,108396545,108593153,108986369,109248513,109510657,109576193,109707265,109772801,109903873,110231553,110428161,110559233,110690305,110821377,110886913,132055041,146407425,146472961,148307969,148373505,148701185,148766721,149749761,150994945,151191553,151650306,151846914,157548546,157614082,157679618,158072834,162004995,162070530,162136067,162267139,162332675,162398211,163512322,164036610,164954115,166264835,168296451,169213955,170131457],"allow":[24772609,24838145,24903681,26214401,26279938,26411009,26542081,26607617,26673153,26804225,26935297,27066369,27197441,27918337,29753345,29818881,29884417,32374785,32440322,32636929,32833537,32899073,32964609,33161217,33357825,33554433,33751041,35389441,35454977,72482817,73334785,73400321,73465857,73531393,73596929,73662465,73728001,74383361,91619329,93585409,93913089,94109697,94371841,94437377,94568449,94699521,95551489,152043521,152961025,153026561,153092097,153157633,153223169,153288705,153354241,154075137],"agiserver":[28639233,28770305,63766529,72351745,91422721,151126017,151781377],"args":[38010886,38273030,38535174,39059462,63832066,152502273,152633345],"absolutetimeout":[39256065,64094209,75038721,97189889,155058178],"agent":[39387144,39452680,39583751,39649287,64028681,64094212,64159755,67764226,67829762,75104260,75169794,79757313,79822849,79888385,79953921,80019457,80084993,80150530,80216067,80281604,80347137,80412675,80478209,80543745,80609283,80674819,80740353,80805901,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623938,83689474,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721090,85786626,85852161,85917698,85983235,86048770,86114306,86179842,86245378,86310915,86376450,86441987,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,97386498,97517574,97845256,112656385,113311750,113442823,113639425,114491393,114556929,114819078,114950150,115081221,115146754,115212289,115277825,115343365,115408898,132251649,137560065,137822209,138280961,139132929,139460609,149946369,155123720,155189253,155254785,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160235521,162004994,162070529,162136065,162201601,162267137,162332673,162398210,162463748,162529285,162594818,162660356,162725890,162791426,162856964,162922500,162988033,163053582,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954114,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002690,166068226,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099842,168165378,168230913,168296450,168361987,168427522,168493058,168558594,168624130,168689667,168755202,168820739,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"advice":[39911425,39976961,67895298,155385858],"aocbillingid":[39976966,75366401,98304006,155385857],"attended":[40042497,40108033,67960834,87425025,145620993,155451394,169803777],"authtype":[40370181,43778053,43843589,75563009,77266945,99876869,103809029,155582465,157286401],"alogrithm":[40370177,43778049,43843585,75563009,77266945,99876865,103809025,155582465,157286401],"applies":[42991617,69140481,156958721],"assumed":[44040193,44171265,77398017,77463553,78118913,104267777,104398849,106561537,157417473,157483009,158138369],"added":[45744129,45809666,45875202,63635457,64028673,64159745,78118915,80150531,85983237,86048773,86114307,86179843,86245379,86310915,86376451,86441989,106496002,106627073,112787459,137756673,137887747,138018817,138215425,138412035,138608641,139395073,139526147,139657217,158138371,162398211,168361990,168427525,168493059,168558595,168624131,168689667,168755203,168820741,172687361,174981121],"authentication":[49807361,49872898,64094209,86638593,88080385,140705793,146866177,157286401,169017345,171048961],"asteriskversion":[59375621,64028673,88080385,146538508,160497670,171048961],"autoresetevent":[61079560,61407239],"autoevent":[61079558,61407238],"agiscripts":[63766530,72351745,91357185,151650306,151781377],"agireplystatuses":[63766529,151519238],"actions":[64028673,64094209,77529089,77594625,77660161,78053377,79167489,104464385,109969413,157548545,157614081,157679617,158072833,159186946,173408257],"agentcallbacklogineventhandler":[64028673,159645701],"agentcallbacklogin":[64028673,64094209,64159746,75104257,97452033,155123714,159645697,162463745,162529281],"agentcallbacklogoffeventhandler":[64028673,159711237],"agentcallbacklogoff":[64028673,159711233],"agentcalledeventhandler":[64028673,159776773],"agentcalled":[64028674,80347137,113704966,159776770,162594817],"agentcompleteeventhandler":[64028673,159842309],"agentconnecteventhandler":[64028673,159907845],"agentdumpeventhandler":[64028673,159973381],"announcement":[64028673,64159745,159973377,162791425],"agentlogineventhandler":[64028673,160038917],"agentlogin":[64028674,64159746,160038913,160104449,162856961,162922497],"agentlogoffeventhandler":[64028673,160104453],"agentscompleteeventhandler":[64028673,160169989],"agents":[64028673,64094211,64159745,75235329,80281601,97976321,113639425,155254787,158662657,160169985,162529281,162988033],"agentseventhandler":[64028673,160235525],"agiexechandler":[64028673,160301061],"agiexec":[64028673,160301057],"alarmcleareventhandler":[64028673,160366597],"alarm":[64028674,64159746,81002501,87949318,115802121,146210826,160366593,160432129,163184641,163250182,170328070],"alarmeventhandler":[64028673,160432133],"attendedtransfereventhandler":[64028673,160563206],"attempts":[64028675,64159747,161742849,165216257,167903233,169017345,172359681,173211649],"absolute":[64094210,155058178],"agen":[64094209,155123713],"authenticates":[64094209,157286401],"answered":[64094209,77791233,83623937,83689473,85721089,85786625,85917697,85983234,86048770,86441986,86507521,88211457,105709569,137560065,137691137,137756673,138149889,138215425,139264001,139395073,140312578,148242433,157810690,166002689,166068225,168099841,168165377,168296449,168361986,168427522,168820738,168886273,171835393],"async":[64094209,77791233,105250821,157810690],"apps":[64094213,64159760,158138369,158269441,158466049,158662657,158793729,162594817,165216257,165609473,166002689,166068225,166395905,166461441,166592513,166789121,168230913,168361985,168427521,168493057,168689665,168886273,170131457],"app_queue":[64094212,64159753,158138369,158269441,158466049,158662657,162594817,166002689,166068225,168230913,168361985,168427521,168493057,168689665,168886273],"appended":[64094209,78774273,109051905,158793730],"app_setcdruserfield":[64094209,158793729],"appropriate":[64094209,64159745,80281601,113639425,159186945,162529281,170131457],"action_":[64094209,159186945],"avoiding":[64094209,159186945],"agentcalledevents":[64159745,162594817],"agiexecevents":[64159745,163119105],"app_dial":[64159745,165216257],"app_rxfax":[64159745,165609473],"app_meetme":[64159747,166395905,166461441,166592513],"app_voicemail":[64159745,166789121],"assigned":[64159745,71958529,72024065,72089601,74645505,74711041,79626241,79691777,86507521,88145921,89063425,140443649,151191553,151257089,151322625,154402817,154468353,160628737,161939457,168624129,168886273,171180033,174260225],"arbitrary":[64159745,170131457],"app_userevent":[64159745,170131457],"algorithms":[64290817,174850049],"accountcode":[72220673,79888386,81264641,81461249,81592321,81723393,83296258,84738049,84869122,85000194,89653253,111345670,122748934,124911622,133693446,151584769,162136066,163512321,163708929,163971073,164102145,165675010,167116801,167247874,167378946],"account":[72220673,77791235,83492865,87359490,88211459,89653249,105054215,130482182,144506887,147718151,151584769,157810691,165871617,169738242,171835395],"agirequests":[72351745,91357185,151781377],"actionid":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,80740353,80805889,82116609,82247681,82640897,85065729,85131265,85262337,85393409,85458945,85852161,86048769,86507521,86573057,86835201,87293953,87359489,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104529926,141230085,149684229,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162988033,163053569,164495361,164626433,165019649,167444481,167510017,167641089,167772161,167837697,168230913,168427521,168886273,168951809,169213953,169672705,169738241,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"ackcall":[75104257,97386501,155123713],"acknowledgement":[75104258,97386498,155123714],"agentlogoff":[75169793,97779713,155189249],"asteri":[77266945,104071169,157286401],"asynchronous":[77791233,105250817,157810689],"assumes":[77791233,105709569,157810689],"assignments":[77791234,105775106,157810690],"abc":[77791234,79757313,79822849,80347137,80412673,80478209,80543745,83230721,105775106,111280129,157810690,162004993,162070529,162594817,162660353,162725889,162791425,165609473],"actio":[79167489,109969409,159186945],"actionbuilder":[79167489,109969409,159186945],"actual":[79167489,109969409,159186945],"avoided":[79691777,111017985,161939457],"actioncompleteevent":[79691777,111017985,161939457],"authorization":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"accepting":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,112852993,137953281,139591681,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_unknown":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_not_inuse":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_inuse":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_busy":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_invalid":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_unavailable":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_ringing":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,139788289,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_ringinuse":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,139788289,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"ast_device_onhold":[80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,139788289,162398209,168361985,168493057,168558593,168624129,168689665,168755201,168820737],"autologoff":[80281603,113639427,162529283],"answering":[80281601,113639425,162529281],"agentname":[80347137,113770502,162594817],"agentid":[80805889,115081217,163053569],"agent_loggedoff":[80805889,115343361,163053569],"agent_idle":[80805889,115343361,163053569],"agent_oncall":[80805889,115343361,163053569],"agent_unknown":[80805889,115343361,163053569],"amaflags":[81723393,124977158,164102145],"answertime":[81723393,125042694,164102145],"admin":[82182145,127074310,164560897],"aclname":[83165185,129302534,165543937],"appdata":[84934657,134152197,167313409],"appdevent":[84934657,134217734,167313409],"acl":[85393409,135397382,167772161],"abandoned":[86507522,139853831,168886274],"average":[86507521,140050434,168886273],"auth":[86638593,140705793,169017345],"attempt":[88080386,146866177,146931713,171048962],"arrival":[88080385,147456001,171048961],"anymore":[105775108,111280132],"aware":[105775108,111280132],"abstractclassattribute":[150994945,151650305,151846913,157548545,157614081,157679617,158072833,162004993,162070529,162136065,162267137,162332673,162398209,163512321,164036609,164954113,166264833,168296449,169213953],"asterisk_1_0":[160497665],"asterisk_1_2":[160497665],"asterisk_1_4":[160497665],"asterisk_1_6":[160497665],"asterisk_1_8":[160497665],"asterisk_10":[160497665],"asterisk_11":[160497665],"asterisk_12":[160497665],"asterisk_13":[160497665]} \ No newline at end of file +{"automatically":[1,10747905,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,32833537,39649281,46989313,47054849,67567617,69337089,74055682,79429633,100466690,157220865,159121410,161742850,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"asternet":[65537,131073,196614,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983046,1048582,1114118,1179654,1245190,1310726,1376262,1441798,1507334,1572870,1638406,1703942,1769478,1835015,1900551,1966087,2031623,2097159,2162695,2228231,2293766,2359302,2424838,2490374,2555910,2621446,2686982,2752519,2818054,2883590,2949126,3014662,3080199,3145734,3211271,3276806,3342342,3407878,3473414,3538950,3604486,3670022,3735558,3801094,3866630,3932166,3997702,4063238,4128774,4194310,4259846,4325382,4390918,4456454,4521990,4587526,4653062,4718598,4784134,4849670,4915206,4980742,5046278,5111814,5177350,5242886,5308422,5373958,5439494,5505030,5570566,5636102,5701638,5767174,5832711,5898246,5963782,6029318,6094854,6160390,6225926,6291462,6356998,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405574,7471110,7536645,7602181,7667718,7733254,7798790,7864326,7929862,7995398,8060933,8126470,8192006,8257542,8323078,8388614,8454150,8519685,8585221,8650758,8716293,8781830,8847366,8912902,8978438,9043973,9109509,9175046,9240581,9306117,9371653,9437190,9502726,9568262,9633798,9699334,9764870,9830406,9895942,9961477,10027014,10092550,10158086,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180482,28246018,28311554,28377090,28442636,28508179,28573708,28639238,28704781,28770309,28835845,28901381,28966917,29032455,29097991,29163527,29229064,29294597,29360133,29425669,29491205,29556741,29622279,29687813,29753350,29818888,29884423,29949960,30015495,30081029,30146565,30212102,30277638,30343174,30408710,30474245,30539781,30605317,30670854,30736389,30801925,30867461,30932997,30998533,31064069,31129605,31195141,31260678,31326213,31391749,31457285,31522821,31588357,31653893,31719429,31784965,31850501,31916037,31981573,32047109,32112645,32178181,32243717,32309253,32374789,32440325,32505861,32571397,32636933,32702469,32768016,32833542,32899078,32964614,33030150,33095686,33161222,33226757,33292293,33357829,33423365,33488901,33554437,33619973,33685514,33751048,33816582,33882118,33947653,34013192,34078734,34144261,34209798,34275333,34340874,34406407,34471944,34537479,34603013,34668551,34734085,34799623,34865157,34930693,34996231,35061765,35127301,35192837,35258373,35323909,35389445,35454983,35520517,35586053,35651591,35717125,35782661,35848199,35913733,35979271,36044805,36110343,36175877,36241413,36306951,36372485,36438021,36503557,36569095,36634629,36700165,36765703,36831237,36896773,36962311,37027845,37093383,37158917,37224453,37289991,37355525,37421063,37486597,37552133,37617671,37683205,37748742,37814279,37879813,37945349,38010887,38076421,38141957,38207495,38273030,38338565,38404101,38469637,38535175,38600709,38666245,38731783,38797317,38862853,38928391,38993925,39059461,39124999,39190533,39256069,39321607,39387141,39452679,39518213,39583751,39649285,39714823,39780357,39845895,39911429,39976967,40042501,40108039,40173573,40239111,40304645,40370181,40435719,40501253,40566789,40632327,40697862,40763399,40828933,40894469,40960005,41025543,41091078,41156615,41222149,41287687,41353221,41418757,41484300,41549830,41615365,41680901,41746444,41811974,41877509,41943047,42008582,42074124,42139654,42205189,42270726,42336264,42401803,42467333,42532876,42598406,42663941,42729478,42795015,42860550,42926088,42991621,43057157,43122693,43188229,43253765,43319303,43384839,43450376,43515912,43581447,43646983,43712520,43778056,43843591,43909127,43974664,44040200,44105733,44171276,44236806,44302342,44367879,44433415,44498952,44564488,44630021,44695557,44761093,44826629,44892165,44957701,45023237,45088773,45154309,45219847,45285381,45350919,45416453,45482003,45547525,45613061,45678597,45744133,45809669,45875205,45940741,46006277,46071813,46137349,46202885,46268423,46333959,46399494,46465031,46530565,46596101,46661638,46727173,46792711,46858245,46923783,46989317,47054854,47120389,47185926,47251461,47316998,47382533,47448071,47513605,47579141,47644677,47710213,47775750,47841285,47906821,47972357,48037893,48103431,48168965,48234501,48300037,48365573,48431109,48496645,48562181,48627719,48693253,48758789,48824325,48889861,48955397,49020933,49086469,49152005,49217542,49283077,49348613,49414149,49479685,49545221,49610757,49676293,49741831,49807365,49872903,49938437,50003975,50069509,50135045,50200581,50266117,50331653,50397191,50462727,50528262,50593799,50659334,50724869,50790408,50855941,50921479,50987013,51052549,51118085,51183621,51249157,51314693,51380229,51445765,51511306,51576837,51642373,51707909,51773445,51838981,51904517,51970056,52035589,52101129,52166661,52232197,52297733,52363270,52428805,52494342,52559879,52625413,52690949,52756485,52822021,52887557,52953093,53018629,53084165,53149701,53215237,53280775,53346309,53411847,53477381,53542918,53608455,53673989,53739525,53805062,53870599,53936134,54001671,54067208,54132745,54198282,54263813,54329349,54394887,54460424,54525960,54591493,54657031,54722565,54788102,54853637,54919174,54984709,55050246,55115783,55181317,55246853,55312389,55377925,55443462,55509000,55574535,55640070,55705607,55771142,55836680,55902216,55967749,56033288,56098824,56164360,56229894,56295432,56360968,56426504,56492040,56557576,56623112,56688648,56754184,56819720,56885256,56950792,57016328,57081864,57147400,57212936,57278472,57344008,57409544,57475080,57540616,57606149,57671688,57737224,57802760,57868296,57933832,57999368,58064904,58130440,58195976,58261512,58327048,58392584,58458120,58523656,58589192,58654728,58720264,58785800,58851336,58916872,58982408,59047944,59113480,59179016,59244552,59310085,59375624,59441160,59506696,59572232,59637768,59703304,59768840,59834376,59899912,59965448,60030984,60096517,60162053,60227589,60293125,60358662,60424200,60489736,60555272,60620808,60686344,60751880,60817416,60882952,60948488,61014024,61079560,61145096,61210632,61276168,61341704,61407240,61472776,61538312,61603848,61669384,61734920,61800456,61865992,61931528,61997064,62062600,62128136,62193672,62259208,62324744,62390280,62455814,62521352,62586886,62652422,62717958,62783494,62849030,62914566,62980104,63045640,63111176,63176712,63242248,63307784,63373320,63438856,63504392,63569928,63635464,63701000,63766536,63832072,63897608,63963144,64028680,64094216,64159752,64225289,64290824,64356360,64421896,64487432,64552966,64618502,64684044,64749582,64815111,64880647,64946183,65011717,65077255,65142789,65208325,65273862,65339402,65404947,65470474,65536012,65601548,65667077,65732613,65798150,65863685,65929221,65994760,66060295,66125830,66191367,66256902,66322437,66387974,66453514,66519050,66584592,66650118,66715653,66781190,66846730,66912266,66977797,67043333,67108869,67174407,67239941,67305477,67371013,67436549,67502086,67567621,67633158,67698693,67764229,67829767,67895301,67960838,68026374,68091911,68157445,68222981,68288517,68354053,68419589,68485125,68550661,68616197,68681733,68747269,68812805,68878341,68943877,69009416,69074949,69140485,69206019,69271556,69337091,69402628,69468163,69533699,69599236,69664771,69730307,69795843,69861378,69926914,69992450,70057986,70123522,70189058,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041026,71106562,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347138,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262338,85327874,85393410,85458946,85524482,85590018,85655554,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769666,86835202,86900738,86966274,87031810,87097346,87162882,87228418,87293954,87359490,87425026,87490562,87556098,87621634,87687170,87752706,87818242,87883778,87949314,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765061,94830597,94896134,94961670,95027205,95092741,95158277,95223814,95289350,95354886,95420422,95485958,95551494,95617029,95682565,95748102,95813637,95879173,95944709,96010246,96075782,96141317,96206854,96272390,96337926,96403462,96468997,96534533,96600069,96665605,96731142,96796677,96862213,96927749,96993286,97058822,97124357,97189893,97255429,97320965,97386501,97452037,97517573,97583109,97648645,97714181,97779717,97845253,97910789,97976325,98041861,98107397,98172933,98238469,98304005,98369541,98435077,98500613,98566149,98631685,98697221,98762757,98828293,98893829,98959365,99024901,99090437,99155973,99221509,99287045,99352581,99418117,99483653,99549189,99614725,99680261,99745797,99811333,99876869,99942405,100007941,100073477,100139013,100204549,100270085,100335621,100401157,100466693,100532229,100597765,100663301,100728837,100794373,100859909,100925445,100990981,101056517,101122053,101187589,101253125,101318661,101384197,101449733,101515269,101580805,101646341,101711878,101777414,101842949,101908485,101974021,102039558,102105094,102170630,102236165,102301702,102367238,102432774,102498310,102563846,102629382,102694917,102760453,102825989,102891525,102957061,103022597,103088133,103153669,103219205,103284741,103350277,103415813,103481349,103546885,103612422,103677958,103743494,103809030,103874566,103940102,104005638,104071174,104136710,104202246,104267782,104333318,104398854,104464390,104529926,104595462,104660998,104726534,104792069,104857605,104923141,104988677,105054214,105119750,105185286,105250822,105316357,105381893,105447429,105512965,105578501,105644037,105709573,105775110,105840646,105906182,105971718,106037254,106102790,106168326,106233862,106299398,106364934,106430470,106496006,106561542,106627078,106692614,106758150,106823686,106889222,106954758,107020294,107085830,107151366,107216902,107282438,107347974,107413510,107479046,107544582,107610118,107675653,107741189,107806726,107872261,107937797,108003334,108068869,108134405,108199942,108265477,108331013,108396549,108462085,108527621,108593157,108658693,108724229,108789765,108855301,108920837,108986373,109051909,109117445,109182981,109248517,109314053,109379589,109445125,109510661,109576197,109641733,109707269,109772805,109838341,109903877,109969413,110034950,110100485,110166021,110231557,110297093,110362629,110428165,110493701,110559237,110624773,110690309,110755845,110821381,110886917,110952453,111017989,111083525,111149061,111214597,111280133,111345669,111411205,111476741,111542277,111607813,111673349,111738885,111804421,111869957,111935493,112001029,112066565,112132101,112197638,112263174,112328710,112394246,112459782,112525318,112590853,112656389,112721925,112787461,112852998,112918534,112984070,113049606,113115142,113180678,113246214,113311750,113377286,113442821,113508357,113573893,113639430,113704966,113770502,113836038,113901573,113967109,114032645,114098181,114163717,114229253,114294789,114360325,114425861,114491397,114556933,114622469,114688005,114753541,114819077,114884613,114950149,115015686,115081222,115146757,115212293,115277829,115343365,115408901,115474437,115539973,115605509,115671045,115736581,115802117,115867653,115933189,115998725,116064261,116129797,116195333,116260869,116326405,116391941,116457477,116523013,116588549,116654085,116719621,116785157,116850693,116916229,116981765,117047301,117112837,117178373,117243910,117309446,117374981,117440517,117506053,117571590,117637125,117702661,117768197,117833733,117899269,117964805,118030341,118095877,118161413,118226949,118292485,118358021,118423557,118489093,118554629,118620165,118685701,118751237,118816773,118882310,118947845,119013382,119078918,119144453,119209990,119275526,119341062,119406597,119472133,119537670,119603206,119668742,119734278,119799814,119865350,119930885,119996421,120061957,120127493,120193029,120258565,120324101,120389638,120455173,120520710,120586245,120651781,120717317,120782853,120848389,120913925,120979462,121044998,121110534,121176070,121241606,121307141,121372678,121438214,121503750,121569286,121634822,121700358,121765894,121831430,121896966,121962502,122028038,122093574,122159110,122224646,122290182,122355718,122421254,122486790,122552326,122617862,122683398,122748934,122814470,122880006,122945542,123011078,123076614,123142150,123207686,123273222,123338758,123404294,123469830,123535366,123600902,123666438,123731974,123797510,123863046,123928582,123994118,124059654,124125190,124190726,124256262,124321798,124387334,124452870,124518406,124583942,124649478,124715014,124780550,124846086,124911622,124977158,125042694,125108230,125173766,125239302,125304838,125370374,125435910,125501446,125566982,125632518,125698054,125763590,125829126,125894662,125960198,126025734,126091270,126156806,126222342,126287878,126353414,126418950,126484486,126550022,126615558,126681094,126746630,126812166,126877702,126943238,127008774,127074310,127139846,127205382,127270918,127336454,127401990,127467526,127533062,127598598,127664134,127729670,127795206,127860742,127926278,127991814,128057350,128122886,128188422,128253957,128319493,128385029,128450565,128516101,128581637,128647173,128712709,128778245,128843781,128909317,128974853,129040389,129105925,129171461,129236997,129302533,129368069,129433605,129499142,129564678,129630214,129695750,129761286,129826822,129892358,129957894,130023430,130088966,130154502,130220038,130285574,130351110,130416646,130482182,130547718,130613254,130678790,130744326,130809862,130875398,130940934,131006470,131072006,131137542,131203078,131268614,131334150,131399686,131465222,131530757,131596294,131661830,131727365,131792902,131858437,131923974,131989510,132055046,132120582,132186118,132251654,132317190,132382726,132448262,132513798,132579334,132644870,132710406,132775942,132841478,132907014,132972550,133038086,133103622,133169157,133234693,133300229,133365765,133431301,133496838,133562373,133627909,133693445,133758981,133824517,133890054,133955590,134021125,134086661,134152198,134217733,134283269,134348806,134414342,134479878,134545414,134610949,134676485,134742021,134807557,134873094,134938630,135004166,135069701,135135237,135200773,135266309,135331845,135397381,135462917,135528453,135593989,135659525,135725061,135790597,135856133,135921669,135987206,136052742,136118278,136183814,136249350,136314886,136380422,136445958,136511494,136577030,136642566,136708102,136773638,136839174,136904710,136970246,137035782,137101318,137166854,137232389,137297925,137363461,137428997,137494533,137560069,137625605,137691141,137756677,137822213,137887749,137953285,138018821,138084357,138149894,138215430,138280966,138346502,138412038,138477574,138543110,138608646,138674181,138739717,138805253,138870789,138936326,139001862,139067398,139132934,139198470,139264006,139329542,139395077,139460613,139526149,139591685,139657221,139722757,139788294,139853829,139919365,139984901,140050437,140115974,140181510,140247046,140312582,140378118,140443654,140509190,140574725,140640261,140705797,140771333,140836869,140902405,140967942,141033477,141099013,141164550,141230085,141295622,141361158,141426694,141492230,141557765,141623302,141688838,141754373,141819909,141885445,141950981,142016517,142082053,142147590,142213126,142278662,142344198,142409734,142475270,142540806,142606342,142671878,142737414,142802949,142868485,142934021,142999557,143065093,143130629,143196165,143261701,143327237,143392773,143458309,143523845,143589381,143654917,143720453,143785989,143851525,143917061,143982597,144048133,144113669,144179205,144244741,144310277,144375813,144441349,144506885,144572421,144637957,144703493,144769029,144834565,144900101,144965637,145031173,145096709,145162245,145227781,145293317,145358853,145424389,145489925,145555461,145620997,145686533,145752069,145817605,145883141,145948677,146014213,146079749,146145285,146210821,146276357,146341893,146407429,146472965,146538501,146604037,146669573,146735109,146800645,146866181,146931718,146997254,147062790,147128326,147193862,147259398,147324934,147390470,147456006,147521542,147587078,147652614,147718150,147783686,147849222,147914758,147980294,148045830,148111366,148176902,148242438,148307974,148373510,148439046,148504582,148570118,148635654,148701190,148766726,148832262,148897798,148963334,149028870,149094406,149159942,149225478,149291014,149356550,149422086,149487622,149553158,149618694,149684230,149749766,149815301,149880838,149946373,150011910,150077445,150142981,150208517,150274053,150339590,150405126,150470661,150536198,150601733,150667270,150732806,150798342,150863878,150929414,150994950,151060486,151126021,151191557,151257093,151322630,151388166,151453702,151519238,151584774,151650309,151715845,151781381,151846917,151912453,151977990,152043526,152109062,152174597,152240133,152305669,152371205,152436741,152502277,152567813,152633349,152698885,152764421,152829957,152895493,152961029,153026565,153092101,153157637,153223174,153288709,153354245,153419781,153485317,153550853,153616389,153681925,153747461,153812997,153878534,153944070,154009606,154075141,154140678,154206214,154271750,154337286,154402822,154468357,154533893,154599430,154664966,154730502,154796038,154861573,154927109,154992645,155058181,155123717,155189253,155254789,155320325,155385861,155451397,155516933,155582469,155648005,155713541,155779078,155844614,155910150,155975686,156041222,156106758,156172294,156237830,156303365,156368901,156434437,156499973,156565511,156631046,156696582,156762122,156827655,156893191,156958727,157024262,157089798,157155334,157220870,157286406,157351943,157417517,157483016,157548551,157614087,157679623,157745159,157810695,157876231,157941767,158007303,158072839,158138376,158203911,158269447,158334983,158400519,158466055,158531591,158597127,158662663,158728199,158793735,158859271,158924807,158990343,159055879,159121415,159186951,159252487,159318023,159383559,159449095,159514631,159580167,159645703,159711239,159776775,159842311,159907846,159973383,160038919,160104454,160169991,160235527,160301063,160366598,160432135,160497670,160563206,160628743,160694279,160759815,160825354,160890888,160956424,161021960,161087496,161153033,161218567,161284103,161349640,161415176,161480712,161546248,161611784,161677320,161742856,161808392,161873928,161939464,162005000,162070536,162136072,162201608,162267144,162332680,162398217,162463751,162529287,162594823,162660360,162725895,162791431,162856969,162922503,162988040,163053576,163119167,163184661,163250186,163315719,163381258,163446791,163512330,163577863,163643400,163708935,163774472,163840007,163905544,163971080,164036615,164102152,164167688,164233228,164298759,164364295,164429831,164495370,164560906,164626442,164691975,164757512,164823047,164888583,164954119,165019655,165085194,165150727,165216263,165281799,165347335,165412871,165478407,165543943,165609479,165675015,165740551,165806087,165871623,165937159,166002695,166068230,166133767,166199302,166264839,166330375,166395911,166461447,166526983,166592519,166658055,166723591,166789127,166854663,166920199,166985735,167051271,167116807,167182343,167247879,167313415,167378951,167444487,167510023,167575564,167641098,167706634,167772177,167837712,167903242,167968784,168034312,168099848,168165384,168230921,168296457,168361993,168427528,168493064,168558601,168624137,168689671,168755207,168820743,168886280,168951816,169017352,169082890,169148425,169213961,169279497,169345033,169410566,169476102,169541641,169607178,169672711,169738248,169803784,169869321,169934857,170000393,170065929,170131465,170197001,170262537,170328073,170393609,170459144,170524683,170590217,170655752,170721288,170786825,170852360,170917895,170983432,171048967,171114504,171180041,171245576,171311111,171376648,171442184,171507720,171573256,171638792,171704328,171769863,171835457,171900937,171966472,172032008,172097545,172163080,172228616,172294153,172359687,172425224,172490760,172556296,172621832,172687368,172752903,172818440,172883975,172949512,173015049,173080585,173146120,173211658,173277192,173342728,173408267,173473799,173539336,173604872,173670408,173735944,173801481,173867019,173932552,173998089,174063624,174129160,174194696,174260232,174325768,174391304,174456841,174522377,174587911,174653448,174718983,174784539,174850056,174915592,174981128,175046664,175112200,175177736,175243274,175308809,175374344,175439880,175505415,175570952,175636488,175702023,175767560,175833098,175898633,175964167,176029703,176095239,176160775,176226311,176291846,176357383,176422919,176488455,176553991,176619526,176685063,176750598,176816134,176881671,176947207,177012743,177078279,177143815,177209351,177274887,177340423,177405959,177471495,177537031,177602567,177668103,177733639,177799175,177864711,177930247,177995783,178061319,178126855,178192391,178257927,178323463,178388999,178454535,178520071,178585607,178651143,178716679,178782215,178847751,178913286,178978822,179044358,179109897,179175432,179240968,179306503,179372040,179437576,179503111,179568654,179634183,179699719,179765255,179830791,179896327,179961863,180027399,180092935,180158471,180224007,180289543,180355079,180420614,180486150,180551686],"asterisk":[196611,786439,3604482,4718593,5177345,5242882,5570561,10616834,10747920,16646145,16711681,27131907,29491201,29556737,30081025,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,31195137,31260673,31981569,32047105,32112641,32178177,33488897,49741825,49872897,65011714,65077249,65142785,65732610,65798146,69271554,69337100,69533697,69599253,69664805,69730306,70057988,70123522,70320130,70647812,76808194,78577665,81068033,81199105,82771969,83296257,85196801,85262341,85327877,85393412,85458949,85524484,85590020,85655570,85721092,85786628,85852165,85917701,85983237,86048773,86114308,86179844,86245380,86310916,86376452,86441988,86507524,86573060,86638596,86704132,86769686,86835204,86900740,86966294,87031812,87097366,87162884,87228420,87293956,87359492,87425029,87490565,87556101,87621636,87687173,87752708,87818245,87883781,87949317,88014852,88080388,88145924,88211460,88276996,88342532,88408068,88473604,88539140,88604676,88670212,88735750,88801284,88866820,88932356,88997892,89063428,89128964,89194500,89260036,89325572,89391108,89456644,89522180,89587716,89653252,89718788,89784324,89849860,89915396,89980932,90046468,90112004,90177540,90243076,90308612,90374148,90439684,90505220,90570756,90636292,90701828,90767364,90832900,90898436,90963972,91029508,91095044,91160580,91226116,91291652,91357188,91422724,91488267,91553798,91619344,91684882,91750417,91815953,91881489,91947017,92012548,92078084,92143620,92209156,92274692,92340228,92405764,92471300,92536836,92602372,92667908,92733444,92798980,92864516,92930052,92995588,93061124,93126660,93192196,93257732,93323268,93388804,93454340,93585413,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,98762753,105381889,105709569,109314049,111214593,116523009,116785153,117440513,117899265,117964801,118030337,118095873,118161410,118226945,118292481,118358017,118423553,118489089,118620161,118685697,118751233,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,135200769,137756674,137822209,138018817,144113665,144310273,152371201,152502273,152567809,152698881,153157633,155385857,155516929,156696577,156893185,157024258,157089796,157220880,157614081,157679617,157745153,157810689,157876225,158072834,158203907,158466049,158662657,159514625,160694273,160825345,161153026,161284098,162398210,162463746,162660353,162856962,163184642,163250178,163381251,163840001,164233217,164495362,164560898,164757505,167510017,167575557,167641093,167706628,167772165,167837700,167903236,167968786,168034308,168099844,168165381,168230917,168296453,168361989,168427524,168493060,168558597,168624133,168689668,168755204,168820740,168886276,168951812,169017348,169082902,169148420,169213956,169279510,169345031,169541654,169607172,169672708,169738244,169803780,169869317,169934853,170000389,170065924,170131461,170196996,170262533,170328069,170393605,170459142,170524676,170590213,170655748,170721284,170786821,170852358,170917893,170983428,171048964,171114500,171180039,171245572,171311108,171376645,171442180,171507716,171573252,171638788,171704326,171769860,171835399,171900932,171966468,172032004,172097540,172163076,172228612,172294148,172359684,172425220,172490756,172556292,172621828,172687364,172752900,172818436,172883972,172949508,173015044,173080580,173146117,173211652,173277189,173342724,173408261,173473797,173539332,173604868,173670404,173735940,173801476,173867012,173932556,173998086,174063635,174129171,174194705,174260242,174325777,174391305,174456836,174522373,174587909,174653445,174718980,174784516,174850052,174915588,174981124,175046660,175112196,175177734,175243268,175308804,175374340,175439877,175505412,175570948,175636485,175702021,175767556,175833092,175898628,176291841,176619535,179109890,179175426,179240962,179306498,179372034,179437570,179503107,179568643],"ami":[196610,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822209,155516929,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"allows":[196609,6815745,9961473,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747913,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,30212097,30277633,30343169,30408705,32047105,32112641,32178177,33423361,38338561,38404097,38469633,69337089,69533697,69599233,70057988,70647811,71041025,72089603,80609282,83296257,102891521,103219201,110755841,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220873,157286401,157351937,157417473,157483009,157548545,157614082,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662660,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694275,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381250,163446786,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510018,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619522,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"application":[196609,786433,3866625,6815745,9961473,10747908,30801928,30867465,32964609,33030145,33095681,33161217,36175878,36241415,39911425,40042497,40501249,40566785,69337094,69599238,69664769,70975490,77463553,77529089,77594625,78315523,79560705,79626241,79757314,80150529,80216065,83296261,85131265,85196802,90439683,93650945,93716483,94568449,98107398,98172929,100597761,100663298,100794369,100859905,110690310,110886913,111017987,116523009,139722753,139853830,153354246,153616385,156762113,156827649,156893185,157220868,157941766,159252482,159318018,159514627,159973377,160038913,160694273,163381258,166199297,167510018,172883971,175702017,176619522,176750593,177405955,179830785],"applications":[196609],"add":[262145,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,30736386,51249154,51314690,51380226,69664771,83623939,111869954,111935489,163708931,169672705,175702018],"agiexception":[327683,10354691,28770311,28835847,28901383,69271553,69926918,77463555,156762123,156827653,156893189,159973381,160038917],"agihangupexception":[393219,10420227,28966918,69271554,77529091,156762113,156827658],"aginetworkexception":[458755,10485763,29032456,69271554,77594627,156762113,156893194],"authenticationfailedexception":[655363,18677763,55312391,55377927,69533698,76480518,85131267,93585409,152502273,166199308,176619521],"agentcallbacklogin":[786434,983046,69599233,69664770,80609281,102957057,160694274,168034305,168099841,176619522],"agent":[786441,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,44892168,44957704,45088775,45154311,69599236,69664779,73269250,73334786,80609284,80674818,85262337,85327873,85393409,85458945,85524481,85590017,85655554,85721091,85786628,85852161,85917699,85983233,86048769,86114307,86179843,86245377,86310925,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128962,89194498,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226114,91291650,91357185,91422722,91488259,91553794,91619330,91684866,91750402,91815939,91881474,91947011,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,102891522,103022598,103350280,118161409,118816774,118947847,119144449,119996417,120061953,120324102,120455174,120586245,120651778,120717313,120782849,120848389,120913922,137822209,143130625,143392769,143851521,144703489,145031169,155516929,160694280,160759813,160825345,167575554,167641089,167706625,167772161,167837697,167903233,167968770,168034308,168099845,168165378,168230916,168296450,168361986,168427524,168493060,168558593,168624142,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524674,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573250,171638786,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670402,173735938,173801473,173867010,173932547,173998082,174063618,174129154,174194690,174260227,174325762,174391299,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619529,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"agentcallbacklogoff":[786434,1048582,176619522],"agentcalled":[786435,1114119,85852161,119209990,168165377,176619523],"agentcomplete":[786433,1179653,176619521],"agentcompleteevent":[786433,1179650,19464195,56492039,69664770,85917699,119930882,119996418,120061954,165412869,167575553,168230922,176619521],"agentconnect":[786433,1245189,176619521],"agentconnectevent":[786433,1245186,19529731,56557575,69664770,85983235,120127490,120193026,120258562,165478405,167575553,168296458,176619521],"agentdump":[786433,1310725,176619521],"agentdumpevent":[786433,1310722,19595267,56623111,69664770,86048771,165543941,167575553,168361994,176619521],"announcement":[786433,1310721,69664769,168361985,176619521],"agentlogin":[786435,1376262,1441793,69664770,168427521,168493057,176619523],"agentloginevent":[786433,1376258,19660803,56688647,69664770,86114307,120324098,120389635,165609477,168427530,168493057,171835393,176619521],"agentlogoff":[786433,1441797,80674817,103284737,160759809,176619521],"agentcallbacklogoffevent":[786433,1048577,1441793,19333123,56360967,69664771,85786627,118947842,119013379,119078915,119144450,165281797,168034305,168099850,168493057,171835393,176619521],"agents":[786434,1507333,1572865,69599235,69664769,80740353,85786625,103481345,119144449,160825347,164233217,168099841,168558593,176619522],"agentsevent":[786433,1507330,19857411,56885255,69599233,69664770,86310915,120586242,120651778,120717314,120782850,120848386,120913922,160825346,165806085,168624138,174784513,176619521],"agentsaction":[786434,1507329,1572865,14286851,45219844,45285382,69599234,69664770,80740355,103481346,160825354,163184641,168558594,168624130,176619522],"agentscomplete":[786433,1572869,176619521],"agentscompleteevent":[786433,1572866,19791875,56819719,69599233,69664770,86245379,160825346,165740549,168558602,174784513,176619521],"agiexec":[786434,1638406,176619522],"alarm":[786435,1703942,1769473,69664770,86507525,93454342,121307145,151781386,168755201,168820742,175898630,176619523],"alarmevent":[786434,1703938,1769473,20054019,57081863,69664771,86507523,121307138,166002693,168755201,168820746,171835393,176619522],"alarmclear":[786433,1769477,176619521],"attendedtransfer":[786433,1835014,176619521],"attempts":[786435,2818049,4718593,5570561,69664771,170786817,173473793,174587905,176619523],"action":[786435,2883585,2949121,4325377,6553601,6619137,6684673,9175043,9240578,9306114,9371650,9437187,9502723,9568259,9633795,9699331,9764867,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646146,16711682,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219010,18284545,18350081,18415617,18481153,18546689,18612225,27131906,27590661,27656197,27721733,27787269,27852805,27918341,27983877,28049413,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219844,45285378,45350916,45416450,45482000,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268420,46333956,46399491,46465028,46530562,46596098,46661635,46727170,46792708,46858242,46923780,46989314,47054851,47120386,47185923,47251458,47316995,47382530,47448068,47513602,47579138,47644674,47710213,47775750,47841282,47906818,47972354,48037890,48103428,48168962,48234498,48300034,48365570,48431106,48496642,48562178,48627716,48693250,48758787,48824322,48889858,48955394,49020930,49086466,49152002,49217539,49283074,49348610,49414146,49479682,49545218,49610754,49676290,49741828,49807362,49872900,49938434,50003972,50069506,50135042,50200578,50266114,50331650,50397188,50462724,50528259,50593796,50659331,50724866,50790405,50855938,50921476,50987010,51052546,51118082,51183618,51249154,51314690,51380226,51445762,51511303,51576834,51642370,51707906,51773442,51838978,51904514,51970053,52035586,52101126,52166658,52232194,52297730,52363267,52428802,52494339,52559876,52625410,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280772,53346306,53411844,53477378,53542915,53608452,53673986,53739522,53805059,53870596,53936131,54001674,54067211,54132748,54198285,54263817,54329346,54394884,54460421,54525957,54591490,54657028,54722562,54788099,54853634,54919171,54984706,55050243,55115780,55181314,55246850,64684042,64749579,65077250,65339402,65404939,65470474,65536010,65601546,66584586,66912265,67567621,69599248,69664773,69730309,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317831,74383361,74448897,74514433,74579969,74645505,74711042,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087298,76152833,76218369,76283905,76349441,76414977,76873730,80543749,80609285,80674821,80740357,80805893,80871428,80936964,81002500,81068037,81133573,81199109,81264644,81330180,81395716,81461252,81526788,81592324,81657860,81723396,81788932,81854468,81920004,81985540,82051076,82116612,82182148,82247684,82313220,82378756,82444293,82509829,82575365,82640901,82706437,82771973,82837509,82903045,82968582,83034116,83099652,83165188,83230725,83296261,83361797,83427333,83492869,83558404,83623941,83689476,83755013,83820548,83886084,83951621,84017156,84082692,84148229,84213765,84279301,84344837,84410372,84475908,84541445,84606981,84672519,84738053,84803589,84869125,84934661,85000197,85065733,86245378,86310914,87621634,87752706,88145922,90570754,90636290,90767362,90898434,90963970,91357186,91553794,92012546,92078082,92340226,92798978,92864514,93388802,93454338,93519873,93585410,93782017,93913089,93978629,94044165,94109701,94175237,94240773,94306309,94371845,94437381,102694921,102760450,102825986,102891522,102957065,103022594,103088130,103153666,103219202,103284746,103350274,103415810,103481353,103546889,103612419,103677955,103743498,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,104726538,104792066,104857602,104923138,104988674,105054218,105119747,105185283,105250819,105316361,105381890,105447433,105512962,105578498,105644041,105709570,105775114,105840643,105906179,105971722,106037251,106102794,106168330,106233859,106299402,106364931,106430467,106496010,106561539,106627075,106692618,106758147,106823690,106889219,106954762,107020291,107085834,107151363,107216899,107282442,107347978,107413514,107479050,107544579,107610122,107675650,107741186,107806730,107872258,107937794,108003338,108068866,108134402,108199946,108265474,108331010,108396546,108462089,108527618,108593161,108658690,108724226,108789769,108855298,108920841,108986370,109051906,109117449,109182978,109248521,109314050,109379586,109445122,109510658,109576194,109641737,109707273,109772802,109838345,109903875,109969416,110034947,110100483,110166018,110231561,110297090,110362626,110428162,110493698,110559234,110624777,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345673,111411202,111476738,111542274,111607810,111673353,111738889,111804425,111869954,111935490,112001026,112066562,112132098,112197642,112263171,112328707,112394243,112459779,112525315,112590857,112656386,112721922,112787458,112853002,112918531,112984067,113049603,113115146,113180675,113246211,113311747,113377283,113442825,113508354,113573890,113639434,113704963,113770506,113836035,113901577,113967106,114032642,114098185,114163714,114229250,114294786,114360322,114425858,114491401,114556930,114622466,114688002,114753545,114819074,114884610,114950146,115015690,115081226,115146754,115212297,115277833,115343362,115408905,115474435,115539970,115605507,115671042,115736585,115802114,115867650,115933193,115998722,116064265,116129794,116195337,116260866,116326409,116391945,116457474,146800641,146866177,151977990,153026562,153878536,154271752,154468353,155254786,155451393,155582465,155713537,160628745,160694280,160759816,160825353,160890889,160956424,161021960,161087496,161153034,161218568,161284104,161349640,161415176,161480712,161546248,161611784,161677320,161742856,161808392,161873928,161939464,162005000,162070536,162136072,162201614,162267144,162332680,162398216,162463751,162529288,162594824,162660362,162725896,162791432,162856970,162922504,162988040,163053577,163119168,163184661,163250186,163315720,163381260,163446792,163512329,163577864,163643400,163708936,163774472,163840008,163905544,163971080,164036616,164102152,164167688,164233226,164298760,164364296,164429833,164495368,164560904,164626441,164691976,164757520,164823048,164888584,164954120,165019656,165085193,165150728,168558595,168624131,170065922,170196994,170590211,170655745,170721281,173015042,173080580,173211651,173342722,173408260,173801475,173998083,174456835,174522371,174784516,175243267,175308803,175833091,175898627,176291841,176619527,178913281,179044353,179109900,179175436,179240970,179306506,179372043,179437579,179503114,179568654],"added":[786433,5111809,51249153,51314690,51380226,69140481,69664769,83623939,85655555,91488261,91553797,91619331,91684867,91750403,91815939,91881475,91947013,112001026,112132097,118292483,143327233,143458307,143589377,143785985,143982595,144179201,144965633,145096707,145227777,163708931,167968771,173932550,173998085,174063619,174129155,174194691,174260227,174325763,174391301,176619521,180551681],"available":[786433,5177345,10747915,28377089,30212097,30277633,30343169,30408705,30932993,31195137,31260673,31981569,32047105,32112641,32178177,51707906,51838977,69009409,69337093,69599239,69664784,70057988,70320130,70647812,75366401,83755012,85262338,85327874,85393410,85458947,85524482,85590018,85655566,85721090,85786626,85852162,85917698,85983234,86048770,86114306,86179842,86245378,86310914,86376450,86441986,86507522,86573058,86638594,86704130,86769684,86835202,86900738,86966292,87031810,87097364,87162882,87228418,87293954,87359490,87425027,87490563,87556099,87621634,87687171,87752706,87818243,87883779,87949315,88014850,88080386,88145922,88211458,88276994,88342530,88408066,88473602,88539138,88604674,88670210,88735746,88801282,88866818,88932354,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488263,91553797,91619342,91684878,91750413,91815949,91881485,91947013,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,112656385,112721922,112787457,117440513,117899265,117964801,118030337,118095873,118226945,118292481,118358017,118423553,118489089,118620161,118685697,118751233,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,137822209,138018817,144113665,144310274,144375809,144441345,155516929,157089793,157220875,157548545,157614081,158072833,158466049,158662657,160694273,160825345,162463745,163840007,164495361,164560897,167575554,167641090,167706626,167772163,167837698,167903234,167968782,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558595,168624131,168689666,168755202,168820738,168886274,168951810,169017346,169082900,169148418,169213954,169279508,169345026,169541652,169607170,169672706,169738242,169803778,169869315,169934851,170000387,170065922,170131459,170196994,170262531,170328067,170393603,170459138,170524674,170590211,170655746,170721282,170786819,170852354,170917891,170983426,171048962,171114498,171180035,171245570,171311106,171376643,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146115,173211650,173277187,173342722,173408259,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932552,173998085,174063631,174129167,174194701,174260238,174325773,174391301,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439875,175505410,175570946,175636483,175702018,175767554,175833090,175898626,176619521,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,180551681],"active":[786433,5701633,28377089,69009409,69599236,69664769,92733441,149946369,161480705,163512321,164626434,175177729,175308801,176619521,180551681],"assembly":[983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,80347138,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777416,101842947,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235523,160301057,160366593,160432129,160497665,160563201,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619521,176685057,176750593,176816129,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405953,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179699713,179765249,179830785,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420609,180486145,180551681],"agentcallbacklogineventhandler":[983047,69533697,165216262],"agentcallbackloginevent":[983041,19267587,56295431,69664770,85721091,118816770,118882307,165216261,168034314,168099841,171835393],"agentcallbacklogoffeventhandler":[1048583,69533697,165281798],"agentcalledeventhandler":[1114119,69533697,165347334],"agentcalledevent":[1114113,19398659,56426503,69664770,85852163,119209987,119275523,119341059,119406594,119472130,119537667,119603203,119668739,119734275,119799811,119865347,165347333,167641089,168165386],"agentcompleteeventhandler":[1179655,69533697,165412870],"agentconnecteventhandler":[1245191,69533697,165478406],"agentdumpeventhandler":[1310727,69533697,165543942],"agentlogineventhandler":[1376263,69533697,165609478],"agentlogoffeventhandler":[1441799,69533697,165675014],"agentlogoffevent":[1441793,19726339,56754183,69664769,86179843,120455170,120520707,165675013,168427521,168493065,171835393],"agentseventhandler":[1507335,69533697,165806086],"agentscompleteeventhandler":[1572871,69533697,165740550],"agiexechandler":[1638407,69533697,165871622],"agiexecevent":[1638401,19922947,56950791,69664769,86376451,120979459,121044995,121110531,121176067,121241603,165871621,168689673,171835393],"alarmeventhandler":[1703943,69533697,166002694],"alarmcleareventhandler":[1769479,69533697,165937158],"alarmclearevent":[1769473,19988483,57016327,69664769,86441987,165937157,168755209,171835393],"attendedtransfereventhandler":[1835015,69533697,166133766],"attendedtransferevent":[1835009,20185091,57212935,69664769,86638595,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,123863043,123928579,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,124518403,124583939,124649475,124715011,124780547,124846083,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,166133765,168951818,171835393],"agi_additional_attribute_pattern":[6422529,7471110,156565505],"agi_additional_attributes_pattern":[6422529,7405574,156565505],"agi_bind_address":[6422529,7536645,156565505],"agi":[6422531,7536641,7602177,8060929,69271553,69599233,69664769,77398017,77725704,80805889,94765057,95682561,95813636,95879169,96141313,96468993,103546881,156565507,156631041,156762113,157155336,160890882,168689665],"address":[6422529,7536641,34275329,90898433,141230081,156565505,173342721],"agi_bind_port":[6422529,7602181,156565505],"agi_default_max_digits":[6422529,7667718,156565505],"agi_default_resource_bundle_name":[6422529,7733254,156565505],"agi_default_timeout":[6422529,7798790,156565505],"agi_end_of_proper_usage":[6422529,7864326,156565505],"agi_parameter_pattern":[6422529,7929862,156565505],"agi_parenthesis_pattern":[6422529,7995398,156565505],"agi_pool_size":[6422529,8060933,156565505],"agi_result_pattern":[6422529,8126470,156565505],"agi_script_pattern":[6422529,8192006,156565505],"agi_status_pattern":[6422529,8257542,156565505],"agi_synopsis_pattern":[6422529,8323078,156565505],"asterisk_version":[6422529,8388614,156565505],"asteriskfastagi":[6488067,9043970,9109506,10878979,33816579,33882115,33947655,34013192,34078731,34144263,34209800,34275335,34340876,69271553,71106576,77856771,96796674,96862211,96927746,96993283,157351958],"agichannel":[6488066,9043969,9109505,10223619,28442629,28508171,28573706,32768008,69271554,69861382,77398019,94765058,96731142,156631052,157351938],"action_append":[6684673,9437190,164757505],"action_delcat":[6684673,9502726,164757505],"action_delete":[6684673,9568262,164757505],"action_newcat":[6684673,9633798,164757505],"action_renamecat":[6684673,9699334,164757505],"action_update":[6684673,9764870,164757505],"arrive":[6815745,9961473,176619521],"attributes":[6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,10158086,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,57606150,60162054,67502086,67567618,67764230,67960838,69664771,69730306,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137625606,155320326,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702020,175767553,175833089,175898625,179109892,179175428,179240964,179306502,179372036,179437572,179503108,179568644],"array":[8781825,8847361,8978433,10027009,28246018,43515905,43778049,44040193,44564481,68419588,156303363,180420610],"api":[8978433,65732609,65798145,83034113,83099649,83165185,83558401,85196801,91553793,92143617,109969409,111280129,116523009,116785153,143982593,146276353,160301057,163119105,163184641,163250177,163643393,167510017,173998081,174587905],"agiconnectionhandler":[10289155,28639235,28704776,69009414,69271554,156696586],"agireader":[10551299,28508176,29097988,29163524,29229063,69271554,69861377,156631041,156696577,156958730],"agireply":[10616835,28442629,29097989,29294594,29360130,29425666,29491202,29556738,29622276,29687815,29753352,69271554,69992454,77660163,94765062,94830594,94896131,94961667,95027202,95092738,157024268],"additional":[10616834,29294594,69599233,69664770,77463553,77529089,77594625,80150529,80216065,84213761,85131265,85196801,93650945,94568449,114360321,156762113,156827649,156893185,157024258,157089793,159973377,160038913,164298754,166199297,167510017,174784513,175702017,176750593,179830785],"attribute":[10616834,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,29294596,67567620,69730306,93585409,116523009,153026561,157024258,176619521,179109890,179175426,179240962,179306498,179372034,179437570,179503107,179568643],"agirequest":[10682371,29163525,29818885,29884420,29949957,30015492,30081030,32768008,41484296,41746442,42074122,42532874,69271555,77725699,95158274,95223811,95289347,95354883,95420419,95485955,95551491,95617026,95682562,95748099,95813634,95879170,95944706,96010243,96075779,96141314,96206851,96272387,96337923,96403459,96468994,96534530,96600066,96665602,156827649,157155338],"agiscript":[10747907,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670851,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260675,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768005,32833539,32899075,32964611,33030147,33095683,33161219,33226754,33292290,33357826,33423362,33488898,33554434,33619974,41484293,41746438,42074118,42532870,69271556,69402626,70057986,70123522,70189058,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041026,77791235,80347137,96731139,101908481,156696577,157220873,160169986,160235521,160301058],"answer":[10747905,30146565,157220865],"answers":[10747905,30146561,157220865],"allowing":[10747908,30212097,30277633,30343169,30408705,69337090,70057988,157220868,157614081,159645697],"audio":[10747908,30212097,30277633,30343169,30408705,69337090,70057988,77725698,95813634,157155330,157220868,157614081,159645697],"ascii":[10747908,30212097,30277633,30343169,30408705,69337098,70057988,93585409,153092097,157220868,157614081,158138369,158597121,158662657,158728193,158793729,158859265,158924801,159645697,159842305,176619521],"adds":[10747905,18219009,27459585,28377089,30736385,51249153,51314689,51380225,51445761,51511297,54263809,66650113,69009409,69337089,69533697,69599234,75235331,75300866,76087297,157220865,157876225,162463745,163708932,163774466,164757505,178913281,178978817,180551681],"allowed":[10747906,31129601,31719425,31784961,69337089,70516738,157220866,158531585],"autohangup":[10747905,32833537,39649281,69337089,157220865,159121409],"agiwriter":[10813443,28508176,33685508,33751047,69271554,69861377,156631041,157286410],"agicommand":[10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,28442632,33685511,34406404,34471941,34537476,34603014,69337089,157089796,157417483,157483016,157548552,157614088,157679624,157745160,157810696,157876232,157941768,158007304,158072840,158138376,158203912,158269448,158334984,158400520,158466056,158531592,158597128,158662664,158728200,158793736,158859272,158924808,158990344,159055880,159121416,159186952,159252488,159318024,159383560,159449096,159514632,159580168,159645704,159711240,159776776,159842312],"answercommand":[11010051,34668548,34734086,69337089,157417473,157483018],"accept":[13893633,42795015,160366593],"associated":[13959169,42991617,77463553,77529089,77594625,80150529,80216065,85131265,85196801,85655553,91619329,91684865,91815937,91881473,93650945,94568449,118489089,156762113,156827649,156893185,159973377,160038913,160432129,166199297,167510017,167968769,174063617,174129153,174260225,174325761,176750593,179830785],"absolutetimeoutaction":[14090243,44695559,44761095,69599234,73203718,80543747,102694914,102760450,102825986,160628748,163119105],"agentcallbackloginaction":[14155779,44826631,44892167,44957703,69599234,73269256,80609283,102891522,102957058,103022594,103088130,103153666,103219202,160694286,163119105],"agentlogoffaction":[14221315,45023239,45088775,45154311,69599234,73334792,80674819,103284738,103350274,103415810,160759822,163119105],"actioncompleteeventclass":[14286850,14876674,14942210,15859714,16646145,16842754,16973826,17694722,17956866,18022402,18087938,18546690,45219848,46333960,46465032,48103432,49741830,50397192,50921480,52559880,53280776,53411848,53608456,55115784,69599233,160825346,161415170,161480706,162398210,163184642,163381250,163512322,164233218,164495362,164560898,164626434,165085186],"agiaction":[14352387,45350920,69599233,80805891,103546882,103612419,103677955,160890889,163119105],"aocmessageaction":[14417923,45416454,45482004,69599233,73400324,80871427,103743491,103809027,103874563,103940099,104005635,104071171,104136707,104202243,104267779,104333315,104398851,104464387,104529923,104595459,104660995,160956426,163119105],"atxferaction":[14483459,45547526,45613062,69599233,73465860,80936963,104726531,104792066,104857602,104923138,104988674,161021962,163119105],"actioncompleteresponseclass":[16121858,16711681,18219010,48627720,49872902,53870600,69599233,162660354,163250178,164757506],"addcommand":[18219014,53936135,54001672,54067209,54132746,54198283,54263814,69599233,76087303,164757511],"abstractagentevent":[18808835,55508999,69664769,85262339,85917699,85983235,86048771,88735747,116588546,116654082,116719618,167575561,167641089,168230920,168296456,168361992,171180040],"abstractagentvariables":[18808836,18874371,19398660,19464196,19529732,19595268,22282244,55574532,55640067,55705604,55771139,55836679,69664769,85262337,85327875,85852161,85917697,85983233,86048769,88735745,116785154,167575562,167641098,168165386,168230918,168296454,168361990,171180038,171835393],"abstractchannelevent":[18939907,55902215,69664769,85393411,88801289,90374153,90505225,116850690,116916226,116981762,117047298,117112834,117178370,117243907,117309443,117374978,167706633,171245582,171835393,172818446,172949518],"abstractconfbridgeevent":[19005443,55967751,56033288,69664769,76546054,85458947,87425025,87490561,87556097,87687169,87818241,87883777,87949313,117440514,167772173,169869318,169934854,170000390,170131462,170262534,170328070,170393606,171835393],"abstractmeetmeevent":[19070979,56098823,69664769,85524483,89456642,89522178,89587714,89653250,89718786,89784322,89849858,117506050,117571587,167837706,171835393,171900935,171966471,172032007,172097543,172163079,172228615,172294151],"abstractparkedcallevent":[19136515,56164359,69664769,85590019,90701828,90832900,93192196,117637122,117702658,117768194,117833730,167903241,171835393,173146121,173277193,175636489],"abstractqueuememberevent":[19202051,56229894,69664769,85655555,91488263,91619340,91684878,91750413,91815949,91881485,91947013,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,167968778,171835393,173932556,174063633,174129171,174194706,174260242,174325778,174391306],"asyncagievent":[20119555,57147399,69664769,86573059,121372675,121438211,121503747,121569283,168886282,171835393],"asteris":[27131906,31653889,46989313,47054849,49217538,49283073,49348609,65077249,65142785,69599234,69664769,69730306,74055682,76808194,80609282,82771969,88735745,93585411,102891521,103219201,109510657,135135233,152567809,152698881,153157633,160694275,161284097,161742850,162856961,167837697,171180033,176619525,179175425,179306497],"ans":[27131905,65470465,76873729,176619521],"addevent":[27459585,66650117,178978817],"alert_info":[27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,67567618,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"alertinfo":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"algorithm":[28246018,45809665,45875201,49283073,49348609,68288514,68354055,68485127,73596930,77266946,82771969,109314049,161153026,162856961,180420611],"append":[28246017,53018630,54263809,68419585,69599234,69664769,84279299,114556934,114688001,164364292,164757505,175702017,180420609],"addjob":[28377089,69009414,69140481,180551682],"agiexeption":[28835841,28901377,69926914,156762114],"abstract":[29622273,30015489,32768003,34406403,34537473,34668545,34799617,34996225,35454977,35651585,35848193,35979265,36110337,36306945,36569089,36765697,36962305,37093377,37289985,37421057,37617665,37814273,38010881,38207489,38535169,38731777,38928385,39124993,39321601,39452673,39583745,39714817,39845889,39976961,40108033,40239105,40435713,40632321,40763393,41025537,41156609,41287681,41484289,41549825,41746433,41811969,42074113,42139649,42532865,42598401,45219841,46333953,46465025,48103425,48627713,49741827,49872899,50003969,50397185,50528257,50659329,50921473,52559873,53280769,53411841,53608449,53870593,55115777,55640065,55771137,57606145,60096513,60162049,60227585,64225281,64552961,64618497,66387969,66519041,66781185,66846721,67698689,67764225,67829761,68091905,68616193,69271553,69664778,102694913,102957057,103284737,103481345,103546881,103743489,104726529,105054209,105316353,105447425,105644033,105775105,105971713,106102785,106168321,106299393,106496001,106692609,106823681,106954753,107085825,107282433,107347969,107413505,107479041,107610113,107806721,108003329,108199937,108462081,108593153,108789761,108920833,109117441,109248513,109641729,109707265,109838337,109969411,110100481,110231553,110624769,111345665,111673345,111738881,111804417,112197633,112590849,112852993,113115137,113442817,113639425,113770497,113901569,114098177,114491393,114753537,115015681,115081217,115212289,115277825,115408897,115736577,115933185,116064257,116195329,116326401,116391937,137625601,151977985,152043521,153878529,153944065,154271745,154337281,155320321,156565505,156762113,157220866,157417474,163119106,163184642,163250178,163643394,167575555,167641090,167706627,167837699,167903235,167968771,169082882,169607170,170524675,171835395,173867011,174784515,175702017],"allow":[30277633,30343169,30408705,31719425,31784962,31916033,32047105,32112641,32178177,32309249,32440321,32571393,32702465,33423361,35258369,35323905,35389441,37879809,37945346,38141953,38338561,38404097,38469633,38666241,38862849,39059457,39256065,40894465,40960001,77987841,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79888385,97124353,99090433,99418113,99614721,99876865,99942401,100073473,100204545,101056513,157614081,158531585,158597121,158662657,158728193,158793729,158859265,158924801,159645697],"agiserver":[34144257,34275329,69271553,77856769,96927745,156696577,157351937],"args":[43515910,43778054,44040198,44564486,69337090,78577665,98762753,158072833,158203906],"absolutetimeout":[44761089,69599233,80543745,102694913,160628738],"advice":[45416449,45481985,73400322,160956418],"aocbillingid":[45481990,80871425,103809030,160956417],"attended":[45547521,45613057,73465858,92930049,151191553,161021954,175374337],"authtype":[45875205,49283077,49348613,81068033,82771969,105381893,109314053,161153025,162856961],"alogrithm":[45875201,49283073,49348609,81068033,82771969,105381889,109314049,161153025,162856961],"applies":[48496641,74645505,162529281],"assumed":[49545217,49676289,82903041,82968577,83623937,109772801,109903873,112066561,162988033,163053569,163708929],"authentication":[55312385,55377922,69599233,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,92143617,93585409,110100481,146276353,152436737,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856962,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,174587905,176619521],"asteriskversion":[64880645,69533697,93585409,152109068,166068230,176619521],"autoresetevent":[66584584,66912263],"autoevent":[66584582,66912262],"agiscripts":[69271554,77856769,96862209,157220866,157351937],"agireplystatuses":[69271553,157089798],"actions":[69533697,69599233,83034113,83099649,83165185,83558401,84672513,109969409,115474437,163119105,163184641,163250177,163643393,164757506,178978817],"absolute":[69599234,160628738],"agen":[69599233,160694273],"authenticates":[69599233,162856961],"answered":[69599233,83296257,89128961,89194497,91226113,91291649,91422721,91488258,91553794,91947010,92012545,93716481,111214593,143130625,143261697,143327233,143720449,143785985,144834561,144965633,145883138,153812993,163381250,171573249,171638785,173670401,173735937,173867009,173932546,173998082,174391298,174456833,177405953],"async":[69599233,83296257,110755845,163381250],"apps":[69599237,69664784,163708929,163840001,164036609,164233217,164364289,168165377,170786817,171180033,171573249,171638785,171966465,172032001,172163073,172359681,173801473,173932545,173998081,174063617,174260225,174456833,175702017],"app_queue":[69599236,69664777,163708929,163840001,164036609,164233217,168165377,171573249,171638785,173801473,173932545,173998081,174063617,174260225,174456833],"appended":[69599233,84279297,114556929,164364290],"app_setcdruserfield":[69599233,164364289],"appropriate":[69599233,69664769,85786625,119144449,164757505,168099841,175702017],"action_":[69599233,164757505],"avoiding":[69599233,164757505],"agentcalledevents":[69664769,168165377],"agiexecevents":[69664769,168689665],"app_dial":[69664769,170786817],"app_rxfax":[69664769,171180033],"app_meetme":[69664771,171966465,172032001,172163073],"app_voicemail":[69664769,172359681],"assigned":[69664769,77463553,77529089,77594625,80150529,80216065,85131265,85196801,92012545,93650945,94568449,146014209,156762113,156827649,156893185,159973377,160038913,166199297,167510017,174194689,174456833,176750593,179830785],"arbitrary":[69664769,175702017],"app_userevent":[69664769,175702017],"algorithms":[69795841,180420609],"accountcode":[77725697,85393410,86769665,86966273,87097345,87228417,88801282,90243073,90374146,90505218,95158277,116850694,128253957,130482182,139264006,157155329,167706626,169082881,169279489,169541633,169672705,171245570,172687361,172818434,172949506],"account":[77725697,83296259,88997889,92864514,93716483,95158273,110559239,136052742,150077447,153288711,157155329,163381251,171442177,175308802,177405955],"agirequests":[77856769,96862209,157351937],"actionid":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,86245377,86310913,87621633,87752705,88145921,90570753,90636289,90767361,90898433,90963969,91357185,91553793,92012545,92078081,92340225,92798977,92864513,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110034950,146800645,155254789,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,168558593,168624129,170065921,170196993,170590209,173015041,173080577,173211649,173342721,173408257,173801473,173998081,174456833,174522369,174784513,175243265,175308801,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"authenticate":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,110100481,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721],"ackcall":[80609281,102891525,160694273],"acknowledgement":[80609282,102891522,160694274],"asteri":[82771969,109576193,162856961],"asynchronous":[83296257,110755841,163381249],"assumes":[83296257,111214593,163381249],"assignments":[83296258,111280130,163381250],"abc":[83296258,85262337,85327873,85852161,85917697,85983233,86048769,88735745,111280130,116785153,163381250,167575553,167641089,168165377,168230913,168296449,168361985,171180033],"actio":[84672513,115474433,164757505],"actionbuilder":[84672513,115474433,164757505],"actual":[84672513,115474433,164757505],"avoided":[85196801,116523009,167510017],"actioncompleteevent":[85196801,116523009,167510017],"authorization":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822209,155516929,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"accepting":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118358017,143523841,144113665,145162241,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_unknown":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_not_inuse":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_inuse":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_busy":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_invalid":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_unavailable":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_ringing":[85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,145358849,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_ringinuse":[85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,145358849,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"ast_device_onhold":[85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,145358849,167968769,173932545,174063617,174129153,174194689,174260225,174325761,174391297],"autologoff":[85786627,119144451,168099843],"answering":[85786625,119144449,168099841],"agentname":[85852161,119275526,168165377],"agentid":[86310913,120586241,168624129],"agent_loggedoff":[86310913,120848385,168624129],"agent_idle":[86310913,120848385,168624129],"agent_oncall":[86310913,120848385,168624129],"agent_unknown":[86310913,120848385,168624129],"amaflags":[87228417,130547718,169672705],"answertime":[87228417,130613254,169672705],"admin":[87687169,132644870,170131457],"aclname":[88670209,134873094,171114497],"appdata":[90439681,139722757,172883969],"appdevent":[90439681,139788294,172883969],"acl":[90898433,140967942,173342721],"abandoned":[92012546,145424391,174456834],"average":[92012545,145620994,174456833],"auth":[92143617,146276353,174587905],"attempt":[93585410,152436737,152502273,176619522],"arrival":[93585409,153026561,176619521],"anymore":[111280132,116785156],"aware":[111280132,116785156],"abstractclassattribute":[156565505,157220865,157417473,163119105,163184641,163250177,163643393,167575553,167641089,167706625,167837697,167903233,167968769,169082881,169607169,170524673,171835393,173867009,174784513],"asterisk_1_0":[166068225],"asterisk_1_2":[166068225],"asterisk_1_4":[166068225],"asterisk_1_6":[166068225],"asterisk_1_8":[166068225],"asterisk_10":[166068225],"asterisk_11":[166068225],"asterisk_12":[166068225],"asterisk_13":[166068225]} \ No newline at end of file diff --git a/docs/fti/FTI_98.json b/docs/fti/FTI_98.json index 418bb52..3b90be6 100644 --- a/docs/fti/FTI_98.json +++ b/docs/fti/FTI_98.json @@ -1 +1 @@ -{"b67870ba79f9":[131073],"bind":[917506,2031617,2097153,72351745,91291649,150994946,151781377],"backwards":[983042,3538945,3604481,151781378],"bool":[3538947,3604483,4456451,23003142,23068678,23199750,26279939,28835846,32440323,38666243,38731779,38797315,39649283,44826627,46202883,46333955,47513603,48955395,54591492,58720260,59310083,59506691,62128131,62193668,90308612,93519877,96665605,96731140,97386501,97910789,104988677,105250821,106496005,107216901,109051909,112459781,112852997,113115141,116260869,117506053,121044997,127664133,128778245,128974853,131858437,132907013,132972549,133038085,135397381,135593989,135790597,135921669,136052741,136118277,137953285,138543109,138805253,139198469,139329541,139591685,144244741,145358853,146735109,146866181,146931717,148504581,149618693,150405124,150798340,150863877],"boolean":[3538946,3604482,4456450,5242881,8519682,23003150,23068684,23199752,26279939,28835856,32440323,38666242,38731779,38797315,39649283,44826627,46202883,46333955,47513603,48955398,54591490,58720258,59310082,59506690,62128130,62193666,64356356,65011713,65601538,66453505,67567618,67829761,69599233,69861378,70320129,70647809,90308610,93519874,96665602,96731138,97386498,97910786,104988674,105250818,106496002,107216898,109051906,112459778,112852994,113115138,116260866,117506050,121044994,127664130,128778242,128974850,131858434,132907010,132972546,133038082,135397378,135593986,135790594,135921666,136052738,136118274,137953282,138543106,138805250,139198466,139329538,139591682,144244738,145358850,146735106,146866178,146931714,148504578,149618690,150405122,150798338,150863874,151060484,151650305,151781378,152961025,154927106,155189249,157745153,158269442,158793729,159186945],"builtin":[5242881,25690113,63832065,64815105,151650305,152502273],"buildcommand":[5439489,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,28901383,29163528,29294600,29491208,29949960,30146568,30343176,30474248,30605320,30801928,31064072,31260680,31457288,31588360,31784968,31916040,32112648,32309256,32505864,32702472,33030152,33226760,33423368,33619976,33816584,33947656,34078728,34209800,34340872,34471944,34603016,34734088,34930696,35127304,35258376,35520520,35651592,35782664,151846913,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746],"blocked":[8454146,37486593,37552129,154861570],"bridgeaction":[9043971,40173574,40239110,64094209,68026372,75497475,99549187,99614723,99680259,99745795,155516938,157548545],"blindtransferevent":[14745603,51773447,64159745,81199107,120455171,120520707,120586243,120651779,120717315,120782851,120848387,120913923,120979459,121044995,121110531,121176067,121241603,121307139,121372675,121438211,121503747,121569283,121634819,121700355,121765891,121831427,121896963,121962499,122028035,122093571,122159107,122224643,122290179,122355715,122421251,122486787,122552323,122617859,122683395,160694277,163446794,166264833],"bridgeactivityevent":[14811139,51838983,64159745,81264643,81461265,81592337,122748931,122814467,122880003,122945539,123011075,123076611,123142147,123207683,123273219,123338755,123404291,123469827,123535363,123600899,123666435,123731971,123797507,163512330,163708950,163971094,166264833],"bridgecreateevent":[14876675,51904519,64159745,81330179,160759813,163577866,164036609],"bridgedestroyevent":[14942211,51970055,64159745,81395715,160825349,163643402,164036609],"bridgeenterevent":[15007747,52035591,64159745,81461251,160890885,163512321,163708938],"bridgeevent":[15073283,17301505,21168129,52101122,52166663,64159748,81526787,83755018,87621642,123863049,123928586,123994115,124059651,124125187,124190723,124256259,124321795,124387331,124452867,160956421,163774474,163840002,163905538,166133776,166264833,170000400],"bridgeleaveevent":[15138819,52232199,64159745,81592323,161021957,163512321,163971082],"bridgestateevent":[15204355,52297735,64159745,81330182,81395718,81657859,124518403,124583939,124649475,124715011,124780547,124846083,163577867,163643403,164036618,166264833],"buildaction":[21626882,59179017,59244554,71237635,171048962],"based":[21626882,59572225,59637761,71303170,77266945,103809025,157286401,171048962],"bytes":[22740993,62914562,150732801,174850049],"beep":[26279942,32440326,73334786,93519878,152961026],"berlin":[26673153,32964609],"beginning":[29687809,29753345,35323905,35389441,63832065,65798146,67043330,152043522,152567809,154075138],"blocks":[35848193,67108865,154271745],"bindaddress":[37421062],"bridge":[40173569,40239107,41484289,41549825,64028674,64159747,68026370,68550658,155516930,156172290,161218561,163774466,163905540,166133761,170917889],"base":[40501249,44695553,44761089,44826625,63766529,64094209,64159754,151191553,157548545,162004993,162136065,162267137,162332673,162398209,164954113,166264833,168296449,169213953,170131457],"byte":[62914564],"begins":[63373313,63438849,63832065,152567809],"baseagiscript":[63766529,151650305],"bundle":[63766530,63897602,154599426,154730498],"block":[63832065,154271745],"blindtransfereventhandler":[64028673,160694278],"bridgecreateeventhandler":[64028673,160759814],"bridgedestroyeventhandler":[64028673,160825350],"bridgeentereventhandler":[64028673,160890886],"bridgeeventhandler":[64028673,160956422],"bridgeleaveeventhandler":[64028673,161021958],"begin":[64028673,64159746,83034113,128778246,161415169,165085185,165150721,165412865],"behalf":[64028673,64159745,166133761,170917889],"better":[64094209,157810689],"body":[64159745,170131457],"bridgestates":[64159745,123863047,163840006],"bridgetypes":[64159745,123928583,163905542],"bindport":[72351745,91291653,151781377],"billing":[77791233,88211457,105054209,147718145,157810689,171835393],"behavior":[79167489,110100481,159186945],"bridgedchannel":[80478209,114622469,162725889],"bridged":[80478209,87359489,114622465,144900097,162725889,169738241],"blue":[81002497,87949313,115802113,146210817,163250177,170328065],"bridgecreator":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120455174,122814470,124518406,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgename":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120520710,122880006,124583942,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgenumchannels":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120586246,122945542,124649478,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgetechnology":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120651782,123011078,124715014,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgetype":[81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,83755009,87621633,120717318,123076614,123928582,124780550,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,166133761,170000385],"bridgeuniqueid":[81199105,81264641,81330177,81395713,81461249,81592321,81657857,120782854,123142150,124846086,163446785,163512321,163577857,163643393,163708929,163971073,164036609],"bridgestate":[81526785,83755009,87621633,123863045,163774465,166133761,170000385],"billableseconds":[81723393,125108230,164102145],"bits":[83230721,129957889,165609473],"blind":[87425025,145620993,169803777],"background":[89194497,150863873,174915585],"bridge_state_link":[163840001],"bridge_state_unlink":[163840001],"bridge_type_core":[163905537],"bridge_type_rtp_direct":[163905537],"bridge_type_rtp_native":[163905537],"bridge_type_rtp_remote":[163905537]} \ No newline at end of file +{"b67870ba79f9":[131073],"blindtransfer":[786433,1900550,176619521],"bridge":[786435,1966086,2424833,3604481,45678593,45744131,46989313,47054849,69664771,73531394,74055682,161087490,161742850,169345026,169476100,171704321,176619523],"bridgecreate":[786433,2031622,176619521],"bridgedestroy":[786433,2097158,176619521],"bridgeenter":[786433,2162694,176619521],"bridgeleave":[786433,2228230,176619521],"begin":[786433,2621441,69664770,88539137,134348806,170655745,170721281,170983425,176619521],"behalf":[786433,3604481,69664769,171704321,176619521],"blindtransfereventhandler":[1900551,69533697,166264838],"blindtransferevent":[1900545,20250627,57278471,69664769,86704131,125960195,126025731,126091267,126156803,126222339,126287875,126353411,126418947,126484483,126550019,126615555,126681091,126746627,126812163,126877699,126943235,127008771,127074307,127139843,127205379,127270915,127336451,127401987,127467523,127533059,127598595,127664131,127729667,127795203,127860739,127926275,127991811,128057347,128122883,128188419,166264837,169017354,171835393],"bridgeeventhandler":[1966087,69533697,166526982],"bridgeevent":[1966081,20578307,22806529,26673153,57606146,57671687,69664772,87031811,89260042,93126666,129433609,129499146,129564675,129630211,129695747,129761283,129826819,129892355,129957891,130023427,166526981,169345034,169410562,169476098,171704336,171835393,175570960],"bridgecreateeventhandler":[2031623,69533697,166330374],"bridgecreateevent":[2031617,20381699,57409543,69664769,86835203,166330373,169148426,169607169],"bridgedestroyeventhandler":[2097159,69533697,166395910],"bridgedestroyevent":[2097153,20447235,57475079,69664769,86900739,166395909,169213962,169607169],"bridgeentereventhandler":[2162695,69533697,166461446],"bridgeenterevent":[2162689,20512771,57540615,69664769,86966275,166461445,169082881,169279498],"bridgeleaveeventhandler":[2228231,69533697,166592518],"bridgeleaveevent":[2228225,20643843,57737223,69664769,87097347,166592517,169082881,169541642],"bind":[6422530,7536641,7602177,77856769,96796673,156565506,157351937],"backwards":[6488066,9043969,9109505,157351938],"bool":[9043971,9109507,9961475,28508166,28573702,28704774,31784963,34340870,37945347,44171267,44236803,44302339,45154307,50331651,51707907,51838979,53018627,54460419,60096516,64225284,64815107,65011715,67633155,67698692,95813636,99024901,102170629,102236164,102891525,103415813,110493701,110755845,112001029,112721925,114556933,117964805,118358021,118620165,121765893,123011077,126550021,133234693,134348805,134545413,137428997,138477573,138543109,138608645,140967941,141164549,141361157,141492229,141623301,141688837,143523845,144113669,144375813,144769029,144900101,145162245,149815301,150929413,152305669,152436741,152502277,154075141,155189253,155975684,156368900,156434437],"boolean":[9043970,9109506,9961474,10747905,14024706,28508174,28573708,28704776,31784963,34340880,37945347,44171266,44236803,44302339,45154307,50331651,51707907,51838979,53018627,54460422,60096514,64225282,64815106,65011714,67633154,67698690,69861380,70516737,71106562,71958529,73072642,73334785,75104257,75366402,75825153,76152833,95813634,99024898,102170626,102236162,102891522,103415810,110493698,110755842,112001026,112721922,114556930,117964802,118358018,118620162,121765890,123011074,126550018,133234690,134348802,134545410,137428994,138477570,138543106,138608642,140967938,141164546,141361154,141492226,141623298,141688834,143523842,144113666,144375810,144769026,144900098,145162242,149815298,150929410,152305666,152436738,152502274,154075138,155189250,155975682,156368898,156434434,156631044,157220865,157351938,158531585,160497666,160759809,163315713,163840002,164364289,164757505],"busy":[10747905,30932993,69337089,85393409,88801281,90374145,90505217,117374977,157220865,157548545,167706625,171245569,172818433,172949505],"builtin":[10747905,31195137,69337089,70320129,157220865,158072833],"buildcommand":[10944513,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,34406407,34668552,34799624,34996232,35454984,35651592,35848200,35979272,36110344,36306952,36569096,36765704,36962312,37093384,37289992,37421064,37617672,37814280,38010888,38207496,38535176,38731784,38928392,39125000,39321608,39452680,39583752,39714824,39845896,39976968,40108040,40239112,40435720,40632328,40763400,41025544,41156616,41287688,157417473,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306],"blocked":[13959170,42991617,43057153,160432130],"bridgeaction":[14548995,45678598,45744134,69599233,73531396,81002499,105054211,105119747,105185283,105250819,161087498,163119105],"bridgeactivityevent":[20316163,57344007,69664769,86769667,86966290,87097362,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,169082890,169279511,169541655,171835393],"bridgestateevent":[20709379,57802759,69664769,86835206,86900742,87162883,130088963,130154499,130220035,130285571,130351107,130416643,169148427,169213963,169607178,171835393],"buildaction":[27131906,64684041,64749578,76742659,176619522],"based":[27131906,65077249,65142785,76808194,82771969,109314049,162856961,176619522],"bytes":[28246017,68419586,156303361,180420609],"beep":[31784966,37945350,78839810,99024902,158531586],"berlin":[32178177,38469633],"beginning":[35192833,35258369,40828929,40894465,69337089,71303170,72548354,157614082,158138369,159645698],"blocks":[41353217,72613889,159842305],"bindaddress":[42926086],"base":[46006273,50200577,50266113,50331649,69271553,69599233,69664778,156762113,163119105,167575553,167706625,167837697,167903233,167968769,170524673,171835393,173867009,174784513,175702017],"byte":[68419588],"begins":[68878337,68943873,69337089,158138369],"baseagiscript":[69271553,157220865],"bundle":[69271554,69402626,160169986,160301058],"block":[69337089,159842305],"better":[69599233,163381249],"body":[69664769,175702017],"bridgestates":[69664769,129433607,169410566],"bridgetypes":[69664769,129499143,169476102],"bindport":[77856769,96796677,157351937],"billing":[83296257,93716481,110559233,153288705,163381249,177405953],"behavior":[84672513,115605505,164757505],"bridgedchannel":[85983233,120127493,168296449],"bridged":[85983233,92864513,120127489,150470657,168296449,175308801],"blue":[86507521,93454337,121307137,151781377,168820737,175898625],"bridgecreator":[86704129,86769665,86835201,86900737,86966273,87097345,87162881,125960198,128319493,130088966,169017345,169082881,169148417,169213953,169279489,169541633,169607169],"bridgename":[86704129,86769665,86835201,86900737,86966273,87097345,87162881,126025734,128385029,130154502,169017345,169082881,169148417,169213953,169279489,169541633,169607169],"bridgenumchannels":[86704129,86769665,86835201,86900737,86966273,87097345,87162881,126091270,128450565,130220038,169017345,169082881,169148417,169213953,169279489,169541633,169607169],"bridgetechnology":[86704129,86769665,86835201,86900737,86966273,87097345,87162881,126156806,128516101,130285574,169017345,169082881,169148417,169213953,169279489,169541633,169607169],"bridgetype":[86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,89260033,93126657,126222342,128581637,129499142,130351110,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,171704321,175570945],"bridgeuniqueid":[86704129,86769665,86835201,86900737,86966273,87097345,87162881,126287878,128647173,130416646,169017345,169082881,169148417,169213953,169279489,169541633,169607169],"bridgestate":[87031809,89260033,93126657,129433605,169345025,171704321,175570945],"billableseconds":[87228417,130678790,169672705],"bits":[88735745,135528449,171180033],"blind":[92930049,151191553,175374337],"background":[94699521,156434433,180486145],"bridge_state_link":[169410561],"bridge_state_unlink":[169410561],"bridge_type_core":[169476097],"bridge_type_rtp_direct":[169476097],"bridge_type_rtp_native":[169476097],"bridge_type_rtp_remote":[169476097]} \ No newline at end of file diff --git a/docs/fti/FTI_99.json b/docs/fti/FTI_99.json index f34a12d..9c6c951 100644 --- a/docs/fti/FTI_99.json +++ b/docs/fti/FTI_99.json @@ -1 +1 @@ -{"class":[65537,131073,196610,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849668,4915204,4980740,5046274,5111810,5177346,5242883,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929857,7995396,8060932,8126466,8192002,8257538,8323074,8388610,8454146,8519686,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354690,10420226,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172740,13238276,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677762,18743298,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561345,21626883,21692420,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675460,22740996,22806530,22872066,22937602,23003139,23068675,23134210,23199746,23265283,23330818,23396354,23461891,23527427,23592962,23658498,23724035,23789570,23855106,23920642,23986178,24051714,24117250,24182787,24248323,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083331,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066370,27131906,27197442,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114947,28180482,28246019,28311554,28377090,28442626,28508162,28573699,28639234,28704770,28770306,28835843,28901378,28966914,29032450,29097987,29163522,29229059,29294594,29360131,29425666,29491202,29556738,29622274,29687810,29753346,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588354,31653890,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243715,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554434,33619970,33685506,33751042,33816578,33882114,33947650,34013186,34078722,34144258,34209794,34275330,34340866,34406402,34471938,34537474,34603010,34668546,34734082,34799619,34865156,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979265,36044801,36110338,36175874,36241410,36306946,36372483,36438019,36503555,36569090,36634626,36700163,36765699,36831234,36896770,36962307,37027842,37093378,37158915,37224451,37289986,37355522,37421059,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600707,38666243,38731779,38797316,38862850,38928386,38993922,39059458,39124995,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780355,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304642,40370178,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025539,41091074,41156610,41222146,41287682,41353218,41418754,41484290,41549826,41615362,41680898,41746434,41811970,41877506,41943042,42008579,42074115,42139651,42205186,42270722,42336258,42401794,42467330,42532866,42598402,42663938,42729474,42795010,42860546,42926082,42991618,43057155,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909123,43974658,44040194,44105730,44171266,44236802,44302339,44367874,44433411,44498946,44564483,44630018,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219843,45285378,45350914,45416450,45481987,45547523,45613059,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530562,46596098,46661634,46727170,46792706,46858242,46923779,46989315,47054850,47120387,47185922,47251458,47316994,47382530,47448066,47513602,47579138,47644674,47710210,47775746,47841283,47906818,47972354,48037890,48103426,48168963,48234498,48300034,48365570,48431106,48496642,48562178,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414146,49479682,49545218,49610754,49676291,49741827,49807362,49872898,49938434,50003971,50069506,50135042,50200578,50266114,50331651,50397187,50462723,50528259,50593795,50659331,50724866,50790403,50855939,50921475,50987011,51052547,51118083,51183619,51249155,51314691,51380227,51445762,51511299,51576835,51642371,51707907,51773443,51838979,51904515,51970051,52035587,52101122,52166659,52232195,52297731,52363267,52428803,52494338,52559875,52625411,52690947,52756483,52822019,52887555,52953091,53018627,53084163,53149699,53215235,53280771,53346306,53411842,53477378,53542915,53608450,53673986,53739523,53805059,53870595,53936131,54001667,54067203,54132739,54198275,54263811,54329347,54394883,54460419,54525955,54591490,54657026,54722562,54788098,54853634,54919171,54984707,55050243,55115779,55181315,55246851,55312387,55377923,55443459,55508995,55574531,55640067,55705603,55771139,55836675,55902211,55967747,56033283,56098819,56164355,56229891,56295427,56360962,56426499,56492035,56557570,56623106,56688643,56754179,56819715,56885251,56950786,57016323,57081858,57147394,57212930,57278466,57344002,57409538,57475075,57540611,57606147,57671683,57737219,57802755,57868291,57933827,57999363,58064899,58130435,58195971,58261507,58327043,58392579,58458114,58523650,58589187,58654723,58720258,58785795,58851331,58916867,58982403,59047937,59113473,59179010,59244546,59310082,59375618,59441154,59506690,59572226,59637762,59703298,59768835,59834370,59899906,59965442,60030978,60096514,60162050,60227586,60293122,60358658,60424194,60489730,60555266,60620802,60686338,60751874,60817411,60882946,60948482,61014018,61079554,61145090,61210626,61276162,61341698,61407234,61472771,61538307,61603843,61669378,61734915,61800451,61865987,61931522,61997059,62062594,62128130,62193666,62259202,62324738,62390275,62455811,62521346,62586882,62652419,62717954,62783492,62849028,62914562,62980098,63045634,63111170,63176706,63242243,63307779,63373315,63438851,63504386,63569922,63635458,63700994,63766532,63832066,63897603,63963138,64028674,64094213,64159761,64225283,64290819,64356356,64421891,64487428,64552962,64618498,64684034,64749570,64815106,64880642,64946179,65011714,65077250,65142786,65208322,65273858,65339394,65404930,65470466,65536002,65601540,65667075,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322434,66387971,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912260,66977794,67043330,67108866,67174405,67239940,67305476,67371010,67436546,67502082,67567620,67633154,67698690,67764226,67829762,67895298,67960834,68026370,68091906,68157442,68222978,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,68812802,68878338,68943874,69009410,69074946,69140482,69206018,69271554,69337090,69402626,69468162,69533698,69599234,69664770,69730306,69795842,69861378,69926914,69992450,70057986,70123522,70189060,70254594,70320130,70385666,70451202,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041028,71106564,71172098,71237634,71303170,71368706,71434242,71499778,71565314,71630851,71696388,71761924,71827462,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417282,72482818,72548354,72613890,72679426,72744962,72810498,72876034,72941570,73007106,73072642,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186755,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842116,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694082,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546050,76611586,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135874,77201410,77266946,77332482,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691778,79757315,79822851,79888387,79953923,80019459,80084995,80150531,80216067,80281603,80347139,80412675,80478211,80543747,80609283,80674819,80740355,80805891,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788931,81854467,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706435,82771971,82837507,82903043,82968579,83034115,83099651,83165187,83230723,83296259,83361795,83427331,83492867,83558403,83623939,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869123,84934659,85000195,85065731,85131267,85196803,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014849,88080386,88145922,88211458,88276994,88342530,88408066,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997890,89063426,89128962,89194498,89260034,89325570,89391106,89456642,89522178,89587714,89653250,89718786,89784322,89849858,89915394,89980930,90046466,90112002,90177538,90243074,90308610,90374146,90439682,90505218,90570754,90636290,90701826,90767362,90832898,90898434,90963970,91029506,91095042,91160578,91226114,91291650,91357186,91422722,91488258,91553794,91619330,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257730,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913090,93978626,94044162,94109698,94175234,94240770,94306306,94371842,94437378,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223813,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337923,96403459,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842946,101908482,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251651,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822210,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407425,146472961,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946371,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994950,151060488,151126022,151191562,151257097,151322633,151388167,151453704,151519234,151584774,151650312,151715847,151781384,151846919,151912455,151977991,152043526,152109062,152174598,152240134,152305670,152371206,152436742,152502278,152567814,152633350,152698886,152764422,152829958,152895495,152961030,153026566,153092102,153157638,153223174,153288710,153354246,153419782,153485318,153550854,153616390,153681926,153747462,153812998,153878537,153944070,154009606,154075142,154140678,154206214,154271750,154337282,154402824,154468360,154533897,154599433,154664969,154730509,154796039,154861574,154927115,154992642,155058182,155123718,155189254,155254791,155320326,155385862,155451398,155516934,155582470,155648006,155713542,155779078,155844614,155910151,155975686,156041222,156106758,156172294,156237830,156303366,156368902,156434439,156499975,156565511,156631046,156696582,156762118,156827654,156893190,156958726,157024263,157089798,157155334,157220870,157286406,157351943,157417478,157483014,157548553,157614087,157679623,157745158,157810695,157876230,157941767,158007303,158072839,158138374,158203910,158269446,158334982,158400518,158466054,158531590,158597128,158662663,158728198,158793734,158859270,158924807,158990342,159055879,159121414,159186951,159252486,159318022,159383558,159449094,159514631,159580167,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497666,160563201,160628744,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939464,162005001,162070536,162136073,162201609,162267145,162332681,162398216,162463752,162529288,162594824,162660360,162725896,162791432,162856968,162922504,162988040,163053576,163119111,163184648,163250184,163315720,163381256,163446792,163512328,163577864,163643400,163708936,163774472,163840002,163905538,163971080,164036616,164102152,164167688,164233223,164298760,164364296,164429832,164495368,164560904,164626440,164691976,164757512,164823048,164888584,164954121,165019656,165085191,165150727,165216263,165281800,165347335,165412871,165478408,165543945,165609480,165675016,165740552,165806088,165871624,165937160,166002696,166068232,166133768,166199304,166264840,166330376,166395912,166461448,166526984,166592520,166658056,166723592,166789128,166854664,166920200,166985736,167051272,167116808,167182344,167247880,167313416,167378952,167444488,167510024,167575560,167641096,167706632,167772167,167837704,167903240,167968775,168034311,168099848,168165384,168230920,168296457,168361991,168427528,168493063,168558599,168624135,168689671,168755207,168820743,168886280,168951816,169017352,169082888,169148424,169213961,169279496,169345032,169410568,169476104,169541640,169607176,169672712,169738248,169803784,169869319,169934855,170000392,170065928,170131470,170197000,170262536,170328072,170393601,170459137,170524673,170590209,170655745,170721282,170786817,170852353,170917889,170983425,171048967,171114497,171180040,171245574,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835399,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342726,173408262,173473798,173539336,173604872,173670408,173735945,173801480,173867016,173932552,173998089,174063623,174129153,174194689,174260232,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850056,174915595,174981126],"changes":[131074,262145,63832065,64028675,64094209,64159747,80150529,85983233,86114305,86179841,86245377,86310913,86376449,86441985,113180673,139722753,153616385,155648001,160432129,162398209,163250177,165478401,167182337,168361985,168493057,168558593,168624129,168689665,168755201,168820737,170393601,171573249],"c84e":[131073],"create":[196609,327681,393217,458753,524289,589825,655361,720897,786433,851969,42205185,42270721,63635457,64159746,64225281,68812802,77266945,103809025,151191553,151257089,151322625,154402817,154468353,156631042,157286401,160628737,161939457,170131458,171180033,173735937,174260225],"com":[196610],"change":[262145,22806529,63176705,174915585],"contains":[327681,393217,458753,524289,589825,655361,720897,786433,851969,5111809,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789569,24772609,24838145,24903681,25821185,25886721,26214401,26279937,29753345,29818881,29884417,31326209,31391745,32374785,32440321,32636929,33357825,33554433,33751041,35389441,35454977,62062594,63766529,63897601,64028676,64094209,64159749,64225283,72155137,74842113,77004801,77266945,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852162,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88801281,89325569,96337921,103153665,104005633,132448257,137428993,149618689,151191553,151257089,151322625,151453698,154402817,154468353,154599425,154664961,154730497,157024257,157286401,157483009,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019650,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772162,167837697,167903233,167968769,168034305,168099841,168165377,168230915,168296449,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171180033,172228609,172621825,172752897,173080577,173539331,173604866,173670402,173735938,173801475,173867012,173932546,173998082,174260225],"common":[917507,1900547,1966083,2031618,2097154,2162691,2228227,2293763,2359299,2424835,2490371,2555906,2621443,2686979,2752515,2818051,2883587,2949123,3014658,3080194,3145731,3211266,3276803,3342339,3407875,3473411,63700993,64159748,150994952,162136065,162267137,166264833,168296449],"cultureinfoen":[917505,2949126,150994945],"causes":[983042,3538945,3604481,22806529,40501249,63176705,64094211,68157441,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,151781378,154402817,154468353,155648001,157220865,157351937,158793729,160628737,161939457,171180033,174260225,174915585],"code":[983041,3538945,5111809,23920642,24707073,24772609,24838145,24903681,25296897,25362433,26214401,26279937,63766530,63832067,64159745,72155138,72220673,77791234,83820545,87359489,88211458,89522178,89587714,89653249,105054210,131989505,144506882,147718146,151453699,151519237,151584769,151781377,152240129,152502273,152633345,154402817,154468353,157810690,163774465,166199297,169738241,171835394],"channel":[983041,1114114,3538945,3735558,5242896,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,24641537,24707073,24772609,24838145,24903681,25690113,25755649,25952257,26017793,26411009,26804225,26935297,27066369,27197441,27328513,27721729,28049409,29425671,31195142,31653889,31719431,32047105,34144257,35848193,35913729,39256071,39845894,39911425,39976967,40108038,40239107,40501255,40763398,41287686,41418758,41943046,43450375,43581447,44695559,44761095,44826631,45285382,45350919,45744130,45809666,45875202,47251463,47316999,47448071,47513607,47710217,48300039,49152001,49283073,49414145,49545218,62062593,63766529,63832096,64028697,64094230,64159778,64552964,64815106,65077249,65208321,65273857,65339393,65404929,65667073,66256898,67108865,67698689,67895298,68157441,69271553,69337089,69599235,70254593,70320130,70385666,70516737,70713345,70778881,70844417,70909954,72220676,72286209,72417281,72941570,73138178,73203713,73269249,73924609,74579969,75038722,75300865,75366401,75431938,75628546,75759617,76021761,76087297,76349441,77135875,77201410,77725699,77791237,77856771,78118914,78708738,78774274,78839810,79101954,79233025,79298561,79364097,79429633,79560705,79757315,79822851,79888392,79953923,80019459,80084999,80150534,80216067,80281603,80347141,80412675,80478212,80543747,80609283,80674819,80740355,80805893,80871427,80936963,81002499,81068035,81133571,81199107,81264643,81330179,81395715,81461251,81526787,81592323,81657859,81723395,81788932,81854468,81920003,81985539,82051075,82116611,82182147,82247683,82313219,82378755,82444291,82509827,82575363,82640899,82706439,82771975,82837511,82903043,82968581,83034115,83099651,83165187,83230723,83296264,83361801,83427331,83492867,83558403,83623944,83689475,83755011,83820547,83886083,83951619,84017155,84082691,84148227,84213763,84279299,84344835,84410371,84475907,84541443,84606979,84672515,84738051,84803587,84869128,84934659,85000200,85065731,85131272,85196807,85262339,85327879,85393411,85458947,85524484,85590019,85655555,85721091,85786627,85852163,85917699,85983239,86048772,86114310,86179846,86245382,86310919,86376454,86441991,86507523,86573059,86638596,86704131,86769669,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359497,87425027,87490563,87556099,87621635,87687176,87752707,87818243,87883779,87949317,88211460,88997889,90112007,91095042,91160578,91226118,91553798,92930054,93323273,93388801,93454337,94961666,96010241,97255430,98107398,98369542,99287046,100007942,100335622,100859910,101056518,101646342,103481351,103677958,104792070,104857601,105316353,105381894,105709569,105775105,105906182,105971713,106364930,108658694,108855297,109117446,109314054,109838342,110362625,110493697,110624769,110755841,110952449,111345665,111411201,111542273,111607809,111673345,112132097,112197633,112263169,112328705,112525313,112656385,113180673,113901569,113967105,114622465,115146753,115408897,126156801,126287873,128188417,128253953,128450561,128516097,128647169,128712705,130154498,130220033,130285570,130351105,131661826,131727362,131792897,132120582,132513793,135004161,135069697,135135233,135200769,135266305,136314881,137822209,138280961,139132929,139460609,139722753,140574721,141099009,141164545,144506882,144572418,144637954,144703490,144900099,145686529,146210817,146276353,147849217,147914758,148242433,150208518,151257089,151519233,151584772,151650321,151781377,151977986,152043521,152436737,152502276,152567809,152633345,152698887,152829955,152895490,153026561,153157633,153223169,153288705,153354241,153419778,153485314,153550851,153616385,153812993,153878529,154009601,154075137,154140674,154271748,155058180,155320321,155385859,155451394,155648005,155779073,156041217,156106753,156368897,157155333,157220868,157745159,157810694,157876228,157941761,158138370,158728197,158793733,158859272,159055873,159121412,159252483,159318019,159383555,159449092,159514625,159580162,160366593,160432129,161808386,162004995,162070531,162136072,162201603,162267139,162332679,162398214,162463747,162529283,162594821,162660355,162725892,162791427,162856963,162922499,162988035,163053573,163119107,163184644,163250180,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163905537,163971075,164036611,164102147,164167684,164233220,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085191,165150727,165216263,165281795,165347335,165412867,165478403,165543939,165609475,165675018,165740554,165806085,165871619,165937155,166002697,166068228,166133763,166199299,166264836,166330371,166395908,166461444,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182341,167247882,167313412,167378954,167444483,167510025,167575560,167641091,167706632,167772163,167837699,167903236,167968771,168034307,168099844,168165380,168230915,168296451,168361991,168427524,168493062,168558598,168624134,168689671,168755206,168820743,168886275,168951811,169017348,169082883,169148423,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738250,169803779,169869317,169934851,170000387,170065929,170131460,170196995,170262531,170328070,170524673,170590209,170655746,170786817,170852353,171311105,171376641,171573249,171638785,171704321,171769857,171835396,171966465,172032001,172163073,173277185,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174391298,174522369,174784513],"compatibility":[983042,3538945,3604481,151781378],"commandaction":[1048579,3670019,9240579,40566791,40632327,64094210,64225281,68222982,75694083,100139010,100204546,155713548,157548545,173604866],"command":[1048577,3670022,5111812,5242882,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,12713986,22937610,23920642,23986178,24051714,24707073,24772610,24838146,24903682,25296897,25362433,26542081,26607617,26673153,28180489,28901380,28966917,29032452,29097986,29163524,29229058,29294596,29360130,29425666,29491204,29556738,29622274,29687810,29753347,29818883,29884419,29949956,30015490,30081026,30146564,30212098,30277634,30343172,30408706,30474244,30539778,30605316,30670850,30736386,30801924,30867458,30932994,30998530,31064068,31129602,31195138,31260676,31326210,31391746,31457284,31522818,31588356,31653890,31719426,31784964,31850498,31916036,31981570,32047106,32112644,32178178,32243715,32309252,32374786,32440322,32505860,32571394,32636931,32702468,32768003,32833539,32899075,32964611,33030148,33095682,33161219,33226756,33292290,33357827,33423364,33488898,33554435,33619972,33685506,33751043,33816580,33882114,33947652,34013186,34078724,34144258,34209796,34275330,34340868,34406402,34471940,34537474,34603012,34668546,34734084,34799618,34865154,34930692,34996226,35061762,35127300,35192835,35258372,35323906,35389443,35454979,35520516,35586051,35651588,35717122,35782660,35848194,35913730,36110338,36175878,39845894,40632327,48758786,63766529,63832069,63897601,64094217,64159747,64225285,64684034,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,68222977,70582274,72155137,72417281,72482818,72548353,72613889,72679425,72744961,72810497,72876033,72941569,73007105,73072641,73138177,73203713,73269249,73334785,73400322,73465858,73531394,73596930,73662466,73728002,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383362,74448897,74514433,74579969,74645506,75300865,75694083,77791233,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871426,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048770,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539138,88604673,88670209,88735745,88801281,88866817,88932353,89325569,91553795,91619331,91684866,91750402,91815938,91881474,91947010,92012546,92078082,92143618,92209154,92274690,92340226,92405762,92471298,92536834,92602370,92667906,92733442,92798978,92864514,92930050,92995586,93061122,93126658,93192194,93257731,93323266,93388802,93454338,93519874,93585410,93650946,93716482,93782018,93847554,93913091,93978626,94044162,94109699,94175234,94240770,94306306,94371843,94437379,94502914,94568451,94633986,94699523,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551491,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,98172934,100139009,100204550,105381889,115474438,132251649,138412033,148963329,149946369,151453701,151519233,151650306,151846954,151912453,151977989,152043525,152109060,152174596,152240132,152305668,152371204,152436740,152502277,152567814,152633349,152698884,152764420,152829956,152895492,152961028,153026565,153092101,153157637,153223173,153288709,153354245,153419780,153485316,153550852,153616388,153681924,153747460,153812996,153878532,153944068,154009604,154075141,154140676,154206212,154271748,154402818,154599425,154730497,155058177,155320322,155713544,157089793,157810689,159186949,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119108,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082882,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604870,173670401,173735938,173801473,173867009,173932545,173998081],"control":[1310721,4456449,5242884,5636098,24707073,24772609,24838145,24903681,29556737,29622273,63832065,64552964,65732610,151650308,152043523,171048961],"challengeresponse":[1376259,22085635,61472774,64094209,64225281,88473603,148897794,155582466,173539337,173998081],"commandresponse":[1441795,4587523,22151171,61538310,64225282,88539139,148963330,173604874,173998081],"copy":[1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27066369,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93519873,93585409,93650945,93716481,93782017,93847553,93913089,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94502913,94568449,94633985,94699521,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519233,151584770,151650306,151715842,151781378,151846914,151912450,151977986,152043522,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337281,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927105,154992641,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516930,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565506,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089794,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645697,159711233,159776769,159842305,159907841,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160563201,160628738,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840001,163905537,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216258,165281794,165347330,165412866,165478402,165543938,165609474,165675010,165740546,165806082,165871618,165937154,166002690,166068226,166133762,166199298,166264834,166330370,166395906,166461442,166526978,166592514,166658050,166723586,166789122,166854658,166920194,166985730,167051266,167116802,167182338,167247874,167313410,167378946,167444482,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410562,169476098,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048962,171114497,171180034,171245570,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835394,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129153,174194689,174260226,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850050,174915586,174981122],"const":[2031618,2097154,2162690,2228226,2293762,2359298,2555906,3014658,3080194,3211266,3932162,3997698,4063234,4128770,4194306,4259842],"char":[3145732,3276804,3342340,3473412,4521988,25821188,25886724,26411012,26542084,26607620,26673156,26804228,26935300,27066372,27197444,27918340,28049412,62914561,89587716,150732802],"current":[4718596,4784132,4849668,4915204,4980740,5046276,5111811,5177347,5242885,5308420,5373956,5439491,5505027,5570563,5636099,5701635,5767171,5832707,5898243,5963779,6029315,6094851,6160387,6225923,6291459,6356995,6422531,6488067,6553603,6619139,6684675,6750211,6815747,6881283,6946819,7012355,7077891,7143427,7208963,7274499,7340035,7405571,7471107,7536643,7602179,7667715,7733251,7798787,7864323,7995396,8060932,8126468,8192004,8257540,8323076,8388612,8454149,8519683,8585219,8650755,8716291,8781827,8847363,8912899,8978435,9043971,9109507,9175043,9240579,9306115,9371651,9437187,9502723,9568259,9633795,9699331,9764867,9830403,9895939,9961475,10027011,10092547,10158083,10223619,10289155,10354691,10420227,10485763,10551299,10616835,10682371,10747907,10813443,10878979,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172740,13238276,13303811,13369347,13434883,13500419,13565955,13631491,13697027,13762563,13828099,13893635,13959171,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677763,18743299,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21626884,21692420,21757956,21823492,21889028,21954564,22020100,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675460,22740996,22806533,22872069,25690113,31653889,37552129,42991617,63176705,63569921,63832068,64094209,64815105,66256897,69140481,71958531,72024067,72089603,74645507,74711043,74842113,79626243,79691779,86507521,88145923,89063427,89194497,93323265,96337921,140050434,150798337,151060484,151126020,151191559,151257095,151322631,151388164,151453699,151584771,151650309,151715844,151781380,151846915,151912451,151977987,152043523,152109059,152174595,152240131,152305667,152371203,152436739,152502275,152567811,152633347,152698885,152764419,152829955,152895491,152961027,153026563,153092099,153157635,153223171,153288707,153354243,153419779,153485315,153550851,153616388,153681923,153747459,153812996,153878532,153944067,154009603,154075139,154140675,154206211,154271747,154402823,154468359,154533892,154599428,154664965,154730500,154796036,154861573,154927107,155058180,155123715,155189251,155254787,155320323,155385859,155451395,155516931,155582467,155648003,155713539,155779075,155844611,155910147,155975683,156041219,156106755,156172291,156237827,156303363,156368899,156434435,156499971,156565507,156631043,156696579,156762115,156827651,156893187,156958724,157024259,157089795,157155331,157220867,157286403,157351939,157417475,157483011,157548547,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269443,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859267,158924803,158990339,159055875,159121411,159186947,159252483,159318019,159383555,159449091,159514627,159580163,160628743,161939463,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529283,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,165216259,165281795,165347331,165412867,165478403,165543939,165609475,165675011,165740547,165806083,165871619,165937155,166002691,166068227,166133763,166199299,166264835,166330371,166395907,166461443,166526979,166592515,166658051,166723587,166789123,166854659,166920195,166985731,167051267,167116803,167182339,167247875,167313411,167378947,167444483,167510019,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886276,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169410563,169476099,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,171048964,171180039,171245572,171835396,173342724,173408260,173473796,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174260231,174850052,174915590,174981125],"cleanup":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121],"collection":[4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,64028673,71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151060481,151126017,151191554,151257090,151322626,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402818,154468354,154533889,154599425,154664961,154730497,154796033,154861569,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628738,161939458,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180034,171245569,171835393,173342721,173408258,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260226,174850049,174915585,174981121],"creates":[4718593,4784129,4849666,4915202,4980738,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7995394,8060930,8126465,8192001,8257537,8323073,8388609,8454145,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172738,13238274,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21626881,21692418,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675458,22740993,22806529,22872065,23199745,23330817,23396353,24576001,28442625,28508161,28639233,28704769,28770305,29425665,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31653889,31719425,31850497,31981569,32047105,32178177,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34668545,34799617,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35848193,35913729,36110337,36175873,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39845889,40304641,40370177,40435713,40501249,40566785,40632321,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43188225,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43974657,44040193,44105729,44171265,44630017,44695553,44761089,44826625,45285377,45350913,45678593,45744129,45809665,45875201,46071809,46137345,46202881,46268417,46333953,46661633,46727169,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47972353,48037889,48234497,48300033,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49807361,49872897,49938433,51445761,52494337,53346305,53411841,53477377,53608449,53673985,54788097,54853633,56360961,56557569,56623105,56950785,57081857,57147393,57212929,57278465,57344001,57409537,58458113,58523649,60162049,60227585,60293121,60358657,60424193,60489729,61079553,61210625,61407233,61931521,62717953,62980097,63635457,64421890,65601541,65667073,65798148,65863682,65929218,65994754,66060291,66125826,66191362,66256898,66322434,66387969,66453506,66519042,66584580,66650114,66715650,66781186,66846722,66912258,66977794,67043331,67108866,67698690,67764227,67829763,68091906,68157442,68222978,68812802,68878338,68943874,69009410,69074946,69140482,69206017,69271555,69337090,69402628,69468162,69533698,69599236,69664770,69730308,69861381,70057986,70254595,70320131,70385667,70451202,70516738,70647812,70713346,70778882,70844418,70909954,70975490,71172098,71499779,71565314,71630849,151060481,151126018,151191556,151257090,151322626,151388161,151453697,151584770,151650305,151715841,151781382,151846913,151912449,151977986,152043525,152109059,152174595,152240130,152305666,152371203,152436740,152502275,152567811,152633346,152698883,152764418,152829955,152895490,152961027,153026563,153092101,153157635,153223171,153288707,153354243,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878531,153944067,154009602,154075140,154140674,154206210,154271747,154402819,154468355,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058179,155123716,155189252,155254785,155320322,155385857,155451393,155516929,155582467,155648003,155713539,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631043,156696579,156762115,156827651,156893187,156958723,157024257,157089794,157155332,157220867,157286405,157351937,157417475,157483011,157548545,157614081,157679617,157745157,157810689,157876227,157941761,158007297,158072833,158138373,158203905,158269446,158334977,158400513,158466051,158531585,158597121,158662657,158728196,158793732,158859268,158924801,158990339,159055873,159121411,159186949,159252483,159318019,159383555,159449091,159514625,159580161,160628740,161939459,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119106,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233218,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085186,165150722,165216258,165281793,165347330,165412866,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264835,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772162,167837697,167903233,167968770,168034306,168099841,168165377,168230913,168296449,168361986,168427521,168493058,168558594,168624130,168689666,168755202,168820738,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869314,169934850,170000385,170065921,170131457,170196993,170262529,170328065,171048964,171180036,171245570,171835393,173342722,173408258,173473794,173539329,173604865,173670401,173735937,173801473,173867009,173932546,173998081,174063617,174260227,174850050,174915585,174981122],"cause":[4849665,4915201,4980737,5242881,7995393,8060929,13172737,13238273,21692417,22675457,23396358,23527430,27328513,49872902,60424198,63832066,64225281,64421889,70975489,71565313,83296259,85524483,86638596,130023430,130088961,136249352,140509192,151191554,151257089,151322625,151650305,153550850,154402817,154468353,160628738,161939457,165675011,167903235,169017348,171180034,173932545,174260225],"contained":[5111809,23789569,72155137,89325569,151453698],"calling":[5111809,8454145,23789569,37486593,64094209,80347138,83230721,113901569,113967105,129499137,151453697,154861569,155058177,162594818,165609473],"corresponding":[5111809,23789569,43778049,43843585,63766529,63897601,64159745,64225281,151453697,154599425,154730497,170131457,173998081],"codes":[5111809,23920641,80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,113246209,138084353,138739713,139788289,151453697,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"controlstreamfile":[5242884,24707078,24772614,24838150,24903686,64552965,151650308],"completes":[5242884,24707073,24772609,24838145,24903681,63832072,64552964,151650308,152043521,153026561,153092097,153157633,153223169,153288705,153354241,154075137],"complex":[5242881,25690113,63832065,64815105,151650305,152502273],"character":[5242884,26345473,26411009,27000833,27066369,32047105,37552129,63832068,65077250,65339394,72155137,73203713,77791233,84934657,89587714,93388801,105775105,134152193,151453697,151650308,152829955,153026561,153288705,157810689,167313409],"context":[5242881,27459591,34406406,39452679,40108038,44040194,44171266,47251463,47316999,63832065,64094212,67764225,70254594,72220674,74055682,75104258,75431938,77004802,77398018,77463554,77791237,78708738,80347137,81199105,81264641,81461249,81592321,83099650,84410369,84934658,85065729,87359489,87949314,88211461,88604673,90177542,95092742,97583110,99352582,103153670,104267778,104398850,105447431,105578497,105644033,105775108,108724230,111280132,114098182,120848390,123600902,129040390,133103617,134348806,134742022,144769030,146276358,147980295,148111361,148176897,149028870,151584770,151650305,153681923,155123716,155451394,157024259,157417474,157483010,157810695,158728196,162594817,163446785,163512321,163708929,163971073,165478402,166789121,167313410,167444481,169738241,170328066,171835397,173670401],"continuation":[5242884,27459585,27525121,27590657,27656193,34406401,34537473,34996225,35061761,63832067,65470466,74055681,74121217,74252290,95092737,95158274,95289345,95354881,151650308,153681922,153747458,153944067],"console":[5242881,27983873,63832065,64159745,151650305,154206209,169082881],"channelstatuscommand":[5570563,29294596,29360135,29425671,63832065,65667078,72417283,91553795,151846913,151977996],"controlstreamfilecommand":[5636099,24707073,24772609,24838145,24903681,29491204,29556738,29622274,29687815,29753351,29818887,29884423,63832065,65732610,65798154,72482819,91619330,91684866,91750402,91815938,91881474,91947010,151846913,152043535],"controldigits":[5636098,29556742,29622278,65732611,152043522],"close":[8388609,8454146,37355526,37486598,64094209,154796033,154861570,157351937],"closes":[8454145,37486593,63766529,151126017,154861569],"connection":[8454148,21626881,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,23199746,37486593,37552129,37617666,37683202,42991617,59506690,60227585,60293121,60489734,61079558,62062593,63766530,64094212,64159745,69140481,71499778,74973185,88080385,96731137,146866177,151126019,154861573,156958722,157286401,157351937,158007297,165281793,171048964,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"currently":[8454145,37486593,64094209,72220673,75563009,77266945,86507521,90308609,99876865,103809025,139919362,151584769,154861569,155582465,157286401,157941761,168886273],"call":[8454145,11337732,13303812,13369348,13893636,13959172,14024708,14090244,16777220,21823492,22609922,37486593,42991617,43843585,44826625,44957697,45023233,45088769,45154305,45350914,47448065,47513601,50069505,50135041,50200577,50266113,60555265,60620801,60686337,60751873,62521346,63832065,64028679,64094214,64159752,70320130,71958529,72024065,72089601,72220673,74645505,74711041,75104257,76939265,77266945,77725697,77791237,77856770,79626241,79691777,79757314,79822850,79888385,79953921,80019457,80084993,80150531,80216065,80281601,80347138,80412675,80478210,80543746,80609281,80674817,80740353,80805891,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230722,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131267,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983235,86048770,86114306,86179843,86245379,86310915,86376451,86441987,86507522,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687170,87752705,87818241,87883777,87949313,88145921,88211460,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,89063425,89653249,97714177,103022593,103874561,104988673,105054211,105381889,105775105,105971713,106102785,111280129,112459777,112590849,114491393,115343362,132251649,135266305,135331841,137756673,138215425,139329537,139395073,140443649,145686529,147718147,147914753,149946369,151191553,151257089,151322625,151584769,154271745,154402817,154468353,154861569,155058179,155123713,156958721,157286401,157745153,157810699,157876226,158793731,159842305,160628737,161087490,161939457,162004998,162070534,162136065,162201601,162267137,162332674,162398211,162463745,162529281,162594822,162660360,162725894,162791430,162856961,162922497,162988033,163053571,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102147,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609478,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133763,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510019,167575553,167641089,167706626,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361987,168427522,168493058,168558595,168624131,168689667,168755203,168820739,168886274,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000386,170065922,170131457,170196993,170262529,170328065,170917890,171180033,171835400,172163073,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063618,174260225,174456833],"challengeaction":[9109507,40304647,40370183,43712513,43778049,43843585,59572225,64094211,64225281,68091910,75563011,99811330,99876866,155582476,157286402,157548545,173539330],"changemonitoraction":[9175043,40435719,40501255,64094210,68157446,75628547,99942402,100007938,100073474,155648012,157548545],"confbridgekickaction":[9306115,40697862,40763400,64094209,68288516,75759619,100270083,100335619,100401155,155779082,157548545],"confbridgelistaction":[9371651,40828932,40894470,64094209,75825155,100466691,100532227,155844616,157614081],"confbridgelistroomsaction":[9437187,40960004,41025542,64094209,75890691,100597763,155910153,157614081],"confbridgelockaction":[9502723,41091078,41156615,64094209,68354052,75956227,100663299,100728835,155975690,157548545],"confbridgemuteaction":[9568259,41222150,41287688,64094209,68419588,76021763,100794371,100859907,100925443,156041226,157548545],"confbridgesetsinglevideosrcaction":[9633795,41353222,41418760,64094209,68485124,76087299,100990979,101056515,101122051,156106762,157548545],"confbridgestartrecordaction":[9699331,41484294,41549831,64094209,68550660,76152835,101187587,101253123,156172298,157548545],"confbridgestoprecordaction":[9764867,41615366,41680903,64094209,68616196,76218371,101318659,101384195,156237834,157548545],"confbridgeunlockaction":[9830403,41746438,41811975,64094209,68681732,76283907,101449731,101515267,156303370,157548545],"confbridgeunmuteaction":[9895939,41877510,41943048,64094209,68747268,76349443,101580803,101646339,101711875,156368906,157548545],"coresettingsaction":[9961475,42008582,64094209,76414979,101777411,156434442,157548545],"coreshowchannelsaction":[10027011,42074118,64094209,76480515,101842947,156499978,157548545],"corestatusaction":[10092547,42139654,64094209,76546051,101908483,156565514,157548545],"createconfigaction":[10158083,42205190,42270727,64094209,68812804,76611587,101974019,102039555,156631050,157548545],"config":[12713985,48758785,64094209,70582273,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186947,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"comman":[12713985,48758785,70582273,159186945],"convert":[13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,54722561,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"cdrevent":[15269891,52363271,64028673,64159746,81723395,124911619,124977155,125042691,125108227,125173763,125239299,125304835,125370371,125435907,125501443,125566979,125632515,125698051,125763587,125829123,125894659,161087494,164102154,166264833],"channelreloadevent":[15335427,52428807,64159745,81788931,125960194,126025731,126091267,126156802,126222339,164167690,166264833],"channelupdateevent":[15400963,52494343,64159745,81854467,126287874,126353411,126418947,126484483,126550019,126615555,126681091,126746627,164233226,166264833],"confbridgeendevent":[15466499,52559879,64159745,81920003,161153029,162201601,164298762],"confbridgejoinevent":[15532035,52625415,64159745,81985539,126812163,126877699,161218565,162201601,164364298],"confbridgeleaveevent":[15597571,52690951,64159745,82051075,126943235,127008771,161284101,162201601,164429834],"confbridgelistcompleteevent":[15663107,52756487,64159745,82116611,164495370,169213953],"confbridgelistevent":[15728643,52822023,64159745,82182147,127074307,127139843,127205379,127270915,162201601,164560906],"confbridgelistroomscompleteevent":[15794179,52887559,64159745,82247683,164626442,169213953],"confbridgelistroomsevent":[15859715,52953095,64159745,82313219,127336451,127401987,127467523,162201601,164691978],"confbridgestartevent":[15925251,53018631,64159745,82378755,161349637,162201601,164757514],"confbridgetalkingevent":[15990787,53084167,64159745,82444291,127533059,161415173,162201601,164823050],"connectevent":[16056323,53149703,64159746,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509828,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,127598594,132186113,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888587,164954114,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065],"connectionstateevent":[16121859,53215239,64159745,82509825,82575363,82903041,86704129,87228417,127664130,161480709,164888582,164954121,165281798,166264833,169082886,169607174],"called":[21561345,39387137,39452673,40894465,59113473,64094211,64159745,72220675,74645506,74842113,75104258,90177537,90374145,90636289,96075778,96141314,96468993,97386498,151584771,154402818,154664961,155058177,155123714,155844610,155910145,170131457,170721281],"connect":[21626881,39387137,39452673,59310087,60227585,60293121,64028673,64094212,77791236,88080388,88211461,105185281,105447425,105578497,105644033,146800641,146997249,147128321,147587073,147783681,147914753,147980289,148111361,148176897,157810696,161480705,171048965,171835397],"challenge":[21626882,40370177,43778050,43843586,59572225,59637761,64094210,64225282,68091905,69402626,71303170,75563009,77266946,88473602,99811329,103809026,148897798,155582468,157286404,171048962,173539332],"case":[22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,23789569,62062594,64028673,64159745,72155137,77463553,85524481,86638594,89325569,104398849,136249345,140836866,151453697,157483009,167510017,167903233,169017346,171966465,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082],"converted":[22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,62062593,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"category":[22282241,48562182,48627718,48693254,48758790,61669383,64094209,64225281,88670210,149291010,159186945,173735940],"calcduration":[22609921,62521350,174063617],"calculated":[22609921,62521345,174063617],"constructor":[23003137,23068673,23199745,23265281,23330817,23396353,23461889,23527425,23724033,24182785,24248321,24576001,28114945,28246017,28442625,28508161,28573697,28639233,28704769,28770305,28835841,29097985,29229057,29360129,29425665,29687809,29753345,29818881,29884417,30015489,30081025,30212097,30277633,30408705,30539777,30670849,30736385,30867457,30932993,30998529,31129601,31195137,31326209,31391745,31522817,31653889,31719425,31850497,31981569,32047105,32178177,32243713,32374785,32440321,32571393,32636929,32768001,32833537,32899073,32964609,33095681,33161217,33292289,33357825,33488897,33554433,33685505,33751041,33882113,34013185,34144257,34275329,34406401,34537473,34668545,34799617,34865153,34996225,35061761,35192833,35323905,35389441,35454977,35586049,35717121,35848193,35913729,36110337,36175873,36372481,36438017,36503553,36700161,36765697,36962305,37158913,37224449,37421057,37748737,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40894465,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44302337,44433409,44564481,44630017,44695553,44761089,44826625,45219841,45285377,45350913,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47841281,47972353,48037889,48168961,48234497,48300033,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49676289,49741825,49807361,49872897,49938433,50003969,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58785793,58851329,58916865,58982401,60162049,60227585,60293121,60358657,60424193,60489729,60817409,61079553,61210625,61407233,61472769,61538305,61603841,61734913,61800449,61865985,61931521,61997057,62390273,62455809,62652417,62717953,62980097,63242241,63307777,63373313,63438849,63635457,63766529,63897601,64159745,64356353,64421889,64487425,65601537,65667073,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,69206017,69271553,69337089,69402625,69468161,69533697,69599233,69664769,69730305,69795841,69861377,69926913,69992449,70057985,70123521,70189057,70254593,70320129,70385665,70451201,70516737,70647809,70713345,70778881,70844417,70909953,70975489,71041025,71106561,71172097,71499777,71565313,71630849,71696385,71827457,154599425,154730497,170131457],"ctor":[23003140,23068675,23199746,23527426,23724033,24248321,28246017,28508161,28573700,28704769,28835845,32243713,32768001,35192833,35586049,36438017,36503553,36765697,37224449,37421059,39845890,39976974,40763394,40894465,41156609,41287682,41418754,41549825,41680897,41811969,41943042,42270721,45285379,46006277,46465027,46596100,46858241,46989313,48037889,48300033,48889858,48955395,49020931,49152002,49283073,49414145,49545217,50003969,50331649,50397185,50528257,50593793,50659329,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,57016321,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58785793,58851329,58916865,58982401,60293121,60489729,61079555,61407234,61997057,62455809],"caused":[23396353,49872897,60424193,64159745,64225281,71958529,72024065,72089601,74645505,74711041,79626241,79691777,80740354,80805890,82116610,82247682,82640898,85065730,85131266,85262338,85393410,85458946,85852162,86048770,86507522,86573058,86835202,87293954,87359490,87883778,87949314,88145921,89063425,141230081,141295617,151191553,151257089,151322625,154402817,154468353,160628737,161939457,162988034,163053570,164495362,164626434,165019650,167444482,167510018,167641090,167772162,167837698,168230914,168427522,168886274,168951810,169213955,169672706,169738242,170262530,170328066,171180033,173998081,174260225],"collections":[24248322,24576001,36438018,36896772,45154306,50266114,52101121,54657025,60751874,61997058,62259201,62455810],"containing":[24576001,25493505,25559041,25624577,26411009,26804225,26935297,27066369,27197441,27918337,64094211,64225281,74842113,88539137,96403457,148963329,154664961,156827649,158924801,158990337,173604866],"channelname":[25755654,88997889,150274054,174063617],"coordinated":[26476545,26542081,26607617,26673153,32768001,32833537,32899073,32964609,63832065,66584577,73465857,94175233,153092098,153354241],"callerid":[27394054,34275334,63832065,72220673,73990146,77791233,79888385,80084993,80347137,81723393,82706433,82771969,82837505,83230721,83296257,83623937,84803587,84869121,85000193,85065729,85131265,85196801,85327873,85852161,87359489,87687169,88211457,89718790,95027206,105316357,111411205,112132101,113836038,125173766,127991813,129499141,131661829,133824517,134021121,134086657,134545414,135004165,137232389,144572421,147849221,151584769,153616387,157810689,162136065,162332673,162594817,164102145,165085185,165150721,165216257,165609473,165675009,166002689,167182339,167247873,167378945,167444481,167510017,167575553,167706625,168230913,169738241,170065921,171835393],"concurrent":[28639233,28770305,72351745,91422721,151781377],"closed":[37617665,37683201,64094209,157286401],"consructor":[37748737,154861569],"client":[37748738,64028674,64159746,85524483,136380418,136511489,167903236,169017345,172359681,173211649],"created":[38600705,63766529,64028673,64159745,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,150142977,151126017,167247873,171638785,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"classmethod":[38666246,38797317],"commonslogginglog":[39124993,154927105],"commons":[39124993,154927105],"cancel":[39256065],"callback":[39387137,39452674,64094210,67764226,75104258,97583105,97648641,155123718],"calls":[39649281,45875201,64028673,64094210,64159745,75169794,77791233,78118913,80150531,83623937,83689473,85721089,85786625,85917697,85983235,86048770,86114307,86179843,86245378,86310915,86376451,86441987,86507528,97910787,105250817,106561537,112394241,112852993,112984065,137560065,137691137,137953281,138018817,138149889,138608641,139264001,139591681,139657217,139853826,139919367,139984898,140312580,140443650,155189250,157810689,157941762,158138369,162398211,166002689,166068225,167641089,168099841,168165377,168296449,168361987,168427522,168493059,168558595,168624130,168689667,168755203,168820739,168886280,172097537],"charge":[39911425,39976961,67895298,155385858],"channelprefix":[39976966,75366401,98435078,155385857],"chargetype":[39976966,75366401,98500614,155385857],"currencyname":[39976966,75366401,98893830,155385857],"currencyamount":[39976966,75366401,98762758,155385857],"currencymultiplier":[39976966,75366401,98828294,155385857],"chargingassociationid":[39976966,75366401,98566150,155385857],"chargingassociationnumber":[39976966,75366401,98631686,155385857],"chargingrassociationplan":[39976966,75366401,98697222,155385857],"channels":[40173569,40239105,47316993,63832068,64028676,64094212,64159763,68026370,70254593,81526785,83755009,87228417,87621633,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,123863041,144375809,150142977,152829953,152895489,153419777,153485313,155516930,158728193,159055874,159514626,162463745,162529281,162856961,162922497,163184641,163250177,163774466,165347329,165806081,166133762,167772161,167903234,169017346,169607169,169672705,169869313,170000386,170262529,170917889,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174325761,174456833,174718977],"channel1":[40239110,75497473,81526785,83361793,83755009,87621633,99614726,124125190,130154501,155516929,163774465,165740545,166133761,170000385],"channel2":[40239110,45285382,45350918,75497473,77856770,81526785,83361793,83755009,87621633,99680262,105971717,106102785,124190726,130220037,155516929,157876226,163774465,165740545,166133761,170000385],"courtesy":[40239105],"cli":[40632321,64094209,75694081,77725697,88539137,100204545,104857601,148963329,155713538,157745153,173604865],"conference":[40697857,40763399,40894471,41091073,41156615,41222145,41287687,41353217,41418759,41484289,41549831,41615361,41680903,41746433,41811975,41877505,41943047,64028680,64094209,64159749,68288514,68354050,68419586,68485122,68550658,68616194,68681730,68747266,75759617,75825153,75956225,76021761,76087297,76152833,76218369,76283905,76349441,79953921,80019457,81920001,81985537,82051073,82182145,82313217,82378753,82444289,83951617,84017153,84082689,84148225,84213761,84279297,84344833,100401158,100532230,100728838,100925446,101122054,101253126,101384198,101515270,101711878,111935494,112001025,155779075,155844611,155975683,156041219,156106755,156172291,156237827,156303363,156368899,161153025,161218561,161284097,161349633,161415169,162201601,162267138,164298753,164364289,164429825,164560897,164691969,164757505,164823041,166330369,166395906,166461442,166526977,166592514,166658050,166723585,171311105,171376641,171442177],"confbridge":[40894465,64094209,155844610],"confbridgelist":[40894465,64094209,155844610],"confbridgelistcomplete":[40894465,64094209,155844610],"conferences":[41484289,41549825,64094209,68550658,155910145,156172290],"configuration":[42205186,42270722,43253761,64094211,68812804,75104258,77070337,97386497,97714177,103350273,155123714,156631044,157089793,159186947],"combination":[42991617,43843585,76939265,77266945,103022593,103874561,156958721,157286401],"cleartext":[43712514,69402626,77266945,104005633,157286403],"concerned":[43712513,69402625,157286401],"configured":[43712514,43778049,43843585,63766530,63897602,77266946,80281601,104005633,104071169,113639425,151126017,154533889,154599425,154730497,157286402,162529281],"conf":[43712514,43778049,43843585,64028673,64094210,64159746,77266946,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281602,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131266,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048770,86114305,86179841,86245377,86310913,86376449,86441985,86507523,86573057,86638595,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949314,88080387,104005633,104071169,113639425,132448257,135331841,138412033,140115969,140247041,140640258,146276353,146997249,147128321,147587073,157286402,159186946,159776769,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529282,162594818,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102146,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510018,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427522,168493057,168558593,168624129,168689665,168755201,168820737,168886275,168951809,169017347,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328066,171048963],"checks":[44171265,64094209,69533697,77463553,88080385,104398849,147456001,157483011,171048961],"check":[44171265,64094209,64159745,155320321,163774465],"considered":[45875201,77791233,78118913,80150529,85983233,86048769,86114305,86179841,86310913,86376449,86441985,87228417,88211457,105709569,106561537,112984065,138018817,138608641,139657217,144375809,148242433,157810689,158138369,162398209,168361985,168427521,168493057,168558593,168689665,168755201,168820737,169607169,171835393],"custom":[45940737,46006273,63766529,63832066,64094209,64159745,69795842,151650305,152502273,152633345,157679617,158203906,170131457],"cdr":[47513601,64159745,78774276,86704130,109051906,109117441,109182977,140902401,140967937,158793732,164102145,169082882],"contructor":[50724865,162398209],"connections":[60227585,60293121,72351745,91291649,151781377],"classes":[63700993,63766529,63832065,63897601,63963138,64028673,64094209,64159746,64225281,64290817,154796033,166264833],"convinience":[63766529,151650305],"course":[63832065,153550849],"capable":[63832065,154140673],"completely":[64028673,161939457],"combinded":[64028673,173342721],"caller":[64028678,64159748,75104257,77791233,79888386,80084995,80347138,80412675,80478210,80805889,82706435,82771971,82837507,83230721,83296258,83623940,84803586,84869122,85000194,85131267,85196803,85327875,85852162,87359491,87687171,88211457,97714177,105316353,111411201,111542273,112132097,112197633,112263169,113901569,113967105,114425857,114491393,114556929,114688001,114753537,115408897,127991809,128057345,128122881,129499137,131661826,131727362,133824513,133955585,135004161,135069697,135135233,137232385,137297921,144572418,144637954,144703490,147849217,155123713,157810689,159842305,159907841,159973377,162136066,162332675,162594818,162660356,162725891,162791425,163053569,165085187,165150723,165216259,165609473,165675010,166002692,167182339,167247874,167378946,167510019,167575555,167706627,168230914,169738243,170065923,171573249,171835393,172490753,172556289],"connected":[64028675,64159747,84934657,134348801,159842305,159907841,162660353,162725889,167313410,171704321],"cdreventhandler":[64028673,161087493],"confbridgeendeventhandler":[64028673,161153029],"confbridgejoineventhandler":[64028673,161218565],"confbridgeleaveeventhandler":[64028673,161284101],"confbridgestarteventhandler":[64028673,161349637],"confbridgetalkingeventhandler":[64028673,161415173],"connectionstateeventhandler":[64028673,161480709],"connectionstate":[64028673,161480705],"completed":[64028673,64159745,86507523,139984903,140312578,161677313,165150721,168886275],"commences":[64028673,64159745,166133761,170917889],"codec":[64028673,64159745,166133761,170917889],"conversion":[64028673,64159745,166133761,170917889],"changed":[64028674,64094209,64159748,158793729,167378945,168755201,168820737,169148417,171769857,173277185],"completion":[64028673,64159745,170000385,174456833],"counting":[64094209,155058177],"cancelled":[64094209,155058177],"corresponds":[64094209,64225282,85131265,86507521,135331841,140115969,155058177,167510017,168886273,173539329,173604865],"contrast":[64094209,155123713],"commands":[64094209,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713538,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"confbridgelistrooms":[64094209,155910145],"confbridgelistroomscomplete":[64094209,155910145],"concrete":[64094209,157548545],"connecting":[64094210,157810690],"careful":[64094209,157810689],"choose":[64094209,157810689],"callers":[64094209,158662657],"cat":[64094209,79167489,109969409,159186946],"chan_agent":[64159748,162463745,162529281,162856961,162922497],"chan_zap":[64159747,163184641,163250177,165347329],"compatibily":[64159745,163774465],"cdrevents":[64159745,164102145],"cdr_manager":[64159746,164102146],"chan_sip":[64159749,165806081,167772161,167903233,169017345,169869313],"contain":[64159746,64225281,79167490,109969410,159186946,166264833,169213953,173735937],"core":[64159745,166264833],"conrete":[64159745,166264833],"chan_iax2":[64159746,167903233,169017345],"coded":[71958529,72024065,72089601,74645505,74711041,79626241,79691777,88145921,89063425,151191553,151257089,151322625,154402817,154468353,160628737,161939457,171180033,174260225],"calleridname":[72220673,79888385,80084993,80347137,81264641,81461249,81592321,81985537,82051073,82182145,82706433,82771969,82837505,83296257,83623937,84017153,84082689,84803585,84869121,85000193,85065729,85131265,85196801,85327873,85852161,87359489,87687169,89784326,111476742,112197637,113901573,123207686,126812166,126943238,127139846,128057349,131727365,132579334,132710406,133890054,134610950,135069701,137297925,144637957,151584769,162136065,162332673,162594817,163512321,163708929,163971073,164364289,164429825,164560897,165085185,165150721,165216257,165675009,166002689,166395905,166461441,167182337,167247873,167378945,167444481,167510017,167575553,167706625,168230913,169738241,170065921],"callingani2":[72220673,89849862,151584769],"callingpres":[72220673,89915398,151584769],"callingtns":[72220673,89980934,151584769],"callington":[72220673,90046470,151584769],"configurations":[75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76087297,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,76742657,76808193,76873729,76939265,77004801,77070337,77135873,77201409,77266945,77332481,77398017,77463553,77529089,77594625,77660161,77725697,77791233,77856769,77922305,77987841,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905345,78970881,79036417,79101953,79167489,79233025,79298561,79364097,79429633,79495169,79560705,79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,104660993,132317185,150077441,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"changemonitor":[75628545,99942401,155648001],"conventions":[79691777,111017985,161939457],"correct":[79691777,111017985,151519233,161939457],"comma":[79757313,79822849,79888385,79953921,80019457,80084993,80150529,80216065,80281601,80347137,80412673,80478209,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85131265,85196801,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,132251649,149946369,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"calleridnum":[79888385,80084993,80347137,81264641,81461249,81592321,81985537,82051073,82182145,82706433,82771969,82837505,83296257,84017153,84082689,84803585,84869121,85000193,85065729,85131265,85196801,85327873,87359489,87687169,111542277,112263173,113967109,123273222,126877702,127008774,127205382,128122885,132644870,132775942,133955589,134676486,135135237,144703493,162136065,162332673,162594817,163512321,163708929,163971073,164364289,164429825,164560897,165085185,165150721,165216257,165675009,166395905,166461441,167182337,167247873,167378945,167444481,167510017,167575553,167706625,169738241,170065921],"channelstate":[79888385,81264641,81461249,81592321,83296257,84869121,85000193,111607813,123338758,162136065,163512321,163708929,163971073,165675009,167247873,167378945],"channelstatedesc":[79888385,83296257,84869121,85000193,111673349,162136065,165675009,167247873,167378945],"connectedlinename":[79888385,81264641,81461249,81592321,83296257,84869121,85000193,111738886,123469830,162136065,163512321,163708929,163971073,165675009,167247873,167378945],"connectedlinenum":[79888385,81264641,81461249,81592321,83296257,84869121,85000193,111804422,123535366,162136065,163512321,163708929,163971073,165675009,167247873,167378945],"callstaken":[80150529,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,112394245,137691141,138149893,139264005,162398209,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737],"channelcalling":[80347137,114032646,162594817],"commandid":[80871425,81068033,115539974,115867654,163119105,163315713],"channelstateddesc":[81264641,81461249,81592321,123404294,163512321,163708929,163971073],"callerid1":[81526785,83755009,87621633,123994118,163774465,166133761,170000385],"callerid2":[81526785,83755009,87621633,124059654,163774465,166133761,170000385],"channeltype":[81788929,81854465,85393409,85524481,86638593,125960197,126287877,135462917,136314885,140574725,164167681,164233217,167772161,167903233,169017345],"causetxt":[83296257,130088965,165675009],"count":[83623937,83689473,85721089,85786625,85917697,137560069,166002689,166068225,168099841,168165377,168296449],"cidcallingpres":[84803585,134021125,167182337],"cidcallingpresnumeric":[84803585,134086661,167182337],"chanobjecttype":[85393409,135528453,167772161],"cumulativeloss":[86966273,142147590,169345025],"cleanly":[87228417,144375809,169607169],"counter":[88080386,147324929,147390465,171048962],"checking":[88080385,147456001,171048961],"complete":[88342529,148504581,173408257],"creating":[88473601,148897793,173539329],"content":[88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,149880833,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081],"categories":[88670209,149291013,173735937],"computes":[89128961,150732801,174850049],"constructors":[151060481,151126017,151191553,151257089,151322625,151388161,151453697,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157089793,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,160628737,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199297,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169410561,169476097,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,171048961,171180033,171245569,171835393,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174260225,174850049,174915585,174981121]} \ No newline at end of file +{"class":[65537,131073,196610,262145,327682,393218,458754,524290,589826,655362,720898,786434,851970,917506,983042,1048578,1114114,1179650,1245186,1310722,1376258,1441794,1507330,1572866,1638402,1703938,1769474,1835010,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555906,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801090,3866626,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653058,4718594,4784130,4849666,4915202,4980738,5046274,5111810,5177346,5242882,5308418,5373954,5439490,5505026,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356994,6422530,6488066,6553602,6619138,6684674,6750210,6815746,6881282,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536642,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192002,8257538,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781826,8847362,8912898,8978434,9043970,9109506,9175042,9240578,9306114,9371650,9437186,9502722,9568258,9633794,9699330,9764866,9830402,9895938,9961474,10027010,10092546,10158082,10223618,10289154,10354692,10420228,10485764,10551298,10616834,10682370,10747908,10813442,10878978,10944514,11010050,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189698,12255234,12320770,12386306,12451842,12517378,12582914,12648450,12713986,12779522,12845058,12910594,12976130,13041666,13107202,13172738,13238274,13303810,13369346,13434881,13500420,13565956,13631490,13697026,13762562,13828098,13893634,13959170,14024710,14090242,14155778,14221314,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269890,15335426,15400962,15466498,15532034,15597570,15663106,15728642,15794178,15859714,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515074,16580610,16646146,16711682,16777218,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432578,17498114,17563650,17629186,17694722,17760258,17825794,17891330,17956866,18022402,18087938,18153474,18219010,18284546,18350082,18415618,18481154,18546690,18612226,18677764,18743300,18808834,18874370,18939906,19005442,19070978,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726338,19791874,19857410,19922946,19988482,20054018,20119554,20185090,20250626,20316162,20381698,20447234,20512770,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102594,21168130,21233666,21299202,21364738,21430274,21495810,21561346,21626882,21692418,21757954,21823490,21889026,21954562,22020098,22085634,22151170,22216706,22282242,22347778,22413314,22478850,22544386,22609922,22675458,22740994,22806530,22872066,22937602,23003138,23068674,23134210,23199746,23265282,23330818,23396354,23461890,23527426,23592962,23658498,23724034,23789570,23855106,23920642,23986178,24051714,24117250,24182786,24248322,24313858,24379394,24444930,24510466,24576002,24641538,24707074,24772610,24838146,24903682,24969218,25034754,25100290,25165826,25231362,25296898,25362434,25427970,25493506,25559042,25624578,25690114,25755650,25821186,25886722,25952258,26017794,26083330,26148866,26214402,26279938,26345474,26411010,26476546,26542082,26607618,26673154,26738690,26804226,26869762,26935298,27000834,27066369,27131907,27197444,27262978,27328514,27394050,27459586,27525122,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,28114946,28180484,28246020,28311554,28377090,28442626,28508163,28573699,28639234,28704770,28770307,28835842,28901378,28966915,29032451,29097986,29163522,29229059,29294594,29360130,29425666,29491202,29556738,29622274,29687811,29753347,29818882,29884418,29949954,30015490,30081026,30146562,30212098,30277634,30343170,30408706,30474242,30539778,30605314,30670850,30736386,30801922,30867458,30932994,30998530,31064066,31129602,31195138,31260674,31326210,31391746,31457282,31522818,31588355,31653892,31719426,31784962,31850498,31916034,31981570,32047106,32112642,32178178,32243714,32309250,32374786,32440322,32505858,32571394,32636930,32702466,32768002,32833538,32899074,32964610,33030146,33095682,33161218,33226754,33292290,33357826,33423362,33488898,33554434,33619971,33685506,33751043,33816578,33882114,33947650,34013186,34078723,34144258,34209794,34275330,34340867,34406402,34471938,34537474,34603011,34668546,34734083,34799618,34865155,34930690,34996226,35061762,35127298,35192834,35258370,35323906,35389442,35454978,35520514,35586050,35651586,35717122,35782658,35848194,35913730,35979266,36044802,36110338,36175874,36241410,36306946,36372482,36438018,36503554,36569090,36634626,36700162,36765698,36831234,36896770,36962306,37027842,37093378,37158914,37224450,37289986,37355522,37421058,37486594,37552130,37617666,37683202,37748738,37814274,37879810,37945346,38010882,38076418,38141954,38207490,38273026,38338562,38404098,38469634,38535170,38600706,38666242,38731778,38797314,38862850,38928386,38993922,39059458,39124994,39190530,39256066,39321602,39387138,39452674,39518210,39583746,39649282,39714818,39780354,39845890,39911426,39976962,40042498,40108034,40173570,40239106,40304643,40370180,40435714,40501250,40566786,40632322,40697858,40763394,40828930,40894466,40960002,41025538,41091074,41156610,41222146,41287682,41353218,41418754,41484289,41549825,41615362,41680898,41746434,41811970,41877507,41943043,42008579,42074114,42139650,42205187,42270723,42336258,42401794,42467331,42532866,42598402,42663939,42729475,42795010,42860546,42926083,42991618,43057154,43122690,43188226,43253762,43319298,43384834,43450370,43515906,43581442,43646978,43712514,43778050,43843586,43909122,43974658,44040194,44105731,44171267,44236803,44302340,44367874,44433410,44498946,44564482,44630019,44695554,44761090,44826626,44892162,44957698,45023234,45088770,45154306,45219842,45285379,45350914,45416450,45481986,45547522,45613058,45678594,45744130,45809666,45875202,45940738,46006274,46071810,46137346,46202882,46268418,46333954,46399490,46465026,46530563,46596098,46661634,46727170,46792706,46858242,46923778,46989314,47054850,47120386,47185922,47251458,47316994,47382530,47448066,47513603,47579139,47644675,47710210,47775746,47841282,47906818,47972354,48037890,48103426,48168962,48234498,48300034,48365570,48431106,48496642,48562179,48627714,48693250,48758786,48824322,48889858,48955394,49020930,49086466,49152002,49217538,49283074,49348610,49414147,49479682,49545218,49610754,49676290,49741826,49807363,49872898,49938435,50003970,50069507,50135042,50200578,50266114,50331650,50397186,50462722,50528258,50593794,50659330,50724867,50790402,50855938,50921474,50987011,51052547,51118083,51183618,51249154,51314690,51380226,51445762,51511298,51576834,51642370,51707906,51773442,51838978,51904514,51970050,52035586,52101122,52166658,52232194,52297730,52363266,52428803,52494339,52559874,52625411,52690946,52756482,52822018,52887554,52953090,53018626,53084162,53149698,53215234,53280770,53346307,53411842,53477378,53542914,53608450,53673987,53739522,53805058,53870594,53936130,54001666,54067202,54132738,54198274,54263810,54329346,54394882,54460418,54525954,54591490,54657026,54722562,54788098,54853634,54919170,54984706,55050242,55115778,55181315,55246851,55312386,55377922,55443458,55508995,55574530,55640066,55705602,55771138,55836675,55902211,55967747,56033283,56098819,56164355,56229890,56295427,56360963,56426499,56492035,56557571,56623107,56688643,56754179,56819715,56885251,56950786,57016323,57081859,57147395,57212931,57278467,57344003,57409539,57475075,57540611,57606146,57671683,57737219,57802755,57868291,57933827,57999362,58064899,58130435,58195971,58261507,58327043,58392579,58458115,58523651,58589187,58654723,58720259,58785795,58851330,58916866,58982402,59047939,59113474,59179010,59244547,59310083,59375619,59441155,59506691,59572227,59637763,59703299,59768835,59834371,59899907,59965443,60030979,60096514,60162050,60227586,60293122,60358658,60424195,60489731,60555267,60620803,60686339,60751875,60817411,60882947,60948483,61014019,61079555,61145091,61210627,61276163,61341699,61407235,61472771,61538307,61603843,61669379,61734915,61800451,61865986,61931523,61997059,62062594,62128130,62193667,62259203,62324739,62390275,62455810,62521347,62586882,62652418,62717954,62783490,62849026,62914562,62980099,63045635,63111171,63176707,63242243,63307779,63373315,63438851,63504387,63569923,63635459,63700995,63766531,63832067,63897603,63963138,64028674,64094211,64159747,64225282,64290819,64356355,64421891,64487427,64552961,64618497,64684034,64749570,64815106,64880642,64946178,65011714,65077250,65142786,65208322,65273859,65339394,65404930,65470466,65536002,65601538,65667074,65732610,65798146,65863682,65929218,65994754,66060290,66125826,66191362,66256898,66322435,66387970,66453506,66519042,66584578,66650114,66715650,66781186,66846722,66912258,66977795,67043331,67108867,67174402,67239939,67305475,67371011,67436546,67502083,67567618,67633154,67698690,67764226,67829762,67895299,67960835,68026370,68091906,68157443,68222978,68288516,68354052,68419586,68485122,68550658,68616194,68681730,68747267,68812803,68878339,68943875,69009410,69074946,69140482,69206018,69271556,69337090,69402627,69468162,69533698,69599237,69664785,69730307,69795843,69861380,69926915,69992452,70057986,70123522,70189058,70254594,70320130,70385666,70451204,70516738,70582274,70647810,70713346,70778882,70844418,70909954,70975490,71041026,71106564,71172099,71237634,71303170,71368706,71434242,71499778,71565314,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089602,72155138,72220674,72286210,72351746,72417284,72482818,72548354,72613890,72679429,72744964,72810500,72876034,72941570,73007106,73072644,73138178,73203714,73269250,73334786,73400322,73465858,73531394,73596930,73662466,73728002,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,74317826,74383362,74448898,74514434,74579970,74645506,74711042,74776578,74842114,74907650,74973186,75038722,75104258,75169794,75235330,75300866,75366402,75431938,75497474,75563010,75628546,75694084,75759618,75825154,75890690,75956226,76021762,76087298,76152834,76218370,76283906,76349442,76414978,76480514,76546052,76611588,76677122,76742658,76808194,76873730,76939266,77004802,77070338,77135875,77201412,77266948,77332486,77398018,77463554,77529090,77594626,77660162,77725698,77791234,77856770,77922306,77987842,78053378,78118914,78184450,78249986,78315522,78381058,78446594,78512130,78577666,78643202,78708738,78774274,78839810,78905346,78970882,79036418,79101954,79167490,79233026,79298562,79364098,79429634,79495170,79560706,79626242,79691779,79757314,79822850,79888386,79953922,80019458,80084994,80150530,80216066,80281602,80347140,80412674,80478210,80543746,80609282,80674818,80740354,80805890,80871426,80936962,81002498,81068034,81133570,81199106,81264642,81330178,81395714,81461250,81526786,81592322,81657858,81723394,81788930,81854466,81920002,81985538,82051074,82116610,82182146,82247682,82313218,82378754,82444290,82509826,82575362,82640898,82706434,82771970,82837506,82903042,82968578,83034114,83099650,83165186,83230722,83296258,83361794,83427330,83492866,83558402,83623938,83689474,83755010,83820546,83886082,83951618,84017154,84082690,84148226,84213762,84279298,84344834,84410370,84475906,84541442,84606978,84672514,84738050,84803586,84869122,84934658,85000194,85065730,85131266,85196802,85262339,85327875,85393411,85458947,85524483,85590019,85655555,85721091,85786627,85852163,85917699,85983235,86048771,86114307,86179843,86245379,86310915,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293955,87359491,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211459,88276995,88342531,88408067,88473603,88539139,88604675,88670211,88735747,88801283,88866819,88932355,88997891,89063427,89128963,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374147,90439683,90505219,90570755,90636291,90701827,90767363,90832899,90898435,90963971,91029507,91095043,91160579,91226115,91291651,91357187,91422723,91488259,91553795,91619331,91684867,91750403,91815939,91881475,91947011,92012547,92078083,92143619,92209155,92274691,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864515,92930051,92995587,93061123,93126659,93192195,93257731,93323267,93388803,93454339,93519873,93585410,93650946,93716482,93782018,93847554,93913090,93978627,94044163,94109699,94175235,94240771,94306307,94371843,94437379,94502914,94568450,94633986,94699522,94765058,94830594,94896130,94961666,95027202,95092738,95158274,95223810,95289346,95354882,95420418,95485954,95551490,95617026,95682562,95748098,95813634,95879170,95944706,96010242,96075778,96141314,96206850,96272386,96337922,96403458,96468994,96534530,96600066,96665602,96731138,96796674,96862210,96927746,96993282,97058818,97124354,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418114,99483650,99549186,99614722,99680258,99745794,99811330,99876866,99942402,100007938,100073474,100139010,100204546,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728837,100794370,100859906,100925442,100990978,101056514,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,101711874,101777410,101842947,101908483,101974018,102039554,102105090,102170626,102236162,102301698,102367234,102432770,102498306,102563842,102629378,102694914,102760450,102825986,102891522,102957058,103022594,103088130,103153666,103219202,103284738,103350274,103415810,103481346,103546882,103612418,103677954,103743490,103809026,103874562,103940098,104005634,104071170,104136706,104202242,104267778,104333314,104398850,104464386,104529922,104595458,104660994,104726530,104792066,104857602,104923138,104988674,105054210,105119746,105185282,105250818,105316354,105381890,105447426,105512962,105578498,105644034,105709570,105775106,105840642,105906178,105971714,106037250,106102786,106168322,106233858,106299394,106364930,106430466,106496002,106561538,106627074,106692610,106758146,106823682,106889218,106954754,107020290,107085826,107151362,107216898,107282434,107347970,107413506,107479042,107544578,107610114,107675650,107741186,107806722,107872258,107937794,108003330,108068866,108134402,108199938,108265474,108331010,108396546,108462082,108527618,108593154,108658690,108724226,108789762,108855298,108920834,108986370,109051906,109117442,109182978,109248514,109314050,109379586,109445122,109510658,109576194,109641730,109707266,109772802,109838338,109903874,109969410,110034946,110100482,110166018,110231554,110297090,110362626,110428162,110493698,110559234,110624770,110690306,110755842,110821378,110886914,110952450,111017986,111083522,111149058,111214594,111280130,111345666,111411202,111476738,111542274,111607810,111673346,111738882,111804418,111869954,111935490,112001026,112066562,112132098,112197634,112263170,112328706,112394242,112459778,112525314,112590850,112656386,112721922,112787458,112852994,112918530,112984066,113049602,113115138,113180674,113246210,113311746,113377282,113442818,113508354,113573890,113639426,113704962,113770498,113836034,113901570,113967106,114032642,114098178,114163714,114229250,114294786,114360322,114425858,114491394,114556930,114622466,114688002,114753538,114819074,114884610,114950146,115015682,115081218,115146754,115212290,115277826,115343362,115408898,115474434,115539970,115605506,115671042,115736578,115802114,115867650,115933186,115998722,116064258,116129794,116195330,116260866,116326402,116391938,116457474,116523010,116588546,116654082,116719618,116785154,116850690,116916226,116981762,117047298,117112834,117178370,117243906,117309442,117374978,117440514,117506050,117571586,117637122,117702658,117768194,117833730,117899266,117964802,118030338,118095874,118161410,118226946,118292482,118358018,118423554,118489090,118554626,118620162,118685698,118751234,118816770,118882306,118947842,119013378,119078914,119144450,119209986,119275522,119341058,119406594,119472130,119537666,119603202,119668738,119734274,119799810,119865346,119930882,119996418,120061954,120127490,120193026,120258562,120324098,120389634,120455170,120520706,120586242,120651778,120717314,120782850,120848386,120913922,120979458,121044994,121110530,121176066,121241602,121307138,121372674,121438210,121503746,121569282,121634818,121700354,121765890,121831426,121896962,121962498,122028034,122093570,122159106,122224642,122290178,122355714,122421250,122486786,122552322,122617858,122683394,122748930,122814466,122880002,122945538,123011074,123076610,123142146,123207682,123273218,123338754,123404290,123469826,123535362,123600898,123666434,123731970,123797506,123863042,123928578,123994114,124059650,124125186,124190722,124256258,124321794,124387330,124452866,124518402,124583938,124649474,124715010,124780546,124846082,124911618,124977154,125042690,125108226,125173762,125239298,125304834,125370370,125435906,125501442,125566978,125632514,125698050,125763586,125829122,125894658,125960194,126025730,126091266,126156802,126222338,126287874,126353410,126418946,126484482,126550018,126615554,126681090,126746626,126812162,126877698,126943234,127008770,127074306,127139842,127205378,127270914,127336450,127401986,127467522,127533058,127598594,127664130,127729666,127795202,127860738,127926274,127991810,128057346,128122882,128188418,128253954,128319490,128385026,128450562,128516098,128581634,128647170,128712706,128778242,128843778,128909314,128974850,129040386,129105922,129171458,129236994,129302530,129368066,129433602,129499138,129564674,129630210,129695746,129761282,129826818,129892354,129957890,130023426,130088962,130154498,130220034,130285570,130351106,130416642,130482178,130547714,130613250,130678786,130744322,130809858,130875394,130940930,131006466,131072002,131137538,131203074,131268610,131334146,131399682,131465218,131530754,131596290,131661826,131727362,131792898,131858434,131923970,131989506,132055042,132120578,132186114,132251650,132317186,132382722,132448258,132513794,132579330,132644866,132710402,132775938,132841474,132907010,132972546,133038082,133103618,133169154,133234690,133300226,133365762,133431298,133496834,133562370,133627906,133693442,133758978,133824514,133890050,133955586,134021122,134086658,134152194,134217730,134283266,134348802,134414338,134479874,134545410,134610946,134676482,134742018,134807554,134873090,134938626,135004162,135069698,135135234,135200770,135266306,135331842,135397378,135462914,135528450,135593986,135659522,135725058,135790594,135856130,135921666,135987202,136052738,136118274,136183810,136249346,136314882,136380418,136445954,136511490,136577026,136642562,136708098,136773634,136839170,136904706,136970242,137035778,137101314,137166850,137232386,137297922,137363458,137428994,137494530,137560066,137625602,137691138,137756674,137822211,137887746,137953282,138018818,138084354,138149890,138215426,138280962,138346498,138412034,138477570,138543106,138608642,138674178,138739714,138805250,138870786,138936322,139001858,139067394,139132930,139198466,139264002,139329538,139395074,139460610,139526146,139591682,139657218,139722754,139788290,139853826,139919362,139984898,140050434,140115970,140181506,140247042,140312578,140378114,140443650,140509186,140574722,140640258,140705794,140771330,140836866,140902402,140967938,141033474,141099010,141164546,141230082,141295618,141361154,141426690,141492226,141557762,141623298,141688834,141754370,141819906,141885442,141950978,142016514,142082050,142147586,142213122,142278658,142344194,142409730,142475266,142540802,142606338,142671874,142737410,142802946,142868482,142934018,142999554,143065090,143130626,143196162,143261698,143327234,143392770,143458306,143523842,143589378,143654914,143720450,143785986,143851522,143917058,143982594,144048130,144113666,144179202,144244738,144310274,144375810,144441346,144506882,144572418,144637954,144703490,144769026,144834562,144900098,144965634,145031170,145096706,145162242,145227778,145293314,145358850,145424386,145489922,145555458,145620994,145686530,145752066,145817602,145883138,145948674,146014210,146079746,146145282,146210818,146276354,146341890,146407426,146472962,146538498,146604034,146669570,146735106,146800642,146866178,146931714,146997250,147062786,147128322,147193858,147259394,147324930,147390466,147456002,147521538,147587074,147652610,147718146,147783682,147849218,147914754,147980290,148045826,148111362,148176898,148242434,148307970,148373506,148439042,148504578,148570114,148635650,148701186,148766722,148832258,148897794,148963330,149028866,149094402,149159938,149225474,149291010,149356546,149422082,149487618,149553154,149618690,149684226,149749762,149815298,149880834,149946370,150011906,150077442,150142978,150208514,150274050,150339586,150405122,150470658,150536194,150601730,150667266,150732802,150798338,150863874,150929410,150994946,151060482,151126018,151191554,151257090,151322626,151388162,151453698,151519234,151584770,151650306,151715842,151781378,151846914,151912450,151977985,152043521,152109058,152174594,152240130,152305666,152371202,152436738,152502274,152567810,152633346,152698882,152764418,152829954,152895490,152961026,153026562,153092098,153157634,153223170,153288706,153354242,153419778,153485314,153550850,153616386,153681922,153747458,153812994,153878530,153944066,154009602,154075138,154140674,154206210,154271746,154337282,154402818,154468354,154533890,154599426,154664962,154730498,154796034,154861570,154927106,154992642,155058178,155123714,155189250,155254786,155320322,155385858,155451394,155516931,155582466,155648002,155713538,155779074,155844610,155910146,155975682,156041218,156106754,156172290,156237826,156303362,156368898,156434434,156499970,156565510,156631048,156696582,156762122,156827657,156893193,156958727,157024264,157089794,157155334,157220873,157286407,157351944,157417479,157483015,157548551,157614086,157679622,157745158,157810694,157876230,157941766,158007302,158072838,158138374,158203910,158269446,158334982,158400518,158466054,158531590,158597126,158662662,158728198,158793734,158859270,158924806,158990342,159055878,159121414,159186950,159252486,159318022,159383558,159449097,159514630,159580166,159645702,159711238,159776774,159842310,159907842,159973384,160038920,160104457,160169993,160235529,160301069,160366599,160432134,160497675,160563202,160628742,160694278,160759814,160825351,160890886,160956422,161021958,161087494,161153030,161218566,161284102,161349638,161415174,161480711,161546246,161611782,161677318,161742854,161808390,161873926,161939462,162004999,162070535,162136071,162201606,162267142,162332678,162398214,162463750,162529286,162594823,162660358,162725894,162791430,162856966,162922503,162988038,163053574,163119113,163184647,163250183,163315718,163381255,163446790,163512327,163577863,163643399,163708934,163774470,163840006,163905542,163971078,164036614,164102150,164167688,164233223,164298758,164364294,164429830,164495367,164560902,164626439,164691974,164757511,164823046,164888582,164954118,165019654,165085191,165150727,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068226,166133761,166199304,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510024,167575561,167641096,167706633,167772169,167837705,167903241,167968776,168034312,168099848,168165384,168230920,168296456,168361992,168427528,168493064,168558600,168624136,168689671,168755208,168820744,168886280,168951816,169017352,169082888,169148424,169213960,169279496,169345032,169410562,169476098,169541640,169607176,169672712,169738248,169803783,169869320,169934856,170000392,170065928,170131464,170197000,170262536,170328072,170393608,170459144,170524681,170590216,170655751,170721287,170786823,170852360,170917895,170983431,171048968,171114505,171180040,171245576,171311112,171376648,171442184,171507720,171573256,171638792,171704328,171769864,171835400,171900936,171966472,172032008,172097544,172163080,172228616,172294152,172359688,172425224,172490760,172556296,172621832,172687368,172752904,172818440,172883976,172949512,173015048,173080584,173146120,173211656,173277192,173342727,173408264,173473800,173539335,173604871,173670408,173735944,173801480,173867017,173932551,173998088,174063623,174129159,174194695,174260231,174325767,174391303,174456840,174522376,174587912,174653448,174718984,174784521,174850056,174915592,174981128,175046664,175112200,175177736,175243272,175308808,175374344,175439879,175505415,175570952,175636488,175702030,175767560,175833096,175898632,175964161,176029697,176095233,176160769,176226305,176291842,176357377,176422913,176488449,176553985,176619527,176685057,176750600,176816134,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405959,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913286,178978822,179044358,179109896,179175432,179240968,179306505,179372040,179437576,179503112,179568649,179634183,179699713,179765249,179830792,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420616,180486155,180551686],"changes":[131074,262145,786435,1703937,3145729,3997697,69337089,69599233,69664771,85655553,91488257,91619329,91684865,91750401,91815937,91881473,91947009,118685697,145293313,159186945,161218561,167968769,168820737,171048961,172752897,173932545,174063617,174129153,174194689,174260225,174325761,174391297,176619523],"c84e":[131073],"create":[196609,327681,393217,458753,524289,589825,655361,720897,851969,917505,47710209,47775745,69140481,69664770,69730305,74317826,82771969,109314049,156762113,156827649,156893185,159973377,160038913,162201602,162856961,166199297,167510017,175702018,176750593,179306497,179830785],"com":[196610],"change":[262145,28311553,68681729,180486145],"contains":[327681,393217,458753,524289,589825,655361,720897,786437,851969,917505,4587521,4784129,4980737,5046273,5439489,10616833,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,29294593,30277633,30343169,30408705,31326209,31391745,31719425,31784961,35258369,35323905,35389441,36831233,36896769,37879809,37945345,38141953,38862849,39059457,39256065,40894465,40960001,67567618,69271553,69402625,69599233,69664773,69730307,77660161,80347137,82509825,82771969,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357186,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,94306305,94830593,101842945,108658689,109510657,138018817,142999553,155189249,156762113,156827649,156893185,157024258,159973377,160038913,160169985,160235521,160301057,162594817,162856961,163053569,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590210,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342722,173408257,173473793,173539329,173604865,173670401,173735937,173801475,173867009,173932545,173998082,174063617,174129153,174194689,174260225,174325761,174391297,174456834,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619525,176750593,179109891,179175426,179240962,179306498,179372035,179437572,179503106,179568642,179830785],"conf":[786433,1114113,31653889,49217538,49283073,49348609,69599234,69664770,82771970,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786626,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636290,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553794,91619329,91684865,91750401,91815937,91881473,91947009,92012547,92078081,92143619,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454338,93585411,109510657,109576193,119144449,138018817,140902401,143982593,145686529,145817601,146210818,151846913,152567809,152698881,153157633,162856962,164757506,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099842,168165378,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672706,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080578,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174129153,174194689,174260225,174325761,174391297,174456835,174522369,174587907,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898626,176619524],"call":[786439,1179649,2293762,3604482,4521985,6029313,13959169,16842756,18808836,18874372,19398660,19464196,19529732,19595268,22282244,27328516,28114946,42991617,48496641,49348609,50331649,50462721,50528257,50593793,50659329,50855938,52953089,53018625,55574529,55640065,55705601,55771137,66060289,66125825,66191361,66256897,68026370,69337089,69599238,69664776,75825154,77463553,77529089,77594625,77725697,80150529,80216065,80609281,82444289,82771969,83230721,83296261,83361794,85131265,85196801,85262338,85327874,85393409,85458945,85524481,85590017,85655555,85721089,85786625,85852162,85917699,85983234,86048770,86114305,86179841,86245377,86310915,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735746,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636291,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488259,91553794,91619330,91684867,91750403,91815939,91881475,91947011,92012546,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192194,93257729,93323265,93388801,93454337,93650945,93716484,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,94568449,95158273,103219201,108527617,109379585,110493697,110559235,110886913,111280129,111476737,111607809,116785153,117964801,118095873,119996417,120848386,137822209,140836865,140902401,143327233,143785985,144900097,144965633,146014209,151257089,153288707,153485313,155516929,156762113,156827649,156893185,157155329,159842305,159973377,160038913,160432129,160628739,160694273,162529281,162856961,163315713,163381259,163446786,164364291,166199297,167510017,167575558,167641094,167706625,167772161,167837697,167903234,167968771,168034305,168099841,168165382,168230920,168296454,168361990,168427521,168493057,168558593,168624131,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672707,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180038,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704323,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080579,173146113,173211649,173277186,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932547,173998082,174063618,174129155,174194691,174260227,174325763,174391299,174456834,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570946,175636482,175702017,175767553,175833089,175898625,176619527,176750593,177405960,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634178,179830785],"caller":[786438,1179649,1245185,1310721,3997697,4849665,4915201,10747906,32899074,69664772,80609281,83296257,85393411,85590019,85852162,85917699,85983234,86310913,88211459,88276995,88342531,88735745,88801283,89128964,90308611,90374147,90505219,90636291,90701827,90832899,91357186,92864515,93192195,93716481,103219201,110821377,116916225,116981761,117047297,117637121,117702657,117768193,119406593,119472129,119930881,119996417,120061953,120193025,120258561,120913921,133562369,133627905,133693441,135069697,137232386,137297922,139395073,139460609,139526145,140574721,140640257,140705793,142802945,142868481,150142978,150208514,150274050,153419777,157220866,160694273,163381249,167706627,167903235,168165378,168230916,168296451,168361985,168624129,170655747,170721283,170786819,171180033,171245571,171573252,172752900,172818435,172949507,173080579,173146115,173277187,173801474,175308803,175636483,176619526,177405953],"connected":[786435,1179649,1245185,4128769,69664771,90439681,139919361,168230913,168296449,172883970,176619523],"channel":[786457,1703937,1769473,3014658,3276801,3342338,3407873,3473409,3538945,3735553,3801089,3997697,4063233,4128769,4194305,4325377,4390913,4521985,5636097,5701633,5963778,6094849,6291457,6488065,6619138,9043969,9240582,10747925,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,30146561,30212097,30277633,30343169,30408705,30932997,31195137,31260673,31457281,31522817,31916033,32309249,32440321,32571393,32702465,32833537,32899073,33226753,33554433,34930695,36700166,37158913,37224455,37552129,37748737,39649281,41353217,41418753,44761095,45350918,45416449,45481991,45613062,45744131,46006279,46268422,46792710,46923782,47448070,48955399,49086471,50200583,50266119,50331655,50790406,50855943,51249154,51314690,51380226,52756487,52822023,52953095,53018631,53215241,53805063,54657025,54788097,54919169,55050242,67567617,69271553,69337126,69599254,69664802,70057988,70320130,70582273,70713345,70778881,70844417,70909953,71172097,71761922,71892993,72613889,73203713,73400322,73662465,74776577,74842113,75104259,75759617,75825154,75890690,76021761,76218369,76283905,76349441,76414978,77725700,77791233,77922305,78446594,78643202,78708737,78774273,79429633,80084993,80543746,80805889,80871425,80936962,81133570,81264641,81526785,81592321,81854465,82640899,82706434,83230723,83296261,83361795,83623938,84213763,84279298,84344834,84606978,84738049,84803585,84869121,84934657,85065729,85262339,85327875,85393418,85458947,85524483,85590023,85655558,85721091,85786627,85852165,85917699,85983236,86048771,86114307,86179843,86245379,86310917,86376451,86441987,86507523,86573059,86638595,86704131,86769667,86835203,86900739,86966275,87031811,87097347,87162883,87228419,87293956,87359492,87425027,87490563,87556099,87621635,87687171,87752707,87818243,87883779,87949315,88014851,88080387,88145923,88211463,88276999,88342535,88408067,88473605,88539139,88604675,88670211,88735747,88801290,88866825,88932355,88997891,89063427,89128968,89194499,89260035,89325571,89391107,89456643,89522179,89587715,89653251,89718787,89784323,89849859,89915395,89980931,90046467,90112003,90177539,90243075,90308611,90374154,90439683,90505226,90570755,90636296,90701831,90767363,90832903,90898435,90963971,91029508,91095043,91160579,91226115,91291651,91357187,91422723,91488263,91553796,91619334,91684870,91750406,91815943,91881478,91947015,92012547,92078083,92143620,92209155,92274693,92340227,92405763,92471299,92536835,92602371,92667907,92733443,92798979,92864521,92930051,92995587,93061123,93126659,93192200,93257731,93323267,93388803,93454342,93716484,94502913,95617031,96600066,96665602,96731142,97058822,98435078,98828297,98893825,98959361,100466690,101515265,102760454,103612422,103874566,104792070,105512966,105840646,106364934,106561542,107151366,108986375,109182982,110297094,110362625,110821377,110886918,111214593,111280129,111411206,111476737,111869954,114163718,114360321,114622470,114819078,115343366,115867649,115998721,116129793,116260865,116457473,116850689,116916225,116981761,117047297,117112833,117178369,117374977,117637121,117702657,117768193,117833729,118030337,118161409,118685697,119406593,119472129,120127489,120651777,120913921,131727361,131858433,133758977,133824513,134021121,134086657,134217729,134283265,135725058,135790593,135856130,135921665,137232386,137297922,137363457,137691142,138084353,140574721,140640257,140705793,140771329,140836865,141885441,143392769,143851521,144703489,145031169,145293313,146145281,146669569,146735105,150077442,150142978,150208514,150274050,150470659,151257089,151781377,151846913,151912449,153419777,153485318,153812993,155779078,156827649,157089793,157155332,157220886,157351937,157548552,157614081,158007297,158072836,158138369,158203905,158269447,158400515,158466051,158597121,158728193,158793729,158859265,158924801,158990338,159055874,159121411,159186945,159383553,159449089,159580161,159645697,159711234,159842308,160628740,160890881,160956419,161021954,161218565,161349633,161611777,161677313,161939457,162725893,162791428,163315719,163381254,163446788,163512321,163708930,164298758,164364293,164429832,164626433,164691972,164823043,164888579,164954115,165019652,165085185,165150722,167575555,167641091,167706634,167772163,167837699,167903239,167968774,168034307,168099843,168165381,168230915,168296452,168361987,168427523,168493059,168558595,168624133,168689667,168755204,168820740,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169476097,169541635,169607171,169672707,169738244,169803780,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655751,170721287,170786823,170852355,170917895,170983427,171048963,171114499,171180035,171245580,171311114,171376645,171442179,171507715,171573257,171638788,171704323,171769859,171835396,171900931,171966468,172032004,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752901,172818444,172883972,172949516,173015043,173080585,173146120,173211651,173277192,173342723,173408259,173473796,173539331,173604867,173670404,173735940,173801475,173867011,173932551,173998084,174063622,174129158,174194694,174260231,174325766,174391303,174456835,174522371,174587908,174653443,174718983,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308810,175374339,175439877,175505411,175570947,175636489,175702020,175767555,175833091,175898631,176619545,177405956,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177],"cdr":[786433,2293765,53018625,69664769,84279300,92209154,114556930,114622465,114688001,146472961,146538497,164364292,169672705,174653442,176619521],"cdrevent":[786433,2293762,20774915,57868295,69664770,87228419,130482179,130547715,130613251,130678787,130744323,130809859,130875395,130940931,131006467,131072003,131137539,131203075,131268611,131334147,131399683,131465219,166658053,169672714,171835393,176619521],"confbridgeend":[786433,2359301,176619521],"conference":[786440,2359297,2424833,2490369,2555905,2621441,3735553,3801089,3866625,46202881,46268423,46399495,46596097,46661639,46727169,46792711,46858241,46923783,46989313,47054855,47120385,47185927,47251457,47316999,47382529,47448071,69599233,69664773,73793538,73859074,73924610,73990146,74055682,74121218,74186754,74252290,81264641,81330177,81461249,81526785,81592321,81657857,81723393,81788929,81854465,85458945,85524481,87425025,87490561,87556097,87687169,87818241,87883777,87949313,89456641,89522177,89587713,89653249,89718785,89784321,89849857,105906182,106037254,106233862,106430470,106627078,106758150,106889222,107020294,107216902,117440517,117506049,161349635,161415171,161546243,161611779,161677315,161742851,161808387,161873923,161939459,167772161,167837698,169869313,169934849,170000385,170131457,170262529,170328065,170393601,171900929,171966466,172032002,172097537,172163074,172228610,172294145,176619528],"confbridgejoin":[786433,2424837,176619521],"confbridgeleave":[786433,2490373,176619521],"confbridgestart":[786433,2555909,176619521],"confbridgetalking":[786433,2621445,176619521],"connectionstate":[786434,2686982,176619522],"connect":[786433,2686977,27131905,44892161,44957697,64815111,65732609,65798145,69599236,83296260,93585412,93716485,110690305,110952449,111083521,111149057,152371201,152567809,152698881,153157633,153354241,153485313,153550849,153681921,153747457,163381256,176619526,177405957],"completed":[786433,2949121,69664769,92012547,145555463,145883138,170721281,174456835,176619521],"channels":[786436,3604481,5767169,6029313,6356993,45678593,45744129,52822017,69337092,69599236,69664787,73531394,75759617,87031809,89260033,92733441,93126657,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,129433601,149946369,155713537,158400513,158466049,158990337,159055873,161087490,164298753,164626434,165085186,168034305,168099841,168427521,168493057,168755201,168820737,169345026,170917889,171376641,171704322,173342721,173473794,174587906,175177729,175243265,175439873,175570946,175833089,176619524,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"commences":[786433,3604481,69664769,171704321,176619521],"codec":[786433,3604481,69664769,171704321,176619521],"conversion":[786433,3604481,69664769,171704321,176619521],"created":[786433,4063233,44105729,69271553,69664769,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155713537,156696577,172818433,176619521,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"changed":[786434,4194305,5636097,69599233,69664772,164364289,172949505,174325761,174391297,174718977,176619522],"case":[786433,4325377,27590658,27656194,27721730,27787266,27852802,27918338,27983874,28049410,29294593,67567618,69664769,77660161,82968577,91029505,92143618,94830593,109903873,141819905,146407426,157024257,163053569,173080577,173473793,174587906,176619521,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642],"calls":[786433,4456449,45154305,51380225,69599234,69664769,80674818,83296257,83623937,85655555,89128961,89194497,91226113,91291649,91422721,91488259,91553795,91619331,91684867,91750402,91815939,91881475,91947011,92012552,103415811,110755841,112066561,117899265,118358017,118489089,143130625,143261697,143523841,143589377,143720449,144113665,144179201,144834561,145162241,145227777,145424386,145489927,145555458,145883140,146014210,160759810,163381249,163512322,163708929,167968771,171573249,171638785,173211649,173670401,173735937,173867009,173932547,173998083,174063619,174129155,174194690,174260227,174325763,174391299,174456840,176619521],"client":[786434,4718593,5570561,43253762,69664770,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,91029507,110100481,141950978,142082049,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,173473796,174587905,176619522],"completion":[786433,6029313,69664769,175570945,176619521],"copy":[983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,28442625,28508161,28573697,28639233,28704769,28770305,28835841,28901377,28966913,29032449,29097985,29163521,29229057,29294593,29360129,29425665,29491201,29556737,29622273,29687809,29753345,29818881,29884417,29949953,30015489,30081025,30146561,30212097,30277633,30343169,30408705,30474241,30539777,30605313,30670849,30736385,30801921,30867457,30932993,30998529,31064065,31129601,31195137,31260673,31326209,31391745,31457281,31522817,31588353,31653889,31719425,31784961,31850497,31916033,31981569,32047105,32112641,32178177,32243713,32309249,32374785,32440321,32505857,32571393,32636929,32702465,32768001,32833537,32899073,32964609,33030145,33095681,33161217,33226753,33292289,33357825,33423361,33488897,33554433,33619969,33685505,33751041,33816577,33882113,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34406401,34471937,34537473,34603009,34668545,34734081,34799617,34865153,34930689,34996225,35061761,35127297,35192833,35258369,35323905,35389441,35454977,35520513,35586049,35651585,35717121,35782657,35848193,35913729,35979265,36044801,36110337,36175873,36241409,36306945,36372481,36438017,36503553,36569089,36634625,36700161,36765697,36831233,36896769,36962305,37027841,37093377,37158913,37224449,37289985,37355521,37421057,37486593,37552129,37617665,37683201,37748737,37814273,37879809,37945345,38010881,38076417,38141953,38207489,38273025,38338561,38404097,38469633,38535169,38600705,38666241,38731777,38797313,38862849,38928385,38993921,39059457,39124993,39190529,39256065,39321601,39387137,39452673,39518209,39583745,39649281,39714817,39780353,39845889,39911425,39976961,40042497,40108033,40173569,40239105,40304641,40370177,40435713,40501249,40566785,40632321,40697857,40763393,40828929,40894465,40960001,41025537,41091073,41156609,41222145,41287681,41353217,41418753,41484289,41549825,41615361,41680897,41746433,41811969,41877505,41943041,42008577,42074113,42139649,42205185,42270721,42336257,42401793,42467329,42532865,42598401,42663937,42729473,42795009,42860545,42926081,42991617,43057153,43122689,43188225,43253761,43319297,43384833,43450369,43515905,43581441,43646977,43712513,43778049,43843585,43909121,43974657,44040193,44105729,44171265,44236801,44302337,44367873,44433409,44498945,44564481,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45219841,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46333953,46399489,46465025,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48103425,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48627713,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49741825,49807361,49872897,49938433,50003969,50069505,50135041,50200577,50266113,50331649,50397185,50462721,50528257,50593793,50659329,50724865,50790401,50855937,50921473,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52559873,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53280769,53346305,53411841,53477377,53542913,53608449,53673985,53739521,53805057,53870593,53936129,54001665,54067201,54132737,54198273,54263809,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55115777,55181313,55246849,55312385,55377921,55443457,55508993,55574529,55640065,55705601,55771137,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57606145,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60096513,60162049,60227585,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64225281,64290817,64356353,64421889,64487425,64552961,64618497,64684033,64749569,64815105,64880641,64946177,65011713,65077249,65142785,65208321,65273857,65339393,65404929,65470465,65536001,65601537,65667073,65732609,65798145,65863681,65929217,65994753,66060289,66125825,66191361,66256897,66322433,66387969,66453505,66519041,66584577,66650113,66715649,66781185,66846721,66912257,66977793,67043329,67108865,67174401,67239937,67305473,67371009,67436545,67502081,67567617,67633153,67698689,67764225,67829761,67895297,67960833,68026369,68091905,68157441,68222977,68288513,68354049,68419585,68485121,68550657,68616193,68681729,68747265,68812801,68878337,68943873,69009409,69074945,69140481,94765057,94830593,94896129,94961665,95027201,95092737,95158273,95223809,95289345,95354881,95420417,95485953,95551489,95617025,95682561,95748097,95813633,95879169,95944705,96010241,96075777,96141313,96206849,96272385,96337921,96403457,96468993,96534529,96600065,96665601,96731137,96796673,96862209,96927745,96993281,97058817,97124353,97189889,97255425,97320961,97386497,97452033,97517569,97583105,97648641,97714177,97779713,97845249,97910785,97976321,98041857,98107393,98172929,98238465,98304001,98369537,98435073,98500609,98566145,98631681,98697217,98762753,98828289,98893825,98959361,99024897,99090433,99155969,99221505,99287041,99352577,99418113,99483649,99549185,99614721,99680257,99745793,99811329,99876865,99942401,100007937,100073473,100139009,100204545,100270081,100335617,100401153,100466689,100532225,100597761,100663297,100728833,100794369,100859905,100925441,100990977,101056513,101122049,101187585,101253121,101318657,101384193,101449729,101515265,101580801,101646337,101711873,101777409,101842945,101908481,101974017,102039553,102105089,102170625,102236161,102301697,102367233,102432769,102498305,102563841,102629377,102694913,102760449,102825985,102891521,102957057,103022593,103088129,103153665,103219201,103284737,103350273,103415809,103481345,103546881,103612417,103677953,103743489,103809025,103874561,103940097,104005633,104071169,104136705,104202241,104267777,104333313,104398849,104464385,104529921,104595457,104660993,104726529,104792065,104857601,104923137,104988673,105054209,105119745,105185281,105250817,105316353,105381889,105447425,105512961,105578497,105644033,105709569,105775105,105840641,105906177,105971713,106037249,106102785,106168321,106233857,106299393,106364929,106430465,106496001,106561537,106627073,106692609,106758145,106823681,106889217,106954753,107020289,107085825,107151361,107216897,107282433,107347969,107413505,107479041,107544577,107610113,107675649,107741185,107806721,107872257,107937793,108003329,108068865,108134401,108199937,108265473,108331009,108396545,108462081,108527617,108593153,108658689,108724225,108789761,108855297,108920833,108986369,109051905,109117441,109182977,109248513,109314049,109379585,109445121,109510657,109576193,109641729,109707265,109772801,109838337,109903873,109969409,110034945,110100481,110166017,110231553,110297089,110362625,110428161,110493697,110559233,110624769,110690305,110755841,110821377,110886913,110952449,111017985,111083521,111149057,111214593,111280129,111345665,111411201,111476737,111542273,111607809,111673345,111738881,111804417,111869953,111935489,112001025,112066561,112132097,112197633,112263169,112328705,112394241,112459777,112525313,112590849,112656385,112721921,112787457,112852993,112918529,112984065,113049601,113115137,113180673,113246209,113311745,113377281,113442817,113508353,113573889,113639425,113704961,113770497,113836033,113901569,113967105,114032641,114098177,114163713,114229249,114294785,114360321,114425857,114491393,114556929,114622465,114688001,114753537,114819073,114884609,114950145,115015681,115081217,115146753,115212289,115277825,115343361,115408897,115474433,115539969,115605505,115671041,115736577,115802113,115867649,115933185,115998721,116064257,116129793,116195329,116260865,116326401,116391937,116457473,116523009,116588545,116654081,116719617,116785153,116850689,116916225,116981761,117047297,117112833,117178369,117243905,117309441,117374977,117440513,117506049,117571585,117637121,117702657,117768193,117833729,117899265,117964801,118030337,118095873,118161409,118226945,118292481,118358017,118423553,118489089,118554625,118620161,118685697,118751233,118816769,118882305,118947841,119013377,119078913,119144449,119209985,119275521,119341057,119406593,119472129,119537665,119603201,119668737,119734273,119799809,119865345,119930881,119996417,120061953,120127489,120193025,120258561,120324097,120389633,120455169,120520705,120586241,120651777,120717313,120782849,120848385,120913921,120979457,121044993,121110529,121176065,121241601,121307137,121372673,121438209,121503745,121569281,121634817,121700353,121765889,121831425,121896961,121962497,122028033,122093569,122159105,122224641,122290177,122355713,122421249,122486785,122552321,122617857,122683393,122748929,122814465,122880001,122945537,123011073,123076609,123142145,123207681,123273217,123338753,123404289,123469825,123535361,123600897,123666433,123731969,123797505,123863041,123928577,123994113,124059649,124125185,124190721,124256257,124321793,124387329,124452865,124518401,124583937,124649473,124715009,124780545,124846081,124911617,124977153,125042689,125108225,125173761,125239297,125304833,125370369,125435905,125501441,125566977,125632513,125698049,125763585,125829121,125894657,125960193,126025729,126091265,126156801,126222337,126287873,126353409,126418945,126484481,126550017,126615553,126681089,126746625,126812161,126877697,126943233,127008769,127074305,127139841,127205377,127270913,127336449,127401985,127467521,127533057,127598593,127664129,127729665,127795201,127860737,127926273,127991809,128057345,128122881,128188417,128253953,128319489,128385025,128450561,128516097,128581633,128647169,128712705,128778241,128843777,128909313,128974849,129040385,129105921,129171457,129236993,129302529,129368065,129433601,129499137,129564673,129630209,129695745,129761281,129826817,129892353,129957889,130023425,130088961,130154497,130220033,130285569,130351105,130416641,130482177,130547713,130613249,130678785,130744321,130809857,130875393,130940929,131006465,131072001,131137537,131203073,131268609,131334145,131399681,131465217,131530753,131596289,131661825,131727361,131792897,131858433,131923969,131989505,132055041,132120577,132186113,132251649,132317185,132382721,132448257,132513793,132579329,132644865,132710401,132775937,132841473,132907009,132972545,133038081,133103617,133169153,133234689,133300225,133365761,133431297,133496833,133562369,133627905,133693441,133758977,133824513,133890049,133955585,134021121,134086657,134152193,134217729,134283265,134348801,134414337,134479873,134545409,134610945,134676481,134742017,134807553,134873089,134938625,135004161,135069697,135135233,135200769,135266305,135331841,135397377,135462913,135528449,135593985,135659521,135725057,135790593,135856129,135921665,135987201,136052737,136118273,136183809,136249345,136314881,136380417,136445953,136511489,136577025,136642561,136708097,136773633,136839169,136904705,136970241,137035777,137101313,137166849,137232385,137297921,137363457,137428993,137494529,137560065,137625601,137691137,137756673,137822209,137887745,137953281,138018817,138084353,138149889,138215425,138280961,138346497,138412033,138477569,138543105,138608641,138674177,138739713,138805249,138870785,138936321,139001857,139067393,139132929,139198465,139264001,139329537,139395073,139460609,139526145,139591681,139657217,139722753,139788289,139853825,139919361,139984897,140050433,140115969,140181505,140247041,140312577,140378113,140443649,140509185,140574721,140640257,140705793,140771329,140836865,140902401,140967937,141033473,141099009,141164545,141230081,141295617,141361153,141426689,141492225,141557761,141623297,141688833,141754369,141819905,141885441,141950977,142016513,142082049,142147585,142213121,142278657,142344193,142409729,142475265,142540801,142606337,142671873,142737409,142802945,142868481,142934017,142999553,143065089,143130625,143196161,143261697,143327233,143392769,143458305,143523841,143589377,143654913,143720449,143785985,143851521,143917057,143982593,144048129,144113665,144179201,144244737,144310273,144375809,144441345,144506881,144572417,144637953,144703489,144769025,144834561,144900097,144965633,145031169,145096705,145162241,145227777,145293313,145358849,145424385,145489921,145555457,145620993,145686529,145752065,145817601,145883137,145948673,146014209,146079745,146145281,146210817,146276353,146341889,146407425,146472961,146538497,146604033,146669569,146735105,146800641,146866177,146931713,146997249,147062785,147128321,147193857,147259393,147324929,147390465,147456001,147521537,147587073,147652609,147718145,147783681,147849217,147914753,147980289,148045825,148111361,148176897,148242433,148307969,148373505,148439041,148504577,148570113,148635649,148701185,148766721,148832257,148897793,148963329,149028865,149094401,149159937,149225473,149291009,149356545,149422081,149487617,149553153,149618689,149684225,149749761,149815297,149880833,149946369,150011905,150077441,150142977,150208513,150274049,150339585,150405121,150470657,150536193,150601729,150667265,150732801,150798337,150863873,150929409,150994945,151060481,151126017,151191553,151257089,151322625,151388161,151453697,151519233,151584769,151650305,151715841,151781377,151846913,151912449,151977985,152043521,152109057,152174593,152240129,152305665,152371201,152436737,152502273,152567809,152633345,152698881,152764417,152829953,152895489,152961025,153026561,153092097,153157633,153223169,153288705,153354241,153419777,153485313,153550849,153616385,153681921,153747457,153812993,153878529,153944065,154009601,154075137,154140673,154206209,154271745,154337281,154402817,154468353,154533889,154599425,154664961,154730497,154796033,154861569,154927105,154992641,155058177,155123713,155189249,155254785,155320321,155385857,155451393,155516929,155582465,155648001,155713537,155779073,155844609,155910145,155975681,156041217,156106753,156172289,156237825,156303361,156368897,156434433,156499969,156565505,156631042,156696578,156762114,156827650,156893186,156958722,157024258,157089793,157155330,157220866,157286402,157351938,157417474,157483010,157548546,157614082,157679618,157745154,157810690,157876226,157941762,158007298,158072834,158138370,158203906,158269442,158334978,158400514,158466050,158531586,158597122,158662658,158728194,158793730,158859266,158924802,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449090,159514626,159580162,159645698,159711234,159776770,159842306,159907841,159973378,160038914,160104450,160169986,160235522,160301058,160366594,160432130,160497665,160563201,160628738,160694274,160759810,160825346,160890882,160956418,161021954,161087490,161153026,161218562,161284098,161349634,161415170,161480706,161546242,161611778,161677314,161742850,161808386,161873922,161939458,162004994,162070530,162136066,162201602,162267138,162332674,162398210,162463746,162529282,162594818,162660354,162725890,162791426,162856962,162922498,162988034,163053570,163119106,163184642,163250178,163315714,163381250,163446786,163512322,163577858,163643394,163708930,163774466,163840002,163905538,163971074,164036610,164102146,164167682,164233218,164298754,164364290,164429826,164495362,164560898,164626434,164691970,164757506,164823042,164888578,164954114,165019650,165085186,165150722,165216257,165281793,165347329,165412865,165478401,165543937,165609473,165675009,165740545,165806081,165871617,165937153,166002689,166068225,166133761,166199298,166264833,166330369,166395905,166461441,166526977,166592513,166658049,166723585,166789121,166854657,166920193,166985729,167051265,167116801,167182337,167247873,167313409,167378945,167444481,167510018,167575554,167641090,167706626,167772162,167837698,167903234,167968770,168034306,168099842,168165378,168230914,168296450,168361986,168427522,168493058,168558594,168624130,168689666,168755202,168820738,168886274,168951810,169017346,169082882,169148418,169213954,169279490,169345026,169410561,169476097,169541634,169607170,169672706,169738242,169803778,169869314,169934850,170000386,170065922,170131458,170196994,170262530,170328066,170393602,170459138,170524674,170590210,170655746,170721282,170786818,170852354,170917890,170983426,171048962,171114498,171180034,171245570,171311106,171376642,171442178,171507714,171573250,171638786,171704322,171769858,171835394,171900930,171966466,172032002,172097538,172163074,172228610,172294146,172359682,172425218,172490754,172556290,172621826,172687362,172752898,172818434,172883970,172949506,173015042,173080578,173146114,173211650,173277186,173342722,173408258,173473794,173539330,173604866,173670402,173735938,173801474,173867010,173932546,173998082,174063618,174129154,174194690,174260226,174325762,174391298,174456834,174522370,174587906,174653442,174718978,174784514,174850050,174915586,174981122,175046658,175112194,175177730,175243266,175308802,175374338,175439874,175505410,175570946,175636482,175702018,175767554,175833090,175898626,175964161,176029697,176095233,176160769,176226305,176291841,176357377,176422913,176488449,176553985,176619522,176685057,176750594,176816130,176881665,176947201,177012737,177078273,177143809,177209345,177274881,177340417,177405954,177471489,177537025,177602561,177668097,177733633,177799169,177864705,177930241,177995777,178061313,178126849,178192385,178257921,178323457,178388993,178454529,178520065,178585601,178651137,178716673,178782209,178847745,178913282,178978818,179044354,179109890,179175426,179240962,179306498,179372034,179437570,179503106,179568642,179634178,179699713,179765249,179830786,179896321,179961857,180027393,180092929,180158465,180224001,180289537,180355073,180420610,180486146,180551682],"cdreventhandler":[2293767,69533697,166658054],"confbridgeendeventhandler":[2359303,69533697,166723590],"confbridgeendevent":[2359297,20971523,58064903,69664769,87425027,166723589,167772161,169869322],"confbridgejoineventhandler":[2424839,69533697,166789126],"confbridgejoinevent":[2424833,21037059,58130439,69664769,87490563,132382723,132448259,166789125,167772161,169934858],"confbridgeleaveeventhandler":[2490375,69533697,166854662],"confbridgeleaveevent":[2490369,21102595,58195975,69664769,87556099,132513795,132579331,166854661,167772161,170000394],"confbridgestarteventhandler":[2555911,69533697,166920198],"confbridgestartevent":[2555905,21430275,58523655,69664769,87883779,166920197,167772161,170328074],"confbridgetalkingeventhandler":[2621447,69533697,166985734],"confbridgetalkingevent":[2621441,21495811,58589191,69664769,87949315,133103619,166985733,167772161,170393610],"connectionstateeventhandler":[2686983,69533697,167051270],"connectionstateevent":[2686977,21626883,58720263,69664769,88014849,88080387,88408065,92209153,92733441,133234690,167051269,170459142,170524681,170852358,171835393,174653446,175177734],"common":[6422531,7405571,7471107,7536642,7602178,7667715,7733251,7798787,7864323,7929859,7995395,8060930,8126467,8192003,8257539,8323075,8388611,8454147,8519682,8585218,8650755,8716290,8781827,8847363,8912899,8978435,69206017,69664772,156565512,167706625,167837697,171835393,173867009],"cultureinfoen":[6422529,8454150,156565505],"causes":[6488066,9043969,9109505,28311553,46006273,68681729,69599235,73662465,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,157351938,159973377,160038913,161218561,162791425,162922497,164364289,166199297,167510017,176750593,179830785,180486145],"code":[6488065,9043969,10616833,29425666,30212097,30277633,30343169,30408705,30801921,30867457,31653889,31719425,31784961,69271554,69337091,69664769,77660162,77725697,83296258,89325569,92864513,93716482,95027202,95092738,95158273,110559234,137560065,150077442,153288706,157024259,157089797,157155329,157351937,157810689,158072833,158203905,159973377,160038913,163381250,169345025,171769857,175308801,177405954],"compatibility":[6488066,9043969,9109505,157351938],"commandaction":[6553603,9175043,14745603,46071815,46137351,69599234,69730305,73728006,81199107,105644034,105709570,161284108,163119105,179175426],"command":[6553601,9175046,10616836,10747906,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,18219010,28442634,29425666,29491202,29556738,30212097,30277634,30343170,30408706,30801921,30867457,32047105,32112641,32178177,33685513,34406404,34471941,34537476,34603010,34668548,34734082,34799620,34865154,34930690,34996228,35061762,35127298,35192834,35258371,35323907,35389443,35454980,35520514,35586050,35651588,35717122,35782658,35848196,35913730,35979268,36044802,36110340,36175874,36241410,36306948,36372482,36438018,36503554,36569092,36634626,36700162,36765700,36831234,36896770,36962308,37027842,37093380,37158914,37224450,37289988,37355522,37421060,37486594,37552130,37617668,37683202,37748739,37814276,37879810,37945346,38010884,38076418,38141955,38207492,38273027,38338563,38404099,38469635,38535172,38600706,38666243,38731780,38797314,38862851,38928388,38993922,39059459,39124996,39190530,39256067,39321604,39387138,39452676,39518210,39583748,39649282,39714820,39780354,39845892,39911426,39976964,40042498,40108036,40173570,40239108,40304642,40370178,40435716,40501250,40566786,40632324,40697859,40763396,40828930,40894467,40960003,41025540,41091075,41156612,41222146,41287684,41353218,41418754,41615362,41680902,45350918,46137351,54263810,69271553,69337093,69402625,69599241,69664771,69730309,70189058,71172097,71237633,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,73728001,76087298,77660161,77922305,77987842,78053377,78118913,78184449,78249985,78315521,78381057,78446593,78512129,78577665,78643201,78708737,78774273,78839809,78905346,78970882,79036418,79101954,79167490,79233026,79298561,79364097,79429633,79495169,79560705,79626241,79691777,79757313,79822849,79888386,79953921,80019457,80084993,80150530,80805889,81199107,83296257,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376450,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553794,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044162,94109697,94175233,94240769,94306305,94371841,94437377,94830593,97058819,97124355,97189890,97255426,97320962,97386498,97452034,97517570,97583106,97648642,97714178,97779714,97845250,97910786,97976322,98041858,98107394,98172930,98238466,98304002,98369538,98435074,98500610,98566146,98631682,98697218,98762754,98828290,98893826,98959362,99024898,99090434,99155970,99221506,99287042,99352578,99418115,99483650,99549186,99614723,99680258,99745794,99811330,99876867,99942403,100007938,100073475,100139010,100204547,100270082,100335618,100401154,100466690,100532226,100597762,100663298,100728834,100794370,100859906,100925442,100990978,101056515,101122050,101187586,101253122,101318658,101384194,101449730,101515266,101580802,101646338,103677958,105644033,105709574,110886913,120979462,137822209,143982593,154533889,155516929,157024261,157089793,157220866,157417514,157483013,157548548,157614085,157679620,157745156,157810692,157876228,157941764,158007300,158072837,158138374,158203909,158269444,158334980,158400516,158466052,158531588,158597125,158662661,158728197,158793733,158859269,158924805,158990340,159055876,159121412,159186948,159252484,159318020,159383556,159449092,159514628,159580164,159645701,159711236,159776772,159842308,159973378,160169985,160301057,160628737,160890882,161284104,162660353,163381249,164757509,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689668,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998082,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653442,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175430,179240961,179306498,179372033,179437569,179503105,179568641],"control":[6815745,9961473,10747908,11141122,30212097,30277633,30343169,30408705,35061761,35127297,69337089,70057988,71237634,157220868,157614083,176619521],"challengeresponse":[6881283,27590659,66977798,69599233,69730305,93978627,154468354,161153026,179109897,179568641],"commandresponse":[6946819,10092547,27656195,67043334,69730306,94044163,154533890,179175434,179568641],"const":[7536642,7602178,7667714,7733250,7798786,7864322,8060930,8519682,8585218,8716290,9437186,9502722,9568258,9633794,9699330,9764866],"char":[8650756,8781828,8847364,8978436,10027012,31326212,31391748,31916036,32047108,32112644,32178180,32309252,32440324,32571396,32702468,33423364,33554436,68419585,95092740,156303362],"current":[10223620,10289156,10354692,10420228,10485764,10551300,10616835,10682371,10747910,10813444,10878980,10944515,11010051,11075587,11141123,11206659,11272195,11337731,11403267,11468803,11534339,11599875,11665411,11730947,11796483,11862019,11927555,11993091,12058627,12124163,12189699,12255235,12320771,12386307,12451843,12517379,12582915,12648451,12713987,12779523,12845059,12910595,12976131,13041667,13107203,13172739,13238275,13303811,13369347,13500420,13565956,13631492,13697028,13762564,13828100,13893636,13959173,14024707,14090243,14155779,14221315,14286851,14352387,14417923,14483459,14548995,14614531,14680067,14745603,14811139,14876675,14942211,15007747,15073283,15138819,15204355,15269891,15335427,15400963,15466499,15532035,15597571,15663107,15728643,15794179,15859715,15925251,15990787,16056323,16121859,16187395,16252931,16318467,16384003,16449539,16515075,16580611,16646147,16711683,16777219,16842755,16908291,16973827,17039363,17104899,17170435,17235971,17301507,17367043,17432579,17498115,17563651,17629187,17694723,17760259,17825795,17891331,17956867,18022403,18087939,18153475,18219011,18284547,18350083,18415619,18481155,18546691,18612227,18677764,18743300,18808835,18874371,18939907,19005443,19070979,19136515,19202051,19267587,19333123,19398659,19464195,19529731,19595267,19660803,19726339,19791875,19857411,19922947,19988483,20054019,20119555,20185091,20250627,20316163,20381699,20447235,20512771,20578307,20643843,20709379,20774915,20840451,20905987,20971523,21037059,21102595,21168131,21233667,21299203,21364739,21430275,21495811,21561347,21626883,21692419,21757955,21823491,21889027,21954563,22020099,22085635,22151171,22216707,22282243,22347779,22413315,22478851,22544387,22609923,22675459,22740995,22806531,22872067,22937603,23003139,23068675,23134211,23199747,23265283,23330819,23396355,23461891,23527427,23592963,23658499,23724035,23789571,23855107,23920643,23986179,24051715,24117251,24182787,24248323,24313859,24379395,24444931,24510467,24576003,24641539,24707075,24772611,24838147,24903683,24969219,25034755,25100291,25165827,25231363,25296899,25362435,25427971,25493507,25559043,25624579,25690115,25755651,25821187,25886723,25952259,26017795,26083331,26148867,26214403,26279939,26345475,26411011,26476547,26542083,26607619,26673155,26738691,26804227,26869763,26935299,27000835,27131908,27197444,27262980,27328516,27394052,27459588,27525124,27590659,27656195,27721731,27787267,27852803,27918339,27983875,28049411,28114947,28180484,28246020,28311557,28377093,31195137,32899073,37158913,43057153,48496641,68681729,69074945,69337093,69599233,70320129,71761921,74645505,77463555,77529091,77594627,80150531,80216067,80347137,85131267,85196803,92012545,93650947,94568451,94699521,98828289,101842945,145620994,156368897,156631044,156696580,156762119,156827655,156893191,156958724,157024259,157155331,157220870,157286404,157351940,157417475,157483011,157548548,157614083,157679619,157745155,157810691,157876227,157941763,158007299,158072835,158138371,158203907,158269445,158334979,158400515,158466051,158531587,158597123,158662659,158728195,158793731,158859267,158924803,158990339,159055875,159121411,159186948,159252483,159318019,159383556,159449092,159514627,159580163,159645699,159711235,159776771,159842307,159973383,160038919,160104452,160169988,160235525,160301060,160366596,160432133,160497667,160628740,160694275,160759811,160825347,160890883,160956419,161021955,161087491,161153027,161218563,161284099,161349635,161415171,161480707,161546243,161611779,161677315,161742851,161808387,161873923,161939459,162004995,162070531,162136067,162201603,162267139,162332675,162398211,162463747,162529284,162594819,162660355,162725891,162791427,162856963,162922499,162988035,163053571,163119107,163184643,163250179,163315715,163381251,163446787,163512323,163577859,163643395,163708931,163774467,163840003,163905539,163971075,164036611,164102147,164167683,164233219,164298755,164364291,164429827,164495363,164560899,164626435,164691971,164757507,164823043,164888579,164954115,165019651,165085187,165150723,166199303,167510023,167575555,167641091,167706627,167772163,167837699,167903235,167968771,168034307,168099843,168165379,168230915,168296451,168361987,168427523,168493059,168558595,168624131,168689667,168755203,168820739,168886275,168951811,169017347,169082883,169148419,169213955,169279491,169345027,169541635,169607171,169672707,169738243,169803779,169869315,169934851,170000387,170065923,170131459,170196995,170262531,170328067,170393603,170459139,170524675,170590211,170655747,170721283,170786819,170852355,170917891,170983427,171048963,171114499,171180035,171245571,171311107,171376643,171442179,171507715,171573251,171638787,171704323,171769859,171835395,171900931,171966467,172032003,172097539,172163075,172228611,172294147,172359683,172425219,172490755,172556291,172621827,172687363,172752899,172818435,172883971,172949507,173015043,173080579,173146115,173211651,173277187,173342723,173408259,173473795,173539331,173604867,173670403,173735939,173801475,173867011,173932547,173998083,174063619,174129155,174194691,174260227,174325763,174391299,174456836,174522371,174587907,174653443,174718979,174784515,174850051,174915587,174981123,175046659,175112195,175177731,175243267,175308803,175374339,175439875,175505411,175570947,175636483,175702019,175767555,175833091,175898627,176619524,176750599,176816132,177405956,178913284,178978820,179044356,179109891,179175427,179240963,179306499,179372035,179437571,179503107,179568643,179634179,179830791,180420612,180486150,180551685],"cleanup":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681],"collection":[10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197441,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180481,28246017,28311553,28377089,69533697,77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156631041,156696577,156762114,156827650,156893186,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973378,160038914,160104449,160169985,160235521,160301057,160366593,160432129,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199298,167510018,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750594,176816129,177405953,178913281,178978818,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830786,180420609,180486145,180551681],"creates":[10223617,10289153,10354690,10420226,10485762,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13500418,13565954,13631489,13697025,13762561,13828097,13893633,13959169,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677762,18743298,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,27131905,27197442,27262977,27328513,27394049,27459585,27525121,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28114945,28180482,28246017,28311553,28377089,28704769,28835841,28901377,30081025,33947649,34013185,34144257,34209793,34275329,34930689,35192833,35258369,35323905,35389441,35520513,35586049,35717121,35782657,35913729,36044801,36175873,36241409,36372481,36438017,36503553,36634625,36700161,36831233,36896769,37027841,37158913,37224449,37355521,37486593,37552129,37683201,37748737,37879809,37945345,38076417,38141953,38273025,38338561,38404097,38469633,38600705,38666241,38797313,38862849,38993921,39059457,39190529,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40173569,40304641,40370177,40501249,40566785,40697857,40828929,40894465,40960001,41091073,41222145,41353217,41418753,41615361,41680897,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45350913,45809665,45875201,45940737,46006273,46071809,46137345,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48234497,48300033,48365569,48431105,48496641,48693249,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49479681,49545217,49610753,49676289,50135041,50200577,50266113,50331649,50790401,50855937,51183617,51249153,51314689,51380225,51576833,51642369,51707905,51773441,51838977,52166657,52232193,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53477377,53542913,53739521,53805057,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55312385,55377921,55443457,56950785,57999361,58851329,58916865,58982401,59113473,59179009,60293121,60358657,61865985,62062593,62128129,62455809,62586881,62652417,62717953,62783489,62849025,62914561,63963137,64028673,65667073,65732609,65798145,65863681,65929217,65994753,66584577,66715649,66912257,67436545,68222977,68485121,69140481,69926914,71106565,71172097,71303172,71368706,71434242,71499778,71565315,71630850,71696386,71761922,71827458,71892994,71958530,72024066,72089604,72155138,72220674,72286210,72351746,72417282,72482818,72548355,72613890,73203714,73269251,73334787,73596930,73662466,73728002,74317826,74383362,74448898,74514434,74579970,74645506,74711041,74776579,74842114,74907652,74973186,75038722,75104260,75169794,75235332,75366405,75563010,75759619,75825155,75890691,75956226,76021762,76152836,76218370,76283906,76349442,76414978,76480514,76677122,77004803,77070338,77135873,156631041,156696578,156762116,156827650,156893186,156958721,157024257,157155330,157220865,157286401,157351942,157417473,157483009,157548546,157614085,157679619,157745155,157810690,157876226,157941763,158007300,158072835,158138371,158203906,158269443,158334978,158400515,158466051,158531587,158597123,158662661,158728195,158793731,158859267,158924803,158990338,159055874,159121410,159186946,159252482,159318018,159383554,159449091,159514627,159580162,159645700,159711234,159776770,159842307,159973379,160038915,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628739,160694276,160759812,160825345,160890882,160956417,161021953,161087489,161153027,161218563,161284099,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201603,162267139,162332675,162398211,162463747,162529283,162594817,162660354,162725892,162791427,162856965,162922497,162988035,163053571,163119105,163184641,163250177,163315717,163381249,163446787,163512321,163577857,163643393,163708933,163774465,163840006,163905537,163971073,164036611,164102145,164167681,164233217,164298756,164364292,164429828,164495361,164560899,164626433,164691971,164757509,164823043,164888579,164954115,165019651,165085185,165150721,166199300,167510019,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689666,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803778,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655746,170721282,170786818,170852353,170917890,170983426,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835395,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342722,173408257,173473793,173539330,173604866,173670401,173735937,173801473,173867009,173932546,173998081,174063618,174129154,174194690,174260226,174325762,174391298,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439874,175505410,175570945,175636481,175702017,175767553,175833089,175898625,176619524,176750596,176816130,177405953,178913282,178978818,179044354,179109889,179175425,179240961,179306497,179372033,179437569,179503106,179568641,179634177,179830787,180420610,180486145,180551682],"cause":[10354689,10420225,10485761,10747905,13500417,13565953,18677761,18743297,27197441,28180481,28901382,29032454,32833537,55377926,65929222,69337090,69730305,69926913,76480513,77070337,88801283,91029507,92143620,135593990,135659521,141819912,146079752,156762114,156827649,156893185,157220865,159121410,159973377,160038913,166199298,167510017,171245571,173473795,174587908,176750594,179503105,179830785],"contained":[10616833,29294593,77660161,94830593,157024258],"calling":[10616833,13959169,29294593,42991617,69599233,85852162,88735745,119406593,119472129,135069697,157024257,160432129,160628737,168165378,171180033],"corresponding":[10616833,29294593,49283073,49348609,69271553,69402625,69664769,69730305,157024257,160169985,160301057,175702017,179568641],"codes":[10616833,29425665,85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,118751233,143654913,144310273,145358849,157024257,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"controlstreamfile":[10747908,30212102,30277638,30343174,30408710,70057989,157220868],"completes":[10747908,30212097,30277633,30343169,30408705,69337096,70057988,157220868,157614081,158597121,158662657,158728193,158793729,158859265,158924801,159645697],"complex":[10747905,31195137,69337089,70320129,157220865,158072833],"character":[10747908,31850497,31916033,32505857,32571393,37552129,43057153,69337092,70582274,70844418,77660161,78708737,83296257,90439681,95092738,98893825,111280129,139722753,157024257,157220868,158400515,158597121,158859265,163381249,172883969],"context":[10747905,32964615,39911430,44957703,45613062,49545218,49676290,52756487,52822023,69337089,69599236,73269249,75759618,77725698,79560706,80609282,80936962,82509826,82903042,82968578,83296261,84213762,85852161,86704129,86769665,86966273,87097345,88604674,89915393,90439682,90570753,92864513,93454338,93716485,94109697,95682566,100597766,103088134,104857606,108658694,109772802,109903874,110952455,111083521,111149057,111280132,114229254,116785156,119603206,126353414,129105925,134610950,138674177,139919366,140312582,150339590,151846918,153550855,153681921,153747457,154599430,157155330,157220865,159252483,160694276,161021954,162594819,162988034,163053570,163381255,164298756,168165377,169017345,169082881,169279489,169541633,171048962,172359681,172883970,173015041,175308801,175898626,177405957,179240961],"continuation":[10747908,32964609,33030145,33095681,33161217,39911425,40042497,40501249,40566785,69337091,70975490,79560705,79626241,79757314,100597761,100663298,100794369,100859905,157220868,159252482,159318018,159514627],"console":[10747905,33488897,69337089,69664769,157220865,159776769,174653441],"channelstatuscommand":[11075587,34799620,34865159,34930695,69337089,71172102,77922307,97058819,157417473,157548555],"controlstreamfilecommand":[11141123,30212097,30277633,30343169,30408705,34996228,35061762,35127298,35192839,35258375,35323911,35389447,69337089,71237634,71303178,77987843,97124354,97189890,97255426,97320962,97386498,97452034,157417473,157614095],"controldigits":[11141122,35061766,35127302,71237635,157614082],"close":[13893633,13959170,42860550,42991622,69599233,160366593,160432130,162922497],"closes":[13959169,42991617,69271553,156696577,160432129],"connection":[13959172,27131905,27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,28704770,42991617,43057153,43122690,43188226,48496641,65011714,65732609,65798145,65994758,66584582,67567617,69271554,69599236,69664769,74645505,77004802,80478209,93585409,102236161,152436737,156696579,160432133,162529282,162856961,162922497,163577857,170852353,176619524,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"currently":[13959169,42991617,69599233,77725697,81068033,82771969,92012545,95813633,105381889,109314049,145489922,157155329,160432129,161153025,162856961,163512321,174456833],"challengeaction":[14614531,45809671,45875207,49217537,49283073,49348609,65077249,69599235,69730305,73596934,81068035,105316354,105381890,161153036,162856962,163119105,179109890],"changemonitoraction":[14680067,45940743,46006279,69599234,73662470,81133571,105447426,105512962,105578498,161218572,163119105],"confbridgekickaction":[14811139,46202886,46268424,69599233,73793540,81264643,105775107,105840643,105906179,161349642,163119105],"confbridgelistaction":[14876675,46333956,46399494,69599233,81330179,105971715,106037251,161415176,163184641],"confbridgelistroomsaction":[14942211,46465028,46530566,69599233,81395715,106102787,161480713,163184641],"confbridgelockaction":[15007747,46596102,46661639,69599233,73859076,81461251,106168323,106233859,161546250,163119105],"confbridgemuteaction":[15073283,46727174,46792712,69599233,73924612,81526787,106299395,106364931,106430467,161611786,163119105],"confbridgesetsinglevideosrcaction":[15138819,46858246,46923784,69599233,73990148,81592323,106496003,106561539,106627075,161677322,163119105],"confbridgestartrecordaction":[15204355,46989318,47054855,69599233,74055684,81657859,106692611,106758147,161742858,163119105],"confbridgestoprecordaction":[15269891,47120390,47185927,69599233,74121220,81723395,106823683,106889219,161808394,163119105],"confbridgeunlockaction":[15335427,47251462,47316999,69599233,74186756,81788931,106954755,107020291,161873930,163119105],"confbridgeunmuteaction":[15400963,47382534,47448072,69599233,74252292,81854467,107085827,107151363,107216899,161939466,163119105],"coresettingsaction":[15466499,47513606,69599233,81920003,107282435,162005002,163119105],"coreshowchannelsaction":[15532035,47579142,69599233,81985539,107347971,162070538,163119105],"corestatusaction":[15597571,47644678,69599233,82051075,107413507,162136074,163119105],"createconfigaction":[15663107,47710214,47775751,69599233,74317828,82116611,107479043,107544579,162201610,163119105],"config":[18219009,54263809,69599233,76087297,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757507,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"comman":[18219009,54263809,76087297,164757505],"convert":[18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241,22347777,22413313,22478849,22544385,22609921,22675457,22740993,22806529,22872065,22937601,23003137,23068673,23134209,23199745,23265281,23330817,23396353,23461889,23527425,23592961,23658497,23724033,23789569,23855105,23920641,23986177,24051713,24117249,24182785,24248321,24313857,24379393,24444929,24510465,24576001,24641537,24707073,24772609,24838145,24903681,24969217,25034753,25100289,25165825,25231361,25296897,25362433,25427969,25493505,25559041,25624577,25690113,25755649,25821185,25886721,25952257,26017793,26083329,26148865,26214401,26279937,26345473,26411009,26476545,26542081,26607617,26673153,26738689,26804225,26869761,26935297,27000833,60227585,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"channelreloadevent":[20840451,57933831,69664769,87293955,131530754,131596291,131661827,131727362,131792899,169738250,171835393],"channelupdateevent":[20905987,57999367,69664769,87359491,131858434,131923971,131989507,132055043,132120579,132186115,132251651,132317187,169803786,171835393],"confbridgelistcompleteevent":[21168131,58261511,69664769,87621635,170065930,174784513],"confbridgelistevent":[21233667,58327047,69664769,87687171,132644867,132710403,132775939,132841475,167772161,170131466],"confbridgelistroomscompleteevent":[21299203,58392583,69664769,87752707,170197002,174784513],"confbridgelistroomsevent":[21364739,58458119,69664769,87818243,132907011,132972547,133038083,167772161,170262538],"connectevent":[21561347,58654727,69664770,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014852,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,133169154,137756673,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459147,170524674,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625],"called":[27066369,44892161,44957697,46399489,64618497,69599235,69664769,77725699,80150530,80347137,80609282,95682561,95879169,96141313,101580802,101646338,101974017,102891522,157155331,159973378,160235521,160628737,160694274,161415170,161480705,175702017,176291841],"challenge":[27131906,45875201,49283074,49348610,65077249,65142785,69599234,69730306,73596929,74907650,76808194,81068033,82771970,93978626,105316353,109314050,154468358,161153028,162856964,176619522,179109892],"converted":[27590657,27656193,27721729,27787265,27852801,27918337,27983873,28049409,67567617,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"category":[27787265,54067206,54132742,54198278,54263814,67174407,69599233,69730305,94175234,154861570,164757505,179306500],"calcduration":[28114945,68026374,179634177],"calculated":[28114945,68026369,179634177],"constructor":[28508161,28573697,28704769,28770305,28835841,28901377,28966913,29032449,29229057,29687809,29753345,30081025,33619969,33751041,33947649,34013185,34078721,34144257,34209793,34275329,34340865,34603009,34734081,34865153,34930689,35192833,35258369,35323905,35389441,35520513,35586049,35717121,35782657,35913729,36044801,36175873,36241409,36372481,36438017,36503553,36634625,36700161,36831233,36896769,37027841,37158913,37224449,37355521,37486593,37552129,37683201,37748737,37879809,37945345,38076417,38141953,38273025,38338561,38404097,38469633,38600705,38666241,38797313,38862849,38993921,39059457,39190529,39256065,39387137,39518209,39649281,39780353,39911425,40042497,40173569,40304641,40370177,40501249,40566785,40697857,40828929,40894465,40960001,41091073,41222145,41353217,41418753,41615361,41680897,41877505,41943041,42008577,42205185,42270721,42467329,42663937,42729473,42926081,43253761,44630017,44695553,44761089,44826625,44892161,44957697,45023233,45088769,45154305,45285377,45350913,45416449,45481985,45547521,45613057,45678593,45744129,45809665,45875201,45940737,46006273,46071809,46137345,46202881,46268417,46399489,46530561,46596097,46661633,46727169,46792705,46858241,46923777,46989313,47054849,47120385,47185921,47251457,47316993,47382529,47448065,47513601,47579137,47644673,47710209,47775745,47841281,47906817,47972353,48037889,48168961,48234497,48300033,48365569,48431105,48496641,48562177,48693249,48758785,48824321,48889857,48955393,49020929,49086465,49152001,49217537,49283073,49348609,49414145,49479681,49545217,49610753,49676289,49807361,49938433,50069505,50135041,50200577,50266113,50331649,50724865,50790401,50855937,50987009,51052545,51118081,51183617,51249153,51314689,51380225,51445761,51511297,51576833,51642369,51707905,51773441,51838977,51904513,51970049,52035585,52101121,52166657,52232193,52297729,52363265,52428801,52494337,52625409,52690945,52756481,52822017,52887553,52953089,53018625,53084161,53149697,53215233,53346305,53477377,53542913,53673985,53739521,53805057,54329345,54394881,54460417,54525953,54591489,54657025,54722561,54788097,54853633,54919169,54984705,55050241,55181313,55246849,55312385,55377921,55443457,55508993,55836673,55902209,55967745,56033281,56098817,56164353,56229889,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59310081,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60293121,60358657,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62455809,62521345,62586881,62652417,62717953,62783489,62849025,62914561,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64290817,64356353,64421889,64487425,65667073,65732609,65798145,65863681,65929217,65994753,66322433,66584577,66715649,66912257,66977793,67043329,67108865,67239937,67305473,67371009,67436545,67502081,67895297,67960833,68157441,68222977,68485121,68747265,68812801,68878337,68943873,69140481,69271553,69402625,69664769,69861377,69926913,69992449,71106561,71172097,71303169,71368705,71434241,71499777,71565313,71630849,71696385,71761921,71827457,71892993,71958529,72024065,72089601,72155137,72220673,72286209,72351745,72417281,72482817,72548353,72613889,72679425,72744961,72810497,73203713,73269249,73334785,73400321,73465857,73531393,73596929,73662465,73728001,73793537,73859073,73924609,73990145,74055681,74121217,74186753,74252289,74317825,74383361,74448897,74514433,74579969,74645505,74711041,74776577,74842113,74907649,74973185,75038721,75104257,75169793,75235329,75300865,75366401,75431937,75497473,75563009,75628545,75694081,75759617,75825153,75890689,75956225,76021761,76152833,76218369,76283905,76349441,76414977,76480513,76546049,76611585,76677121,77004801,77070337,77135873,77201409,77332481,160169985,160301057,175702017],"ctor":[28508164,28573699,28704770,29032450,29229057,29753345,33751041,34013185,34078724,34209793,34340869,37748737,38273025,40697857,41091073,41943041,42008577,42270721,42729473,42926083,45350914,45481998,46268418,46399489,46661633,46792706,46923778,47054849,47185921,47316993,47448066,47775745,50790403,51511301,51970051,52101124,52363265,52494337,53542913,53805057,54394882,54460419,54525955,54657026,54788097,54919169,55050241,55508993,55836673,55902209,56033281,56098817,56164353,56295425,56360961,56426497,56492033,56557569,56623105,56688641,56754177,56819713,56885249,56950785,57016321,57081857,57147393,57212929,57278465,57344001,57409537,57475073,57540609,57671681,57737217,57802753,57868289,57933825,57999361,58064897,58130433,58195969,58261505,58327041,58392577,58458113,58523649,58589185,58654721,58720257,58785793,58851329,58916865,58982401,59047937,59113473,59179009,59244545,59375617,59441153,59506689,59572225,59637761,59703297,59768833,59834369,59899905,59965441,60030977,60424193,60489729,60555265,60620801,60686337,60751873,60817409,60882945,60948481,61014017,61079553,61145089,61210625,61276161,61341697,61407233,61472769,61538305,61603841,61669377,61734913,61800449,61865985,61931521,61997057,62062593,62128129,62193665,62259201,62324737,62390273,62521345,62980097,63045633,63111169,63176705,63242241,63307777,63373313,63438849,63504385,63569921,63635457,63700993,63766529,63832065,63897601,63963137,64028673,64094209,64159745,64290817,64356353,64421889,64487425,65798145,65994753,66584579,66912258,67502081,67960833],"caused":[28901377,55377921,65929217,69664769,69730305,77463553,77529089,77594625,80150529,80216065,85131265,85196801,86245378,86310914,87621634,87752706,88145922,90570754,90636290,90767362,90898434,90963970,91357186,91553794,92012546,92078082,92340226,92798978,92864514,93388802,93454338,93650945,94568449,146800641,146866177,156762113,156827649,156893185,159973377,160038913,166199297,167510017,168558594,168624130,170065922,170196994,170590210,173015042,173080578,173211650,173342722,173408258,173801474,173998082,174456834,174522370,174784515,175243266,175308802,175833090,175898626,176750593,179568641,179830785],"collections":[29753346,30081025,41943042,42401796,50659330,55771138,57606145,60162049,66256898,67502082,67764225,67960834],"containing":[30081025,30998529,31064065,31129601,31916033,32309249,32440321,32571393,32702465,33423361,69599235,69730305,80347137,94044161,101908481,154533889,160235521,162398209,164495361,164560897,179175426],"channelname":[31260678,94502913,155844614,179634177],"configures":[31653889],"coordinated":[31981569,32047105,32112641,32178177,38273025,38338561,38404097,38469633,69337089,72089601,78970881,99680257,158662658,158924801],"callerid":[32899078,39780358,69337089,77725697,79495170,83296257,85393409,85590017,85852161,87228417,88211457,88276993,88342529,88735745,88801281,89128961,90308611,90374145,90505217,90570753,90636289,90701825,90832897,91357185,92864513,93192193,93716481,95223814,100532230,110821381,116916229,117637125,119341062,130744326,133562373,135069701,137232389,139395077,139591681,139657217,140115974,140574725,142802949,150142981,153419781,157155329,159186947,163381249,167706625,167903233,168165377,169672705,170655745,170721281,170786817,171180033,171245569,171573249,172752899,172818433,172949505,173015041,173080577,173146113,173277185,173801473,175308801,175636481,177405953],"concurrent":[34144257,34275329,77856769,96927745,157351937],"closed":[43122689,43188225,69599233,162856961],"consructor":[43253761,160432129],"classmethod":[44171270,44302341],"commonslogginglog":[44630017,160497665],"commons":[44630017,160497665],"cancel":[44761089],"callback":[44892161,44957698,69599234,73269250,80609282,103088129,103153665,160694278],"charge":[45416449,45481985,73400322,160956418],"channelprefix":[45481990,80871425,103940102,160956417],"chargetype":[45481990,80871425,104005638,160956417],"currencyname":[45481990,80871425,104398854,160956417],"currencyamount":[45481990,80871425,104267782,160956417],"currencymultiplier":[45481990,80871425,104333318,160956417],"chargingassociationid":[45481990,80871425,104071174,160956417],"chargingassociationnumber":[45481990,80871425,104136710,160956417],"chargingrassociationplan":[45481990,80871425,104202246,160956417],"channel1":[45744134,81002497,87031809,88866817,89260033,93126657,105119750,129695750,135725061,161087489,169345025,171311105,171704321,175570945],"channel2":[45744134,50790406,50855942,81002497,83361794,87031809,88866817,89260033,93126657,105185286,111476741,111607809,129761286,135790597,161087489,163446786,169345025,171311105,171704321,175570945],"courtesy":[45744129],"cli":[46137345,69599233,81199105,83230721,94044161,105709569,110362625,154533889,161284098,163315713,179175425],"confbridge":[46399489,69599233,161415170],"confbridgelist":[46399489,69599233,161415170],"confbridgelistcomplete":[46399489,69599233,161415170],"conferences":[46989313,47054849,69599233,74055682,161480705,161742850],"configuration":[47710210,47775746,48758785,69599235,74317828,80609282,82575361,102891521,103219201,108855297,160694274,162201604,162660353,164757507],"combination":[48496641,49348609,82444289,82771969,108527617,109379585,162529281,162856961],"cleartext":[49217538,74907650,82771969,109510657,162856963],"concerned":[49217537,74907649,162856961],"configured":[49217538,49283073,49348609,69271554,69402626,82771970,85786625,109510657,109576193,119144449,156696577,160104449,160169985,160301057,162856962,168099841],"checks":[49676289,69599233,75038721,82968577,93585409,109903873,153026561,163053571,176619521],"check":[49676289,69599233,69664769,160890881,169345025],"considered":[51380225,83296257,83623937,85655553,91488257,91553793,91619329,91684865,91815937,91881473,91947009,92733441,93716481,111214593,112066561,118489089,143589377,144179201,145227777,149946369,153812993,163381249,163708929,167968769,173932545,173998081,174063617,174129153,174260225,174325761,174391297,175177729,177405953],"custom":[51445761,51511297,69271553,69337090,69599233,69664769,75300866,78577665,98762753,157220865,158072833,158203906,163250177,163774466,175702017],"contructor":[56229889,167968769],"connections":[65732609,65798145,77856769,96796673,157351937],"classes":[69206017,69271553,69337089,69402625,69468162,69533697,69599233,69664770,69730305,69795841,160366593,171835393],"convinience":[69271553,157220865],"course":[69337089,159121409],"capable":[69337089,159711233],"completely":[69533697,167510017],"combinded":[69533697,178913281],"counting":[69599233,160628737],"cancelled":[69599233,160628737],"corresponds":[69599233,69730306,90636289,92012545,140902401,145686529,160628737,173080577,174456833,179109889,179175425],"contrast":[69599233,160694273],"commands":[69599233,80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284098,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"confbridgelistrooms":[69599233,161480705],"confbridgelistroomscomplete":[69599233,161480705],"concrete":[69599233,163119105],"connecting":[69599234,163381250],"careful":[69599233,163381249],"choose":[69599233,163381249],"callers":[69599233,164233217],"cat":[69599233,84672513,115474433,164757506],"chan_agent":[69664772,168034305,168099841,168427521,168493057],"chan_zap":[69664771,168755201,168820737,170917889],"compatibily":[69664769,169345025],"cdrevents":[69664769,169672705],"cdr_manager":[69664770,169672706],"chan_sip":[69664773,171376641,173342721,173473793,174587905,175439873],"contain":[69664770,69730305,84672514,115474434,164757506,171835393,174784513,179306497],"core":[69664769,171835393],"conrete":[69664769,171835393],"chan_iax2":[69664770,173473793,174587905],"coded":[77463553,77529089,77594625,80150529,80216065,85131265,85196801,93650945,94568449,156762113,156827649,156893185,159973377,160038913,166199297,167510017,176750593,179830785],"calleridname":[77725697,85393409,85590017,85852161,86769665,86966273,87097345,87490561,87556097,87687169,88211457,88276993,88342529,88801281,89128961,89522177,89587713,90308609,90374145,90505217,90570753,90636289,90701825,90832897,91357185,92864513,93192193,95289350,116981765,117702661,119406597,128712709,132382726,132513798,132710406,133627909,137297925,138149894,138280966,139460613,140181510,140640261,142868485,150208517,157155329,167706625,167903233,168165377,169082881,169279489,169541633,169934849,170000385,170131457,170655745,170721281,170786817,171245569,171573249,171966465,172032001,172752897,172818433,172949505,173015041,173080577,173146113,173277185,173801473,175308801,175636481],"callingani2":[77725697,95354886,157155329],"callingpres":[77725697,95420422,157155329],"callingtns":[77725697,95485958,157155329],"callington":[77725697,95551494,157155329],"configurations":[80543745,80609281,80674817,80740353,80805889,80871425,80936961,81002497,81068033,81133569,81199105,81264641,81330177,81395713,81461249,81526785,81592321,81657857,81723393,81788929,81854465,81920001,81985537,82051073,82116609,82182145,82247681,82313217,82378753,82444289,82509825,82575361,82640897,82706433,82771969,82837505,82903041,82968577,83034113,83099649,83165185,83230721,83296257,83361793,83427329,83492865,83558401,83623937,83689473,83755009,83820545,83886081,83951617,84017153,84082689,84148225,84213761,84279297,84344833,84410369,84475905,84541441,84606977,84672513,84738049,84803585,84869121,84934657,85000193,85065729,85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,110166017,137887745,155648001,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"changemonitor":[81133569,105447425,161218561],"conventions":[85196801,116523009,167510017],"correct":[85196801,116523009,157089793,167510017],"comma":[85262337,85327873,85393409,85458945,85524481,85590017,85655553,85721089,85786625,85852161,85917697,85983233,86048769,86114305,86179841,86245377,86310913,86376449,86441985,86507521,86573057,86638593,86704129,86769665,86835201,86900737,86966273,87031809,87097345,87162881,87228417,87293953,87359489,87425025,87490561,87556097,87621633,87687169,87752705,87818241,87883777,87949313,88014849,88080385,88145921,88211457,88276993,88342529,88408065,88473601,88539137,88604673,88670209,88735745,88801281,88866817,88932353,88997889,89063425,89128961,89194497,89260033,89325569,89391105,89456641,89522177,89587713,89653249,89718785,89784321,89849857,89915393,89980929,90046465,90112001,90177537,90243073,90308609,90374145,90439681,90505217,90570753,90636289,90701825,90767361,90832897,90898433,90963969,91029505,91095041,91160577,91226113,91291649,91357185,91422721,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,92012545,92078081,92143617,92209153,92274689,92340225,92405761,92471297,92536833,92602369,92667905,92733441,92798977,92864513,92930049,92995585,93061121,93126657,93192193,93257729,93323265,93388801,93454337,93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,137822209,155516929,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"calleridnum":[85393409,85590017,85852161,86769665,86966273,87097345,87490561,87556097,87687169,88211457,88276993,88342529,88801281,89522177,89587713,90308609,90374145,90505217,90570753,90636289,90701825,90832897,92864513,93192193,117047301,117768197,119472133,128778245,132448262,132579334,132775942,133693445,138215430,138346502,139526149,140247046,140705797,150274053,167706625,167903233,168165377,169082881,169279489,169541633,169934849,170000385,170131457,170655745,170721281,170786817,171245569,171966465,172032001,172752897,172818433,172949505,173015041,173080577,173146113,173277185,175308801,175636481],"channelstate":[85393409,86769665,86966273,87097345,88801281,90374145,90505217,117112837,128843781,167706625,169082881,169279489,169541633,171245569,172818433,172949505],"channelstatedesc":[85393409,88801281,90374145,90505217,117178373,167706625,171245569,172818433,172949505],"connectedlinename":[85393409,86769665,86966273,87097345,88801281,90374145,90505217,117243910,128974853,167706625,169082881,169279489,169541633,171245569,172818433,172949505],"connectedlinenum":[85393409,86769665,86966273,87097345,88801281,90374145,90505217,117309446,129040389,167706625,169082881,169279489,169541633,171245569,172818433,172949505],"callstaken":[85655553,91488257,91553793,91619329,91684865,91750401,91815937,91881473,91947009,117899269,143261701,143720453,144834565,167968769,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297],"channelcalling":[85852161,119537670,168165377],"commandid":[86376449,86573057,121044998,121372678,168689665,168886273],"channelstateddesc":[86769665,86966273,87097345,128909317,169082881,169279489,169541633],"callerid1":[87031809,89260033,93126657,129564678,169345025,171704321,175570945],"callerid2":[87031809,89260033,93126657,129630214,169345025,171704321,175570945],"channeltype":[87293953,87359489,90898433,91029505,92143617,131530757,131858437,141033477,141885445,146145285,169738241,169803777,173342721,173473793,174587905],"causetxt":[88801281,135659525,171245569],"count":[89128961,89194497,91226113,91291649,91422721,143130629,171573249,171638785,173670401,173735937,173867009],"cidcallingpres":[90308609,139591685,172752897],"cidcallingpresnumeric":[90308609,139657221,172752897],"chanobjecttype":[90898433,141099013,173342721],"cumulativeloss":[92471297,147718150,174915585],"cleanly":[92733441,149946369,175177729],"counter":[93585410,152895489,152961025,176619522],"checking":[93585409,153026561,176619521],"complete":[93847553,154075141,178978817],"creating":[93978625,154468353,179109889],"content":[93978625,94044161,94109697,94175233,94240769,94306305,94371841,94437377,155451393,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641],"categories":[94175233,154861573,179306497],"computes":[94633985,156303361,180420609],"constructors":[156631041,156696577,156762113,156827649,156893185,156958721,157024257,157155329,157220865,157286401,157351937,157417473,157483009,157548545,157614081,157679617,157745153,157810689,157876225,157941761,158007297,158072833,158138369,158203905,158269441,158334977,158400513,158466049,158531585,158597121,158662657,158728193,158793729,158859265,158924801,158990337,159055873,159121409,159186945,159252481,159318017,159383553,159449089,159514625,159580161,159645697,159711233,159776769,159842305,159973377,160038913,160104449,160169985,160235521,160301057,160366593,160432129,160497665,160628737,160694273,160759809,160825345,160890881,160956417,161021953,161087489,161153025,161218561,161284097,161349633,161415169,161480705,161546241,161611777,161677313,161742849,161808385,161873921,161939457,162004993,162070529,162136065,162201601,162267137,162332673,162398209,162463745,162529281,162594817,162660353,162725889,162791425,162856961,162922497,162988033,163053569,163119105,163184641,163250177,163315713,163381249,163446785,163512321,163577857,163643393,163708929,163774465,163840001,163905537,163971073,164036609,164102145,164167681,164233217,164298753,164364289,164429825,164495361,164560897,164626433,164691969,164757505,164823041,164888577,164954113,165019649,165085185,165150721,166199297,167510017,167575553,167641089,167706625,167772161,167837697,167903233,167968769,168034305,168099841,168165377,168230913,168296449,168361985,168427521,168493057,168558593,168624129,168689665,168755201,168820737,168886273,168951809,169017345,169082881,169148417,169213953,169279489,169345025,169541633,169607169,169672705,169738241,169803777,169869313,169934849,170000385,170065921,170131457,170196993,170262529,170328065,170393601,170459137,170524673,170590209,170655745,170721281,170786817,170852353,170917889,170983425,171048961,171114497,171180033,171245569,171311105,171376641,171442177,171507713,171573249,171638785,171704321,171769857,171835393,171900929,171966465,172032001,172097537,172163073,172228609,172294145,172359681,172425217,172490753,172556289,172621825,172687361,172752897,172818433,172883969,172949505,173015041,173080577,173146113,173211649,173277185,173342721,173408257,173473793,173539329,173604865,173670401,173735937,173801473,173867009,173932545,173998081,174063617,174129153,174194689,174260225,174325761,174391297,174456833,174522369,174587905,174653441,174718977,174784513,174850049,174915585,174981121,175046657,175112193,175177729,175243265,175308801,175374337,175439873,175505409,175570945,175636481,175702017,175767553,175833089,175898625,176619521,176750593,176816129,177405953,178913281,178978817,179044353,179109889,179175425,179240961,179306497,179372033,179437569,179503105,179568641,179634177,179830785,180420609,180486145,180551681]} \ No newline at end of file diff --git a/docs/fti/FTI_Files.json b/docs/fti/FTI_Files.json index 18a1628..c923f91 100644 --- a/docs/fti/FTI_Files.json +++ b/docs/fti/FTI_Files.json @@ -1 +1 @@ -["AsterNet Class Library (Sandcastle documentation) - Redirect\u0000index.html\u000018","AsterNet Class Library (Sandcastle documentation) - Search\u0000search.html\u000016","Version History\u0000html/100303f2-3dd8-401b-a594-579aae2a939c.htm\u000067","Welcome to AsterNet Class library\u0000html/79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm\u0000105","Version 1.0.0.0\u0000html/d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm\u000047","AGIException Events\u0000html/Events_T_AsterNET_FastAGI_AGIException.htm\u000059","AGIHangupException Events\u0000html/Events_T_AsterNET_FastAGI_AGIHangupException.htm\u000059","AGINetworkException Events\u0000html/Events_T_AsterNET_FastAGI_AGINetworkException.htm\u000059","InvalidCommandSyntaxException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u000059","InvalidOrUnknownCommandException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u000059","AuthenticationFailedException Events\u0000html/Events_T_AsterNET_Manager_AuthenticationFailedException.htm\u000059","EventTimeoutException Events\u0000html/Events_T_AsterNET_Manager_EventTimeoutException.htm\u000059","ManagerException Events\u0000html/Events_T_AsterNET_Manager_ManagerException.htm\u000059","TimeoutException Events\u0000html/Events_T_AsterNET_Manager_TimeoutException.htm\u000059","Common Fields\u0000html/Fields_T_AsterNET_Common.htm\u000096","AsteriskFastAGI Fields\u0000html/Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000102","CommandAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_CommandAction.htm\u000033","SetVarAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_SetVarAction.htm\u000057","UpdateConfigAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u000038","RenameEvent Fields\u0000html/Fields_T_AsterNET_Manager_Event_RenameEvent.htm\u000034","ManagerConnection Fields\u0000html/Fields_T_AsterNET_Manager_ManagerConnection.htm\u000075","ChallengeResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ChallengeResponse.htm\u000040","CommandResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_CommandResponse.htm\u000041","ExtensionStateResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u000040","GetConfigResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_GetConfigResponse.htm\u000040","MailboxCountResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u000040","MailboxStatusResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u000040","ManagerError Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerError.htm\u000040","ManagerResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerResponse.htm\u000033","Common.AGI_ADDITIONAL_ATTRIBUTES_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTES_PATTERN.htm\u000095","Common.AGI_ADDITIONAL_ATTRIBUTE_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTE_PATTERN.htm\u000095","Common.AGI_BIND_ADDRESS Field\u0000html/F_AsterNET_Common_AGI_BIND_ADDRESS.htm\u000087","Common.AGI_BIND_PORT Field\u0000html/F_AsterNET_Common_AGI_BIND_PORT.htm\u000085","Common.AGI_DEFAULT_MAX_DIGITS Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm\u000093","Common.AGI_DEFAULT_RESOURCE_BUNDLE_NAME Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_RESOURCE_BUNDLE_NAME.htm\u000095","Common.AGI_DEFAULT_TIMEOUT Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm\u000093","Common.AGI_END_OF_PROPER_USAGE Field\u0000html/F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm\u000095","Common.AGI_PARAMETER_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm\u000095","Common.AGI_PARENTHESIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm\u000095","Common.AGI_POOL_SIZE Field\u0000html/F_AsterNET_Common_AGI_POOL_SIZE.htm\u000086","Common.AGI_RESULT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_RESULT_PATTERN.htm\u000095","Common.AGI_SCRIPT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm\u000095","Common.AGI_STATUS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_STATUS_PATTERN.htm\u000095","Common.AGI_SYNOPSIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm\u000095","Common.ASTERISK_VERSION Field\u0000html/F_AsterNET_Common_ASTERISK_VERSION.htm\u000095","Common.CultureInfoEn Field\u0000html/F_AsterNET_Common_CultureInfoEn.htm\u000095","Common.DEFAULT_HOSTNAME Field\u0000html/F_AsterNET_Common_DEFAULT_HOSTNAME.htm\u000090","Common.DEFAULT_PORT Field\u0000html/F_AsterNET_Common_DEFAULT_PORT.htm\u000088","Common.INTERNAL_ACTION_ID_DELIMITER Field\u0000html/F_AsterNET_Common_INTERNAL_ACTION_ID_DELIMITER.htm\u000093","Common.LINE_SEPARATOR Field\u0000html/F_AsterNET_Common_LINE_SEPARATOR.htm\u000083","Common.MINUS_SEPARATOR Field\u0000html/F_AsterNET_Common_MINUS_SEPARATOR.htm\u0000108","Common.RESPONSE_KEY_VALUE_SEPARATOR Field\u0000html/F_AsterNET_Common_RESPONSE_KEY_VALUE_SEPARATOR.htm\u0000108","Common.SHOW_VERSION_FILES_PATTERN Field\u0000html/F_AsterNET_Common_SHOW_VERSION_FILES_PATTERN.htm\u000095","Common.VAR_DELIMITER Field\u0000html/F_AsterNET_Common_VAR_DELIMITER.htm\u0000178","AsteriskFastAGI.SC511_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SC511_CAUSES_EXCEPTION.htm\u0000113","AsteriskFastAGI.SCHANGUP_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SCHANGUP_CAUSES_EXCEPTION.htm\u0000110","CommandAction.command Field\u0000html/F_AsterNET_Manager_Action_CommandAction_command.htm\u000097","SetVarAction.channel Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_channel.htm\u000090","SetVarAction.varName Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varName.htm\u000089","SetVarAction.varValue Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varValue.htm\u000086","UpdateConfigAction.ACTION_APPEND Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_APPEND.htm\u0000101","UpdateConfigAction.ACTION_DELCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELCAT.htm\u0000101","UpdateConfigAction.ACTION_DELETE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELETE.htm\u0000101","UpdateConfigAction.ACTION_NEWCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_NEWCAT.htm\u0000101","UpdateConfigAction.ACTION_RENAMECAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_RENAMECAT.htm\u0000101","UpdateConfigAction.ACTION_UPDATE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_UPDATE.htm\u0000101","RenameEvent.newName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_newName.htm\u000097","RenameEvent.oldName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_oldName.htm\u000097","ManagerConnection.UseASyncEvents Field\u0000html/F_AsterNET_Manager_ManagerConnection_UseASyncEvents.htm\u0000119","ManagerConnection.VAR_DELIMITER Field\u0000html/F_AsterNET_Manager_ManagerConnection_VAR_DELIMITER.htm\u0000107","CommandResponse.result Field\u0000html/F_AsterNET_Manager_Response_CommandResponse_result.htm\u0000119","ManagerResponse.attributes Field\u0000html/F_AsterNET_Manager_Response_ManagerResponse_attributes.htm\u0000135","AGIChannel Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIChannel.htm\u0000151","AGIConnectionHandler Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000151","AGIException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIException.htm\u0000207","AGIHangupException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIHangupException.htm\u0000207","AGINetworkException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGINetworkException.htm\u0000207","AGIReader Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReader.htm\u0000152","AGIReply Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReply.htm\u0000276","AGIRequest Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIRequest.htm\u0000144","AGIScript Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIScript.htm\u00001657","AGIWriter Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIWriter.htm\u0000151","AsteriskFastAGI Methods\u0000html/Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000152","AGICommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AGICommand.htm\u0000144","AnswerCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000158","ChannelStatusCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000158","ControlStreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000192","DatabaseDelCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000158","DatabaseDelTreeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000158","DatabaseGetCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000158","DatabasePutCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000158","ExecCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000158","GetDataCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000158","GetFullVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000158","GetOptionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000158","GetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000158","HangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000158","NoopCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000158","ReceiveCharCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000158","ReceiveTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000158","RecordFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000158","SayAlphaCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000158","SayDateTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000158","SayDigitsCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000158","SayNumberCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000158","SayPhoneticCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000158","SayTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000158","SendImageCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000158","SendTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000158","SetAutoHangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000158","SetCallerIdCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000158","SetContextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000158","SetExtensionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000158","SetMusicOffCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000158","SetMusicOnCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000158","SetPriorityCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000158","SetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000158","StreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000158","TDDModeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000158","VerboseCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000158","WaitForDigitCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000158","IMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_IMappingStrategy.htm\u000033","InvalidCommandSyntaxException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000207","InvalidOrUnknownCommandException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000207","GeneralMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000153","ResourceMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000153","ScriptMapping Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000153","MappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategy.htm\u0000152","ServerSocket Methods\u0000html/Methods_T_AsterNET_IO_ServerSocket.htm\u0000152","SocketConnection Methods\u0000html/Methods_T_AsterNET_IO_SocketConnection.htm\u0000239","Logger Methods\u0000html/Methods_T_AsterNET_Logger.htm\u0000223","AbsoluteTimeoutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000142","AgentCallbackLoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000142","AgentLogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000142","AgentsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentsAction.htm\u0000150","AgiAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgiAction.htm\u0000142","AOCMessageAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000142","AtxferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AtxferAction.htm\u0000142","BridgeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_BridgeAction.htm\u0000142","ChallengeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000142","ChangeMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000142","CommandAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CommandAction.htm\u0000142","ConfbridgeKickAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000142","ConfbridgeListAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000150","ConfbridgeListRoomsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000150","ConfbridgeLockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000142","ConfbridgeMuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000142","ConfbridgeSetSingleVideoSrcAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000142","ConfbridgeStartRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000142","ConfbridgeStopRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000142","ConfbridgeUnlockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000142","ConfbridgeUnmuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000142","CoreSettingsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000142","CoreShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000142","CoreStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000142","CreateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000142","DBDelAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelAction.htm\u0000142","DBDelTreeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000142","DBGetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBGetAction.htm\u0000150","DBPutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBPutAction.htm\u0000142","EventsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_EventsAction.htm\u0000142","ExtensionStateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000142","GetConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000150","GetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetVarAction.htm\u0000142","HangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_HangupAction.htm\u0000142","LoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LoginAction.htm\u0000142","LogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LogoffAction.htm\u0000142","MailboxCountAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000142","MailboxStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000142","ManagerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerAction.htm\u0000142","ManagerActionEvent Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000160","ManagerActionResponse Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000159","MonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MonitorAction.htm\u0000142","OriginateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_OriginateAction.htm\u0000211","ParkAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkAction.htm\u0000142","ParkedCallsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000150","PingAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_PingAction.htm\u0000142","ProxyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ProxyAction.htm\u0000142","QueueAddAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000142","QueueLogAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000142","QueuePauseAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000142","QueuePenaltyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000142","QueueReloadAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000142","QueueRemoveAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000142","QueueResetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000142","QueueRuleAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000142","QueueStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000150","RedirectAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_RedirectAction.htm\u0000142","SetCDRUserFieldAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000142","SetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetVarAction.htm\u0000142","SIPPeersAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000150","SIPShowPeerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000150","StatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StatusAction.htm\u0000150","StopMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000142","UpdateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000247","ZapDialOffhookAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000142","ZapDNDOffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000142","ZapDNDOnAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000142","ZapHangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000142","ZapShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000150","ZapTransferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000142","AuthenticationFailedException Methods\u0000html/Methods_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000207","EventTimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_EventTimeoutException.htm\u0000207","AbstractAgentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000259","AbstractAgentVariables Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000231","AbstractChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000170","AbstractConfbridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000170","AbstractMeetmeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000170","AbstractParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000170","AbstractQueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000170","AgentCallbackLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000170","AgentCallbackLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000170","AgentCalledEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000259","AgentCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000259","AgentConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000259","AgentDumpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000259","AgentLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000170","AgentLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000170","AgentsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000170","AgentsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000170","AGIExecEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000170","AlarmClearEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000170","AlarmEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000170","AsyncAGIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000170","AttendedTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000170","BlindTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000170","BridgeActivityEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000170","BridgeCreateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000170","BridgeDestroyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000170","BridgeEnterEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000170","BridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000175","BridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000170","BridgeStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000170","CdrEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_CdrEvent.htm\u0000170","ChannelReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000170","ChannelUpdateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000170","ConfbridgeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000170","ConfbridgeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000170","ConfbridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000170","ConfbridgeListCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000170","ConfbridgeListEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000170","ConfbridgeListRoomsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000170","ConfbridgeListRoomsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000170","ConfbridgeStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000170","ConfbridgeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000170","ConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000170","ConnectionStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000170","DBGetResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000170","DialBeginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000170","DialEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000170","DialEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEvent.htm\u0000170","DisconnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000170","DNDStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000170","DTMFEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000170","ExtensionStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000170","FailedACLEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000170","FaxReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000259","HangupEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HangupEvent.htm\u0000170","HoldedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000170","HoldEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldEvent.htm\u0000170","JabberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JabberEvent.htm\u0000170","JitterBufStatsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000170","JoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JoinEvent.htm\u0000170","LeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000170","LinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LinkEvent.htm\u0000169","LogChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000170","ManagerEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000156","MeetmeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000170","MeetmeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000170","MeetmeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000170","MeetmeMuteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000170","MeetmeStopTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000170","MeetmeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000170","MeetmeTalkRequestEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000170","MessageWaitingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000170","MobileStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000170","ModuleLoadReportEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000170","MonitorStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000170","MonitorStopEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000170","NewAccountCodeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000170","NewCallerIdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000170","NewChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000170","NewExtenEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000170","NewStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000170","OriginateResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000170","ParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000170","ParkedCallGiveUpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000170","ParkedCallsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000170","ParkedCallTimeOutEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000170","PeerEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000170","PeerlistCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000170","PeerStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000170","PRIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PRIEvent.htm\u0000170","QueueCallerAbandonEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000170","QueueCallerJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000170","QueueCallerLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000170","QueueEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000170","QueueEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEvent.htm\u0000170","QueueMemberAddedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000170","QueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000170","QueueMemberPausedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000170","QueueMemberPauseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000170","QueueMemberPenaltyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000170","QueueMemberRemovedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000170","QueueMemberRinginuseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u0000170","QueueMemberStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000170","QueueParamsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000170","QueueStatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000170","RegistryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000170","ReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000170","RenameEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RenameEvent.htm\u0000170","ResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000170","RTCPReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000170","RTCPSentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000170","RTPReceiverStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000170","RTPSenderStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000170","ShowDialPlanCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000170","ShutdownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000170","StatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000170","StatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusEvent.htm\u0000170","TransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_TransferEvent.htm\u0000170","UnholdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000170","UnknownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000170","UnlinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000169","UnparkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000170","UserEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UserEvent.htm\u0000171","VarSetEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000170","ZapShowChannelsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000170","ZapShowChannelsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000170","IResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_IResponseHandler.htm\u000043","ManagerConnection Methods\u0000html/Methods_T_AsterNET_Manager_ManagerConnection.htm\u0000290","ManagerException Methods\u0000html/Methods_T_AsterNET_Manager_ManagerException.htm\u0000207","ManagerReader Methods\u0000html/Methods_T_AsterNET_Manager_ManagerReader.htm\u0000150","Originate Methods\u0000html/Methods_T_AsterNET_Manager_Originate.htm\u0000211","ResponseEventHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEventHandler.htm\u0000153","ResponseEvents Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEvents.htm\u0000159","ResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseHandler.htm\u0000152","ChallengeResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000316","CommandResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_CommandResponse.htm\u0000316","ExtensionStateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000316","GetConfigResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000331","MailboxCountResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000316","MailboxStatusResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000316","ManagerError Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerError.htm\u0000316","ManagerResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000288","OriginateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_OriginateResponse.htm\u0000167","TimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_TimeoutException.htm\u0000207","MD5Support Methods\u0000html/Methods_T_AsterNET_Util_MD5Support.htm\u0000201","ThreadClass Methods\u0000html/Methods_T_AsterNET_Util_ThreadClass.htm\u0000189","ThreadPool Methods\u0000html/Methods_T_AsterNET_Util_ThreadPool.htm\u0000201","AGIChannel.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIChannel_SendCommand.htm\u0000180","AGIChannel Constructor (AGIWriter, AGIReader, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor.htm\u0000323","AGIChannel Constructor (SocketConnection, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor_1.htm\u0000253","AGIConnectionHandler.Run Method\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler_Run.htm\u000095","AGIConnectionHandler Constructor\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler__ctor.htm\u0000268","AGIException Constructor\u0000html/M_AsterNET_FastAGI_AGIException__ctor.htm\u000086","AGIException Constructor (String)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_1.htm\u0000120","AGIException Constructor (String, Exception)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_2.htm\u0000160","AGIHangupException Constructor\u0000html/M_AsterNET_FastAGI_AGIHangupException__ctor.htm\u000084","AGINetworkException Constructor\u0000html/M_AsterNET_FastAGI_AGINetworkException__ctor.htm\u0000186","AGIReader.ReadReply Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadReply.htm\u0000119","AGIReader.ReadRequest Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadRequest.htm\u0000119","AGIReader Constructor\u0000html/M_AsterNET_FastAGI_AGIReader__ctor.htm\u0000134","AGIReply.GetAttribute Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetAttribute.htm\u0000186","AGIReply.GetResult Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetResult.htm\u0000109","AGIReply.GetStatus Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetStatus.htm\u0000112","AGIReply.GetSynopsis Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm\u0000127","AGIReply.GetUsage Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetUsage.htm\u0000127","AGIReply.ToString Method\u0000html/M_AsterNET_FastAGI_AGIReply_ToString.htm\u0000132","AGIReply Constructor\u0000html/M_AsterNET_FastAGI_AGIReply__ctor.htm\u000086","AGIReply Constructor (List(String))\u0000html/M_AsterNET_FastAGI_AGIReply__ctor_1.htm\u0000168","AGIRequest.Parameter Method\u0000html/M_AsterNET_FastAGI_AGIRequest_Parameter.htm\u0000172","AGIRequest.ParameterMap Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm\u0000176","AGIRequest.ParameterValues Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterValues.htm\u0000194","AGIRequest.ToString Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ToString.htm\u0000132","AGIRequest Constructor\u0000html/M_AsterNET_FastAGI_AGIRequest__ctor.htm\u0000140","AGIScript.Answer Method\u0000html/M_AsterNET_FastAGI_AGIScript_Answer.htm\u000084","AGIScript.ControlStreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000232","AGIScript.ControlStreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_1.htm\u0000272","AGIScript.ControlStreamFile Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_2.htm\u0000306","AGIScript.ControlStreamFile Method (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_3.htm\u0000408","AGIScript.DatabaseDel Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm\u0000160","AGIScript.DatabaseDelTree Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u0000125","AGIScript.DatabaseDelTree Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree_1.htm\u0000178","AGIScript.DatabaseGet Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm\u0000190","AGIScript.DatabasePut Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabasePut.htm\u0000201","AGIScript.Exec Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec.htm\u0000151","AGIScript.Exec Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec_1.htm\u0000194","AGIScript.GetChannelStatus Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm\u0000117","AGIScript.GetData Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData.htm\u0000166","AGIScript.GetData Method (String, Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_1.htm\u0000227","AGIScript.GetData Method (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_2.htm\u0000273","AGIScript.GetFullVariable Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u0000167","AGIScript.GetFullVariable Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable_1.htm\u0000206","AGIScript.GetOption Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000228","AGIScript.GetOption Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption_1.htm\u0000269","AGIScript.GetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetVariable.htm\u0000142","AGIScript.Hangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_Hangup.htm\u000085","AGIScript.PlayMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000094","AGIScript.PlayMusicOnHold Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm\u0000150","AGIScript.RecordFile Method (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000351","AGIScript.RecordFile Method (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm\u0000467","AGIScript.SayAlpha Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u0000120","AGIScript.SayAlpha Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm\u0000194","AGIScript.SayDateTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000142","AGIScript.SayDateTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm\u0000213","AGIScript.SayDateTime Method (Int64, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm\u0000253","AGIScript.SayDateTime Method (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm\u0000303","AGIScript.SayDigits Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits.htm\u0000121","AGIScript.SayDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm\u0000194","AGIScript.SayNumber Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber.htm\u0000119","AGIScript.SayNumber Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm\u0000193","AGIScript.SayPhonetic Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u0000122","AGIScript.SayPhonetic Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm\u0000196","AGIScript.SayTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime.htm\u0000129","AGIScript.SayTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime_1.htm\u0000203","AGIScript.Service Method\u0000html/M_AsterNET_FastAGI_AGIScript_Service.htm\u0000212","AGIScript.SetAutoHangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm\u0000147","AGIScript.SetCallerId Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm\u0000145","AGIScript.SetContext Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetContext.htm\u0000137","AGIScript.SetExtension Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetExtension.htm\u0000137","AGIScript.SetPriority Method (Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority.htm\u0000140","AGIScript.SetPriority Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm\u0000142","AGIScript.SetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetVariable.htm\u0000157","AGIScript.StopMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_StopMusicOnHold.htm\u000086","AGIScript.StreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile.htm\u0000121","AGIScript.StreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm\u0000193","AGIScript.Verbose Method\u0000html/M_AsterNET_FastAGI_AGIScript_Verbose.htm\u0000159","AGIScript.WaitForDigit Method\u0000html/M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm\u0000153","AGIScript Constructor\u0000html/M_AsterNET_FastAGI_AGIScript__ctor.htm\u000084","AGIWriter.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIWriter_SendCommand.htm\u0000151","AGIWriter Constructor\u0000html/M_AsterNET_FastAGI_AGIWriter__ctor.htm\u0000134","AsteriskFastAGI.Start Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm\u000095","AsteriskFastAGI.Stop Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm\u000095","AsteriskFastAGI Constructor\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u000083","AsteriskFastAGI Constructor (IMappingStrategy)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm\u0000136","AsteriskFastAGI Constructor (IMappingStrategy, String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm\u0000318","AsteriskFastAGI Constructor (Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm\u0000163","AsteriskFastAGI Constructor (String)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm\u0000134","AsteriskFastAGI Constructor (String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm\u0000197","AsteriskFastAGI Constructor (String, Int32, Int32, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm\u0000511","AGICommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_BuildCommand.htm\u0000127","AGICommand.EscapeAndQuote Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_EscapeAndQuote.htm\u0000177","AGICommand.ToString Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_ToString.htm\u0000136","AGICommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AGICommand__ctor.htm\u000086","AnswerCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand_BuildCommand.htm\u0000136","AnswerCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand__ctor.htm\u000086","ChannelStatusCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand_BuildCommand.htm\u0000136","ChannelStatusCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000088","ChannelStatusCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor_1.htm\u0000125","ControlStreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_BuildCommand.htm\u0000136","ControlStreamFileCommand.ControlDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u0000160","ControlStreamFileCommand.ControlDigits Method (String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits_1.htm\u0000197","ControlStreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000154","ControlStreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_1.htm\u0000194","ControlStreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_2.htm\u0000240","ControlStreamFileCommand Constructor (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_3.htm\u0000342","DatabaseDelCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand_BuildCommand.htm\u0000136","DatabaseDelCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u0000121","DatabaseDelCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor_1.htm\u0000157","DatabaseDelTreeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_BuildCommand.htm\u0000136","DatabaseDelTreeCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u0000120","DatabaseDelTreeCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor_1.htm\u0000153","DatabaseGetCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand_BuildCommand.htm\u0000136","DatabaseGetCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand__ctor.htm\u0000146","DatabasePutCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand_BuildCommand.htm\u0000136","DatabasePutCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand__ctor.htm\u0000177","ExecCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ExecCommand_BuildCommand.htm\u0000136","ExecCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u0000120","ExecCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor_1.htm\u0000156","GetDataCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand_BuildCommand.htm\u0000136","GetDataCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u0000133","GetDataCommand Constructor (String, Int64)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_1.htm\u0000190","GetDataCommand Constructor (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_2.htm\u0000230","GetFullVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand_BuildCommand.htm\u0000136","GetFullVariableCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u0000120","GetFullVariableCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor_1.htm\u0000154","GetOptionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand_BuildCommand.htm\u0000136","GetOptionCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u0000171","GetOptionCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor_1.htm\u0000212","GetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand_BuildCommand.htm\u0000136","GetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand__ctor.htm\u0000115","HangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_HangupCommand_BuildCommand.htm\u0000136","HangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000091","HangupCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor_1.htm\u0000126","NoopCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_NoopCommand_BuildCommand.htm\u0000136","NoopCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_NoopCommand__ctor.htm\u000083","ReceiveCharCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand_BuildCommand.htm\u0000136","ReceiveCharCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000096","ReceiveCharCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor_1.htm\u0000122","ReceiveTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand_BuildCommand.htm\u0000136","ReceiveTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000096","ReceiveTextCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor_1.htm\u0000138","RecordFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand_BuildCommand.htm\u0000136","RecordFileCommand Constructor (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u0000247","RecordFileCommand Constructor (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor_1.htm\u0000363","SayAlphaCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand_BuildCommand.htm\u0000136","SayAlphaCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u0000117","SayAlphaCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor_1.htm\u0000157","SayDateTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand_BuildCommand.htm\u0000136","SayDateTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000164","SayDateTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_1.htm\u0000192","SayDateTimeCommand Constructor (Int64, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_2.htm\u0000232","SayDateTimeCommand Constructor (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_3.htm\u0000282","SayDigitsCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand_BuildCommand.htm\u0000136","SayDigitsCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u0000117","SayDigitsCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor_1.htm\u0000156","SayNumberCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand_BuildCommand.htm\u0000136","SayNumberCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u0000117","SayNumberCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor_1.htm\u0000157","SayPhoneticCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand_BuildCommand.htm\u0000136","SayPhoneticCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u0000117","SayPhoneticCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor_1.htm\u0000157","SayTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand_BuildCommand.htm\u0000136","SayTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u0000127","SayTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor_1.htm\u0000167","SendImageCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand_BuildCommand.htm\u0000136","SendImageCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand__ctor.htm\u0000117","SendTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand_BuildCommand.htm\u0000136","SendTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand__ctor.htm\u0000112","SetAutoHangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand_BuildCommand.htm\u0000136","SetAutoHangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand__ctor.htm\u0000123","SetCallerIdCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand_BuildCommand.htm\u0000136","SetCallerIdCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand__ctor.htm\u0000111","SetContextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand_BuildCommand.htm\u0000136","SetContextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand__ctor.htm\u0000116","SetExtensionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand_BuildCommand.htm\u0000136","SetExtensionCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand__ctor.htm\u0000116","SetMusicOffCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand_BuildCommand.htm\u0000136","SetMusicOffCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand__ctor.htm\u000083","SetMusicOnCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand_BuildCommand.htm\u0000136","SetMusicOnCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000094","SetMusicOnCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor_1.htm\u0000131","SetPriorityCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand_BuildCommand.htm\u0000136","SetPriorityCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u0000119","SetPriorityCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor_1.htm\u0000121","SetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand_BuildCommand.htm\u0000136","SetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand__ctor.htm\u0000165","StreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand_BuildCommand.htm\u0000136","StreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u0000130","StreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_1.htm\u0000170","StreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_2.htm\u0000216","TDDModeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand_BuildCommand.htm\u0000136","TDDModeCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand__ctor.htm\u0000158","VerboseCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand_BuildCommand.htm\u0000136","VerboseCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand__ctor.htm\u0000150","WaitForDigitCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand_BuildCommand.htm\u0000136","WaitForDigitCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000097","WaitForDigitCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor_1.htm\u0000123","IMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_DetermineScript.htm\u0000171","IMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_Load.htm\u000090","InvalidCommandSyntaxException Constructor\u0000html/M_AsterNET_FastAGI_InvalidCommandSyntaxException__ctor.htm\u0000149","InvalidOrUnknownCommandException Constructor\u0000html/M_AsterNET_FastAGI_InvalidOrUnknownCommandException__ctor.htm\u0000111","GeneralMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_DetermineScript.htm\u0000200","GeneralMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_Load.htm\u0000112","GeneralMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000088","GeneralMappingStrategy Constructor (List(ScriptMapping))\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_1.htm\u0000173","GeneralMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_2.htm\u0000140","ResourceMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_DetermineScript.htm\u0000200","ResourceMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_Load.htm\u0000112","ResourceMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000088","ResourceMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor_1.htm\u0000140","ScriptMapping.LoadMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_LoadMappings.htm\u0000203","ScriptMapping.SaveMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_SaveMappings.htm\u0000254","ScriptMapping Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping__ctor.htm\u000086","MappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_DetermineScript.htm\u0000195","MappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_Load.htm\u0000109","MappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000086","MappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm\u0000137","ServerSocket.Accept Method\u0000html/M_AsterNET_IO_ServerSocket_Accept.htm\u0000119","ServerSocket.Close Method\u0000html/M_AsterNET_IO_ServerSocket_Close.htm\u000095","ServerSocket Constructor\u0000html/M_AsterNET_IO_ServerSocket__ctor.htm\u0000250","SocketConnection.Close Method\u0000html/M_AsterNET_IO_SocketConnection_Close.htm\u0000120","SocketConnection.ReadLine Method\u0000html/M_AsterNET_IO_SocketConnection_ReadLine.htm\u0000125","SocketConnection.Write Method\u0000html/M_AsterNET_IO_SocketConnection_Write.htm\u0000124","SocketConnection.WriteEx Method\u0000html/M_AsterNET_IO_SocketConnection_WriteEx.htm\u0000124","SocketConnection Constructor\u0000html/M_AsterNET_IO_SocketConnection__ctor.htm\u0000157","Logger.Debug Method (Object)\u0000html/M_AsterNET_Logger_Debug.htm\u0000146","Logger.Debug Method (String)\u0000html/M_AsterNET_Logger_Debug_1.htm\u0000146","Logger.Debug Method (String, Exception)\u0000html/M_AsterNET_Logger_Debug_2.htm\u0000202","Logger.Debug Method (String, Object[])\u0000html/M_AsterNET_Logger_Debug_3.htm\u0000229","Logger.Error Method (Object)\u0000html/M_AsterNET_Logger_Error.htm\u0000146","Logger.Error Method (String)\u0000html/M_AsterNET_Logger_Error_1.htm\u0000146","Logger.Error Method (String, Exception)\u0000html/M_AsterNET_Logger_Error_2.htm\u0000202","Logger.Error Method (String, Object[])\u0000html/M_AsterNET_Logger_Error_3.htm\u0000229","Logger.Info Method (Object)\u0000html/M_AsterNET_Logger_Info.htm\u0000146","Logger.Info Method (String)\u0000html/M_AsterNET_Logger_Info_1.htm\u0000146","Logger.Info Method (String, Exception)\u0000html/M_AsterNET_Logger_Info_2.htm\u0000202","Logger.Info Method (String, Object[])\u0000html/M_AsterNET_Logger_Info_3.htm\u0000229","Logger.Instance Method\u0000html/M_AsterNET_Logger_Instance.htm\u0000108","Logger.IsVisible Method\u0000html/M_AsterNET_Logger_IsVisible.htm\u0000216","Logger.Visible Method (Boolean, Logger.MessageLevel)\u0000html/M_AsterNET_Logger_Visible.htm\u0000148","Logger.Visible Method (Boolean, Logger.MessageLevel, String)\u0000html/M_AsterNET_Logger_Visible_1.htm\u0000178","Logger.Warning Method (Object)\u0000html/M_AsterNET_Logger_Warning.htm\u0000146","Logger.Warning Method (String)\u0000html/M_AsterNET_Logger_Warning_1.htm\u0000146","Logger.Warning Method (String, Exception)\u0000html/M_AsterNET_Logger_Warning_2.htm\u0000202","Logger.Warning Method (String, Object[])\u0000html/M_AsterNET_Logger_Warning_3.htm\u0000229","Logger Constructor\u0000html/M_AsterNET_Logger__ctor.htm\u000088","AbsoluteTimeoutAction Constructor\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000086","AbsoluteTimeoutAction Constructor (String, Int32)\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor_1.htm\u0000159","AgentCallbackLoginAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000086","AgentCallbackLoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_1.htm\u0000173","AgentCallbackLoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_2.htm\u0000214","AgentLogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000086","AgentLogoffAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_1.htm\u0000126","AgentLogoffAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_2.htm\u0000164","AgentsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_AgentsAction_ActionCompleteEventClass.htm\u0000136","AgentsAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentsAction__ctor.htm\u000086","AgiAction Constructor\u0000html/M_AsterNET_Manager_Action_AgiAction__ctor.htm\u0000188","AOCMessageAction Constructor\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000090","AOCMessageAction Constructor (String, String, String, String, Int32, Int32, String, String, String, String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor_1.htm\u00001191","AtxferAction Constructor\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000083","AtxferAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor_1.htm\u0000212","BridgeAction Constructor\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000088","BridgeAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor_1.htm\u0000191","ChallengeAction Constructor\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000088","ChallengeAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor_1.htm\u0000131","ChangeMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000086","ChangeMonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor_1.htm\u0000182","CommandAction Constructor\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor.htm\u000085","CommandAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor_1.htm\u0000122","ConfbridgeKickAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000089","ConfbridgeKickAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor_1.htm\u0000198","ConfbridgeListAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction__ctor.htm\u0000150","ConfbridgeListRoomsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListRoomsAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction__ctor.htm\u000086","ConfbridgeLockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000085","ConfbridgeLockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor_1.htm\u0000137","ConfbridgeMuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000089","ConfbridgeMuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor_1.htm\u0000198","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000086","ConfbridgeSetSingleVideoSrcAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor_1.htm\u0000195","ConfbridgeStartRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000141","ConfbridgeStartRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor_1.htm\u0000193","ConfbridgeStopRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000086","ConfbridgeStopRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor_1.htm\u0000138","ConfbridgeUnlockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000085","ConfbridgeUnlockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor_1.htm\u0000137","ConfbridgeUnmuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000089","ConfbridgeUnmuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor_1.htm\u0000198","CoreSettingsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreSettingsAction__ctor.htm\u000086","CoreShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreShowChannelsAction__ctor.htm\u000086","CoreStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreStatusAction__ctor.htm\u000086","CreateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u0000113","CreateConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor_1.htm\u0000165","DBDelAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000086","DBDelAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor_1.htm\u0000168","DBDelTreeAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000086","DBDelTreeAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor_1.htm\u0000165","DBGetAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_DBGetAction_ActionCompleteEventClass.htm\u0000136","DBGetAction Constructor\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000086","DBGetAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor_1.htm\u0000168","DBPutAction Constructor\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000086","DBPutAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor_1.htm\u0000200","EventsAction Constructor\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor.htm\u000086","EventsAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor_1.htm\u0000181","ExtensionStateAction Constructor\u0000html/M_AsterNET_Manager_Action_ExtensionStateAction__ctor.htm\u000086","GetConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_GetConfigAction_ActionCompleteResponseClass.htm\u0000136","GetConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000085","GetConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor_1.htm\u0000118","GetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000086","GetVarAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_1.htm\u0000128","GetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_2.htm\u0000170","HangupAction Constructor\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor.htm\u000086","HangupAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor_1.htm\u0000126","LoginAction Constructor\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor.htm\u000086","LoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_1.htm\u0000186","LoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_2.htm\u0000209","LoginAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_3.htm\u0000295","LogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_LogoffAction__ctor.htm\u000086","MailboxCountAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000086","MailboxCountAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor_1.htm\u0000162","MailboxStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000086","MailboxStatusAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor_1.htm\u0000158","ManagerActionEvent.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent_ActionCompleteEventClass.htm\u0000132","ManagerActionEvent Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent__ctor.htm\u000086","ManagerActionResponse.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse_ActionCompleteResponseClass.htm\u0000130","ManagerActionResponse Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse__ctor.htm\u000086","ManagerAction.ToString Method\u0000html/M_AsterNET_Manager_Action_ManagerAction_ToString.htm\u0000136","ManagerAction Constructor\u0000html/M_AsterNET_Manager_Action_ManagerAction__ctor.htm\u000086","MonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor.htm\u000086","MonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_1.htm\u0000180","MonitorAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_2.htm\u0000217","MonitorAction Constructor (String, String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_3.htm\u0000258","OriginateAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_ActionCompleteEventClass.htm\u0000136","OriginateAction.GetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariable.htm\u0000175","OriginateAction.GetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariables.htm\u0000175","OriginateAction.SetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariable.htm\u0000202","OriginateAction.SetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariables.htm\u0000210","OriginateAction Constructor\u0000html/M_AsterNET_Manager_Action_OriginateAction__ctor.htm\u000086","ParkAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor.htm\u0000255","ParkAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor_1.htm\u0000237","ParkedCallsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction_ActionCompleteEventClass.htm\u0000136","ParkedCallsAction Constructor\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction__ctor.htm\u000086","PingAction Constructor\u0000html/M_AsterNET_Manager_Action_PingAction__ctor.htm\u000086","ProxyAction Constructor\u0000html/M_AsterNET_Manager_Action_ProxyAction__ctor.htm\u000086","QueueAddAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u000086","QueueAddAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_1.htm\u0000190","QueueAddAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_2.htm\u0000229","QueueAddAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_3.htm\u0000290","QueueLogAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000086","QueueLogAction Constructor (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor_1.htm\u0000390","QueuePauseAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u000086","QueuePauseAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_1.htm\u0000132","QueuePauseAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_2.htm\u0000173","QueuePauseAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_3.htm\u0000169","QueuePauseAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_4.htm\u0000208","QueuePenaltyAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000088","QueuePenaltyAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor_1.htm\u0000258","QueueReloadAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000096","QueueReloadAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor_1.htm\u0000331","QueueRemoveAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000086","QueueRemoveAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor_1.htm\u0000170","QueueResetAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000084","QueueResetAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor_1.htm\u0000136","QueueRuleAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000088","QueueRuleAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor_1.htm\u0000140","QueueStatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_QueueStatusAction_ActionCompleteEventClass.htm\u0000136","QueueStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueStatusAction__ctor.htm\u000086","RedirectAction Constructor\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000086","RedirectAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_1.htm\u0000224","RedirectAction Constructor (String, String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_2.htm\u0000261","SetCDRUserFieldAction Constructor\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000086","SetCDRUserFieldAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_1.htm\u0000169","SetCDRUserFieldAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_2.htm\u0000209","SetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000086","SetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_1.htm\u0000161","SetVarAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_2.htm\u0000201","SIPPeersAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPPeersAction_ActionCompleteEventClass.htm\u0000136","SIPPeersAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPPeersAction__ctor.htm\u000086","SIPShowPeerAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction_ActionCompleteEventClass.htm\u0000136","SIPShowPeerAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000086","SIPShowPeerAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor_1.htm\u0000146","StatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_StatusAction_ActionCompleteEventClass.htm\u0000136","StatusAction Constructor\u0000html/M_AsterNET_Manager_Action_StatusAction__ctor.htm\u000086","StopMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000086","StopMonitorAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor_1.htm\u0000144","UpdateConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_ActionCompleteResponseClass.htm\u0000136","UpdateConfigAction.AddCommand Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000100","UpdateConfigAction.AddCommand Method (String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_1.htm\u0000154","UpdateConfigAction.AddCommand Method (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_2.htm\u0000212","UpdateConfigAction.AddCommand Method (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_3.htm\u0000274","UpdateConfigAction.AddCommand Method (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_4.htm\u0000340","UpdateConfigAction.AddCommand Method (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_5.htm\u0000313","UpdateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000085","UpdateConfigAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_1.htm\u0000194","UpdateConfigAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_2.htm\u0000253","UpdateConfigAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_3.htm\u0000255","ZapDialOffhookAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000086","ZapDialOffhookAction Constructor (Int32, String)\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor_1.htm\u0000202","ZapDNDOffAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000086","ZapDNDOffAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor_1.htm\u0000148","ZapDNDOnAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000086","ZapDNDOnAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor_1.htm\u0000148","ZapHangupAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000086","ZapHangupAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor_1.htm\u0000153","ZapShowChannelsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction_ActionCompleteEventClass.htm\u0000136","ZapShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction__ctor.htm\u000086","ZapTransferAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapTransferAction__ctor.htm\u000086","AuthenticationFailedException Constructor (String)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u0000119","AuthenticationFailedException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor_1.htm\u0000155","EventTimeoutException Constructor\u0000html/M_AsterNET_Manager_EventTimeoutException__ctor.htm\u0000162","AbstractAgentEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentEvent__ctor.htm\u0000137","AbstractAgentVariables.GetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariable.htm\u0000175","AbstractAgentVariables.GetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariables.htm\u0000175","AbstractAgentVariables.SetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariable.htm\u0000202","AbstractAgentVariables.SetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariables.htm\u0000210","AbstractAgentVariables Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables__ctor.htm\u0000137","AbstractChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractChannelEvent__ctor.htm\u0000137","AbstractConfbridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000088","AbstractConfbridgeEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor_1.htm\u0000142","AbstractMeetmeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractMeetmeEvent__ctor.htm\u0000137","AbstractParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractParkedCallEvent__ctor.htm\u0000137","AbstractQueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm\u0000112","AgentCallbackLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLoginEvent__ctor.htm\u0000137","AgentCallbackLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLogoffEvent__ctor.htm\u0000137","AgentCalledEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCalledEvent__ctor.htm\u0000137","AgentCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCompleteEvent__ctor.htm\u0000137","AgentConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentConnectEvent__ctor.htm\u0000137","AgentDumpEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentDumpEvent__ctor.htm\u0000137","AgentLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLoginEvent__ctor.htm\u0000137","AgentLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLogoffEvent__ctor.htm\u0000137","AgentsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsCompleteEvent__ctor.htm\u0000137","AgentsEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsEvent__ctor.htm\u0000137","AGIExecEvent Constructor\u0000html/M_AsterNET_Manager_Event_AGIExecEvent__ctor.htm\u0000134","AlarmClearEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmClearEvent__ctor.htm\u0000137","AlarmEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmEvent__ctor.htm\u0000137","AsyncAGIEvent Constructor\u0000html/M_AsterNET_Manager_Event_AsyncAGIEvent__ctor.htm\u0000137","AttendedTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_AttendedTransferEvent__ctor.htm\u0000137","BlindTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_BlindTransferEvent__ctor.htm\u0000137","BridgeActivityEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeActivityEvent__ctor.htm\u0000137","BridgeCreateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeCreateEvent__ctor.htm\u0000137","BridgeDestroyEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeDestroyEvent__ctor.htm\u0000137","BridgeEnterEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEnterEvent__ctor.htm\u0000137","BridgeEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_BridgeEvent_ParseSpecial.htm\u0000231","BridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEvent__ctor.htm\u0000137","BridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeLeaveEvent__ctor.htm\u0000137","BridgeStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeStateEvent__ctor.htm\u0000137","CdrEvent Constructor\u0000html/M_AsterNET_Manager_Event_CdrEvent__ctor.htm\u0000137","ChannelReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelReloadEvent__ctor.htm\u0000137","ChannelUpdateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelUpdateEvent__ctor.htm\u0000134","ConfbridgeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeEndEvent__ctor.htm\u0000137","ConfbridgeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeJoinEvent__ctor.htm\u0000137","ConfbridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeLeaveEvent__ctor.htm\u0000137","ConfbridgeListCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListCompleteEvent__ctor.htm\u0000137","ConfbridgeListEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListEvent__ctor.htm\u0000137","ConfbridgeListRoomsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent__ctor.htm\u0000137","ConfbridgeListRoomsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsEvent__ctor.htm\u0000137","ConfbridgeStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeStartEvent__ctor.htm\u0000137","ConfbridgeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeTalkingEvent__ctor.htm\u0000137","ConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectEvent__ctor.htm\u0000137","ConnectionStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectionStateEvent__ctor.htm\u0000137","DBGetResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_DBGetResponseEvent__ctor.htm\u0000137","DialBeginEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialBeginEvent__ctor.htm\u0000134","DialEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEndEvent__ctor.htm\u0000134","DialEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEvent__ctor.htm\u0000134","DisconnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_DisconnectEvent__ctor.htm\u0000137","DNDStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_DNDStateEvent__ctor.htm\u0000134","DTMFEvent Constructor\u0000html/M_AsterNET_Manager_Event_DTMFEvent__ctor.htm\u0000134","ExtensionStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_ExtensionStatusEvent__ctor.htm\u0000137","FailedACLEvent Constructor\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000088","FailedACLEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor_1.htm\u0000142","FaxReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_FaxReceivedEvent__ctor.htm\u0000137","HangupEvent Constructor\u0000html/M_AsterNET_Manager_Event_HangupEvent__ctor.htm\u0000137","HoldedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldedCallEvent__ctor.htm\u0000137","HoldEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldEvent__ctor.htm\u0000137","JabberEvent Constructor\u0000html/M_AsterNET_Manager_Event_JabberEvent__ctor.htm\u0000137","JitterBufStatsEvent Constructor\u0000html/M_AsterNET_Manager_Event_JitterBufStatsEvent__ctor.htm\u0000137","JoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_JoinEvent__ctor.htm\u0000137","LeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_LeaveEvent__ctor.htm\u0000137","LinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_LinkEvent__ctor.htm\u0000137","LogChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_LogChannelEvent__ctor.htm\u0000137","ManagerEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_Parse.htm\u0000179","ManagerEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ParseSpecial.htm\u0000231","ManagerEvent.ToString Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ToString.htm\u0000117","ManagerEvent Constructor\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000089","ManagerEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor_1.htm\u0000119","MeetmeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeEndEvent__ctor.htm\u0000137","MeetmeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeJoinEvent__ctor.htm\u0000137","MeetmeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeLeaveEvent__ctor.htm\u0000137","MeetmeMuteEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeMuteEvent__ctor.htm\u0000137","MeetmeStopTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeStopTalkingEvent__ctor.htm\u0000137","MeetmeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkingEvent__ctor.htm\u0000137","MeetmeTalkRequestEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkRequestEvent__ctor.htm\u0000137","MessageWaitingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MessageWaitingEvent__ctor.htm\u0000137","MobileStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_MobileStatusEvent__ctor.htm\u0000137","ModuleLoadReportEvent Constructor\u0000html/M_AsterNET_Manager_Event_ModuleLoadReportEvent__ctor.htm\u0000137","MonitorStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStartEvent__ctor.htm\u0000137","MonitorStopEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStopEvent__ctor.htm\u0000137","NewAccountCodeEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewAccountCodeEvent__ctor.htm\u0000137","NewCallerIdEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewCallerIdEvent__ctor.htm\u0000137","NewChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewChannelEvent__ctor.htm\u0000137","NewExtenEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewExtenEvent__ctor.htm\u0000137","NewStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewStateEvent__ctor.htm\u0000137","OriginateResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_OriginateResponseEvent__ctor.htm\u0000137","ParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallEvent__ctor.htm\u0000137","ParkedCallGiveUpEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallGiveUpEvent__ctor.htm\u0000137","ParkedCallsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallsCompleteEvent__ctor.htm\u0000137","ParkedCallTimeOutEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallTimeOutEvent__ctor.htm\u0000137","PeerEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerEntryEvent__ctor.htm\u0000134","PeerlistCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerlistCompleteEvent__ctor.htm\u0000137","PeerStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerStatusEvent__ctor.htm\u0000137","PRIEvent Constructor\u0000html/M_AsterNET_Manager_Event_PRIEvent__ctor.htm\u0000134","QueueCallerAbandonEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerAbandonEvent__ctor.htm\u0000134","QueueCallerJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerJoinEvent__ctor.htm\u0000137","QueueCallerLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerLeaveEvent__ctor.htm\u0000137","QueueEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEntryEvent__ctor.htm\u0000137","QueueEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEvent__ctor.htm\u0000137","QueueMemberAddedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm\u0000114","QueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberEvent__ctor.htm\u0000137","QueueMemberPausedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm\u0000114","QueueMemberPauseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm\u0000114","QueueMemberPenaltyEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm\u0000114","QueueMemberRemovedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm\u0000114","QueueMemberRinginuseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm\u0000114","QueueMemberStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm\u0000114","QueueParamsEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueParamsEvent__ctor.htm\u0000137","QueueStatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueStatusCompleteEvent__ctor.htm\u0000137","RegistryEvent Constructor\u0000html/M_AsterNET_Manager_Event_RegistryEvent__ctor.htm\u0000137","ReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ReloadEvent__ctor.htm\u0000137","RenameEvent Constructor\u0000html/M_AsterNET_Manager_Event_RenameEvent__ctor.htm\u0000137","ResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_ResponseEvent__ctor.htm\u0000137","RTCPReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPReceivedEvent__ctor.htm\u0000137","RTCPSentEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPSentEvent__ctor.htm\u0000137","RTPReceiverStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPReceiverStatEvent__ctor.htm\u0000137","RTPSenderStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPSenderStatEvent__ctor.htm\u0000137","ShowDialPlanCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShowDialPlanCompleteEvent__ctor.htm\u0000137","ShutdownEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShutdownEvent__ctor.htm\u0000137","StatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusCompleteEvent__ctor.htm\u0000137","StatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusEvent__ctor.htm\u0000137","TransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_TransferEvent__ctor.htm\u0000137","UnholdEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnholdEvent__ctor.htm\u0000134","UnknownEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnknownEvent__ctor.htm\u0000134","UnlinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm\u0000137","UnparkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnparkedCallEvent__ctor.htm\u0000137","UserEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_UserEvent_Parse.htm\u0000255","UserEvent Constructor\u0000html/M_AsterNET_Manager_Event_UserEvent__ctor.htm\u0000137","VarSetEvent Constructor\u0000html/M_AsterNET_Manager_Event_VarSetEvent__ctor.htm\u0000137","ZapShowChannelsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent__ctor.htm\u0000137","ZapShowChannelsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsEvent__ctor.htm\u0000137","IResponseHandler.Free Method\u0000html/M_AsterNET_Manager_IResponseHandler_Free.htm\u000090","IResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_IResponseHandler_HandleResponse.htm\u0000114","ManagerConnection.BuildAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction.htm\u0000185","ManagerConnection.BuildAction Method (ManagerAction, String)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction_1.htm\u0000246","ManagerConnection.connect Method\u0000html/M_AsterNET_Manager_ManagerConnection_connect.htm\u0000117","ManagerConnection.determineVersion Method\u0000html/M_AsterNET_Manager_ManagerConnection_determineVersion.htm\u0000117","ManagerConnection.GetProtocolIdentifier Method\u0000html/M_AsterNET_Manager_ManagerConnection_GetProtocolIdentifier.htm\u0000119","ManagerConnection.IsConnected Method\u0000html/M_AsterNET_Manager_ManagerConnection_IsConnected.htm\u0000118","ManagerConnection.Login Method\u0000html/M_AsterNET_Manager_ManagerConnection_Login.htm\u0000119","ManagerConnection.Login Method (Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_Login_1.htm\u0000142","ManagerConnection.Logoff Method\u0000html/M_AsterNET_Manager_ManagerConnection_Logoff.htm\u000089","ManagerConnection.RegisterUserEventClass Method\u0000html/M_AsterNET_Manager_ManagerConnection_RegisterUserEventClass.htm\u0000131","ManagerConnection.SendAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction.htm\u0000171","ManagerConnection.SendAction Method (ManagerAction, ResponseHandler)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_1.htm\u0000249","ManagerConnection.SendAction Method (ManagerAction, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_2.htm\u0000206","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u0000185","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction_1.htm\u0000221","ManagerConnection Constructor\u0000html/M_AsterNET_Manager_ManagerConnection__ctor.htm\u000083","ManagerConnection Constructor (String, Int32, String, String)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_1.htm\u0000233","ManagerConnection Constructor (String, Int32, String, String, Encoding)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_2.htm\u0000295","ManagerException Constructor (String)\u0000html/M_AsterNET_Manager_ManagerException__ctor.htm\u0000119","ManagerException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_ManagerException__ctor_1.htm\u0000155","ManagerReader Constructor\u0000html/M_AsterNET_Manager_ManagerReader__ctor.htm\u0000131","Originate.GetVariable Method\u0000html/M_AsterNET_Manager_Originate_GetVariable.htm\u0000171","Originate.GetVariables Method\u0000html/M_AsterNET_Manager_Originate_GetVariables.htm\u0000153","Originate.SetVariable Method\u0000html/M_AsterNET_Manager_Originate_SetVariable.htm\u0000198","Originate.SetVariables Method\u0000html/M_AsterNET_Manager_Originate_SetVariables.htm\u0000185","Originate Constructor\u0000html/M_AsterNET_Manager_Originate__ctor.htm\u000084","ResponseEventHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_Free.htm\u0000109","ResponseEventHandler.HandleEvent Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleEvent.htm\u0000151","ResponseEventHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleResponse.htm\u0000170","ResponseEventHandler Constructor\u0000html/M_AsterNET_Manager_ResponseEventHandler__ctor.htm\u0000257","ResponseEvents.AddEvent Method\u0000html/M_AsterNET_Manager_ResponseEvents_AddEvent.htm\u0000121","ResponseEvents Constructor\u0000html/M_AsterNET_Manager_ResponseEvents__ctor.htm\u000081","ResponseHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseHandler_Free.htm\u0000109","ResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseHandler_HandleResponse.htm\u0000171","ResponseHandler Constructor\u0000html/M_AsterNET_Manager_ResponseHandler__ctor.htm\u0000192","ChallengeResponse Constructor\u0000html/M_AsterNET_Manager_Response_ChallengeResponse__ctor.htm\u000086","CommandResponse Constructor\u0000html/M_AsterNET_Manager_Response_CommandResponse__ctor.htm\u000086","ExtensionStateResponse Constructor\u0000html/M_AsterNET_Manager_Response_ExtensionStateResponse__ctor.htm\u000086","GetConfigResponse.Lines Method\u0000html/M_AsterNET_Manager_Response_GetConfigResponse_Lines.htm\u0000207","GetConfigResponse Constructor\u0000html/M_AsterNET_Manager_Response_GetConfigResponse__ctor.htm\u000086","MailboxCountResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxCountResponse__ctor.htm\u000086","MailboxStatusResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxStatusResponse__ctor.htm\u000086","ManagerError Constructor\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor.htm\u000085","ManagerError Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor_1.htm\u0000191","ManagerResponse.GetAttribute Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_GetAttribute.htm\u0000268","ManagerResponse.IsSuccess Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_IsSuccess.htm\u0000111","ManagerResponse.Parse Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_Parse.htm\u0000179","ManagerResponse.ParseSpecial Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ParseSpecial.htm\u0000230","ManagerResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ToString.htm\u0000136","ManagerResponse Constructor\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000088","ManagerResponse Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor_1.htm\u0000191","OriginateResponse.CalcDuration Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_CalcDuration.htm\u0000130","OriginateResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_ToString.htm\u0000136","OriginateResponse Constructor\u0000html/M_AsterNET_Manager_Response_OriginateResponse__ctor.htm\u000086","TimeoutException Constructor\u0000html/M_AsterNET_Manager_TimeoutException__ctor.htm\u0000116","MD5Support.GetInstance Method\u0000html/M_AsterNET_Util_MD5Support_GetInstance.htm\u0000115","MD5Support.GetInstance Method (String)\u0000html/M_AsterNET_Util_MD5Support_GetInstance_1.htm\u0000148","MD5Support.Update Method\u0000html/M_AsterNET_Util_MD5Support_Update.htm\u0000148","MD5Support Constructor\u0000html/M_AsterNET_Util_MD5Support__ctor.htm\u0000120","ThreadClass.Interrupt Method\u0000html/M_AsterNET_Util_ThreadClass_Interrupt.htm\u000090","ThreadClass.Run Method\u0000html/M_AsterNET_Util_ThreadClass_Run.htm\u0000102","ThreadClass.Start Method\u0000html/M_AsterNET_Util_ThreadClass_Start.htm\u000096","ThreadClass Constructor\u0000html/M_AsterNET_Util_ThreadClass__ctor.htm\u000086","ThreadClass Constructor (String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_1.htm\u0000119","ThreadClass Constructor (ThreadStart)\u0000html/M_AsterNET_Util_ThreadClass__ctor_2.htm\u0000130","ThreadClass Constructor (ThreadStart, String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_3.htm\u0000163","ThreadPool.AddJob Method\u0000html/M_AsterNET_Util_ThreadPool_AddJob.htm\u0000149","ThreadPool.Shutdown Method\u0000html/M_AsterNET_Util_ThreadPool_Shutdown.htm\u0000109","ThreadPool Constructor\u0000html/M_AsterNET_Util_ThreadPool__ctor.htm\u0000165","AsterNET Namespace\u0000html/N_AsterNET.htm\u000032","AsterNET.FastAGI Namespace\u0000html/N_AsterNET_FastAGI.htm\u0000270","AsterNET.FastAGI.Command Namespace\u0000html/N_AsterNET_FastAGI_Command.htm\u00001586","AsterNET.FastAGI.MappingStrategies Namespace\u0000html/N_AsterNET_FastAGI_MappingStrategies.htm\u0000121","AsterNET.IO Namespace\u0000html/N_AsterNET_IO.htm\u000025","AsterNET.Manager Namespace\u0000html/N_AsterNET_Manager.htm\u00001385","AsterNET.Manager.Action Namespace\u0000html/N_AsterNET_Manager_Action.htm\u00001633","AsterNET.Manager.Event Namespace\u0000html/N_AsterNET_Manager_Event.htm\u00002289","AsterNET.Manager.Response Namespace\u0000html/N_AsterNET_Manager_Response.htm\u0000303","AsterNET.Util Namespace\u0000html/N_AsterNET_Util.htm\u000046","AGIChannel Constructor\u0000html/Overload_AsterNET_FastAGI_AGIChannel__ctor.htm\u000056","AGIException Constructor\u0000html/Overload_AsterNET_FastAGI_AGIException__ctor.htm\u000061","AGIReply Constructor\u0000html/Overload_AsterNET_FastAGI_AGIReply__ctor.htm\u000046","AGIScript.ControlStreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000441","AGIScript.DatabaseDelTree Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u000066","AGIScript.Exec Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_Exec.htm\u000043","AGIScript.GetData Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetData.htm\u0000156","AGIScript.GetFullVariable Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u000077","AGIScript.GetOption Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000132","AGIScript.PlayMusicOnHold Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000041","AGIScript.RecordFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000245","AGIScript.SayAlpha Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u000060","AGIScript.SayDateTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000133","AGIScript.SayDigits Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDigits.htm\u000059","AGIScript.SayNumber Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayNumber.htm\u000058","AGIScript.SayPhonetic Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u000064","AGIScript.SayTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayTime.htm\u000058","AGIScript.SetPriority Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SetPriority.htm\u000051","AGIScript.StreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_StreamFile.htm\u000056","AsteriskFastAGI Constructor\u0000html/Overload_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u0000104","ChannelStatusCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000047","ControlStreamFileCommand.ControlDigits Method\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u000060","ControlStreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000191","DatabaseDelCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u000051","DatabaseDelTreeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u000043","ExecCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u000043","GetDataCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u000078","GetFullVariableCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u000043","GetOptionCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u000058","HangupCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000051","ReceiveCharCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000050","ReceiveTextCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000053","RecordFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u000059","SayAlphaCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u000043","SayDateTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000152","SayDigitsCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u000043","SayNumberCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u000043","SayPhoneticCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u000043","SayTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u000043","SetMusicOnCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000057","SetPriorityCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u000041","StreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u000071","WaitForDigitCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000051","GeneralMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000058","ResourceMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000045","MappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000044","Logger.Debug Method\u0000html/Overload_AsterNET_Logger_Debug.htm\u000041","Logger.Error Method\u0000html/Overload_AsterNET_Logger_Error.htm\u000041","Logger.Info Method\u0000html/Overload_AsterNET_Logger_Info.htm\u000041","Logger.Visible Method\u0000html/Overload_AsterNET_Logger_Visible.htm\u000054","Logger.Warning Method\u0000html/Overload_AsterNET_Logger_Warning.htm\u000041","AbsoluteTimeoutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000048","AgentCallbackLoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000082","AgentLogoffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000060","AOCMessageAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000075","AtxferAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000041","BridgeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000049","ChallengeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000055","ChangeMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000059","CommandAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CommandAction__ctor.htm\u000043","ConfbridgeKickAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000049","ConfbridgeLockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000039","ConfbridgeMuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000049","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000043","ConfbridgeStartRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000151","ConfbridgeStopRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000041","ConfbridgeUnlockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000039","ConfbridgeUnmuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000049","CreateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u000095","DBDelAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000058","DBDelTreeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000055","DBGetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000058","DBPutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000060","EventsAction Constructor\u0000html/Overload_AsterNET_Manager_Action_EventsAction__ctor.htm\u000051","GetConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000041","GetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000065","HangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_HangupAction__ctor.htm\u000046","LoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_LoginAction__ctor.htm\u0000107","MailboxCountAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000053","MailboxStatusAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000049","MonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MonitorAction__ctor.htm\u0000116","ParkAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ParkAction__ctor.htm\u000051","QueueAddAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u0000111","QueueLogAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000049","QueuePauseAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u0000124","QueuePenaltyAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000049","QueueReloadAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000067","QueueRemoveAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000054","QueueResetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000037","QueueRuleAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000045","RedirectAction Constructor\u0000html/Overload_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000090","SetCDRUserFieldAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000090","SetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000078","SIPShowPeerAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000049","StopMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000047","UpdateConfigAction.AddCommand Method\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000123","UpdateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000065","ZapDialOffhookAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000052","ZapDNDOffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000053","ZapDNDOnAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000053","ZapHangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000058","AuthenticationFailedException Constructor\u0000html/Overload_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u000052","AbstractConfbridgeEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000045","FailedACLEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000045","ManagerEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000042","ManagerConnection.BuildAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_BuildAction.htm\u000033","ManagerConnection.Login Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_Login.htm\u000087","ManagerConnection.SendAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendAction.htm\u000052","ManagerConnection.SendEventGeneratingAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u000033","ManagerConnection Constructor\u0000html/Overload_AsterNET_Manager_ManagerConnection__ctor.htm\u000070","ManagerException Constructor\u0000html/Overload_AsterNET_Manager_ManagerException__ctor.htm\u000052","ManagerError Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerError__ctor.htm\u000046","ManagerResponse Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000049","MD5Support.GetInstance Method\u0000html/Overload_AsterNET_Util_MD5Support_GetInstance.htm\u000053","ThreadClass Constructor\u0000html/Overload_AsterNET_Util_ThreadClass__ctor.htm\u000071","AGIChannel Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIChannel.htm\u000037","AGIException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIException.htm\u0000200","AGIHangupException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIHangupException.htm\u0000200","AGINetworkException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGINetworkException.htm\u0000200","AGIReply Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIReply.htm\u0000104","AGIRequest Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIRequest.htm\u0000212","AGIScript Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIScript.htm\u000032","AsteriskFastAGI Properties\u0000html/Properties_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000105","ChannelStatusCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u000033","ControlStreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u000096","DatabaseDelCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u000056","DatabaseDelTreeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u000052","DatabaseGetCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u000044","DatabasePutCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u000060","ExecCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ExecCommand.htm\u000054","GetDataCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000108","GetFullVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u000052","GetOptionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u000075","GetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u000033","HangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_HangupCommand.htm\u000042","ReceiveCharCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u000047","ReceiveTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u000047","RecordFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000117","SayAlphaCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u000055","SayDateTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u000097","SayDigitsCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u000055","SayNumberCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u000054","SayPhoneticCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u000054","SayTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u000065","SendImageCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u000040","SendTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u000040","SetAutoHangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u000047","SetCallerIdCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u000039","SetContextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u000044","SetExtensionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u000044","SetMusicOnCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u000045","SetPriorityCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u000058","SetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u000051","StreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u000081","TDDModeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u000072","VerboseCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u000048","WaitForDigitCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u000048","InvalidCommandSyntaxException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000228","InvalidOrUnknownCommandException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000200","ResourceMappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u000033","ScriptMapping Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u000081","MappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategy.htm\u000032","SocketConnection Properties\u0000html/Properties_T_AsterNET_IO_SocketConnection.htm\u000048","AbsoluteTimeoutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000159","AgentCallbackLoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000280","AgentLogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000175","AgentsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentsAction.htm\u0000138","AgiAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgiAction.htm\u0000140","AOCMessageAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000138","AtxferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AtxferAction.htm\u0000146","BridgeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_BridgeAction.htm\u0000127","ChallengeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000155","ChangeMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000174","CommandAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CommandAction.htm\u0000151","ConfbridgeKickAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000126","ConfbridgeListAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000125","ConfbridgeListRoomsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000124","ConfbridgeLockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000125","ConfbridgeMuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000126","ConfbridgeSetSingleVideoSrcAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000126","ConfbridgeStartRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000125","ConfbridgeStopRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000125","ConfbridgeUnlockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000125","ConfbridgeUnmuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000126","CoreSettingsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000124","CoreShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000124","CoreStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000124","CreateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000125","DBDelAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelAction.htm\u0000148","DBDelTreeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000148","DBGetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBGetAction.htm\u0000144","DBPutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBPutAction.htm\u0000152","EventsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_EventsAction.htm\u0000199","ExtensionStateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000161","GetConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000138","GetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetVarAction.htm\u0000176","HangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_HangupAction.htm\u0000149","LoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LoginAction.htm\u0000288","LogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LogoffAction.htm\u0000138","MailboxCountAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000183","MailboxStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000222","ManagerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerAction.htm\u0000110","ManagerActionEvent Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000138","ManagerActionResponse Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000138","MonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MonitorAction.htm\u0000243","OriginateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_OriginateAction.htm\u0000479","ParkAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkAction.htm\u0000183","ParkedCallsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000138","PingAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_PingAction.htm\u0000138","ProxyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ProxyAction.htm\u0000138","QueueAddAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000266","QueueLogAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000129","QueuePauseAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000199","QueuePenaltyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000127","QueueReloadAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000128","QueueRemoveAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000166","QueueResetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000125","QueueRuleAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000125","QueueStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000152","RedirectAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_RedirectAction.htm\u0000172","SetCDRUserFieldAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000210","SetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetVarAction.htm\u0000166","SIPPeersAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000124","SIPShowPeerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000140","StatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StatusAction.htm\u0000138","StopMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000155","UpdateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000235","ZapDialOffhookAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000166","ZapDNDOffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000158","ZapDNDOnAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000158","ZapHangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000155","ZapShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000138","ZapTransferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000155","AuthenticationFailedException Properties\u0000html/Properties_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000200","EventTimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_EventTimeoutException.htm\u0000257","AbstractAgentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000396","AbstractAgentVariables Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000360","AbstractChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000395","AbstractConfbridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000334","AbstractMeetmeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000341","AbstractParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000382","AbstractQueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000682","AgentCallbackLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000346","AgentCallbackLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000392","AgentCalledEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000400","AgentCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000457","AgentConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000449","AgentDumpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000417","AgentLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000346","AgentLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000346","AgentsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000376","AgentsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000528","AGIExecEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000338","AlarmClearEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000333","AlarmEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000358","AsyncAGIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000337","AttendedTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000399","BlindTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000368","BridgeActivityEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000350","BridgeCreateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000381","BridgeDestroyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000381","BridgeEnterEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000469","BridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000359","BridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000469","BridgeStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000339","CdrEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_CdrEvent.htm\u0000349","ChannelReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000355","ChannelUpdateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000356","ConfbridgeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000341","ConfbridgeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000343","ConfbridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000343","ConfbridgeListCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000376","ConfbridgeListEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000345","ConfbridgeListRoomsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000376","ConfbridgeListRoomsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000344","ConfbridgeStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000341","ConfbridgeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000342","ConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000355","ConnectionStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000339","DBGetResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000415","DialBeginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000470","DialEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000471","DialEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEvent.htm\u0000400","DisconnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000346","DNDStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000387","DTMFEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000337","ExtensionStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000364","FailedACLEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000336","FaxReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000516","HangupEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HangupEvent.htm\u0000478","HoldedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000397","HoldEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldEvent.htm\u0000334","JabberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JabberEvent.htm\u0000335","JitterBufStatsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000349","JoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JoinEvent.htm\u0000457","LeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000382","LinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LinkEvent.htm\u0000429","LogChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000365","ManagerEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000277","MeetmeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000355","MeetmeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000357","MeetmeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000358","MeetmeMuteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000356","MeetmeStopTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000355","MeetmeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000356","MeetmeTalkRequestEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000356","MessageWaitingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000400","MobileStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000335","ModuleLoadReportEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000336","MonitorStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000333","MonitorStopEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000333","NewAccountCodeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000335","NewCallerIdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000377","NewChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000458","NewExtenEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000396","NewStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000458","OriginateResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000383","ParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000459","ParkedCallGiveUpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000410","ParkedCallsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000376","ParkedCallTimeOutEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000410","PeerEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000461","PeerlistCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000388","PeerStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000520","PRIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PRIEvent.htm\u0000337","QueueCallerAbandonEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000337","QueueCallerJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000383","QueueCallerLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000383","QueueEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000439","QueueEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEvent.htm\u0000368","QueueMemberAddedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000695","QueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000607","QueueMemberPausedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000747","QueueMemberPauseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000788","QueueMemberPenaltyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000754","QueueMemberRemovedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000776","QueueMemberRinginuseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u0000765","QueueMemberStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000665","QueueParamsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000549","QueueStatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000376","RegistryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000514","ReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000392","RenameEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RenameEvent.htm\u0000353","ResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000362","RTCPReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000345","RTCPSentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000345","RTPReceiverStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000339","RTPSenderStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000339","ShowDialPlanCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000338","ShutdownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000407","StatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000377","StatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusEvent.htm\u0000440","TransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_TransferEvent.htm\u0000346","UnholdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000333","UnknownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000333","UnlinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000429","UnparkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000423","UserEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UserEvent.htm\u0000334","VarSetEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000352","ZapShowChannelsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000376","ZapShowChannelsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000420","IResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_IResponseHandler.htm\u000033","ManagerConnection Properties\u0000html/Properties_T_AsterNET_Manager_ManagerConnection.htm\u0000383","ManagerException Properties\u0000html/Properties_T_AsterNET_Manager_ManagerException.htm\u0000200","Originate Properties\u0000html/Properties_T_AsterNET_Manager_Originate.htm\u0000255","ResponseEventHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEventHandler.htm\u000034","ResponseEvents Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEvents.htm\u000042","ResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseHandler.htm\u000034","ChallengeResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000368","CommandResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_CommandResponse.htm\u0000369","ExtensionStateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000357","GetConfigResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000364","MailboxCountResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000385","MailboxStatusResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000388","ManagerError Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerError.htm\u0000353","ManagerResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000297","OriginateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_OriginateResponse.htm\u000040","TimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_TimeoutException.htm\u0000200","MD5Support Properties\u0000html/Properties_T_AsterNET_Util_MD5Support.htm\u000042","ThreadClass Properties\u0000html/Properties_T_AsterNET_Util_ThreadClass.htm\u000069","AGIChannel.LastReply Property\u0000html/P_AsterNET_FastAGI_AGIChannel_LastReply.htm\u0000108","AGIReply.Extra Property\u0000html/P_AsterNET_FastAGI_AGIReply_Extra.htm\u0000164","AGIReply.FirstLine Property\u0000html/P_AsterNET_FastAGI_AGIReply_FirstLine.htm\u0000118","AGIReply.Lines Property\u0000html/P_AsterNET_FastAGI_AGIReply_Lines.htm\u0000118","AGIReply.ResultCode Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCode.htm\u0000124","AGIReply.ResultCodeAsChar Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCodeAsChar.htm\u0000112","AGIRequest.AccountCode Property\u0000html/P_AsterNET_FastAGI_AGIRequest_AccountCode.htm\u0000112","AGIRequest.CallerId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerId.htm\u0000118","AGIRequest.CallerIdName Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm\u0000118","AGIRequest.CallingAni2 Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm\u0000114","AGIRequest.CallingPres Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingPres.htm\u0000114","AGIRequest.CallingTns Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTns.htm\u0000114","AGIRequest.CallingTon Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTon.htm\u0000114","AGIRequest.Channel Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Channel.htm\u0000116","AGIRequest.Context Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Context.htm\u0000118","AGIRequest.Dnid Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Dnid.htm\u0000118","AGIRequest.Enhanced Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Enhanced.htm\u0000134","AGIRequest.Extension Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Extension.htm\u0000118","AGIRequest.Language Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Language.htm\u0000113","AGIRequest.LocalAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm\u0000135","AGIRequest.LocalPort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalPort.htm\u0000129","AGIRequest.Priority Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Priority.htm\u0000118","AGIRequest.Rdnis Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Rdnis.htm\u0000118","AGIRequest.RemoteAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemoteAddress.htm\u0000135","AGIRequest.RemotePort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemotePort.htm\u0000129","AGIRequest.Request Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Request.htm\u0000118","AGIRequest.RequestURL Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RequestURL.htm\u0000124","AGIRequest.Script Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Script.htm\u0000112","AGIRequest.Type Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Type.htm\u0000128","AGIRequest.UniqueId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_UniqueId.htm\u0000118","AGIScript.Channel Property\u0000html/P_AsterNET_FastAGI_AGIScript_Channel.htm\u0000118","AsteriskFastAGI.BindPort Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_BindPort.htm\u0000120","AsteriskFastAGI.MappingStrategy Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_MappingStrategy.htm\u0000129","AsteriskFastAGI.PoolSize Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_PoolSize.htm\u0000133","AsteriskFastAGI.SocketEncoding Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_SocketEncoding.htm\u0000135","ChannelStatusCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_ChannelStatusCommand_Channel.htm\u0000138","ControlStreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_EscapeDigits.htm\u0000139","ControlStreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_File.htm\u0000132","ControlStreamFileCommand.ForwardDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_ForwardDigit.htm\u0000112","ControlStreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_Offset.htm\u0000126","ControlStreamFileCommand.PauseDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_PauseDigit.htm\u0000113","ControlStreamFileCommand.RewindDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_RewindDigit.htm\u0000111","DatabaseDelCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_Family.htm\u0000136","DatabaseDelCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_KeyTree.htm\u0000130","DatabaseDelTreeCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_Family.htm\u0000132","DatabaseDelTreeCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_KeyTree.htm\u0000130","DatabaseGetCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Family.htm\u0000124","DatabaseGetCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Key.htm\u0000130","DatabasePutCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Family.htm\u0000132","DatabasePutCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Key.htm\u0000130","DatabasePutCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Value.htm\u0000129","ExecCommand.Application Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Application.htm\u0000132","ExecCommand.Options Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Options.htm\u0000132","GetDataCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_File.htm\u0000137","GetDataCommand.MaxDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_MaxDigits.htm\u0000143","GetDataCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_Timeout.htm\u0000150","GetFullVariableCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Channel.htm\u0000130","GetFullVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Variable.htm\u0000132","GetOptionCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_EscapeDigits.htm\u0000134","GetOptionCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_File.htm\u0000132","GetOptionCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_Timeout.htm\u0000134","GetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm\u0000138","HangupCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_HangupCommand_Channel.htm\u0000154","ReceiveCharCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveCharCommand_Timeout.htm\u0000130","ReceiveTextCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveTextCommand_Timeout.htm\u0000130","RecordFileCommand.Beep Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Beep.htm\u0000132","RecordFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_EscapeDigits.htm\u0000134","RecordFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_File.htm\u0000132","RecordFileCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Format.htm\u0000139","RecordFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Offset.htm\u0000124","RecordFileCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Timeout.htm\u0000132","SayAlphaCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_EscapeDigits.htm\u0000135","SayAlphaCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_Text.htm\u0000130","SayDateTimeCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Format.htm\u0000133","SayDateTimeCommand.getEscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_getEscapeDigits.htm\u0000135","SayDateTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Time.htm\u0000145","SayDateTimeCommand.Timezone Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Timezone.htm\u0000133","SayDigitsCommand.Digits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_Digits.htm\u0000130","SayDigitsCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_EscapeDigits.htm\u0000135","SayNumberCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_EscapeDigits.htm\u0000135","SayNumberCommand.Number Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_Number.htm\u0000129","SayPhoneticCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_EscapeDigits.htm\u0000135","SayPhoneticCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_Text.htm\u0000129","SayTimeCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_EscapeDigits.htm\u0000135","SayTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_Time.htm\u0000137","SendImageCommand.Image Property\u0000html/P_AsterNET_FastAGI_Command_SendImageCommand_Image.htm\u0000134","SendTextCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SendTextCommand_Text.htm\u0000134","SetAutoHangupCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SetAutoHangupCommand_Time.htm\u0000142","SetCallerIdCommand.CallerId Property\u0000html/P_AsterNET_FastAGI_Command_SetCallerIdCommand_CallerId.htm\u0000128","SetContextCommand.Context Property\u0000html/P_AsterNET_FastAGI_Command_SetContextCommand_Context.htm\u0000133","SetExtensionCommand.Extension Property\u0000html/P_AsterNET_FastAGI_Command_SetExtensionCommand_Extension.htm\u0000142","SetMusicOnCommand.MusicOnHoldClass Property\u0000html/P_AsterNET_FastAGI_Command_SetMusicOnCommand_MusicOnHoldClass.htm\u0000150","SetPriorityCommand.Label Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Label.htm\u0000133","SetPriorityCommand.Priority Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Priority.htm\u0000129","SetVariableCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Value.htm\u0000129","SetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Variable.htm\u0000132","StreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_EscapeDigits.htm\u0000135","StreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_File.htm\u0000145","StreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_Offset.htm\u0000126","TDDModeCommand.Mode Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Mode.htm\u0000111","TDDModeCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Timeout.htm\u0000140","VerboseCommand.Level Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Level.htm\u0000123","VerboseCommand.Message Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Message.htm\u0000129","WaitForDigitCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_WaitForDigitCommand_Timeout.htm\u0000134","InvalidCommandSyntaxException.Synopsis Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Synopsis.htm\u0000128","InvalidCommandSyntaxException.Usage Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Usage.htm\u0000128","ResourceMappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_ResourceBundleName.htm\u0000124","ScriptMapping.PreLoadedAssembly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_PreLoadedAssembly.htm\u0000138","ScriptMapping.ScriptAssmebly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptAssmebly.htm\u0000150","ScriptMapping.ScriptClass Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptClass.htm\u0000130","ScriptMapping.ScriptName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptName.htm\u0000131","MappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategy_ResourceBundleName.htm\u0000121","SocketConnection.Encoding Property\u0000html/P_AsterNET_IO_SocketConnection_Encoding.htm\u0000118","SocketConnection.Initial Property\u0000html/P_AsterNET_IO_SocketConnection_Initial.htm\u0000129","SocketConnection.IsConnected Property\u0000html/P_AsterNET_IO_SocketConnection_IsConnected.htm\u0000107","SocketConnection.LocalAddress Property\u0000html/P_AsterNET_IO_SocketConnection_LocalAddress.htm\u0000118","SocketConnection.LocalPort Property\u0000html/P_AsterNET_IO_SocketConnection_LocalPort.htm\u0000114","SocketConnection.NetworkStream Property\u0000html/P_AsterNET_IO_SocketConnection_NetworkStream.htm\u0000118","SocketConnection.RemoteAddress Property\u0000html/P_AsterNET_IO_SocketConnection_RemoteAddress.htm\u0000118","SocketConnection.RemotePort Property\u0000html/P_AsterNET_IO_SocketConnection_RemotePort.htm\u0000114","SocketConnection.TcpClient Property\u0000html/P_AsterNET_IO_SocketConnection_TcpClient.htm\u0000118","AbsoluteTimeoutAction.Action Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Action.htm\u0000131","AbsoluteTimeoutAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Channel.htm\u0000130","AbsoluteTimeoutAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Timeout.htm\u0000127","AgentCallbackLoginAction.AckCall Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_AckCall.htm\u0000165","AgentCallbackLoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Action.htm\u0000131","AgentCallbackLoginAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Agent.htm\u0000145","AgentCallbackLoginAction.Context Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Context.htm\u0000134","AgentCallbackLoginAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Exten.htm\u0000137","AgentCallbackLoginAction.WrapupTime Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_WrapupTime.htm\u0000157","AgentLogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Action.htm\u0000136","AgentLogoffAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Agent.htm\u0000168","AgentLogoffAction.Soft Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Soft.htm\u0000155","AgentsAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentsAction_Action.htm\u0000131","AgiAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Action.htm\u0000131","AgiAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Channel.htm\u0000138","AgiAction.Command Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Command.htm\u0000138","AOCMessageAction.Action Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Action.htm\u0000133","AOCMessageAction.AocBillingId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_AocBillingId.htm\u0000138","AOCMessageAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Channel.htm\u0000138","AOCMessageAction.ChannelPrefix Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChannelPrefix.htm\u0000138","AOCMessageAction.ChargeType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargeType.htm\u0000138","AOCMessageAction.ChargingAssociationId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationId.htm\u0000138","AOCMessageAction.ChargingAssociationNumber Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationNumber.htm\u0000138","AOCMessageAction.ChargingrAssociationPlan Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingrAssociationPlan.htm\u0000138","AOCMessageAction.CurrencyAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyAmount.htm\u0000138","AOCMessageAction.CurrencyMultiplier Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyMultiplier.htm\u0000138","AOCMessageAction.CurrencyName Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyName.htm\u0000138","AOCMessageAction.MsgType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_MsgType.htm\u0000138","AOCMessageAction.TotalType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_TotalType.htm\u0000138","AOCMessageAction.UnitAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitAmount.htm\u0000132","AOCMessageAction.UnitType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitType.htm\u0000132","AtxferAction.Action Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Action.htm\u0000133","AtxferAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Channel.htm\u0000125","AtxferAction.Context Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Context.htm\u0000127","AtxferAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Exten.htm\u0000127","AtxferAction.Priority Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Priority.htm\u0000127","BridgeAction.Action Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Action.htm\u0000133","BridgeAction.Channel1 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel1.htm\u0000138","BridgeAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel2.htm\u0000138","BridgeAction.Tone Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Tone.htm\u0000138","ChallengeAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_Action.htm\u0000131","ChallengeAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_AuthType.htm\u0000138","ChangeMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Action.htm\u0000131","ChangeMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Channel.htm\u0000136","ChangeMonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_File.htm\u0000142","CommandAction.Action Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Action.htm\u0000131","CommandAction.Command Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Command.htm\u0000134","ConfbridgeKickAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Action.htm\u0000133","ConfbridgeKickAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Channel.htm\u0000138","ConfbridgeKickAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Conference.htm\u0000138","ConfbridgeListAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Action.htm\u0000133","ConfbridgeListAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Conference.htm\u0000138","ConfbridgeListRoomsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListRoomsAction_Action.htm\u0000133","ConfbridgeLockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Action.htm\u0000133","ConfbridgeLockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Conference.htm\u0000138","ConfbridgeMuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Action.htm\u0000133","ConfbridgeMuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Channel.htm\u0000138","ConfbridgeMuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Conference.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Action.htm\u0000133","ConfbridgeSetSingleVideoSrcAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Channel.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Conference.htm\u0000138","ConfbridgeStartRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Action.htm\u0000133","ConfbridgeStartRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Conference.htm\u0000138","ConfbridgeStopRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Action.htm\u0000133","ConfbridgeStopRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Conference.htm\u0000138","ConfbridgeUnlockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Action.htm\u0000133","ConfbridgeUnlockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Conference.htm\u0000138","ConfbridgeUnmuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Action.htm\u0000133","ConfbridgeUnmuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Channel.htm\u0000138","ConfbridgeUnmuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Conference.htm\u0000138","CoreSettingsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreSettingsAction_Action.htm\u0000133","CoreShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreShowChannelsAction_Action.htm\u0000133","CoreStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreStatusAction_Action.htm\u0000133","CreateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Action.htm\u0000133","CreateConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Filename.htm\u0000138","DBDelAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Action.htm\u0000133","DBDelAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Family.htm\u0000133","DBDelAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Key.htm\u0000133","DBDelTreeAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Action.htm\u0000133","DBDelTreeAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Family.htm\u0000133","DBDelTreeAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Key.htm\u0000133","DBGetAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Action.htm\u0000133","DBGetAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Family.htm\u0000135","DBGetAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Key.htm\u0000133","DBPutAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Action.htm\u0000133","DBPutAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Family.htm\u0000132","DBPutAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Key.htm\u0000130","DBPutAction.Val Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Val.htm\u0000129","EventsAction.Action Property\u0000html/P_AsterNET_Manager_Action_EventsAction_Action.htm\u0000131","EventsAction.EventMask Property\u0000html/P_AsterNET_Manager_Action_EventsAction_EventMask.htm\u0000182","ExtensionStateAction.Action Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Action.htm\u0000131","ExtensionStateAction.Context Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Context.htm\u0000136","ExtensionStateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Exten.htm\u0000129","GetConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Action.htm\u0000124","GetConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Filename.htm\u0000128","GetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Action.htm\u0000131","GetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Channel.htm\u0000148","GetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Variable.htm\u0000132","HangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Action.htm\u0000131","HangupAction.Channel Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Channel.htm\u0000132","LoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Action.htm\u0000131","LoginAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_LoginAction_AuthType.htm\u0000158","LoginAction.Events Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Events.htm\u0000182","LoginAction.Key Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Key.htm\u0000127","LoginAction.Secret Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Secret.htm\u0000155","LoginAction.Username Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Username.htm\u0000133","LogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_LogoffAction_Action.htm\u0000131","MailboxCountAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Action.htm\u0000131","MailboxCountAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Mailbox.htm\u0000166","MailboxStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Action.htm\u0000131","MailboxStatusAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Mailbox.htm\u0000205","ManagerAction.Action Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Action.htm\u0000124","ManagerAction.ActionId Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ActionId.htm\u0000138","ManagerAction.ProxyKey Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ProxyKey.htm\u0000151","ManagerAction.Server Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Server.htm\u0000182","MonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Action.htm\u0000131","MonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Channel.htm\u0000137","MonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_File.htm\u0000166","MonitorAction.Format Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Format.htm\u0000147","MonitorAction.Mix Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Mix.htm\u0000133","OriginateAction.Account Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Account.htm\u0000155","OriginateAction.Action Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Action.htm\u0000131","OriginateAction.Application Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Application.htm\u0000135","OriginateAction.Async Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Async.htm\u0000153","OriginateAction.CallerId Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_CallerId.htm\u0000134","OriginateAction.Channel Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Channel.htm\u0000148","OriginateAction.Context Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Context.htm\u0000152","OriginateAction.Data Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Data.htm\u0000147","OriginateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Exten.htm\u0000146","OriginateAction.Priority Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Priority.htm\u0000150","OriginateAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Timeout.htm\u0000164","OriginateAction.Variable Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Variable.htm\u0000289","ParkAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Action.htm\u0000131","ParkAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel.htm\u0000129","ParkAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel2.htm\u0000137","ParkAction.Parkinglot Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Parkinglot.htm\u0000127","ParkAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Timeout.htm\u0000136","ParkedCallsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkedCallsAction_Action.htm\u0000131","PingAction.Action Property\u0000html/P_AsterNET_Manager_Action_PingAction_Action.htm\u0000131","QueueAddAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Action.htm\u0000131","QueueAddAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Interface.htm\u0000153","QueueAddAction.MemberName Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_MemberName.htm\u0000129","QueueAddAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Paused.htm\u0000139","QueueAddAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Penalty.htm\u0000158","QueueAddAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Queue.htm\u0000142","QueueLogAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Action.htm\u0000133","QueueLogAction.Event Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Event.htm\u0000138","QueueLogAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Interface.htm\u0000138","QueueLogAction.Message Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Message.htm\u0000138","QueueLogAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Queue.htm\u0000138","QueueLogAction.Uniqueid Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Uniqueid.htm\u0000138","QueuePauseAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Action.htm\u0000131","QueuePauseAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Interface.htm\u0000140","QueuePauseAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Paused.htm\u0000139","QueuePauseAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Queue.htm\u0000139","QueuePenaltyAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Action.htm\u0000133","QueuePenaltyAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Interface.htm\u0000138","QueuePenaltyAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Penalty.htm\u0000138","QueuePenaltyAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Queue.htm\u0000138","QueueReloadAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Action.htm\u0000133","QueueReloadAction.Members Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Members.htm\u0000138","QueueReloadAction.Parameters Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Parameters.htm\u0000138","QueueReloadAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Queue.htm\u0000138","QueueReloadAction.Rules Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Rules.htm\u0000138","QueueRemoveAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Action.htm\u0000131","QueueRemoveAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Interface.htm\u0000134","QueueRemoveAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Queue.htm\u0000136","QueueResetAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Action.htm\u0000133","QueueResetAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Queue.htm\u0000138","QueueRuleAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Action.htm\u0000133","QueueRuleAction.Rule Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Rule.htm\u0000138","QueueStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Action.htm\u0000131","QueueStatusAction.Member Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Member.htm\u0000128","QueueStatusAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Queue.htm\u0000128","RedirectAction.Action Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Action.htm\u0000131","RedirectAction.Channel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Channel.htm\u0000138","RedirectAction.Context Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Context.htm\u0000128","RedirectAction.Exten Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Exten.htm\u0000128","RedirectAction.ExtraChannel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_ExtraChannel.htm\u0000133","RedirectAction.Priority Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Priority.htm\u0000122","SetCDRUserFieldAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Action.htm\u0000131","SetCDRUserFieldAction.Append Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Append.htm\u0000146","SetCDRUserFieldAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Channel.htm\u0000142","SetCDRUserFieldAction.UserField Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_UserField.htm\u0000141","SetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Action.htm\u0000131","SetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Channel.htm\u0000130","SetVarAction.Value Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Value.htm\u0000129","SetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Variable.htm\u0000132","SIPPeersAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPPeersAction_Action.htm\u0000133","SIPShowPeerAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Action.htm\u0000133","SIPShowPeerAction.Peer Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Peer.htm\u0000137","StatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_StatusAction_Action.htm\u0000131","StopMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Action.htm\u0000131","StopMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Channel.htm\u0000138","UpdateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Action.htm\u0000124","UpdateConfigAction.Actions Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Actions.htm\u0000207","UpdateConfigAction.DstFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_DstFileName.htm\u0000128","UpdateConfigAction.Reload Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Reload.htm\u0000155","UpdateConfigAction.SrcFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_SrcFileName.htm\u0000128","ZapDialOffhookAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Action.htm\u0000131","ZapDialOffhookAction.Number Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Number.htm\u0000134","ZapDialOffhookAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_ZapChannel.htm\u0000130","ZapDNDOffAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_Action.htm\u0000131","ZapDNDOffAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_ZapChannel.htm\u0000135","ZapDNDOnAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_Action.htm\u0000131","ZapDNDOnAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_ZapChannel.htm\u0000135","ZapHangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_Action.htm\u0000131","ZapHangupAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_ZapChannel.htm\u0000132","ZapShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapShowChannelsAction_Action.htm\u0000131","ZapTransferAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_Action.htm\u0000131","ZapTransferAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_ZapChannel.htm\u0000132","EventTimeoutException.PartialResult Property\u0000html/P_AsterNET_Manager_EventTimeoutException_PartialResult.htm\u0000190","AbstractAgentEvent.Member Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Member.htm\u0000131","AbstractAgentEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_MemberName.htm\u0000131","AbstractAgentEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Queue.htm\u0000130","AbstractAgentVariables.Variable Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentVariables_Variable.htm\u0000252","AbstractChannelEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_AccountCode.htm\u0000126","AbstractChannelEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerId.htm\u0000142","AbstractChannelEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdName.htm\u0000138","AbstractChannelEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdNum.htm\u0000142","AbstractChannelEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelState.htm\u0000126","AbstractChannelEvent.ChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelStateDesc.htm\u0000127","AbstractChannelEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ConnectedLineName.htm\u0000138","AbstractChannelEvent.Connectedlinenum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_Connectedlinenum.htm\u0000138","AbstractChannelEvent.State Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_State.htm\u0000138","AbstractConfbridgeEvent.Conference Property\u0000html/P_AsterNET_Manager_Event_AbstractConfbridgeEvent_Conference.htm\u0000138","AbstractMeetmeEvent.Meetme Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Meetme.htm\u0000128","AbstractMeetmeEvent.Usernum Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Usernum.htm\u0000132","AbstractParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerId.htm\u0000133","AbstractParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdName.htm\u0000133","AbstractParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdNum.htm\u0000133","AbstractParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_Exten.htm\u0000134","AbstractQueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm\u0000134","AbstractQueueMemberEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm\u0000137","AbstractQueueMemberEvent.Interface Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm\u0000138","AbstractQueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm\u0000149","AbstractQueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm\u0000158","AbstractQueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_MemberName.htm\u0000137","AbstractQueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Membership.htm\u0000169","AbstractQueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Paused.htm\u0000146","AbstractQueueMemberEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_PausedReason.htm\u0000143","AbstractQueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Penalty.htm\u0000144","AbstractQueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Queue.htm\u0000128","AbstractQueueMemberEvent.Ringinuse Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Ringinuse.htm\u0000131","AbstractQueueMemberEvent.StateInterface Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_StateInterface.htm\u0000142","AbstractQueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Status.htm\u0000148","AgentCallbackLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_Agent.htm\u0000133","AgentCallbackLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Agent.htm\u0000142","AgentCallbackLogoffEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginTime.htm\u0000138","AgentCallbackLogoffEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Reason.htm\u0000174","AgentCalledEvent.AgentCalled Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentCalled.htm\u0000138","AgentCalledEvent.AgentName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentName.htm\u0000138","AgentCalledEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerId.htm\u0000138","AgentCalledEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdName.htm\u0000133","AgentCalledEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdNum.htm\u0000133","AgentCalledEvent.ChannelCalling Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_ChannelCalling.htm\u0000138","AgentCalledEvent.Context Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Context.htm\u0000138","AgentCalledEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_DestinationChannel.htm\u0000138","AgentCalledEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Extension.htm\u0000138","AgentCalledEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Priority.htm\u0000138","AgentCalledEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Queue.htm\u0000138","AgentCompleteEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_HoldTime.htm\u0000131","AgentCompleteEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_Reason.htm\u0000134","AgentCompleteEvent.TalkTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_TalkTime.htm\u0000132","AgentConnectEvent.BridgedChannel Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_BridgedChannel.htm\u0000127","AgentConnectEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_HoldTime.htm\u0000131","AgentConnectEvent.RingTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_RingTime.htm\u0000131","AgentLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_Agent.htm\u0000133","AgentLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_LoginChan.htm\u0000138","AgentLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_Agent.htm\u0000133","AgentLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_LoginTime.htm\u0000138","AgentsEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Agent.htm\u0000127","AgentsEvent.LoggedInChan Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInChan.htm\u0000146","AgentsEvent.LoggedInTime Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInTime.htm\u0000145","AgentsEvent.Name Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Name.htm\u0000130","AgentsEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Status.htm\u0000179","AgentsEvent.TalkingTo Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_TalkingTo.htm\u0000148","AGIExecEvent.Command Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Command.htm\u0000138","AGIExecEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_CommandId.htm\u0000135","AGIExecEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Result.htm\u0000138","AGIExecEvent.ResultCode Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_ResultCode.htm\u0000132","AGIExecEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_SubEvent.htm\u0000138","AlarmEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm\u0000146","AsyncAGIEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_CommandId.htm\u0000138","AsyncAGIEvent.Env Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm\u0000138","AsyncAGIEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Result.htm\u0000138","AsyncAGIEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_SubEvent.htm\u0000138","AttendedTransferEvent.DestBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestBridgeUniqueId.htm\u0000138","AttendedTransferEvent.DestType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestType.htm\u0000138","AttendedTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_IsExternal.htm\u0000132","AttendedTransferEvent.OrigBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeCreator.htm\u0000138","AttendedTransferEvent.OrigBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeName.htm\u0000138","AttendedTransferEvent.OrigBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeNumChannels.htm\u0000138","AttendedTransferEvent.OrigBridgetechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgetechnology.htm\u0000138","AttendedTransferEvent.OrigBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeType.htm\u0000138","AttendedTransferEvent.OrigBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeUniqueId.htm\u0000138","AttendedTransferEvent.OrigTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererAccountCode.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridName.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.OrigTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannel.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelState.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.OrigTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererContext.htm\u0000138","AttendedTransferEvent.OrigTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererLanguage.htm\u0000138","AttendedTransferEvent.OrigTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererPriority.htm\u0000138","AttendedTransferEvent.OrigTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererUniqueId.htm\u0000138","AttendedTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_Result.htm\u0000132","AttendedTransferEvent.SecondBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeCreator.htm\u0000138","AttendedTransferEvent.SecondBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeName.htm\u0000138","AttendedTransferEvent.SecondBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeNumChannels.htm\u0000138","AttendedTransferEvent.SecondBridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeTechnology.htm\u0000138","AttendedTransferEvent.SecondBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeType.htm\u0000138","AttendedTransferEvent.SecondBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeUniqueId.htm\u0000138","AttendedTransferEvent.SecondTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererAccountCode.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridName.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.SecondTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannel.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelState.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.SecondTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererContext.htm\u0000138","AttendedTransferEvent.SecondTransfererExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererExten.htm\u0000138","AttendedTransferEvent.SecondTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererLanguage.htm\u0000138","AttendedTransferEvent.SecondTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererPriority.htm\u0000138","AttendedTransferEvent.SecondTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererUniqueId.htm\u0000138","AttendedTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeAccountCode.htm\u0000138","AttendedTransferEvent.TransfereeCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridName.htm\u0000138","AttendedTransferEvent.TransfereeCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridNum.htm\u0000138","AttendedTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannel.htm\u0000138","AttendedTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelState.htm\u0000138","AttendedTransferEvent.TransfereeChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineName.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeContext.htm\u0000138","AttendedTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeExten.htm\u0000138","AttendedTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeLanguage.htm\u0000138","AttendedTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereePriority.htm\u0000138","AttendedTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeUniqueId.htm\u0000138","AttendedTransferEvent.TransferTargetAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetAccountCode.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridName.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridNum.htm\u0000138","AttendedTransferEvent.TransferTargetChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannel.htm\u0000138","AttendedTransferEvent.TransferTargetChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelState.htm\u0000138","AttendedTransferEvent.TransferTargetChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineName.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransferTargetContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetContext.htm\u0000138","AttendedTransferEvent.TransferTargetLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetLanguage.htm\u0000138","AttendedTransferEvent.TransferTargetPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetPriority.htm\u0000138","AttendedTransferEvent.TransferTargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetUniqueId.htm\u0000138","BlindTransferEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeCreator.htm\u0000138","BlindTransferEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeName.htm\u0000138","BlindTransferEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeNumChannels.htm\u0000138","BlindTransferEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeTechnology.htm\u0000138","BlindTransferEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeType.htm\u0000138","BlindTransferEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeUniqueId.htm\u0000138","BlindTransferEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Context.htm\u0000138","BlindTransferEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Extension.htm\u0000138","BlindTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_IsExternal.htm\u0000138","BlindTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Result.htm\u0000132","BlindTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeAccountCode.htm\u0000138","BlindTransferEvent.TransfereeCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdName.htm\u0000138","BlindTransferEvent.TransfereeCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdNum.htm\u0000138","BlindTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannel.htm\u0000138","BlindTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelState.htm\u0000138","BlindTransferEvent.TransfereeChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelStateDesc.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineName.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeContext.htm\u0000138","BlindTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeExten.htm\u0000138","BlindTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeLanguage.htm\u0000138","BlindTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereePriority.htm\u0000138","BlindTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeUniqueId.htm\u0000138","BlindTransferEvent.TransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererAccountCode.htm\u0000138","BlindTransferEvent.TransfererCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdName.htm\u0000138","BlindTransferEvent.TransfererCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdNum.htm\u0000138","BlindTransferEvent.TransfererChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannel.htm\u0000138","BlindTransferEvent.TransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelState.htm\u0000138","BlindTransferEvent.TransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelStatedesc.htm\u0000138","BlindTransferEvent.TransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineName.htm\u0000138","BlindTransferEvent.TransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfererContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererContext.htm\u0000138","BlindTransferEvent.TransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererLanguage.htm\u0000138","BlindTransferEvent.TransfererPriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererPriority.htm\u0000138","BlindTransferEvent.TransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererUniqueId.htm\u0000138","BridgeActivityEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_AccountCode.htm\u0000138","BridgeActivityEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeCreator.htm\u0000138","BridgeActivityEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeName.htm\u0000138","BridgeActivityEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeNumChannels.htm\u0000138","BridgeActivityEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeTechnology.htm\u0000138","BridgeActivityEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeType.htm\u0000138","BridgeActivityEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeUniqueId.htm\u0000138","BridgeActivityEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdName.htm\u0000138","BridgeActivityEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdNum.htm\u0000138","BridgeActivityEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelState.htm\u0000138","BridgeActivityEvent.ChannelStatedDesc Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelStatedDesc.htm\u0000138","BridgeActivityEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineName.htm\u0000138","BridgeActivityEvent.ConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineNum.htm\u0000138","BridgeActivityEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Context.htm\u0000138","BridgeActivityEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Exten.htm\u0000138","BridgeActivityEvent.Language Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Language.htm\u0000138","BridgeActivityEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Priority.htm\u0000138","BridgeEvent.BridgeState Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeState.htm\u0000139","BridgeEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeType.htm\u0000139","BridgeEvent.CallerId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId1.htm\u0000138","BridgeEvent.CallerId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId2.htm\u0000138","BridgeEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel1.htm\u0000138","BridgeEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel2.htm\u0000138","BridgeEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Reason.htm\u0000138","BridgeEvent.Response Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Response.htm\u0000138","BridgeEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId1.htm\u0000138","BridgeEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId2.htm\u0000138","BridgeStateEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeCreator.htm\u0000138","BridgeStateEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeName.htm\u0000138","BridgeStateEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeNumChannels.htm\u0000132","BridgeStateEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeTechnology.htm\u0000138","BridgeStateEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeType.htm\u0000138","BridgeStateEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeUniqueId.htm\u0000138","CdrEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AccountCode.htm\u0000138","CdrEvent.AmaFlags Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm\u0000138","CdrEvent.AnswerTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AnswerTime.htm\u0000138","CdrEvent.BillableSeconds Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_BillableSeconds.htm\u0000135","CdrEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_CallerId.htm\u0000138","CdrEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Destination.htm\u0000138","CdrEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationChannel.htm\u0000138","CdrEvent.DestinationContext Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationContext.htm\u0000138","CdrEvent.Disposition Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Disposition.htm\u0000138","CdrEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Duration.htm\u0000135","CdrEvent.EndTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_EndTime.htm\u0000138","CdrEvent.LastApplication Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastApplication.htm\u0000138","CdrEvent.LastData Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastData.htm\u0000138","CdrEvent.Src Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Src.htm\u0000138","CdrEvent.StartTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_StartTime.htm\u0000138","CdrEvent.UserField Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_UserField.htm\u0000138","ChannelReloadEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ChannelType.htm\u0000131","ChannelReloadEvent.PeerCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_PeerCount.htm\u0000132","ChannelReloadEvent.RegistryCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_RegistryCount.htm\u0000132","ChannelReloadEvent.ReloadReason Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ReloadReason.htm\u0000130","ChannelReloadEvent.UserCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_UserCount.htm\u0000132","ChannelUpdateEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_ChannelType.htm\u0000137","ChannelUpdateEvent.GTalkSID Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_GTalkSID.htm\u0000138","ChannelUpdateEvent.IAX2CallnoLocal Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoLocal.htm\u0000138","ChannelUpdateEvent.IAX2CallnoRemote Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoRemote.htm\u0000138","ChannelUpdateEvent.IAX2Peer Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2Peer.htm\u0000138","ChannelUpdateEvent.PeerName Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_PeerName.htm\u0000138","ChannelUpdateEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipCallId.htm\u0000138","ChannelUpdateEvent.SipFullContact Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipFullContact.htm\u0000138","ConfbridgeJoinEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDname.htm\u0000138","ConfbridgeJoinEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDnum.htm\u0000138","ConfbridgeLeaveEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDname.htm\u0000138","ConfbridgeLeaveEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDnum.htm\u0000138","ConfbridgeListEvent.Admin Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_Admin.htm\u0000138","ConfbridgeListEvent.CallerIDName Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDName.htm\u0000138","ConfbridgeListEvent.CallerIDNum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDNum.htm\u0000138","ConfbridgeListEvent.MarkedUser Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_MarkedUser.htm\u0000138","ConfbridgeListRoomsEvent.Locked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Locked.htm\u0000138","ConfbridgeListRoomsEvent.Marked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Marked.htm\u0000132","ConfbridgeListRoomsEvent.Parties Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Parties.htm\u0000132","ConfbridgeTalkingEvent.TalkingStatus Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeTalkingEvent_TalkingStatus.htm\u0000138","ConnectEvent.ProtocolIdentifier Property\u0000html/P_AsterNET_Manager_Event_ConnectEvent_ProtocolIdentifier.htm\u0000130","ConnectionStateEvent.Reconnect Property\u0000html/P_AsterNET_Manager_Event_ConnectionStateEvent_Reconnect.htm\u0000121","DBGetResponseEvent.Family Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Family.htm\u0000134","DBGetResponseEvent.Key Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Key.htm\u0000134","DBGetResponseEvent.Val Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Val.htm\u0000134","DialEndEvent.Forward Property\u0000html/P_AsterNET_Manager_Event_DialEndEvent_Forward.htm\u0000138","DialEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerId.htm\u0000128","DialEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdName.htm\u0000129","DialEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdNum.htm\u0000129","DialEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Destination.htm\u0000131","DialEvent.DestUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DestUniqueId.htm\u0000132","DialEvent.DialStatus Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialStatus.htm\u0000138","DialEvent.DialString Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialString.htm\u0000138","DialEvent.Src Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Src.htm\u0000130","DialEvent.SrcUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SrcUniqueId.htm\u0000132","DialEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SubEvent.htm\u0000138","DNDStateEvent.State Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_State.htm\u0000148","DNDStateEvent.Status Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_Status.htm\u0000148","DTMFEvent.Begin Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Begin.htm\u0000132","DTMFEvent.Digit Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Digit.htm\u0000138","DTMFEvent.Direction Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Direction.htm\u0000138","DTMFEvent.End Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_End.htm\u0000132","ExtensionStatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Context.htm\u0000130","ExtensionStatusEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Exten.htm\u0000127","ExtensionStatusEvent.Hint Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Hint.htm\u0000128","ExtensionStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Status.htm\u0000124","FailedACLEvent.ACLName Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_ACLName.htm\u0000138","FailedACLEvent.LocalAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_LocalAddress.htm\u0000138","FailedACLEvent.RemoteAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_RemoteAddress.htm\u0000138","FaxReceivedEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_CallerId.htm\u0000138","FaxReceivedEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Exten.htm\u0000133","FaxReceivedEvent.Filename Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Filename.htm\u0000139","FaxReceivedEvent.LocalStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_LocalStationId.htm\u0000132","FaxReceivedEvent.PagesTransferred Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_PagesTransferred.htm\u0000124","FaxReceivedEvent.RemoteStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_RemoteStationId.htm\u0000132","FaxReceivedEvent.Resolution Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Resolution.htm\u0000126","FaxReceivedEvent.TransferRate Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_TransferRate.htm\u0000125","HangupEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_Cause.htm\u0000124","HangupEvent.CauseTxt Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_CauseTxt.htm\u0000132","HoldedCallEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel1.htm\u0000137","HoldedCallEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel2.htm\u0000136","HoldedCallEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId1.htm\u0000138","HoldedCallEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId2.htm\u0000137","HoldEvent.Status Property\u0000html/P_AsterNET_Manager_Event_HoldEvent_Status.htm\u0000138","JabberEvent.Account Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Account.htm\u0000138","JabberEvent.Packet Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Packet.htm\u0000138","JitterBufStatsEvent.LocalDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalDropped.htm\u0000132","JitterBufStatsEvent.LocalJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJBDelay.htm\u0000132","JitterBufStatsEvent.LocalJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJitter.htm\u0000132","JitterBufStatsEvent.LocalLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalLossPercent.htm\u0000132","JitterBufStatsEvent.Localooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Localooo.htm\u0000132","JitterBufStatsEvent.LocalReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalReceived.htm\u0000132","JitterBufStatsEvent.LocalTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalTotalLost.htm\u0000132","JitterBufStatsEvent.Owner Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Owner.htm\u0000138","JitterBufStatsEvent.Ping Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Ping.htm\u0000132","JitterBufStatsEvent.RemoteDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteDropped.htm\u0000132","JitterBufStatsEvent.RemoteJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJBDelay.htm\u0000132","JitterBufStatsEvent.RemoteJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJitter.htm\u0000132","JitterBufStatsEvent.RemoteLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteLossPercent.htm\u0000132","JitterBufStatsEvent.Remoteooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Remoteooo.htm\u0000132","JitterBufStatsEvent.RemoteReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteReceived.htm\u0000132","JitterBufStatsEvent.RemoteTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteTotalLost.htm\u0000132","JoinEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerId.htm\u0000152","JoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerIdName.htm\u0000152","JoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_Position.htm\u0000128","LogChannelEvent.Enabled Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Enabled.htm\u0000126","LogChannelEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Reason.htm\u0000133","LogChannelEvent.ReasonCode Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_ReasonCode.htm\u0000109","ManagerEvent.Attributes Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Attributes.htm\u0000223","ManagerEvent.Channel Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Channel.htm\u0000130","ManagerEvent.DateReceived Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_DateReceived.htm\u0000153","ManagerEvent.Privilege Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Privilege.htm\u0000172","ManagerEvent.Server Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Server.htm\u0000182","ManagerEvent.Source Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Source.htm\u0000130","ManagerEvent.Timestamp Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Timestamp.htm\u0000159","ManagerEvent.UniqueId Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_UniqueId.htm\u0000131","MeetmeJoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdName.htm\u0000138","MeetmeJoinEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdName.htm\u0000138","MeetmeLeaveEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_Duration.htm\u0000135","MeetmeMuteEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeMuteEvent_Status.htm\u0000132","MeetmeTalkingEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkingEvent_Status.htm\u0000132","MeetmeTalkRequestEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkRequestEvent_Status.htm\u0000132","MessageWaitingEvent.Mailbox Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Mailbox.htm\u0000152","MessageWaitingEvent.New Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_New.htm\u0000127","MessageWaitingEvent.Old Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Old.htm\u0000127","MessageWaitingEvent.Waiting Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Waiting.htm\u0000127","MobileStatusEvent.Device Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Device.htm\u0000138","MobileStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Status.htm\u0000138","ModuleLoadReportEvent.ModuleCount Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleCount.htm\u0000132","ModuleLoadReportEvent.ModuleLoadStatus Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleLoadStatus.htm\u0000138","ModuleLoadReportEvent.ModuleSelection Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleSelection.htm\u0000138","NewAccountCodeEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_AccountCode.htm\u0000138","NewAccountCodeEvent.OldAccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_OldAccountCode.htm\u0000138","NewCallerIdEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerId.htm\u0000129","NewCallerIdEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdName.htm\u0000138","NewCallerIdEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdNum.htm\u0000130","NewCallerIdEvent.CidCallingPres Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPres.htm\u0000140","NewCallerIdEvent.CidCallingPresNumeric Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPresNumeric.htm\u0000107","NewExtenEvent.AppData Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppData.htm\u0000146","NewExtenEvent.AppdEvent Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppdEvent.htm\u0000138","NewExtenEvent.Application Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Application.htm\u0000133","NewExtenEvent.Context Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Context.htm\u0000134","NewExtenEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Extension.htm\u0000127","NewExtenEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Priority.htm\u0000121","OriginateResponseEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerId.htm\u0000138","OriginateResponseEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdName.htm\u0000138","OriginateResponseEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdNum.htm\u0000138","OriginateResponseEvent.Context Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Context.htm\u0000138","OriginateResponseEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Exten.htm\u0000138","OriginateResponseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Reason.htm\u0000132","OriginateResponseEvent.Response Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Response.htm\u0000138","ParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerId.htm\u0000133","ParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdName.htm\u0000133","ParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdNum.htm\u0000133","ParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Exten.htm\u0000132","ParkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_From.htm\u0000134","ParkedCallEvent.Timeout Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Timeout.htm\u0000141","PeerEntryEvent.Acl Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Acl.htm\u0000132","PeerEntryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChannelType.htm\u0000131","PeerEntryEvent.ChanObjectType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChanObjectType.htm\u0000136","PeerEntryEvent.Dynamic Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Dynamic.htm\u0000132","PeerEntryEvent.IpAddress Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpAddress.htm\u0000131","PeerEntryEvent.IpPort Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpPort.htm\u0000132","PeerEntryEvent.NatSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_NatSupport.htm\u0000132","PeerEntryEvent.ObjectName Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ObjectName.htm\u0000138","PeerEntryEvent.RealtimeDevice Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_RealtimeDevice.htm\u0000132","PeerEntryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Status.htm\u0000163","PeerEntryEvent.TextSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_TextSupport.htm\u0000132","PeerEntryEvent.VideoSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_VideoSupport.htm\u0000132","PeerlistCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_PeerlistCompleteEvent_ListItems.htm\u0000127","PeerStatusEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Cause.htm\u0000190","PeerStatusEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_ChannelType.htm\u0000130","PeerStatusEvent.Peer Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Peer.htm\u0000179","PeerStatusEvent.PeerStatus Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_PeerStatus.htm\u0000147","PeerStatusEvent.Time Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Time.htm\u0000163","PRIEvent.DChannel Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_DChannel.htm\u0000138","PRIEvent.PriEvent Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm\u0000138","PRIEvent.PriEventCode Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEventCode.htm\u0000138","PRIEvent.Span Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_Span.htm\u0000138","QueueCallerAbandonEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_HoldTime.htm\u0000132","QueueCallerAbandonEvent.OriginalPosition Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_OriginalPosition.htm\u0000132","QueueCallerAbandonEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Position.htm\u0000132","QueueCallerAbandonEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Queue.htm\u0000138","QueueCallerJoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerJoinEvent_Position.htm\u0000138","QueueCallerLeaveEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerLeaveEvent_Position.htm\u0000138","QueueEntryEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerId.htm\u0000133","QueueEntryEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerIdName.htm\u0000132","QueueEntryEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Position.htm\u0000127","QueueEntryEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Queue.htm\u0000134","QueueEntryEvent.Wait Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Wait.htm\u0000133","QueueEvent.Count Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Count.htm\u0000141","QueueEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Queue.htm\u0000130","QueueMemberAddedEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_CallsTaken.htm\u0000127","QueueMemberAddedEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_LastCall.htm\u0000143","QueueMemberAddedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_MemberName.htm\u0000140","QueueMemberAddedEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Membership.htm\u0000162","QueueMemberAddedEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Paused.htm\u0000143","QueueMemberAddedEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Penalty.htm\u0000137","QueueMemberAddedEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Status.htm\u0000139","QueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_CallsTaken.htm\u0000127","QueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_LastCall.htm\u0000143","QueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Location.htm\u0000141","QueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_MemberName.htm\u0000131","QueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Membership.htm\u0000185","QueueMemberEvent.Name Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Name.htm\u0000131","QueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Paused.htm\u0000132","QueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Penalty.htm\u0000137","QueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Queue.htm\u0000130","QueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Status.htm\u0000173","QueueMemberPausedEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_InCall.htm\u0000124","QueueMemberPausedEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_PausedReason.htm\u0000130","QueueMemberPausedEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_Reason.htm\u0000128","QueueMemberPauseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_Reason.htm\u0000129","QueueMemberPenaltyEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPenaltyEvent_Penalty.htm\u0000125","QueueMemberRemovedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRemovedEvent_MemberName.htm\u0000140","QueueMemberRinginuseEvent.Ringinuse Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRinginuseEvent_Ringinuse.htm\u0000123","QueueMemberStatusEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_CallsTaken.htm\u0000127","QueueMemberStatusEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_InCall.htm\u0000129","QueueMemberStatusEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_LastCall.htm\u0000143","QueueMemberStatusEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_MemberName.htm\u0000140","QueueMemberStatusEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Membership.htm\u0000162","QueueMemberStatusEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Paused.htm\u0000143","QueueMemberStatusEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Penalty.htm\u0000137","QueueMemberStatusEvent.StateInterface Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_StateInterface.htm\u0000134","QueueMemberStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Status.htm\u0000139","QueueParamsEvent.Abandoned Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Abandoned.htm\u0000130","QueueParamsEvent.Calls Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Calls.htm\u0000138","QueueParamsEvent.Completed Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Completed.htm\u0000130","QueueParamsEvent.Holdtime Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Holdtime.htm\u0000138","QueueParamsEvent.Max Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Max.htm\u0000152","QueueParamsEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Queue.htm\u0000130","QueueParamsEvent.ServiceLevel Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevel.htm\u0000139","QueueParamsEvent.ServiceLevelPerf Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevelPerf.htm\u0000152","QueueParamsEvent.Strategy Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Strategy.htm\u0000127","QueueParamsEvent.Weight Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Weight.htm\u0000165","RegistryEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Cause.htm\u0000149","RegistryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_ChannelType.htm\u0000131","RegistryEvent.Domain Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Domain.htm\u0000153","RegistryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Status.htm\u0000190","RegistryEvent.User Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_User.htm\u0000115","RegistryEvent.Username Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Username.htm\u0000155","ReloadEvent.Message Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Message.htm\u0000148","ReloadEvent.Module Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Module.htm\u0000135","ReloadEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Status.htm\u0000126","RenameEvent.NewName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_NewName.htm\u0000131","RenameEvent.OldName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_OldName.htm\u0000131","ResponseEvent.ActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_ActionId.htm\u0000135","ResponseEvent.InternalActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_InternalActionId.htm\u0000136","RTCPReceivedEvent.DLSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_DLSR.htm\u0000138","RTCPReceivedEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_FractionLost.htm\u0000135","RTCPReceivedEvent.From Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_From.htm\u0000138","RTCPReceivedEvent.HighestSequence Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_HighestSequence.htm\u0000135","RTCPReceivedEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_IAJitter.htm\u0000135","RTCPReceivedEvent.LastSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_LastSR.htm\u0000138","RTCPReceivedEvent.PacketsLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PacketsLost.htm\u0000132","RTCPReceivedEvent.PT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PT.htm\u0000138","RTCPReceivedEvent.ReceptionReports Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_ReceptionReports.htm\u0000132","RTCPReceivedEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_RTT.htm\u0000138","RTCPReceivedEvent.SenderSSRC Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SenderSSRC.htm\u0000135","RTCPReceivedEvent.SequenceNumberCycles Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SequenceNumberCycles.htm\u0000132","RTCPSentEvent.CumulativeLoss Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_CumulativeLoss.htm\u0000135","RTCPSentEvent.DlSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_DlSr.htm\u0000138","RTCPSentEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_FractionLost.htm\u0000135","RTCPSentEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_IAJitter.htm\u0000132","RTCPSentEvent.OursSrc Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_OursSrc.htm\u0000135","RTCPSentEvent.ReportBlock Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_ReportBlock.htm\u0000135","RTCPSentEvent.SentNtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentNtp.htm\u0000138","RTCPSentEvent.SentOctets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentOctets.htm\u0000135","RTCPSentEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentPackets.htm\u0000135","RTCPSentEvent.SentRtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentRtp.htm\u0000135","RTCPSentEvent.TheirLastSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_TheirLastSr.htm\u0000135","RTCPSentEvent.To Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_To.htm\u0000138","RTPReceiverStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Jitter.htm\u0000132","RTPReceiverStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_LostPackets.htm\u0000135","RTPReceiverStatEvent.ReceivedPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_ReceivedPackets.htm\u0000135","RTPReceiverStatEvent.RRCount Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_RRCount.htm\u0000135","RTPReceiverStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_SSRC.htm\u0000135","RTPReceiverStatEvent.Transit Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Transit.htm\u0000132","RTPSenderStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_Jitter.htm\u0000135","RTPSenderStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_LostPackets.htm\u0000135","RTPSenderStatEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_RTT.htm\u0000132","RTPSenderStatEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SentPackets.htm\u0000135","RTPSenderStatEvent.SRCount Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SRCount.htm\u0000135","RTPSenderStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SSRC.htm\u0000135","ShowDialPlanCompleteEvent.EventList Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_EventList.htm\u0000138","ShowDialPlanCompleteEvent.ListContexts Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListContexts.htm\u0000132","ShowDialPlanCompleteEvent.ListExtensions Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListExtensions.htm\u0000132","ShowDialPlanCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListItems.htm\u0000132","ShowDialPlanCompleteEvent.ListPriorities Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListPriorities.htm\u0000132","ShutdownEvent.File Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_File.htm\u0000138","ShutdownEvent.Func Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Func.htm\u0000138","ShutdownEvent.Line Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Line.htm\u0000132","ShutdownEvent.Restart Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Restart.htm\u0000133","ShutdownEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_SequenceNumber.htm\u0000132","ShutdownEvent.Shutdown Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Shutdown.htm\u0000160","StatusCompleteEvent.Items Property\u0000html/P_AsterNET_Manager_Event_StatusCompleteEvent_Items.htm\u0000132","StatusEvent.Account Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Account.htm\u0000138","StatusEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerId.htm\u0000138","StatusEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdName.htm\u0000140","StatusEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdNum.htm\u0000140","StatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Context.htm\u0000138","StatusEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Extension.htm\u0000138","StatusEvent.Link Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Link.htm\u0000143","StatusEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Priority.htm\u0000132","StatusEvent.Seconds Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Seconds.htm\u0000130","StatusEvent.State Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_State.htm\u0000138","TransferEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_SipCallId.htm\u0000138","TransferEvent.TargetChannel Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetChannel.htm\u0000138","TransferEvent.TargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetUniqueId.htm\u0000138","TransferEvent.Transfer2Parking Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_Transfer2Parking.htm\u0000132","TransferEvent.TransferContext Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferContext.htm\u0000138","TransferEvent.TransferExten Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferExten.htm\u0000138","TransferEvent.TransferMethod Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferMethod.htm\u0000124","TransferEvent.TransferType Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferType.htm\u0000125","UnparkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_UnparkedCallEvent_From.htm\u0000134","UserEvent.UserEventName Property\u0000html/P_AsterNET_Manager_Event_UserEvent_UserEventName.htm\u0000138","VarSetEvent.File Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_File.htm\u0000138","VarSetEvent.Func Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Func.htm\u0000138","VarSetEvent.Line Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Line.htm\u0000132","VarSetEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_SequenceNumber.htm\u0000132","VarSetEvent.Value Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Value.htm\u0000128","VarSetEvent.Variable Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Variable.htm\u0000129","ZapShowChannelsEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Alarm.htm\u0000149","ZapShowChannelsEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Context.htm\u0000136","ZapShowChannelsEvent.Signalling Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Signalling.htm\u0000138","IResponseHandler.Action Property\u0000html/P_AsterNET_Manager_IResponseHandler_Action.htm\u0000113","IResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_IResponseHandler_Hash.htm\u0000124","ManagerConnection.AsteriskVersion Property\u0000html/P_AsterNET_Manager_ManagerConnection_AsteriskVersion.htm\u0000114","ManagerConnection.DefaultEventTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultEventTimeout.htm\u0000141","ManagerConnection.DefaultResponseTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultResponseTimeout.htm\u0000136","ManagerConnection.FireAllEvents Property\u0000html/P_AsterNET_Manager_ManagerConnection_FireAllEvents.htm\u0000147","ManagerConnection.Hostname Property\u0000html/P_AsterNET_Manager_ManagerConnection_Hostname.htm\u0000135","ManagerConnection.KeepAlive Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAlive.htm\u0000148","ManagerConnection.KeepAliveAfterAuthenticationFailure Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAliveAfterAuthenticationFailure.htm\u0000137","ManagerConnection.Password Property\u0000html/P_AsterNET_Manager_ManagerConnection_Password.htm\u0000143","ManagerConnection.PingInterval Property\u0000html/P_AsterNET_Manager_ManagerConnection_PingInterval.htm\u0000134","ManagerConnection.Port Property\u0000html/P_AsterNET_Manager_ManagerConnection_Port.htm\u0000141","ManagerConnection.ReconnectIntervalFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalFast.htm\u0000121","ManagerConnection.ReconnectIntervalMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalMax.htm\u0000121","ManagerConnection.ReconnectRetryFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryFast.htm\u0000120","ManagerConnection.ReconnectRetryMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryMax.htm\u0000120","ManagerConnection.SleepTime Property\u0000html/P_AsterNET_Manager_ManagerConnection_SleepTime.htm\u0000169","ManagerConnection.SocketEncoding Property\u0000html/P_AsterNET_Manager_ManagerConnection_SocketEncoding.htm\u0000126","ManagerConnection.Username Property\u0000html/P_AsterNET_Manager_ManagerConnection_Username.htm\u0000143","ManagerConnection.Version Property\u0000html/P_AsterNET_Manager_ManagerConnection_Version.htm\u0000118","Originate.Account Property\u0000html/P_AsterNET_Manager_Originate_Account.htm\u0000153","Originate.Application Property\u0000html/P_AsterNET_Manager_Originate_Application.htm\u0000131","Originate.CallerId Property\u0000html/P_AsterNET_Manager_Originate_CallerId.htm\u0000132","Originate.Channel Property\u0000html/P_AsterNET_Manager_Originate_Channel.htm\u0000139","Originate.Context Property\u0000html/P_AsterNET_Manager_Originate_Context.htm\u0000150","Originate.Data Property\u0000html/P_AsterNET_Manager_Originate_Data.htm\u0000130","Originate.Exten Property\u0000html/P_AsterNET_Manager_Originate_Exten.htm\u0000144","Originate.Priority Property\u0000html/P_AsterNET_Manager_Originate_Priority.htm\u0000141","Originate.Timeout Property\u0000html/P_AsterNET_Manager_Originate_Timeout.htm\u0000166","ResponseEventHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Action.htm\u0000131","ResponseEventHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Hash.htm\u0000147","ResponseEventHandler.ResponseEvents Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_ResponseEvents.htm\u0000118","ResponseEvents.Complete Property\u0000html/P_AsterNET_Manager_ResponseEvents_Complete.htm\u0000122","ResponseEvents.Events Property\u0000html/P_AsterNET_Manager_ResponseEvents_Events.htm\u0000145","ResponseEvents.Response Property\u0000html/P_AsterNET_Manager_ResponseEvents_Response.htm\u0000135","ResponseHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseHandler_Action.htm\u0000131","ResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseHandler_Hash.htm\u0000147","ResponseHandler.Response Property\u0000html/P_AsterNET_Manager_ResponseHandler_Response.htm\u0000118","ChallengeResponse.Challenge Property\u0000html/P_AsterNET_Manager_Response_ChallengeResponse_Challenge.htm\u0000144","CommandResponse.Result Property\u0000html/P_AsterNET_Manager_Response_CommandResponse_Result.htm\u0000169","ExtensionStateResponse.Context Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Context.htm\u0000138","ExtensionStateResponse.Exten Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Exten.htm\u0000138","ExtensionStateResponse.Hint Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Hint.htm\u0000138","ExtensionStateResponse.Status Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Status.htm\u0000132","GetConfigResponse.Categories Property\u0000html/P_AsterNET_Manager_Response_GetConfigResponse_Categories.htm\u0000160","MailboxCountResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_Mailbox.htm\u0000130","MailboxCountResponse.NewMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_NewMessages.htm\u0000127","MailboxCountResponse.OldMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_OldMessages.htm\u0000126","MailboxStatusResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Mailbox.htm\u0000137","MailboxStatusResponse.Waiting Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Waiting.htm\u0000134","ManagerResponse.ActionId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_ActionId.htm\u0000139","ManagerResponse.Attributes Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Attributes.htm\u0000200","ManagerResponse.DateReceived Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_DateReceived.htm\u0000131","ManagerResponse.Message Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Message.htm\u0000142","ManagerResponse.Privilege Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Privilege.htm\u0000172","ManagerResponse.Response Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Response.htm\u0000156","ManagerResponse.Server Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Server.htm\u0000182","ManagerResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_UniqueId.htm\u0000153","OriginateResponse.Channel Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Channel.htm\u0000138","OriginateResponse.ChannelName Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_ChannelName.htm\u0000138","OriginateResponse.EndTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_EndTime.htm\u0000132","OriginateResponse.IsSuccess Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_IsSuccess.htm\u0000117","OriginateResponse.Reason Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Reason.htm\u0000132","OriginateResponse.Response Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Response.htm\u0000138","OriginateResponse.StartTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_StartTime.htm\u0000132","OriginateResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_UniqueId.htm\u0000138","MD5Support.DigestData Property\u0000html/P_AsterNET_Util_MD5Support_DigestData.htm\u0000142","ThreadClass.IsAlive Property\u0000html/P_AsterNET_Util_ThreadClass_IsAlive.htm\u0000110","ThreadClass.IsBackground Property\u0000html/P_AsterNET_Util_ThreadClass_IsBackground.htm\u0000130","ThreadClass.Name Property\u0000html/P_AsterNET_Util_ThreadClass_Name.htm\u0000128","Common Class\u0000html/T_AsterNET_Common.htm\u0000180","AGIChannel Class\u0000html/T_AsterNET_FastAGI_AGIChannel.htm\u0000259","AGIConnectionHandler Class\u0000html/T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000269","AGIException Class\u0000html/T_AsterNET_FastAGI_AGIException.htm\u0000542","AGIHangupException Class\u0000html/T_AsterNET_FastAGI_AGIHangupException.htm\u0000512","AGINetworkException Class\u0000html/T_AsterNET_FastAGI_AGINetworkException.htm\u0000513","AGIReader Class\u0000html/T_AsterNET_FastAGI_AGIReader.htm\u0000234","AGIReply Class\u0000html/T_AsterNET_FastAGI_AGIReply.htm\u0000441","AGIReplyStatuses Enumeration\u0000html/T_AsterNET_FastAGI_AGIReplyStatuses.htm\u0000197","AGIRequest Class\u0000html/T_AsterNET_FastAGI_AGIRequest.htm\u0000401","AGIScript Class\u0000html/T_AsterNET_FastAGI_AGIScript.htm\u00001763","AGIWriter Class\u0000html/T_AsterNET_FastAGI_AGIWriter.htm\u0000226","AsteriskFastAGI Class\u0000html/T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000458","AGICommand Class\u0000html/T_AsterNET_FastAGI_Command_AGICommand.htm\u0000399","AnswerCommand Class\u0000html/T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000258","ChannelStatusCommand Class\u0000html/T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000276","ControlStreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000599","DatabaseDelCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000310","DatabaseDelTreeCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000298","DatabaseGetCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000301","DatabasePutCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000299","ExecCommand Class\u0000html/T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000302","GetDataCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000423","GetFullVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000360","GetOptionCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000418","GetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000311","HangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000293","NoopCommand Class\u0000html/T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000243","ReceiveCharCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000347","ReceiveTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000341","RecordFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000455","SayAlphaCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000330","SayDateTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000483","SayDigitsCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000330","SayNumberCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000328","SayPhoneticCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000331","SayTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000363","SendImageCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000302","SendTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000295","SetAutoHangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000301","SetCallerIdCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000259","SetContextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000266","SetExtensionCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000266","SetMusicOffCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000254","SetMusicOnCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000297","SetPriorityCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000299","SetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000273","StreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000416","TDDModeCommand Class\u0000html/T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000333","VerboseCommand Class\u0000html/T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000276","WaitForDigitCommand Class\u0000html/T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000343","IMappingStrategy Interface\u0000html/T_AsterNET_FastAGI_IMappingStrategy.htm\u000095","InvalidCommandSyntaxException Class\u0000html/T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000542","InvalidOrUnknownCommandException Class\u0000html/T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000508","GeneralMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000296","ResourceMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000308","ScriptMapping Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000291","MappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategy.htm\u0000399","ServerSocket Class\u0000html/T_AsterNET_IO_ServerSocket.htm\u0000226","SocketConnection Class\u0000html/T_AsterNET_IO_SocketConnection.htm\u0000335","Logger Class\u0000html/T_AsterNET_Logger.htm\u0000315","Logger.MessageLevel Enumeration\u0000html/T_AsterNET_Logger_MessageLevel.htm\u000089","AbsoluteTimeoutAction Class\u0000html/T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000474","AgentCallbackLoginAction Class\u0000html/T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000590","AgentLogoffAction Class\u0000html/T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000411","AgentsAction Class\u0000html/T_AsterNET_Manager_Action_AgentsAction.htm\u0000393","AgiAction Class\u0000html/T_AsterNET_Manager_Action_AgiAction.htm\u0000357","AOCMessageAction Class\u0000html/T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000393","AtxferAction Class\u0000html/T_AsterNET_Manager_Action_AtxferAction.htm\u0000367","BridgeAction Class\u0000html/T_AsterNET_Manager_Action_BridgeAction.htm\u0000356","ChallengeAction Class\u0000html/T_AsterNET_Manager_Action_ChallengeAction.htm\u0000417","ChangeMonitorAction Class\u0000html/T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000426","CommandAction Class\u0000html/T_AsterNET_Manager_Action_CommandAction.htm\u0000393","ConfbridgeKickAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000355","ConfbridgeListAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000374","ConfbridgeListRoomsAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000357","ConfbridgeLockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000344","ConfbridgeMuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000355","ConfbridgeSetSingleVideoSrcAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000349","ConfbridgeStartRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000456","ConfbridgeStopRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000346","ConfbridgeUnlockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000344","ConfbridgeUnmuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000355","CoreSettingsAction Class\u0000html/T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000338","CoreShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000338","CoreStatusAction Class\u0000html/T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000338","CreateConfigAction Class\u0000html/T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000400","DBDelAction Class\u0000html/T_AsterNET_Manager_Action_DBDelAction.htm\u0000386","DBDelTreeAction Class\u0000html/T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000383","DBGetAction Class\u0000html/T_AsterNET_Manager_Action_DBGetAction.htm\u0000421","DBPutAction Class\u0000html/T_AsterNET_Manager_Action_DBPutAction.htm\u0000401","EventsAction Class\u0000html/T_AsterNET_Manager_Action_EventsAction.htm\u0000433","ExtensionStateAction Class\u0000html/T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000373","GetConfigAction Class\u0000html/T_AsterNET_Manager_Action_GetConfigAction.htm\u0000367","GetVarAction Class\u0000html/T_AsterNET_Manager_Action_GetVarAction.htm\u0000414","HangupAction Class\u0000html/T_AsterNET_Manager_Action_HangupAction.htm\u0000372","LoginAction Class\u0000html/T_AsterNET_Manager_Action_LoginAction.htm\u0000619","LogoffAction Class\u0000html/T_AsterNET_Manager_Action_LogoffAction.htm\u0000347","MailboxCountAction Class\u0000html/T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000425","MailboxStatusAction Class\u0000html/T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000456","ManagerAction Class\u0000html/T_AsterNET_Manager_Action_ManagerAction.htm\u0000558","ManagerActionEvent Class\u0000html/T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000467","ManagerActionResponse Class\u0000html/T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000406","MonitorAction Class\u0000html/T_AsterNET_Manager_Action_MonitorAction.htm\u0000541","OriginateAction Class\u0000html/T_AsterNET_Manager_Action_OriginateAction.htm\u0000940","ParkAction Class\u0000html/T_AsterNET_Manager_Action_ParkAction.htm\u0000421","ParkedCallsAction Class\u0000html/T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000389","PingAction Class\u0000html/T_AsterNET_Manager_Action_PingAction.htm\u0000361","ProxyAction Class\u0000html/T_AsterNET_Manager_Action_ProxyAction.htm\u0000362","QueueAddAction Class\u0000html/T_AsterNET_Manager_Action_QueueAddAction.htm\u0000559","QueueLogAction Class\u0000html/T_AsterNET_Manager_Action_QueueLogAction.htm\u0000358","QueuePauseAction Class\u0000html/T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000515","QueuePenaltyAction Class\u0000html/T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000356","QueueReloadAction Class\u0000html/T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000375","QueueRemoveAction Class\u0000html/T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000401","QueueResetAction Class\u0000html/T_AsterNET_Manager_Action_QueueResetAction.htm\u0000342","QueueRuleAction Class\u0000html/T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000350","QueueStatusAction Class\u0000html/T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000464","RedirectAction Class\u0000html/T_AsterNET_Manager_Action_RedirectAction.htm\u0000443","SetCDRUserFieldAction Class\u0000html/T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000507","SetVarAction Class\u0000html/T_AsterNET_Manager_Action_SetVarAction.htm\u0000453","SIPPeersAction Class\u0000html/T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000390","SIPShowPeerAction Class\u0000html/T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000413","StatusAction Class\u0000html/T_AsterNET_Manager_Action_StatusAction.htm\u0000396","StopMonitorAction Class\u0000html/T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000384","UpdateConfigAction Class\u0000html/T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000779","ZapDialOffhookAction Class\u0000html/T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000395","ZapDNDOffAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000390","ZapDNDOnAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000390","ZapHangupAction Class\u0000html/T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000386","ZapShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000394","ZapTransferAction Class\u0000html/T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000361","AgentCallbackLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLoginEventHandler.htm\u0000144","AgentCallbackLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLogoffEventHandler.htm\u0000147","AgentCalledEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCalledEventHandler.htm\u0000157","AgentCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCompleteEventHandler.htm\u0000152","AgentConnectEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentConnectEventHandler.htm\u0000145","AgentDumpEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentDumpEventHandler.htm\u0000149","AgentLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLoginEventHandler.htm\u0000146","AgentLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLogoffEventHandler.htm\u0000149","AgentsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsCompleteEventHandler.htm\u0000151","AgentsEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsEventHandler.htm\u0000145","AGIExecHandler Delegate\u0000html/T_AsterNET_Manager_AGIExecHandler.htm\u0000135","AlarmClearEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmClearEventHandler.htm\u0000144","AlarmEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmEventHandler.htm\u0000146","AsteriskVersion Enumeration\u0000html/T_AsterNET_Manager_AsteriskVersion.htm\u0000100","AttendedTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_AttendedTransferEventHandler.htm\u0000146","AuthenticationFailedException Class\u0000html/T_AsterNET_Manager_AuthenticationFailedException.htm\u0000529","BlindTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_BlindTransferEventHandler.htm\u0000146","BridgeCreateEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeCreateEventHandler.htm\u0000146","BridgeDestroyEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeDestroyEventHandler.htm\u0000146","BridgeEnterEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEnterEventHandler.htm\u0000146","BridgeEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEventHandler.htm\u0000146","BridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeLeaveEventHandler.htm\u0000146","CdrEventHandler Delegate\u0000html/T_AsterNET_Manager_CdrEventHandler.htm\u0000152","ConfbridgeEndEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeEndEventHandler.htm\u0000149","ConfbridgeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeJoinEventHandler.htm\u0000161","ConfbridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeLeaveEventHandler.htm\u0000143","ConfbridgeStartEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeStartEventHandler.htm\u0000147","ConfbridgeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeTalkingEventHandler.htm\u0000150","ConnectionStateEventHandler Delegate\u0000html/T_AsterNET_Manager_ConnectionStateEventHandler.htm\u0000143","DBGetResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_DBGetResponseEventHandler.htm\u0000146","DialBeginEventHandler Delegate\u0000html/T_AsterNET_Manager_DialBeginEventHandler.htm\u0000140","DialEndEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEndEventHandler.htm\u0000140","DialEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEventHandler.htm\u0000144","DNDStateEventHandler Delegate\u0000html/T_AsterNET_Manager_DNDStateEventHandler.htm\u0000155","DTMFEventHandler Delegate\u0000html/T_AsterNET_Manager_DTMFEventHandler.htm\u0000146","EventTimeoutException Class\u0000html/T_AsterNET_Manager_EventTimeoutException.htm\u0000601","AbstractAgentEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000753","AbstractAgentVariables Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000693","AbstractChannelEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000659","AbstractConfbridgeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000635","AbstractMeetmeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000642","AbstractParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000643","AbstractQueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000971","AgentCallbackLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000603","AgentCallbackLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000652","AgentCalledEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000755","AgentCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000803","AgentConnectEvent Class\u0000html/T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000788","AgentDumpEvent Class\u0000html/T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000760","AgentLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000603","AgentLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000606","AgentsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000637","AgentsEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsEvent.htm\u0000783","AGIExecEvent Class\u0000html/T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000600","AlarmClearEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000581","AlarmEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmEvent.htm\u0000608","AsyncAGIEvent Class\u0000html/T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000581","AttendedTransferEvent Class\u0000html/T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000643","BlindTransferEvent Class\u0000html/T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000612","BridgeActivityEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000612","BridgeCreateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000629","BridgeDestroyEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000629","BridgeEnterEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000717","BridgeEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEvent.htm\u0000686","BridgeEvent.BridgeStates Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeStates.htm\u000093","BridgeEvent.BridgeTypes Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeTypes.htm\u0000125","BridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000717","BridgeStateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000601","CdrEvent Class\u0000html/T_AsterNET_Manager_Event_CdrEvent.htm\u0000625","ChannelReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000599","ChannelUpdateEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000597","ConfbridgeEndEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000589","ConfbridgeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000591","ConfbridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000591","ConfbridgeListCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000624","ConfbridgeListEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000593","ConfbridgeListRoomsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000624","ConfbridgeListRoomsEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000592","ConfbridgeStartEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000589","ConfbridgeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000590","ConnectEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectEvent.htm\u0000614","ConnectionStateEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000603","DBGetResponseEvent Class\u0000html/T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000674","DialBeginEvent Class\u0000html/T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000714","DialEndEvent Class\u0000html/T_AsterNET_Manager_Event_DialEndEvent.htm\u0000715","DialEvent Class\u0000html/T_AsterNET_Manager_Event_DialEvent.htm\u0000662","DisconnectEvent Class\u0000html/T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000607","DNDStateEvent Class\u0000html/T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000649","DTMFEvent Class\u0000html/T_AsterNET_Manager_Event_DTMFEvent.htm\u0000578","ExtensionStatusEvent Class\u0000html/T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000611","FailedACLEvent Class\u0000html/T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000591","FaxReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000888","HangupEvent Class\u0000html/T_AsterNET_Manager_Event_HangupEvent.htm\u0000728","HoldedCallEvent Class\u0000html/T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000645","HoldEvent Class\u0000html/T_AsterNET_Manager_Event_HoldEvent.htm\u0000600","JabberEvent Class\u0000html/T_AsterNET_Manager_Event_JabberEvent.htm\u0000579","JitterBufStatsEvent Class\u0000html/T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000593","JoinEvent Class\u0000html/T_AsterNET_Manager_Event_JoinEvent.htm\u0000708","LeaveEvent Class\u0000html/T_AsterNET_Manager_Event_LeaveEvent.htm\u0000633","LinkEvent Class\u0000html/T_AsterNET_Manager_Event_LinkEvent.htm\u0000721","LogChannelEvent Class\u0000html/T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000612","ManagerEvent Class\u0000html/T_AsterNET_Manager_Event_ManagerEvent.htm\u0000830","MeetmeEndEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000603","MeetmeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000610","MeetmeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000611","MeetmeMuteEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000604","MeetmeStopTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000610","MeetmeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000604","MeetmeTalkRequestEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000604","MessageWaitingEvent Class\u0000html/T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000645","MobileStatusEvent Class\u0000html/T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000579","ModuleLoadReportEvent Class\u0000html/T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000580","MonitorStartEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000577","MonitorStopEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000577","NewAccountCodeEvent Class\u0000html/T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000579","NewCallerIdEvent Class\u0000html/T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000625","NewChannelEvent Class\u0000html/T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000708","NewExtenEvent Class\u0000html/T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000645","NewStateEvent Class\u0000html/T_AsterNET_Manager_Event_NewStateEvent.htm\u0000710","OriginateResponseEvent Class\u0000html/T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000631","ParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000729","ParkedCallGiveUpEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000670","ParkedCallsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000637","ParkedCallTimeOutEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000669","PeerEntryEvent Class\u0000html/T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000716","PeerlistCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000662","PeerStatusEvent Class\u0000html/T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000779","PRIEvent Class\u0000html/T_AsterNET_Manager_Event_PRIEvent.htm\u0000578","QueueCallerAbandonEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000578","QueueCallerJoinEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000627","QueueCallerLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000627","QueueEntryEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000702","QueueEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEvent.htm\u0000634","QueueMemberAddedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000955","QueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000870","QueueMemberPausedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u00001024","QueueMemberPauseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u00001036","QueueMemberPenaltyEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000997","QueueMemberRemovedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u00001036","QueueMemberRinginuseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u00001002","QueueMemberStatusEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000902","QueueParamsEvent Class\u0000html/T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000810","QueueStatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000636","RegistryEvent Class\u0000html/T_AsterNET_Manager_Event_RegistryEvent.htm\u0000776","ReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ReloadEvent.htm\u0000649","RenameEvent Class\u0000html/T_AsterNET_Manager_Event_RenameEvent.htm\u0000607","ResponseEvent Class\u0000html/T_AsterNET_Manager_Event_ResponseEvent.htm\u0000722","RTCPReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000589","RTCPSentEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000589","RTPReceiverStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000583","RTPSenderStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000583","ShowDialPlanCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000582","ShutdownEvent Class\u0000html/T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000660","StatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000640","StatusEvent Class\u0000html/T_AsterNET_Manager_Event_StatusEvent.htm\u0000691","TransferEvent Class\u0000html/T_AsterNET_Manager_Event_TransferEvent.htm\u0000590","UnholdEvent Class\u0000html/T_AsterNET_Manager_Event_UnholdEvent.htm\u0000598","UnknownEvent Class\u0000html/T_AsterNET_Manager_Event_UnknownEvent.htm\u0000570","UnlinkEvent Class\u0000html/T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000683","UnparkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000682","UserEvent Class\u0000html/T_AsterNET_Manager_Event_UserEvent.htm\u0000809","VarSetEvent Class\u0000html/T_AsterNET_Manager_Event_VarSetEvent.htm\u0000596","ZapShowChannelsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000640","ZapShowChannelsEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000675","ExtensionStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_ExtensionStatusEventHandler.htm\u0000144","FailedACLEventHandler Delegate\u0000html/T_AsterNET_Manager_FailedACLEventHandler.htm\u0000146","HangupEventHandler Delegate\u0000html/T_AsterNET_Manager_HangupEventHandler.htm\u0000143","HoldedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldedCallEventHandler.htm\u0000144","HoldEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldEventHandler.htm\u0000149","IResponseHandler Interface\u0000html/T_AsterNET_Manager_IResponseHandler.htm\u0000112","JoinEventHandler Delegate\u0000html/T_AsterNET_Manager_JoinEventHandler.htm\u0000143","LeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_LeaveEventHandler.htm\u0000143","LinkEventHandler Delegate\u0000html/T_AsterNET_Manager_LinkEventHandler.htm\u0000191","LogChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_LogChannelEventHandler.htm\u0000144","ManagerConnection Class\u0000html/T_AsterNET_Manager_ManagerConnection.htm\u0000806","ManagerEventHandler Delegate\u0000html/T_AsterNET_Manager_ManagerEventHandler.htm\u0000140","ManagerException Class\u0000html/T_AsterNET_Manager_ManagerException.htm\u0000522","ManagerReader Class\u0000html/T_AsterNET_Manager_ManagerReader.htm\u0000222","MeetMeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeJoinEventHandler.htm\u0000145","MeetMeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeLeaveEventHandler.htm\u0000145","MeetMeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeTalkingEventHandler.htm\u0000164","MessageWaitingEventHandler Delegate\u0000html/T_AsterNET_Manager_MessageWaitingEventHandler.htm\u0000141","NewCallerIdEventHandler Delegate\u0000html/T_AsterNET_Manager_NewCallerIdEventHandler.htm\u0000145","NewChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_NewChannelEventHandler.htm\u0000143","NewExtenEventHandler Delegate\u0000html/T_AsterNET_Manager_NewExtenEventHandler.htm\u0000146","NewStateEventHandler Delegate\u0000html/T_AsterNET_Manager_NewStateEventHandler.htm\u0000145","Originate Class\u0000html/T_AsterNET_Manager_Originate.htm\u0000521","OriginateResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_OriginateResponseEventHandler.htm\u0000143","ParkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallEventHandler.htm\u0000158","ParkedCallGiveUpEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallGiveUpEventHandler.htm\u0000147","ParkedCallsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallsCompleteEventHandler.htm\u0000149","ParkedCallTimeOutEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallTimeOutEventHandler.htm\u0000146","PeerEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerEntryEventHandler.htm\u0000150","PeerlistCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerlistCompleteEventHandler.htm\u0000153","PeerStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerStatusEventHandler.htm\u0000150","QueueCallerAbandonEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerAbandonEventHandler.htm\u0000146","QueueCallerJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerJoinEventHandler.htm\u0000140","QueueCallerLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerLeaveEventHandler.htm\u0000140","QueueEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueEntryEventHandler.htm\u0000151","QueueMemberAddedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberAddedEventHandler.htm\u0000146","QueueMemberEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberEventHandler.htm\u0000151","QueueMemberPausedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPausedEventHandler.htm\u0000145","QueueMemberPauseEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPauseEventHandler.htm\u0000149","QueueMemberRemovedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberRemovedEventHandler.htm\u0000146","QueueMemberStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberStatusEventHandler.htm\u0000141","QueueParamsEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueParamsEventHandler.htm\u0000149","QueueStatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueStatusCompleteEventHandler.htm\u0000151","RegistryEventHandler Delegate\u0000html/T_AsterNET_Manager_RegistryEventHandler.htm\u0000153","RenameEventHandler Delegate\u0000html/T_AsterNET_Manager_RenameEventHandler.htm\u0000145","ResponseEventHandler Class\u0000html/T_AsterNET_Manager_ResponseEventHandler.htm\u0000253","ResponseEvents Class\u0000html/T_AsterNET_Manager_ResponseEvents.htm\u0000249","ResponseHandler Class\u0000html/T_AsterNET_Manager_ResponseHandler.htm\u0000250","ChallengeResponse Class\u0000html/T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000777","CommandResponse Class\u0000html/T_AsterNET_Manager_Response_CommandResponse.htm\u0000831","ExtensionStateResponse Class\u0000html/T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000757","GetConfigResponse Class\u0000html/T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000838","MailboxCountResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000796","MailboxStatusResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000797","ManagerError Class\u0000html/T_AsterNET_Manager_Response_ManagerError.htm\u0000776","ManagerResponse Class\u0000html/T_AsterNET_Manager_Response_ManagerResponse.htm\u0000742","OriginateResponse Class\u0000html/T_AsterNET_Manager_Response_OriginateResponse.htm\u0000264","StatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusCompleteEventHandler.htm\u0000146","StatusEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusEventHandler.htm\u0000146","TimeoutException Class\u0000html/T_AsterNET_Manager_TimeoutException.htm\u0000513","TransferEventHandler Delegate\u0000html/T_AsterNET_Manager_TransferEventHandler.htm\u0000151","UnholdEventHandler Delegate\u0000html/T_AsterNET_Manager_UnholdEventHandler.htm\u0000151","UnlinkEventHandler Delegate\u0000html/T_AsterNET_Manager_UnlinkEventHandler.htm\u0000154","UnparkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_UnparkedCallEventHandler.htm\u0000146","UserEventHandler Delegate\u0000html/T_AsterNET_Manager_UserEventHandler.htm\u0000141","VarSetEventHandler Delegate\u0000html/T_AsterNET_Manager_VarSetEventHandler.htm\u0000137","ZapShowChannelsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsCompleteEventHandler.htm\u0000152","ZapShowChannelsEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsEventHandler.htm\u0000150","MD5Support Class\u0000html/T_AsterNET_Util_MD5Support.htm\u0000303","ThreadClass Class\u0000html/T_AsterNET_Util_ThreadClass.htm\u0000343","ThreadPool Class\u0000html/T_AsterNET_Util_ThreadPool.htm\u0000289"] \ No newline at end of file +["AsterNet Class Library (Sandcastle documentation) - Redirect\u0000index.html\u000018","AsterNet Class Library (Sandcastle documentation) - Search\u0000search.html\u000016","Version History\u0000html/100303f2-3dd8-401b-a594-579aae2a939c.htm\u000067","Welcome to AsterNet Class library\u0000html/79b6241e-05a3-441c-b6a1-51f2b5b7f265.htm\u0000105","Version 1.0.0.0\u0000html/d9cb48f8-c21b-4dbb-96d8-c726593f257e.htm\u000047","AGIException Events\u0000html/Events_T_AsterNET_FastAGI_AGIException.htm\u000059","AGIHangupException Events\u0000html/Events_T_AsterNET_FastAGI_AGIHangupException.htm\u000059","AGINetworkException Events\u0000html/Events_T_AsterNET_FastAGI_AGINetworkException.htm\u000059","InvalidCommandSyntaxException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u000059","InvalidOrUnknownCommandException Events\u0000html/Events_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u000059","AuthenticationFailedException Events\u0000html/Events_T_AsterNET_Manager_AuthenticationFailedException.htm\u000059","EventTimeoutException Events\u0000html/Events_T_AsterNET_Manager_EventTimeoutException.htm\u000059","ManagerConnection Events\u0000html/Events_T_AsterNET_Manager_ManagerConnection.htm\u00001263","ManagerException Events\u0000html/Events_T_AsterNET_Manager_ManagerException.htm\u000059","TimeoutException Events\u0000html/Events_T_AsterNET_Manager_TimeoutException.htm\u000059","ManagerConnection.AgentCallbackLogin Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm\u0000128","ManagerConnection.AgentCallbackLogoff Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm\u0000131","ManagerConnection.AgentCalled Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm\u0000141","ManagerConnection.AgentComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm\u0000136","ManagerConnection.AgentConnect Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm\u0000129","ManagerConnection.AgentDump Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm\u0000133","ManagerConnection.AgentLogin Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm\u0000130","ManagerConnection.AgentLogoff Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm\u0000133","ManagerConnection.Agents Event\u0000html/E_AsterNET_Manager_ManagerConnection_Agents.htm\u0000129","ManagerConnection.AgentsComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm\u0000135","ManagerConnection.AGIExec Event\u0000html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm\u0000119","ManagerConnection.Alarm Event\u0000html/E_AsterNET_Manager_ManagerConnection_Alarm.htm\u0000130","ManagerConnection.AlarmClear Event\u0000html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm\u0000128","ManagerConnection.AttendedTransfer Event\u0000html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm\u0000131","ManagerConnection.BlindTransfer Event\u0000html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm\u0000131","ManagerConnection.Bridge Event\u0000html/E_AsterNET_Manager_ManagerConnection_Bridge.htm\u0000131","ManagerConnection.BridgeCreate Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm\u0000131","ManagerConnection.BridgeDestroy Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm\u0000131","ManagerConnection.BridgeEnter Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm\u0000131","ManagerConnection.BridgeLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm\u0000131","ManagerConnection.Cdr Event\u0000html/E_AsterNET_Manager_ManagerConnection_Cdr.htm\u0000136","ManagerConnection.ConfbridgeEnd Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm\u0000133","ManagerConnection.ConfbridgeJoin Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm\u0000145","ManagerConnection.ConfbridgeLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm\u0000127","ManagerConnection.ConfbridgeStart Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm\u0000131","ManagerConnection.ConfbridgeTalking Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm\u0000134","ManagerConnection.ConnectionState Event\u0000html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm\u0000127","ManagerConnection.DBGetResponse Event\u0000html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm\u0000131","ManagerConnection.Dial Event\u0000html/E_AsterNET_Manager_ManagerConnection_Dial.htm\u0000128","ManagerConnection.DialBegin Event\u0000html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm\u0000124","ManagerConnection.DialEnd Event\u0000html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm\u0000124","ManagerConnection.DNDState Event\u0000html/E_AsterNET_Manager_ManagerConnection_DNDState.htm\u0000139","ManagerConnection.DTMF Event\u0000html/E_AsterNET_Manager_ManagerConnection_DTMF.htm\u0000131","ManagerConnection.ExtensionStatus Event\u0000html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm\u0000128","ManagerConnection.FailedACL Event\u0000html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm\u0000131","ManagerConnection.Hangup Event\u0000html/E_AsterNET_Manager_ManagerConnection_Hangup.htm\u0000127","ManagerConnection.Hold Event\u0000html/E_AsterNET_Manager_ManagerConnection_Hold.htm\u0000133","ManagerConnection.HoldedCall Event\u0000html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm\u0000128","ManagerConnection.Join Event\u0000html/E_AsterNET_Manager_ManagerConnection_Join.htm\u0000127","ManagerConnection.Leave Event\u0000html/E_AsterNET_Manager_ManagerConnection_Leave.htm\u0000127","ManagerConnection.Link Event\u0000html/E_AsterNET_Manager_ManagerConnection_Link.htm\u0000175","ManagerConnection.LogChannel Event\u0000html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm\u0000128","ManagerConnection.MeetMeJoin Event\u0000html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm\u0000129","ManagerConnection.MeetMeLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm\u0000129","ManagerConnection.MeetMeTalking Event\u0000html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm\u0000148","ManagerConnection.MessageWaiting Event\u0000html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm\u0000125","ManagerConnection.NewCallerId Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm\u0000129","ManagerConnection.NewChannel Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm\u0000127","ManagerConnection.NewExten Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewExten.htm\u0000130","ManagerConnection.NewState Event\u0000html/E_AsterNET_Manager_ManagerConnection_NewState.htm\u0000129","ManagerConnection.OriginateResponse Event\u0000html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm\u0000127","ManagerConnection.ParkedCall Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm\u0000142","ManagerConnection.ParkedCallGiveUp Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm\u0000131","ManagerConnection.ParkedCallsComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm\u0000133","ManagerConnection.ParkedCallTimeOut Event\u0000html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm\u0000130","ManagerConnection.PeerEntry Event\u0000html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm\u0000134","ManagerConnection.PeerlistComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm\u0000137","ManagerConnection.PeerStatus Event\u0000html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm\u0000134","ManagerConnection.QueueCallerAbandon Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm\u0000135","ManagerConnection.QueueCallerJoin Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm\u0000124","ManagerConnection.QueueCallerLeave Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm\u0000124","ManagerConnection.QueueEntry Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm\u0000135","ManagerConnection.QueueMember Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm\u0000135","ManagerConnection.QueueMemberAdded Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm\u0000130","ManagerConnection.QueueMemberPause Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberPause.htm\u0000137","ManagerConnection.QueueMemberPaused Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm\u0000147","ManagerConnection.QueueMemberRemoved Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm\u0000130","ManagerConnection.QueueMemberStatus Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm\u0000125","ManagerConnection.QueueParams Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm\u0000133","ManagerConnection.QueueStatusComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm\u0000135","ManagerConnection.Registry Event\u0000html/E_AsterNET_Manager_ManagerConnection_Registry.htm\u0000137","ManagerConnection.Rename Event\u0000html/E_AsterNET_Manager_ManagerConnection_Rename.htm\u0000129","ManagerConnection.Status Event\u0000html/E_AsterNET_Manager_ManagerConnection_Status.htm\u0000130","ManagerConnection.StatusComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm\u0000135","ManagerConnection.Transfer Event\u0000html/E_AsterNET_Manager_ManagerConnection_Transfer.htm\u0000131","ManagerConnection.UnhandledEvent Event\u0000html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm\u0000124","ManagerConnection.Unhold Event\u0000html/E_AsterNET_Manager_ManagerConnection_Unhold.htm\u0000135","ManagerConnection.Unlink Event\u0000html/E_AsterNET_Manager_ManagerConnection_Unlink.htm\u0000138","ManagerConnection.UnparkedCall Event\u0000html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm\u0000130","ManagerConnection.UserEvents Event\u0000html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm\u0000125","ManagerConnection.VarSet Event\u0000html/E_AsterNET_Manager_ManagerConnection_VarSet.htm\u0000121","ManagerConnection.ZapShowChannels Event\u0000html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm\u0000134","ManagerConnection.ZapShowChannelsComplete Event\u0000html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm\u0000136","Common Fields\u0000html/Fields_T_AsterNET_Common.htm\u000096","AsteriskFastAGI Fields\u0000html/Fields_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000102","CommandAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_CommandAction.htm\u000033","SetVarAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_SetVarAction.htm\u000057","UpdateConfigAction Fields\u0000html/Fields_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u000038","RenameEvent Fields\u0000html/Fields_T_AsterNET_Manager_Event_RenameEvent.htm\u000034","ManagerConnection Fields\u0000html/Fields_T_AsterNET_Manager_ManagerConnection.htm\u000075","ChallengeResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ChallengeResponse.htm\u000040","CommandResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_CommandResponse.htm\u000041","ExtensionStateResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u000040","GetConfigResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_GetConfigResponse.htm\u000040","MailboxCountResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u000040","MailboxStatusResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u000040","ManagerError Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerError.htm\u000040","ManagerResponse Fields\u0000html/Fields_T_AsterNET_Manager_Response_ManagerResponse.htm\u000033","Common.AGI_ADDITIONAL_ATTRIBUTES_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTES_PATTERN.htm\u000095","Common.AGI_ADDITIONAL_ATTRIBUTE_PATTERN Field\u0000html/F_AsterNET_Common_AGI_ADDITIONAL_ATTRIBUTE_PATTERN.htm\u000095","Common.AGI_BIND_ADDRESS Field\u0000html/F_AsterNET_Common_AGI_BIND_ADDRESS.htm\u000087","Common.AGI_BIND_PORT Field\u0000html/F_AsterNET_Common_AGI_BIND_PORT.htm\u000085","Common.AGI_DEFAULT_MAX_DIGITS Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_MAX_DIGITS.htm\u000093","Common.AGI_DEFAULT_RESOURCE_BUNDLE_NAME Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_RESOURCE_BUNDLE_NAME.htm\u000095","Common.AGI_DEFAULT_TIMEOUT Field\u0000html/F_AsterNET_Common_AGI_DEFAULT_TIMEOUT.htm\u000093","Common.AGI_END_OF_PROPER_USAGE Field\u0000html/F_AsterNET_Common_AGI_END_OF_PROPER_USAGE.htm\u000095","Common.AGI_PARAMETER_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARAMETER_PATTERN.htm\u000095","Common.AGI_PARENTHESIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_PARENTHESIS_PATTERN.htm\u000095","Common.AGI_POOL_SIZE Field\u0000html/F_AsterNET_Common_AGI_POOL_SIZE.htm\u000086","Common.AGI_RESULT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_RESULT_PATTERN.htm\u000095","Common.AGI_SCRIPT_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SCRIPT_PATTERN.htm\u000095","Common.AGI_STATUS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_STATUS_PATTERN.htm\u000095","Common.AGI_SYNOPSIS_PATTERN Field\u0000html/F_AsterNET_Common_AGI_SYNOPSIS_PATTERN.htm\u000095","Common.ASTERISK_VERSION Field\u0000html/F_AsterNET_Common_ASTERISK_VERSION.htm\u000095","Common.CultureInfoEn Field\u0000html/F_AsterNET_Common_CultureInfoEn.htm\u000095","Common.DEFAULT_HOSTNAME Field\u0000html/F_AsterNET_Common_DEFAULT_HOSTNAME.htm\u000090","Common.DEFAULT_PORT Field\u0000html/F_AsterNET_Common_DEFAULT_PORT.htm\u000088","Common.INTERNAL_ACTION_ID_DELIMITER Field\u0000html/F_AsterNET_Common_INTERNAL_ACTION_ID_DELIMITER.htm\u000093","Common.LINE_SEPARATOR Field\u0000html/F_AsterNET_Common_LINE_SEPARATOR.htm\u000083","Common.MINUS_SEPARATOR Field\u0000html/F_AsterNET_Common_MINUS_SEPARATOR.htm\u0000108","Common.RESPONSE_KEY_VALUE_SEPARATOR Field\u0000html/F_AsterNET_Common_RESPONSE_KEY_VALUE_SEPARATOR.htm\u0000108","Common.SHOW_VERSION_FILES_PATTERN Field\u0000html/F_AsterNET_Common_SHOW_VERSION_FILES_PATTERN.htm\u000095","Common.VAR_DELIMITER Field\u0000html/F_AsterNET_Common_VAR_DELIMITER.htm\u0000178","AsteriskFastAGI.SC511_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SC511_CAUSES_EXCEPTION.htm\u0000113","AsteriskFastAGI.SCHANGUP_CAUSES_EXCEPTION Field\u0000html/F_AsterNET_FastAGI_AsteriskFastAGI_SCHANGUP_CAUSES_EXCEPTION.htm\u0000110","CommandAction.command Field\u0000html/F_AsterNET_Manager_Action_CommandAction_command.htm\u000097","SetVarAction.channel Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_channel.htm\u000090","SetVarAction.varName Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varName.htm\u000089","SetVarAction.varValue Field\u0000html/F_AsterNET_Manager_Action_SetVarAction_varValue.htm\u000086","UpdateConfigAction.ACTION_APPEND Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_APPEND.htm\u0000101","UpdateConfigAction.ACTION_DELCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELCAT.htm\u0000101","UpdateConfigAction.ACTION_DELETE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_DELETE.htm\u0000101","UpdateConfigAction.ACTION_NEWCAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_NEWCAT.htm\u0000101","UpdateConfigAction.ACTION_RENAMECAT Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_RENAMECAT.htm\u0000101","UpdateConfigAction.ACTION_UPDATE Field\u0000html/F_AsterNET_Manager_Action_UpdateConfigAction_ACTION_UPDATE.htm\u0000101","RenameEvent.newName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_newName.htm\u000097","RenameEvent.oldName Field\u0000html/F_AsterNET_Manager_Event_RenameEvent_oldName.htm\u000097","ManagerConnection.UseASyncEvents Field\u0000html/F_AsterNET_Manager_ManagerConnection_UseASyncEvents.htm\u0000119","ManagerConnection.VAR_DELIMITER Field\u0000html/F_AsterNET_Manager_ManagerConnection_VAR_DELIMITER.htm\u0000107","CommandResponse.result Field\u0000html/F_AsterNET_Manager_Response_CommandResponse_result.htm\u0000119","ManagerResponse.attributes Field\u0000html/F_AsterNET_Manager_Response_ManagerResponse_attributes.htm\u0000135","AGIChannel Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIChannel.htm\u0000151","AGIConnectionHandler Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000151","AGIException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIException.htm\u0000207","AGIHangupException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIHangupException.htm\u0000207","AGINetworkException Methods\u0000html/Methods_T_AsterNET_FastAGI_AGINetworkException.htm\u0000207","AGIReader Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReader.htm\u0000152","AGIReply Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIReply.htm\u0000276","AGIRequest Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIRequest.htm\u0000144","AGIScript Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIScript.htm\u00001748","AGIWriter Methods\u0000html/Methods_T_AsterNET_FastAGI_AGIWriter.htm\u0000151","AsteriskFastAGI Methods\u0000html/Methods_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000152","AGICommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AGICommand.htm\u0000144","AnswerCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000158","ChannelStatusCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000158","ControlStreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000192","DatabaseDelCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000158","DatabaseDelTreeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000158","DatabaseGetCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000158","DatabasePutCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000158","ExecCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000158","GetDataCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000158","GetFullVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000158","GetOptionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000158","GetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000158","HangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000158","NoopCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000158","ReceiveCharCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000158","ReceiveTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000158","RecordFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000158","SayAlphaCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000158","SayDateTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000158","SayDigitsCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000158","SayNumberCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000158","SayPhoneticCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000158","SayTimeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000158","SendImageCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000158","SendTextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000158","SetAutoHangupCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000158","SetCallerIdCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000158","SetContextCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000158","SetExtensionCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000158","SetMusicOffCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000158","SetMusicOnCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000158","SetPriorityCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000158","SetVariableCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000158","StreamFileCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000158","TDDModeCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000158","VerboseCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000158","WaitForDigitCommand Methods\u0000html/Methods_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000158","IMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_IMappingStrategy.htm\u000033","InvalidCommandSyntaxException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000207","InvalidOrUnknownCommandException Methods\u0000html/Methods_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000207","GeneralMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000153","ResourceMappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000153","ScriptMapping Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000153","MappingStrategy Methods\u0000html/Methods_T_AsterNET_FastAGI_MappingStrategy.htm\u0000152","ServerSocket Methods\u0000html/Methods_T_AsterNET_IO_ServerSocket.htm\u0000152","SocketConnection Methods\u0000html/Methods_T_AsterNET_IO_SocketConnection.htm\u0000239","Logger Methods\u0000html/Methods_T_AsterNET_Logger.htm\u0000223","AbsoluteTimeoutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000142","AgentCallbackLoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000142","AgentLogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000142","AgentsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgentsAction.htm\u0000150","AgiAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AgiAction.htm\u0000142","AOCMessageAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000142","AtxferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_AtxferAction.htm\u0000142","BridgeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_BridgeAction.htm\u0000142","ChallengeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000142","ChangeMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000142","CommandAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CommandAction.htm\u0000142","ConfbridgeKickAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000142","ConfbridgeListAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000150","ConfbridgeListRoomsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000150","ConfbridgeLockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000142","ConfbridgeMuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000142","ConfbridgeSetSingleVideoSrcAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000142","ConfbridgeStartRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000142","ConfbridgeStopRecordAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000142","ConfbridgeUnlockAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000142","ConfbridgeUnmuteAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000142","CoreSettingsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000142","CoreShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000142","CoreStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000142","CreateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000142","DBDelAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelAction.htm\u0000142","DBDelTreeAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000142","DBGetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBGetAction.htm\u0000150","DBPutAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_DBPutAction.htm\u0000142","EventsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_EventsAction.htm\u0000142","ExtensionStateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000142","GetConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000150","GetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_GetVarAction.htm\u0000142","HangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_HangupAction.htm\u0000142","LoginAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LoginAction.htm\u0000142","LogoffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_LogoffAction.htm\u0000142","MailboxCountAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000142","MailboxStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000142","ManagerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerAction.htm\u0000142","ManagerActionEvent Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000160","ManagerActionResponse Methods\u0000html/Methods_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000159","MonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_MonitorAction.htm\u0000142","OriginateAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_OriginateAction.htm\u0000211","ParkAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkAction.htm\u0000142","ParkedCallsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000150","PingAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_PingAction.htm\u0000142","ProxyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ProxyAction.htm\u0000142","QueueAddAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000142","QueueLogAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000142","QueuePauseAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000142","QueuePenaltyAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000142","QueueReloadAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000142","QueueRemoveAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000142","QueueResetAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000142","QueueRuleAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000142","QueueStatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000150","RedirectAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_RedirectAction.htm\u0000142","SetCDRUserFieldAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000142","SetVarAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SetVarAction.htm\u0000142","SIPPeersAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000150","SIPShowPeerAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000150","StatusAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StatusAction.htm\u0000150","StopMonitorAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000142","UpdateConfigAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000247","ZapDialOffhookAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000142","ZapDNDOffAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000142","ZapDNDOnAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000142","ZapHangupAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000142","ZapShowChannelsAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000150","ZapTransferAction Methods\u0000html/Methods_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000142","AuthenticationFailedException Methods\u0000html/Methods_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000207","EventTimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_EventTimeoutException.htm\u0000207","AbstractAgentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000259","AbstractAgentVariables Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000231","AbstractChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000170","AbstractConfbridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000170","AbstractMeetmeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000170","AbstractParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000170","AbstractQueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000170","AgentCallbackLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000170","AgentCallbackLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000170","AgentCalledEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000259","AgentCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000259","AgentConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000259","AgentDumpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000259","AgentLoginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000170","AgentLogoffEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000170","AgentsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000170","AgentsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000170","AGIExecEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000170","AlarmClearEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000170","AlarmEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000170","AsyncAGIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000170","AttendedTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000170","BlindTransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000170","BridgeActivityEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000170","BridgeCreateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000170","BridgeDestroyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000170","BridgeEnterEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000170","BridgeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000175","BridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000170","BridgeStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000170","CdrEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_CdrEvent.htm\u0000170","ChannelReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000170","ChannelUpdateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000170","ConfbridgeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000170","ConfbridgeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000170","ConfbridgeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000170","ConfbridgeListCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000170","ConfbridgeListEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000170","ConfbridgeListRoomsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000170","ConfbridgeListRoomsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000170","ConfbridgeStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000170","ConfbridgeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000170","ConnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000170","ConnectionStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000170","DBGetResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000170","DialBeginEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000170","DialEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000170","DialEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DialEvent.htm\u0000170","DisconnectEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000170","DNDStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000170","DTMFEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000170","ExtensionStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000170","FailedACLEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000170","FaxReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000259","HangupEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HangupEvent.htm\u0000170","HoldedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000170","HoldEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_HoldEvent.htm\u0000170","JabberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JabberEvent.htm\u0000170","JitterBufStatsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000170","JoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_JoinEvent.htm\u0000170","LeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000170","LinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LinkEvent.htm\u0000169","LogChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000170","ManagerEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000156","MeetmeEndEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000170","MeetmeJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000170","MeetmeLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000170","MeetmeMuteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000170","MeetmeStopTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000170","MeetmeTalkingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000170","MeetmeTalkRequestEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000170","MessageWaitingEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000170","MobileStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000170","ModuleLoadReportEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000170","MonitorStartEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000170","MonitorStopEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000170","NewAccountCodeEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000170","NewCallerIdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000170","NewChannelEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000170","NewExtenEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000170","NewStateEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000170","OriginateResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000170","ParkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000170","ParkedCallGiveUpEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000170","ParkedCallsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000170","ParkedCallTimeOutEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000170","PeerEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000170","PeerlistCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000170","PeerStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000170","PRIEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_PRIEvent.htm\u0000170","QueueCallerAbandonEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000170","QueueCallerJoinEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000170","QueueCallerLeaveEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000170","QueueEntryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000170","QueueEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueEvent.htm\u0000170","QueueMemberAddedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000170","QueueMemberEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000170","QueueMemberPausedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000170","QueueMemberPauseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000170","QueueMemberPenaltyEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000170","QueueMemberRemovedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000170","QueueMemberRinginuseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u0000170","QueueMemberStatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000170","QueueParamsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000170","QueueStatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000170","RegistryEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000170","ReloadEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000170","RenameEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RenameEvent.htm\u0000170","ResponseEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000170","RTCPReceivedEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000170","RTCPSentEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000170","RTPReceiverStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000170","RTPSenderStatEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000170","ShowDialPlanCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000170","ShutdownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000170","StatusCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000170","StatusEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_StatusEvent.htm\u0000170","TransferEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_TransferEvent.htm\u0000170","UnholdEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000170","UnknownEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000170","UnlinkEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000169","UnparkedCallEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000170","UserEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_UserEvent.htm\u0000171","VarSetEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000170","ZapShowChannelsCompleteEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000170","ZapShowChannelsEvent Methods\u0000html/Methods_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000170","IResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_IResponseHandler.htm\u000043","ManagerConnection Methods\u0000html/Methods_T_AsterNET_Manager_ManagerConnection.htm\u0000290","ManagerException Methods\u0000html/Methods_T_AsterNET_Manager_ManagerException.htm\u0000207","ManagerReader Methods\u0000html/Methods_T_AsterNET_Manager_ManagerReader.htm\u0000150","Originate Methods\u0000html/Methods_T_AsterNET_Manager_Originate.htm\u0000211","ResponseEventHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEventHandler.htm\u0000153","ResponseEvents Methods\u0000html/Methods_T_AsterNET_Manager_ResponseEvents.htm\u0000159","ResponseHandler Methods\u0000html/Methods_T_AsterNET_Manager_ResponseHandler.htm\u0000152","ChallengeResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000316","CommandResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_CommandResponse.htm\u0000316","ExtensionStateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000316","GetConfigResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000331","MailboxCountResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000316","MailboxStatusResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000316","ManagerError Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerError.htm\u0000316","ManagerResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000288","OriginateResponse Methods\u0000html/Methods_T_AsterNET_Manager_Response_OriginateResponse.htm\u0000167","TimeoutException Methods\u0000html/Methods_T_AsterNET_Manager_TimeoutException.htm\u0000207","MD5Support Methods\u0000html/Methods_T_AsterNET_Util_MD5Support.htm\u0000201","ThreadClass Methods\u0000html/Methods_T_AsterNET_Util_ThreadClass.htm\u0000189","ThreadPool Methods\u0000html/Methods_T_AsterNET_Util_ThreadPool.htm\u0000201","AGIChannel.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIChannel_SendCommand.htm\u0000180","AGIChannel Constructor (AGIWriter, AGIReader, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor.htm\u0000323","AGIChannel Constructor (SocketConnection, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AGIChannel__ctor_1.htm\u0000253","AGIConnectionHandler.Run Method\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler_Run.htm\u000095","AGIConnectionHandler Constructor\u0000html/M_AsterNET_FastAGI_AGIConnectionHandler__ctor.htm\u0000268","AGIException Constructor\u0000html/M_AsterNET_FastAGI_AGIException__ctor.htm\u000086","AGIException Constructor (String)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_1.htm\u0000120","AGIException Constructor (String, Exception)\u0000html/M_AsterNET_FastAGI_AGIException__ctor_2.htm\u0000160","AGIHangupException Constructor\u0000html/M_AsterNET_FastAGI_AGIHangupException__ctor.htm\u000084","AGINetworkException Constructor\u0000html/M_AsterNET_FastAGI_AGINetworkException__ctor.htm\u0000186","AGIReader.ReadReply Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadReply.htm\u0000119","AGIReader.ReadRequest Method\u0000html/M_AsterNET_FastAGI_AGIReader_ReadRequest.htm\u0000119","AGIReader Constructor\u0000html/M_AsterNET_FastAGI_AGIReader__ctor.htm\u0000134","AGIReply.GetAttribute Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetAttribute.htm\u0000186","AGIReply.GetResult Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetResult.htm\u0000109","AGIReply.GetStatus Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetStatus.htm\u0000112","AGIReply.GetSynopsis Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetSynopsis.htm\u0000127","AGIReply.GetUsage Method\u0000html/M_AsterNET_FastAGI_AGIReply_GetUsage.htm\u0000127","AGIReply.ToString Method\u0000html/M_AsterNET_FastAGI_AGIReply_ToString.htm\u0000132","AGIReply Constructor\u0000html/M_AsterNET_FastAGI_AGIReply__ctor.htm\u000086","AGIReply Constructor (List(String))\u0000html/M_AsterNET_FastAGI_AGIReply__ctor_1.htm\u0000168","AGIRequest.Parameter Method\u0000html/M_AsterNET_FastAGI_AGIRequest_Parameter.htm\u0000172","AGIRequest.ParameterMap Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterMap.htm\u0000176","AGIRequest.ParameterValues Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ParameterValues.htm\u0000194","AGIRequest.ToString Method\u0000html/M_AsterNET_FastAGI_AGIRequest_ToString.htm\u0000132","AGIRequest Constructor\u0000html/M_AsterNET_FastAGI_AGIRequest__ctor.htm\u0000140","AGIScript.Answer Method\u0000html/M_AsterNET_FastAGI_AGIScript_Answer.htm\u000084","AGIScript.ControlStreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000232","AGIScript.ControlStreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_1.htm\u0000272","AGIScript.ControlStreamFile Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_2.htm\u0000306","AGIScript.ControlStreamFile Method (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_ControlStreamFile_3.htm\u0000408","AGIScript.DatabaseDel Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDel.htm\u0000160","AGIScript.DatabaseDelTree Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u0000125","AGIScript.DatabaseDelTree Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseDelTree_1.htm\u0000178","AGIScript.DatabaseGet Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabaseGet.htm\u0000190","AGIScript.DatabasePut Method\u0000html/M_AsterNET_FastAGI_AGIScript_DatabasePut.htm\u0000201","AGIScript.Exec Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec.htm\u0000151","AGIScript.Exec Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_Exec_1.htm\u0000194","AGIScript.GetChannelStatus Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm\u0000147","AGIScript.GetData Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData.htm\u0000166","AGIScript.GetData Method (String, Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_1.htm\u0000227","AGIScript.GetData Method (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetData_2.htm\u0000273","AGIScript.GetFullVariable Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u0000167","AGIScript.GetFullVariable Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetFullVariable_1.htm\u0000206","AGIScript.GetOption Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000228","AGIScript.GetOption Method (String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_GetOption_1.htm\u0000269","AGIScript.GetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_GetVariable.htm\u0000142","AGIScript.Hangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_Hangup.htm\u000085","AGIScript.PlayMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000094","AGIScript.PlayMusicOnHold Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm\u0000141","AGIScript.RecordFile Method (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000351","AGIScript.RecordFile Method (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_RecordFile_1.htm\u0000467","AGIScript.SayAlpha Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u0000120","AGIScript.SayAlpha Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayAlpha_1.htm\u0000194","AGIScript.SayDateTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000142","AGIScript.SayDateTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_1.htm\u0000213","AGIScript.SayDateTime Method (Int64, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_2.htm\u0000253","AGIScript.SayDateTime Method (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDateTime_3.htm\u0000303","AGIScript.SayDigits Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits.htm\u0000121","AGIScript.SayDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayDigits_1.htm\u0000194","AGIScript.SayNumber Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber.htm\u0000119","AGIScript.SayNumber Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayNumber_1.htm\u0000193","AGIScript.SayPhonetic Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u0000122","AGIScript.SayPhonetic Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayPhonetic_1.htm\u0000196","AGIScript.SayTime Method (Int64)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime.htm\u0000129","AGIScript.SayTime Method (Int64, String)\u0000html/M_AsterNET_FastAGI_AGIScript_SayTime_1.htm\u0000203","AGIScript.Service Method\u0000html/M_AsterNET_FastAGI_AGIScript_Service.htm\u0000212","AGIScript.SetAutoHangup Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetAutoHangup.htm\u0000147","AGIScript.SetCallerId Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm\u0000152","AGIScript.SetContext Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetContext.htm\u0000137","AGIScript.SetExtension Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetExtension.htm\u0000137","AGIScript.SetPriority Method (Int32)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority.htm\u0000140","AGIScript.SetPriority Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_SetPriority_1.htm\u0000142","AGIScript.SetVariable Method\u0000html/M_AsterNET_FastAGI_AGIScript_SetVariable.htm\u0000157","AGIScript.StopMusicOnHold Method\u0000html/M_AsterNET_FastAGI_AGIScript_StopMusicOnHold.htm\u000086","AGIScript.StreamFile Method (String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile.htm\u0000121","AGIScript.StreamFile Method (String, String)\u0000html/M_AsterNET_FastAGI_AGIScript_StreamFile_1.htm\u0000193","AGIScript.Verbose Method\u0000html/M_AsterNET_FastAGI_AGIScript_Verbose.htm\u0000159","AGIScript.WaitForDigit Method\u0000html/M_AsterNET_FastAGI_AGIScript_WaitForDigit.htm\u0000153","AGIScript Constructor\u0000html/M_AsterNET_FastAGI_AGIScript__ctor.htm\u000084","AGIWriter.SendCommand Method\u0000html/M_AsterNET_FastAGI_AGIWriter_SendCommand.htm\u0000151","AGIWriter Constructor\u0000html/M_AsterNET_FastAGI_AGIWriter__ctor.htm\u0000134","AsteriskFastAGI.Start Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Start.htm\u000095","AsteriskFastAGI.Stop Method\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI_Stop.htm\u000095","AsteriskFastAGI Constructor\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u000083","AsteriskFastAGI Constructor (IMappingStrategy)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_1.htm\u0000136","AsteriskFastAGI Constructor (IMappingStrategy, String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_2.htm\u0000318","AsteriskFastAGI Constructor (Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_3.htm\u0000163","AsteriskFastAGI Constructor (String)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_4.htm\u0000134","AsteriskFastAGI Constructor (String, Int32, Int32)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_5.htm\u0000197","AsteriskFastAGI Constructor (String, Int32, Int32, Boolean, Boolean)\u0000html/M_AsterNET_FastAGI_AsteriskFastAGI__ctor_6.htm\u0000511","AGICommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_BuildCommand.htm\u0000127","AGICommand.EscapeAndQuote Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_EscapeAndQuote.htm\u0000177","AGICommand.ToString Method\u0000html/M_AsterNET_FastAGI_Command_AGICommand_ToString.htm\u0000136","AGICommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AGICommand__ctor.htm\u000086","AnswerCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand_BuildCommand.htm\u0000136","AnswerCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_AnswerCommand__ctor.htm\u000086","ChannelStatusCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand_BuildCommand.htm\u0000136","ChannelStatusCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000088","ChannelStatusCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor_1.htm\u0000125","ControlStreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_BuildCommand.htm\u0000136","ControlStreamFileCommand.ControlDigits Method (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u0000160","ControlStreamFileCommand.ControlDigits Method (String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits_1.htm\u0000197","ControlStreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000154","ControlStreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_1.htm\u0000194","ControlStreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_2.htm\u0000240","ControlStreamFileCommand Constructor (String, String, Int32, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor_3.htm\u0000342","DatabaseDelCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand_BuildCommand.htm\u0000136","DatabaseDelCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u0000121","DatabaseDelCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor_1.htm\u0000157","DatabaseDelTreeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_BuildCommand.htm\u0000136","DatabaseDelTreeCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u0000120","DatabaseDelTreeCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor_1.htm\u0000153","DatabaseGetCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand_BuildCommand.htm\u0000136","DatabaseGetCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabaseGetCommand__ctor.htm\u0000146","DatabasePutCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand_BuildCommand.htm\u0000136","DatabasePutCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_DatabasePutCommand__ctor.htm\u0000177","ExecCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ExecCommand_BuildCommand.htm\u0000136","ExecCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u0000120","ExecCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_ExecCommand__ctor_1.htm\u0000156","GetDataCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand_BuildCommand.htm\u0000136","GetDataCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u0000133","GetDataCommand Constructor (String, Int64)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_1.htm\u0000190","GetDataCommand Constructor (String, Int64, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetDataCommand__ctor_2.htm\u0000230","GetFullVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand_BuildCommand.htm\u0000136","GetFullVariableCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u0000120","GetFullVariableCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor_1.htm\u0000154","GetOptionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand_BuildCommand.htm\u0000136","GetOptionCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u0000171","GetOptionCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_GetOptionCommand__ctor_1.htm\u0000212","GetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand_BuildCommand.htm\u0000136","GetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_GetVariableCommand__ctor.htm\u0000115","HangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_HangupCommand_BuildCommand.htm\u0000136","HangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000091","HangupCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_HangupCommand__ctor_1.htm\u0000126","NoopCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_NoopCommand_BuildCommand.htm\u0000136","NoopCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_NoopCommand__ctor.htm\u000083","ReceiveCharCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand_BuildCommand.htm\u0000136","ReceiveCharCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000096","ReceiveCharCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor_1.htm\u0000122","ReceiveTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand_BuildCommand.htm\u0000136","ReceiveTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000096","ReceiveTextCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor_1.htm\u0000147","RecordFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand_BuildCommand.htm\u0000136","RecordFileCommand Constructor (String, String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u0000247","RecordFileCommand Constructor (String, String, String, Int32, Int32, Boolean, Int32)\u0000html/M_AsterNET_FastAGI_Command_RecordFileCommand__ctor_1.htm\u0000363","SayAlphaCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand_BuildCommand.htm\u0000136","SayAlphaCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u0000117","SayAlphaCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayAlphaCommand__ctor_1.htm\u0000157","SayDateTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand_BuildCommand.htm\u0000136","SayDateTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000164","SayDateTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_1.htm\u0000192","SayDateTimeCommand Constructor (Int64, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_2.htm\u0000232","SayDateTimeCommand Constructor (Int64, String, String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor_3.htm\u0000282","SayDigitsCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand_BuildCommand.htm\u0000136","SayDigitsCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u0000117","SayDigitsCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayDigitsCommand__ctor_1.htm\u0000156","SayNumberCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand_BuildCommand.htm\u0000136","SayNumberCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u0000117","SayNumberCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayNumberCommand__ctor_1.htm\u0000157","SayPhoneticCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand_BuildCommand.htm\u0000136","SayPhoneticCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u0000117","SayPhoneticCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor_1.htm\u0000157","SayTimeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand_BuildCommand.htm\u0000136","SayTimeCommand Constructor (Int64)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u0000127","SayTimeCommand Constructor (Int64, String)\u0000html/M_AsterNET_FastAGI_Command_SayTimeCommand__ctor_1.htm\u0000167","SendImageCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand_BuildCommand.htm\u0000136","SendImageCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendImageCommand__ctor.htm\u0000117","SendTextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand_BuildCommand.htm\u0000136","SendTextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SendTextCommand__ctor.htm\u0000112","SetAutoHangupCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand_BuildCommand.htm\u0000136","SetAutoHangupCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetAutoHangupCommand__ctor.htm\u0000123","SetCallerIdCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand_BuildCommand.htm\u0000136","SetCallerIdCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetCallerIdCommand__ctor.htm\u0000111","SetContextCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand_BuildCommand.htm\u0000136","SetContextCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetContextCommand__ctor.htm\u0000116","SetExtensionCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand_BuildCommand.htm\u0000136","SetExtensionCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetExtensionCommand__ctor.htm\u0000116","SetMusicOffCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand_BuildCommand.htm\u0000136","SetMusicOffCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOffCommand__ctor.htm\u000083","SetMusicOnCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand_BuildCommand.htm\u0000136","SetMusicOnCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000094","SetMusicOnCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor_1.htm\u0000131","SetPriorityCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand_BuildCommand.htm\u0000136","SetPriorityCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u0000119","SetPriorityCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_SetPriorityCommand__ctor_1.htm\u0000121","SetVariableCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand_BuildCommand.htm\u0000136","SetVariableCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_SetVariableCommand__ctor.htm\u0000165","StreamFileCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand_BuildCommand.htm\u0000136","StreamFileCommand Constructor (String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u0000130","StreamFileCommand Constructor (String, String)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_1.htm\u0000170","StreamFileCommand Constructor (String, String, Int32)\u0000html/M_AsterNET_FastAGI_Command_StreamFileCommand__ctor_2.htm\u0000216","TDDModeCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand_BuildCommand.htm\u0000136","TDDModeCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_TDDModeCommand__ctor.htm\u0000158","VerboseCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand_BuildCommand.htm\u0000136","VerboseCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_VerboseCommand__ctor.htm\u0000150","WaitForDigitCommand.BuildCommand Method\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand_BuildCommand.htm\u0000136","WaitForDigitCommand Constructor\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000097","WaitForDigitCommand Constructor (Int32)\u0000html/M_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor_1.htm\u0000123","IMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_DetermineScript.htm\u0000171","IMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_IMappingStrategy_Load.htm\u000090","InvalidCommandSyntaxException Constructor\u0000html/M_AsterNET_FastAGI_InvalidCommandSyntaxException__ctor.htm\u0000149","InvalidOrUnknownCommandException Constructor\u0000html/M_AsterNET_FastAGI_InvalidOrUnknownCommandException__ctor.htm\u0000111","GeneralMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_DetermineScript.htm\u0000200","GeneralMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy_Load.htm\u0000112","GeneralMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000088","GeneralMappingStrategy Constructor (List(ScriptMapping))\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_1.htm\u0000173","GeneralMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor_2.htm\u0000140","ResourceMappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_DetermineScript.htm\u0000200","ResourceMappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_Load.htm\u0000112","ResourceMappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000088","ResourceMappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor_1.htm\u0000140","ScriptMapping.LoadMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_LoadMappings.htm\u0000203","ScriptMapping.SaveMappings Method\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping_SaveMappings.htm\u0000254","ScriptMapping Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategies_ScriptMapping__ctor.htm\u000086","MappingStrategy.DetermineScript Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_DetermineScript.htm\u0000195","MappingStrategy.Load Method\u0000html/M_AsterNET_FastAGI_MappingStrategy_Load.htm\u0000109","MappingStrategy Constructor\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000086","MappingStrategy Constructor (String)\u0000html/M_AsterNET_FastAGI_MappingStrategy__ctor_1.htm\u0000137","ServerSocket.Accept Method\u0000html/M_AsterNET_IO_ServerSocket_Accept.htm\u0000119","ServerSocket.Close Method\u0000html/M_AsterNET_IO_ServerSocket_Close.htm\u000095","ServerSocket Constructor\u0000html/M_AsterNET_IO_ServerSocket__ctor.htm\u0000250","SocketConnection.Close Method\u0000html/M_AsterNET_IO_SocketConnection_Close.htm\u0000120","SocketConnection.ReadLine Method\u0000html/M_AsterNET_IO_SocketConnection_ReadLine.htm\u0000125","SocketConnection.Write Method\u0000html/M_AsterNET_IO_SocketConnection_Write.htm\u0000124","SocketConnection.WriteEx Method\u0000html/M_AsterNET_IO_SocketConnection_WriteEx.htm\u0000124","SocketConnection Constructor\u0000html/M_AsterNET_IO_SocketConnection__ctor.htm\u0000157","Logger.Debug Method (Object)\u0000html/M_AsterNET_Logger_Debug.htm\u0000146","Logger.Debug Method (String)\u0000html/M_AsterNET_Logger_Debug_1.htm\u0000146","Logger.Debug Method (String, Exception)\u0000html/M_AsterNET_Logger_Debug_2.htm\u0000202","Logger.Debug Method (String, Object[])\u0000html/M_AsterNET_Logger_Debug_3.htm\u0000229","Logger.Error Method (Object)\u0000html/M_AsterNET_Logger_Error.htm\u0000146","Logger.Error Method (String)\u0000html/M_AsterNET_Logger_Error_1.htm\u0000146","Logger.Error Method (String, Exception)\u0000html/M_AsterNET_Logger_Error_2.htm\u0000202","Logger.Error Method (String, Object[])\u0000html/M_AsterNET_Logger_Error_3.htm\u0000229","Logger.Info Method (Object)\u0000html/M_AsterNET_Logger_Info.htm\u0000146","Logger.Info Method (String)\u0000html/M_AsterNET_Logger_Info_1.htm\u0000146","Logger.Info Method (String, Exception)\u0000html/M_AsterNET_Logger_Info_2.htm\u0000202","Logger.Info Method (String, Object[])\u0000html/M_AsterNET_Logger_Info_3.htm\u0000229","Logger.Instance Method\u0000html/M_AsterNET_Logger_Instance.htm\u0000108","Logger.IsVisible Method\u0000html/M_AsterNET_Logger_IsVisible.htm\u0000216","Logger.Visible Method (Boolean, Logger.MessageLevel)\u0000html/M_AsterNET_Logger_Visible.htm\u0000148","Logger.Visible Method (Boolean, Logger.MessageLevel, String)\u0000html/M_AsterNET_Logger_Visible_1.htm\u0000178","Logger.Warning Method (Object)\u0000html/M_AsterNET_Logger_Warning.htm\u0000146","Logger.Warning Method (String)\u0000html/M_AsterNET_Logger_Warning_1.htm\u0000146","Logger.Warning Method (String, Exception)\u0000html/M_AsterNET_Logger_Warning_2.htm\u0000202","Logger.Warning Method (String, Object[])\u0000html/M_AsterNET_Logger_Warning_3.htm\u0000229","Logger Constructor\u0000html/M_AsterNET_Logger__ctor.htm\u000088","AbsoluteTimeoutAction Constructor\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000086","AbsoluteTimeoutAction Constructor (String, Int32)\u0000html/M_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor_1.htm\u0000159","AgentCallbackLoginAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000086","AgentCallbackLoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_1.htm\u0000173","AgentCallbackLoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor_2.htm\u0000214","AgentLogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000086","AgentLogoffAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_1.htm\u0000126","AgentLogoffAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_AgentLogoffAction__ctor_2.htm\u0000164","AgentsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_AgentsAction_ActionCompleteEventClass.htm\u0000136","AgentsAction Constructor\u0000html/M_AsterNET_Manager_Action_AgentsAction__ctor.htm\u000086","AgiAction Constructor\u0000html/M_AsterNET_Manager_Action_AgiAction__ctor.htm\u0000188","AOCMessageAction Constructor\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000090","AOCMessageAction Constructor (String, String, String, String, Int32, Int32, String, String, String, String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AOCMessageAction__ctor_1.htm\u00001191","AtxferAction Constructor\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000083","AtxferAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_AtxferAction__ctor_1.htm\u0000212","BridgeAction Constructor\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000088","BridgeAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_BridgeAction__ctor_1.htm\u0000191","ChallengeAction Constructor\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000088","ChallengeAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ChallengeAction__ctor_1.htm\u0000131","ChangeMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000086","ChangeMonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ChangeMonitorAction__ctor_1.htm\u0000182","CommandAction Constructor\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor.htm\u000085","CommandAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CommandAction__ctor_1.htm\u0000122","ConfbridgeKickAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000089","ConfbridgeKickAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeKickAction__ctor_1.htm\u0000198","ConfbridgeListAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListAction__ctor.htm\u0000150","ConfbridgeListRoomsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction_ActionCompleteEventClass.htm\u0000136","ConfbridgeListRoomsAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeListRoomsAction__ctor.htm\u000086","ConfbridgeLockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000085","ConfbridgeLockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeLockAction__ctor_1.htm\u0000137","ConfbridgeMuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000089","ConfbridgeMuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor_1.htm\u0000198","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000086","ConfbridgeSetSingleVideoSrcAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor_1.htm\u0000195","ConfbridgeStartRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000141","ConfbridgeStartRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor_1.htm\u0000193","ConfbridgeStopRecordAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000086","ConfbridgeStopRecordAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor_1.htm\u0000138","ConfbridgeUnlockAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000085","ConfbridgeUnlockAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor_1.htm\u0000137","ConfbridgeUnmuteAction Constructor\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000089","ConfbridgeUnmuteAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor_1.htm\u0000198","CoreSettingsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreSettingsAction__ctor.htm\u000086","CoreShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreShowChannelsAction__ctor.htm\u000086","CoreStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_CoreStatusAction__ctor.htm\u000086","CreateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u0000113","CreateConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_CreateConfigAction__ctor_1.htm\u0000165","DBDelAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000086","DBDelAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelAction__ctor_1.htm\u0000168","DBDelTreeAction Constructor\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000086","DBDelTreeAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBDelTreeAction__ctor_1.htm\u0000165","DBGetAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_DBGetAction_ActionCompleteEventClass.htm\u0000136","DBGetAction Constructor\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000086","DBGetAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_DBGetAction__ctor_1.htm\u0000168","DBPutAction Constructor\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000086","DBPutAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_DBPutAction__ctor_1.htm\u0000200","EventsAction Constructor\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor.htm\u000086","EventsAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_EventsAction__ctor_1.htm\u0000181","ExtensionStateAction Constructor\u0000html/M_AsterNET_Manager_Action_ExtensionStateAction__ctor.htm\u000086","GetConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_GetConfigAction_ActionCompleteResponseClass.htm\u0000136","GetConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000085","GetConfigAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetConfigAction__ctor_1.htm\u0000118","GetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000086","GetVarAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_1.htm\u0000128","GetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_GetVarAction__ctor_2.htm\u0000170","HangupAction Constructor\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor.htm\u000086","HangupAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_HangupAction__ctor_1.htm\u0000126","LoginAction Constructor\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor.htm\u000086","LoginAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_1.htm\u0000186","LoginAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_2.htm\u0000209","LoginAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_LoginAction__ctor_3.htm\u0000295","LogoffAction Constructor\u0000html/M_AsterNET_Manager_Action_LogoffAction__ctor.htm\u000086","MailboxCountAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000086","MailboxCountAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxCountAction__ctor_1.htm\u0000162","MailboxStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000086","MailboxStatusAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_MailboxStatusAction__ctor_1.htm\u0000158","ManagerActionEvent.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent_ActionCompleteEventClass.htm\u0000132","ManagerActionEvent Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionEvent__ctor.htm\u000086","ManagerActionResponse.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse_ActionCompleteResponseClass.htm\u0000130","ManagerActionResponse Constructor\u0000html/M_AsterNET_Manager_Action_ManagerActionResponse__ctor.htm\u000086","ManagerAction.ToString Method\u0000html/M_AsterNET_Manager_Action_ManagerAction_ToString.htm\u0000136","ManagerAction Constructor\u0000html/M_AsterNET_Manager_Action_ManagerAction__ctor.htm\u000086","MonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor.htm\u000086","MonitorAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_1.htm\u0000180","MonitorAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_2.htm\u0000217","MonitorAction Constructor (String, String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_MonitorAction__ctor_3.htm\u0000258","OriginateAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_ActionCompleteEventClass.htm\u0000136","OriginateAction.GetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariable.htm\u0000175","OriginateAction.GetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_GetVariables.htm\u0000175","OriginateAction.SetVariable Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariable.htm\u0000202","OriginateAction.SetVariables Method\u0000html/M_AsterNET_Manager_Action_OriginateAction_SetVariables.htm\u0000210","OriginateAction Constructor\u0000html/M_AsterNET_Manager_Action_OriginateAction__ctor.htm\u000086","ParkAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor.htm\u0000255","ParkAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_ParkAction__ctor_1.htm\u0000237","ParkedCallsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction_ActionCompleteEventClass.htm\u0000136","ParkedCallsAction Constructor\u0000html/M_AsterNET_Manager_Action_ParkedCallsAction__ctor.htm\u000086","PingAction Constructor\u0000html/M_AsterNET_Manager_Action_PingAction__ctor.htm\u000086","ProxyAction Constructor\u0000html/M_AsterNET_Manager_Action_ProxyAction__ctor.htm\u000086","QueueAddAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u000086","QueueAddAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_1.htm\u0000190","QueueAddAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_2.htm\u0000229","QueueAddAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_QueueAddAction__ctor_3.htm\u0000290","QueueLogAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000086","QueueLogAction Constructor (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueLogAction__ctor_1.htm\u0000390","QueuePauseAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u000086","QueuePauseAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_1.htm\u0000132","QueuePauseAction Constructor (String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_2.htm\u0000173","QueuePauseAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_3.htm\u0000169","QueuePauseAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_QueuePauseAction__ctor_4.htm\u0000208","QueuePenaltyAction Constructor\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000088","QueuePenaltyAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_QueuePenaltyAction__ctor_1.htm\u0000258","QueueReloadAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000096","QueueReloadAction Constructor (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_QueueReloadAction__ctor_1.htm\u0000331","QueueRemoveAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000086","QueueRemoveAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_QueueRemoveAction__ctor_1.htm\u0000170","QueueResetAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000084","QueueResetAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueResetAction__ctor_1.htm\u0000136","QueueRuleAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000088","QueueRuleAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_QueueRuleAction__ctor_1.htm\u0000140","QueueStatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_QueueStatusAction_ActionCompleteEventClass.htm\u0000136","QueueStatusAction Constructor\u0000html/M_AsterNET_Manager_Action_QueueStatusAction__ctor.htm\u000086","RedirectAction Constructor\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000086","RedirectAction Constructor (String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_1.htm\u0000224","RedirectAction Constructor (String, String, String, String, Int32)\u0000html/M_AsterNET_Manager_Action_RedirectAction__ctor_2.htm\u0000261","SetCDRUserFieldAction Constructor\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000086","SetCDRUserFieldAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_1.htm\u0000169","SetCDRUserFieldAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor_2.htm\u0000209","SetVarAction Constructor\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000086","SetVarAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_1.htm\u0000161","SetVarAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_SetVarAction__ctor_2.htm\u0000201","SIPPeersAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPPeersAction_ActionCompleteEventClass.htm\u0000136","SIPPeersAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPPeersAction__ctor.htm\u000086","SIPShowPeerAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction_ActionCompleteEventClass.htm\u0000136","SIPShowPeerAction Constructor\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000086","SIPShowPeerAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_SIPShowPeerAction__ctor_1.htm\u0000146","StatusAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_StatusAction_ActionCompleteEventClass.htm\u0000136","StatusAction Constructor\u0000html/M_AsterNET_Manager_Action_StatusAction__ctor.htm\u000086","StopMonitorAction Constructor\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000086","StopMonitorAction Constructor (String)\u0000html/M_AsterNET_Manager_Action_StopMonitorAction__ctor_1.htm\u0000144","UpdateConfigAction.ActionCompleteResponseClass Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_ActionCompleteResponseClass.htm\u0000136","UpdateConfigAction.AddCommand Method\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000100","UpdateConfigAction.AddCommand Method (String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_1.htm\u0000154","UpdateConfigAction.AddCommand Method (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_2.htm\u0000212","UpdateConfigAction.AddCommand Method (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_3.htm\u0000274","UpdateConfigAction.AddCommand Method (String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_4.htm\u0000340","UpdateConfigAction.AddCommand Method (String, String, String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction_AddCommand_5.htm\u0000313","UpdateConfigAction Constructor\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000085","UpdateConfigAction Constructor (String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_1.htm\u0000194","UpdateConfigAction Constructor (String, String, Boolean)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_2.htm\u0000253","UpdateConfigAction Constructor (String, String, String)\u0000html/M_AsterNET_Manager_Action_UpdateConfigAction__ctor_3.htm\u0000255","ZapDialOffhookAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000086","ZapDialOffhookAction Constructor (Int32, String)\u0000html/M_AsterNET_Manager_Action_ZapDialOffhookAction__ctor_1.htm\u0000202","ZapDNDOffAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000086","ZapDNDOffAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOffAction__ctor_1.htm\u0000148","ZapDNDOnAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000086","ZapDNDOnAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapDNDOnAction__ctor_1.htm\u0000148","ZapHangupAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000086","ZapHangupAction Constructor (Int32)\u0000html/M_AsterNET_Manager_Action_ZapHangupAction__ctor_1.htm\u0000153","ZapShowChannelsAction.ActionCompleteEventClass Method\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction_ActionCompleteEventClass.htm\u0000136","ZapShowChannelsAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapShowChannelsAction__ctor.htm\u000086","ZapTransferAction Constructor\u0000html/M_AsterNET_Manager_Action_ZapTransferAction__ctor.htm\u000086","AuthenticationFailedException Constructor (String)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u0000119","AuthenticationFailedException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_AuthenticationFailedException__ctor_1.htm\u0000155","EventTimeoutException Constructor\u0000html/M_AsterNET_Manager_EventTimeoutException__ctor.htm\u0000162","AbstractAgentEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentEvent__ctor.htm\u0000137","AbstractAgentVariables.GetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariable.htm\u0000175","AbstractAgentVariables.GetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_GetVariables.htm\u0000175","AbstractAgentVariables.SetVariable Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariable.htm\u0000202","AbstractAgentVariables.SetVariables Method\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables_SetVariables.htm\u0000210","AbstractAgentVariables Constructor\u0000html/M_AsterNET_Manager_Event_AbstractAgentVariables__ctor.htm\u0000137","AbstractChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractChannelEvent__ctor.htm\u0000137","AbstractConfbridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000088","AbstractConfbridgeEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor_1.htm\u0000142","AbstractMeetmeEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractMeetmeEvent__ctor.htm\u0000137","AbstractParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractParkedCallEvent__ctor.htm\u0000137","AbstractQueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_AbstractQueueMemberEvent__ctor.htm\u0000112","AgentCallbackLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLoginEvent__ctor.htm\u0000137","AgentCallbackLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCallbackLogoffEvent__ctor.htm\u0000137","AgentCalledEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCalledEvent__ctor.htm\u0000137","AgentCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentCompleteEvent__ctor.htm\u0000137","AgentConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentConnectEvent__ctor.htm\u0000137","AgentDumpEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentDumpEvent__ctor.htm\u0000137","AgentLoginEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLoginEvent__ctor.htm\u0000137","AgentLogoffEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentLogoffEvent__ctor.htm\u0000137","AgentsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsCompleteEvent__ctor.htm\u0000137","AgentsEvent Constructor\u0000html/M_AsterNET_Manager_Event_AgentsEvent__ctor.htm\u0000137","AGIExecEvent Constructor\u0000html/M_AsterNET_Manager_Event_AGIExecEvent__ctor.htm\u0000134","AlarmClearEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmClearEvent__ctor.htm\u0000137","AlarmEvent Constructor\u0000html/M_AsterNET_Manager_Event_AlarmEvent__ctor.htm\u0000137","AsyncAGIEvent Constructor\u0000html/M_AsterNET_Manager_Event_AsyncAGIEvent__ctor.htm\u0000137","AttendedTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_AttendedTransferEvent__ctor.htm\u0000137","BlindTransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_BlindTransferEvent__ctor.htm\u0000137","BridgeActivityEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeActivityEvent__ctor.htm\u0000137","BridgeCreateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeCreateEvent__ctor.htm\u0000137","BridgeDestroyEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeDestroyEvent__ctor.htm\u0000137","BridgeEnterEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEnterEvent__ctor.htm\u0000137","BridgeEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_BridgeEvent_ParseSpecial.htm\u0000231","BridgeEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeEvent__ctor.htm\u0000137","BridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeLeaveEvent__ctor.htm\u0000137","BridgeStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_BridgeStateEvent__ctor.htm\u0000137","CdrEvent Constructor\u0000html/M_AsterNET_Manager_Event_CdrEvent__ctor.htm\u0000137","ChannelReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelReloadEvent__ctor.htm\u0000137","ChannelUpdateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ChannelUpdateEvent__ctor.htm\u0000134","ConfbridgeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeEndEvent__ctor.htm\u0000137","ConfbridgeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeJoinEvent__ctor.htm\u0000137","ConfbridgeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeLeaveEvent__ctor.htm\u0000137","ConfbridgeListCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListCompleteEvent__ctor.htm\u0000137","ConfbridgeListEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListEvent__ctor.htm\u0000137","ConfbridgeListRoomsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent__ctor.htm\u0000137","ConfbridgeListRoomsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeListRoomsEvent__ctor.htm\u0000137","ConfbridgeStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeStartEvent__ctor.htm\u0000137","ConfbridgeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConfbridgeTalkingEvent__ctor.htm\u0000137","ConnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectEvent__ctor.htm\u0000137","ConnectionStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_ConnectionStateEvent__ctor.htm\u0000137","DBGetResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_DBGetResponseEvent__ctor.htm\u0000137","DialBeginEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialBeginEvent__ctor.htm\u0000134","DialEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEndEvent__ctor.htm\u0000134","DialEvent Constructor\u0000html/M_AsterNET_Manager_Event_DialEvent__ctor.htm\u0000134","DisconnectEvent Constructor\u0000html/M_AsterNET_Manager_Event_DisconnectEvent__ctor.htm\u0000137","DNDStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_DNDStateEvent__ctor.htm\u0000134","DTMFEvent Constructor\u0000html/M_AsterNET_Manager_Event_DTMFEvent__ctor.htm\u0000134","ExtensionStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_ExtensionStatusEvent__ctor.htm\u0000137","FailedACLEvent Constructor\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000088","FailedACLEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_FailedACLEvent__ctor_1.htm\u0000142","FaxReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_FaxReceivedEvent__ctor.htm\u0000137","HangupEvent Constructor\u0000html/M_AsterNET_Manager_Event_HangupEvent__ctor.htm\u0000137","HoldedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldedCallEvent__ctor.htm\u0000137","HoldEvent Constructor\u0000html/M_AsterNET_Manager_Event_HoldEvent__ctor.htm\u0000137","JabberEvent Constructor\u0000html/M_AsterNET_Manager_Event_JabberEvent__ctor.htm\u0000137","JitterBufStatsEvent Constructor\u0000html/M_AsterNET_Manager_Event_JitterBufStatsEvent__ctor.htm\u0000137","JoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_JoinEvent__ctor.htm\u0000137","LeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_LeaveEvent__ctor.htm\u0000137","LinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_LinkEvent__ctor.htm\u0000137","LogChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_LogChannelEvent__ctor.htm\u0000137","ManagerEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_Parse.htm\u0000179","ManagerEvent.ParseSpecial Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ParseSpecial.htm\u0000231","ManagerEvent.ToString Method\u0000html/M_AsterNET_Manager_Event_ManagerEvent_ToString.htm\u0000117","ManagerEvent Constructor\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000089","ManagerEvent Constructor (ManagerConnection)\u0000html/M_AsterNET_Manager_Event_ManagerEvent__ctor_1.htm\u0000119","MeetmeEndEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeEndEvent__ctor.htm\u0000137","MeetmeJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeJoinEvent__ctor.htm\u0000137","MeetmeLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeLeaveEvent__ctor.htm\u0000137","MeetmeMuteEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeMuteEvent__ctor.htm\u0000137","MeetmeStopTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeStopTalkingEvent__ctor.htm\u0000137","MeetmeTalkingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkingEvent__ctor.htm\u0000137","MeetmeTalkRequestEvent Constructor\u0000html/M_AsterNET_Manager_Event_MeetmeTalkRequestEvent__ctor.htm\u0000137","MessageWaitingEvent Constructor\u0000html/M_AsterNET_Manager_Event_MessageWaitingEvent__ctor.htm\u0000137","MobileStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_MobileStatusEvent__ctor.htm\u0000137","ModuleLoadReportEvent Constructor\u0000html/M_AsterNET_Manager_Event_ModuleLoadReportEvent__ctor.htm\u0000137","MonitorStartEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStartEvent__ctor.htm\u0000137","MonitorStopEvent Constructor\u0000html/M_AsterNET_Manager_Event_MonitorStopEvent__ctor.htm\u0000137","NewAccountCodeEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewAccountCodeEvent__ctor.htm\u0000137","NewCallerIdEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewCallerIdEvent__ctor.htm\u0000137","NewChannelEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewChannelEvent__ctor.htm\u0000137","NewExtenEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewExtenEvent__ctor.htm\u0000137","NewStateEvent Constructor\u0000html/M_AsterNET_Manager_Event_NewStateEvent__ctor.htm\u0000137","OriginateResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_OriginateResponseEvent__ctor.htm\u0000137","ParkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallEvent__ctor.htm\u0000137","ParkedCallGiveUpEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallGiveUpEvent__ctor.htm\u0000137","ParkedCallsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallsCompleteEvent__ctor.htm\u0000137","ParkedCallTimeOutEvent Constructor\u0000html/M_AsterNET_Manager_Event_ParkedCallTimeOutEvent__ctor.htm\u0000137","PeerEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerEntryEvent__ctor.htm\u0000134","PeerlistCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerlistCompleteEvent__ctor.htm\u0000137","PeerStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_PeerStatusEvent__ctor.htm\u0000137","PRIEvent Constructor\u0000html/M_AsterNET_Manager_Event_PRIEvent__ctor.htm\u0000134","QueueCallerAbandonEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerAbandonEvent__ctor.htm\u0000134","QueueCallerJoinEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerJoinEvent__ctor.htm\u0000137","QueueCallerLeaveEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueCallerLeaveEvent__ctor.htm\u0000137","QueueEntryEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEntryEvent__ctor.htm\u0000137","QueueEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueEvent__ctor.htm\u0000137","QueueMemberAddedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberAddedEvent__ctor.htm\u0000114","QueueMemberEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberEvent__ctor.htm\u0000137","QueueMemberPausedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPausedEvent__ctor.htm\u0000114","QueueMemberPauseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPauseEvent__ctor.htm\u0000114","QueueMemberPenaltyEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberPenaltyEvent__ctor.htm\u0000114","QueueMemberRemovedEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRemovedEvent__ctor.htm\u0000114","QueueMemberRinginuseEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberRinginuseEvent__ctor.htm\u0000114","QueueMemberStatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueMemberStatusEvent__ctor.htm\u0000114","QueueParamsEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueParamsEvent__ctor.htm\u0000137","QueueStatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_QueueStatusCompleteEvent__ctor.htm\u0000137","RegistryEvent Constructor\u0000html/M_AsterNET_Manager_Event_RegistryEvent__ctor.htm\u0000137","ReloadEvent Constructor\u0000html/M_AsterNET_Manager_Event_ReloadEvent__ctor.htm\u0000137","RenameEvent Constructor\u0000html/M_AsterNET_Manager_Event_RenameEvent__ctor.htm\u0000137","ResponseEvent Constructor\u0000html/M_AsterNET_Manager_Event_ResponseEvent__ctor.htm\u0000137","RTCPReceivedEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPReceivedEvent__ctor.htm\u0000137","RTCPSentEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTCPSentEvent__ctor.htm\u0000137","RTPReceiverStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPReceiverStatEvent__ctor.htm\u0000137","RTPSenderStatEvent Constructor\u0000html/M_AsterNET_Manager_Event_RTPSenderStatEvent__ctor.htm\u0000137","ShowDialPlanCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShowDialPlanCompleteEvent__ctor.htm\u0000137","ShutdownEvent Constructor\u0000html/M_AsterNET_Manager_Event_ShutdownEvent__ctor.htm\u0000137","StatusCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusCompleteEvent__ctor.htm\u0000137","StatusEvent Constructor\u0000html/M_AsterNET_Manager_Event_StatusEvent__ctor.htm\u0000137","TransferEvent Constructor\u0000html/M_AsterNET_Manager_Event_TransferEvent__ctor.htm\u0000137","UnholdEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnholdEvent__ctor.htm\u0000134","UnknownEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnknownEvent__ctor.htm\u0000134","UnlinkEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnlinkEvent__ctor.htm\u0000137","UnparkedCallEvent Constructor\u0000html/M_AsterNET_Manager_Event_UnparkedCallEvent__ctor.htm\u0000137","UserEvent.Parse Method\u0000html/M_AsterNET_Manager_Event_UserEvent_Parse.htm\u0000255","UserEvent Constructor\u0000html/M_AsterNET_Manager_Event_UserEvent__ctor.htm\u0000137","VarSetEvent Constructor\u0000html/M_AsterNET_Manager_Event_VarSetEvent__ctor.htm\u0000137","ZapShowChannelsCompleteEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent__ctor.htm\u0000137","ZapShowChannelsEvent Constructor\u0000html/M_AsterNET_Manager_Event_ZapShowChannelsEvent__ctor.htm\u0000137","IResponseHandler.Free Method\u0000html/M_AsterNET_Manager_IResponseHandler_Free.htm\u000090","IResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_IResponseHandler_HandleResponse.htm\u0000114","ManagerConnection.BuildAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction.htm\u0000185","ManagerConnection.BuildAction Method (ManagerAction, String)\u0000html/M_AsterNET_Manager_ManagerConnection_BuildAction_1.htm\u0000246","ManagerConnection.connect Method\u0000html/M_AsterNET_Manager_ManagerConnection_connect.htm\u0000117","ManagerConnection.determineVersion Method\u0000html/M_AsterNET_Manager_ManagerConnection_determineVersion.htm\u0000117","ManagerConnection.GetProtocolIdentifier Method\u0000html/M_AsterNET_Manager_ManagerConnection_GetProtocolIdentifier.htm\u0000119","ManagerConnection.IsConnected Method\u0000html/M_AsterNET_Manager_ManagerConnection_IsConnected.htm\u0000118","ManagerConnection.Login Method\u0000html/M_AsterNET_Manager_ManagerConnection_Login.htm\u0000119","ManagerConnection.Login Method (Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_Login_1.htm\u0000142","ManagerConnection.Logoff Method\u0000html/M_AsterNET_Manager_ManagerConnection_Logoff.htm\u000089","ManagerConnection.RegisterUserEventClass Method\u0000html/M_AsterNET_Manager_ManagerConnection_RegisterUserEventClass.htm\u0000131","ManagerConnection.SendAction Method (ManagerAction)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction.htm\u0000171","ManagerConnection.SendAction Method (ManagerAction, ResponseHandler)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_1.htm\u0000249","ManagerConnection.SendAction Method (ManagerAction, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendAction_2.htm\u0000206","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u0000185","ManagerConnection.SendEventGeneratingAction Method (ManagerActionEvent, Int32)\u0000html/M_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction_1.htm\u0000221","ManagerConnection Constructor\u0000html/M_AsterNET_Manager_ManagerConnection__ctor.htm\u000083","ManagerConnection Constructor (String, Int32, String, String)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_1.htm\u0000233","ManagerConnection Constructor (String, Int32, String, String, Encoding)\u0000html/M_AsterNET_Manager_ManagerConnection__ctor_2.htm\u0000295","ManagerException Constructor (String)\u0000html/M_AsterNET_Manager_ManagerException__ctor.htm\u0000119","ManagerException Constructor (String, Exception)\u0000html/M_AsterNET_Manager_ManagerException__ctor_1.htm\u0000155","ManagerReader Constructor\u0000html/M_AsterNET_Manager_ManagerReader__ctor.htm\u0000131","Originate.GetVariable Method\u0000html/M_AsterNET_Manager_Originate_GetVariable.htm\u0000171","Originate.GetVariables Method\u0000html/M_AsterNET_Manager_Originate_GetVariables.htm\u0000153","Originate.SetVariable Method\u0000html/M_AsterNET_Manager_Originate_SetVariable.htm\u0000198","Originate.SetVariables Method\u0000html/M_AsterNET_Manager_Originate_SetVariables.htm\u0000185","Originate Constructor\u0000html/M_AsterNET_Manager_Originate__ctor.htm\u000084","ResponseEventHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_Free.htm\u0000109","ResponseEventHandler.HandleEvent Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleEvent.htm\u0000151","ResponseEventHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseEventHandler_HandleResponse.htm\u0000170","ResponseEventHandler Constructor\u0000html/M_AsterNET_Manager_ResponseEventHandler__ctor.htm\u0000257","ResponseEvents.AddEvent Method\u0000html/M_AsterNET_Manager_ResponseEvents_AddEvent.htm\u0000121","ResponseEvents Constructor\u0000html/M_AsterNET_Manager_ResponseEvents__ctor.htm\u000081","ResponseHandler.Free Method\u0000html/M_AsterNET_Manager_ResponseHandler_Free.htm\u0000109","ResponseHandler.HandleResponse Method\u0000html/M_AsterNET_Manager_ResponseHandler_HandleResponse.htm\u0000171","ResponseHandler Constructor\u0000html/M_AsterNET_Manager_ResponseHandler__ctor.htm\u0000192","ChallengeResponse Constructor\u0000html/M_AsterNET_Manager_Response_ChallengeResponse__ctor.htm\u000086","CommandResponse Constructor\u0000html/M_AsterNET_Manager_Response_CommandResponse__ctor.htm\u000086","ExtensionStateResponse Constructor\u0000html/M_AsterNET_Manager_Response_ExtensionStateResponse__ctor.htm\u000086","GetConfigResponse.Lines Method\u0000html/M_AsterNET_Manager_Response_GetConfigResponse_Lines.htm\u0000207","GetConfigResponse Constructor\u0000html/M_AsterNET_Manager_Response_GetConfigResponse__ctor.htm\u000086","MailboxCountResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxCountResponse__ctor.htm\u000086","MailboxStatusResponse Constructor\u0000html/M_AsterNET_Manager_Response_MailboxStatusResponse__ctor.htm\u000086","ManagerError Constructor\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor.htm\u000085","ManagerError Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerError__ctor_1.htm\u0000191","ManagerResponse.GetAttribute Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_GetAttribute.htm\u0000268","ManagerResponse.IsSuccess Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_IsSuccess.htm\u0000111","ManagerResponse.Parse Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_Parse.htm\u0000179","ManagerResponse.ParseSpecial Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ParseSpecial.htm\u0000230","ManagerResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_ManagerResponse_ToString.htm\u0000136","ManagerResponse Constructor\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000088","ManagerResponse Constructor (Dictionary(String, String))\u0000html/M_AsterNET_Manager_Response_ManagerResponse__ctor_1.htm\u0000191","OriginateResponse.CalcDuration Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_CalcDuration.htm\u0000130","OriginateResponse.ToString Method\u0000html/M_AsterNET_Manager_Response_OriginateResponse_ToString.htm\u0000136","OriginateResponse Constructor\u0000html/M_AsterNET_Manager_Response_OriginateResponse__ctor.htm\u000086","TimeoutException Constructor\u0000html/M_AsterNET_Manager_TimeoutException__ctor.htm\u0000116","MD5Support.GetInstance Method\u0000html/M_AsterNET_Util_MD5Support_GetInstance.htm\u0000115","MD5Support.GetInstance Method (String)\u0000html/M_AsterNET_Util_MD5Support_GetInstance_1.htm\u0000148","MD5Support.Update Method\u0000html/M_AsterNET_Util_MD5Support_Update.htm\u0000148","MD5Support Constructor\u0000html/M_AsterNET_Util_MD5Support__ctor.htm\u0000120","ThreadClass.Interrupt Method\u0000html/M_AsterNET_Util_ThreadClass_Interrupt.htm\u000090","ThreadClass.Run Method\u0000html/M_AsterNET_Util_ThreadClass_Run.htm\u0000102","ThreadClass.Start Method\u0000html/M_AsterNET_Util_ThreadClass_Start.htm\u000096","ThreadClass Constructor\u0000html/M_AsterNET_Util_ThreadClass__ctor.htm\u000086","ThreadClass Constructor (String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_1.htm\u0000119","ThreadClass Constructor (ThreadStart)\u0000html/M_AsterNET_Util_ThreadClass__ctor_2.htm\u0000130","ThreadClass Constructor (ThreadStart, String)\u0000html/M_AsterNET_Util_ThreadClass__ctor_3.htm\u0000163","ThreadPool.AddJob Method\u0000html/M_AsterNET_Util_ThreadPool_AddJob.htm\u0000149","ThreadPool.Shutdown Method\u0000html/M_AsterNET_Util_ThreadPool_Shutdown.htm\u0000109","ThreadPool Constructor\u0000html/M_AsterNET_Util_ThreadPool__ctor.htm\u0000165","AsterNET Namespace\u0000html/N_AsterNET.htm\u000032","AsterNET.FastAGI Namespace\u0000html/N_AsterNET_FastAGI.htm\u0000270","AsterNET.FastAGI.Command Namespace\u0000html/N_AsterNET_FastAGI_Command.htm\u00001656","AsterNET.FastAGI.MappingStrategies Namespace\u0000html/N_AsterNET_FastAGI_MappingStrategies.htm\u0000121","AsterNET.IO Namespace\u0000html/N_AsterNET_IO.htm\u000025","AsterNET.Manager Namespace\u0000html/N_AsterNET_Manager.htm\u0000277","AsterNET.Manager.Action Namespace\u0000html/N_AsterNET_Manager_Action.htm\u00001633","AsterNET.Manager.Event Namespace\u0000html/N_AsterNET_Manager_Event.htm\u00002289","AsterNET.Manager.Response Namespace\u0000html/N_AsterNET_Manager_Response.htm\u0000303","AsterNET.Util Namespace\u0000html/N_AsterNET_Util.htm\u000046","AGIChannel Constructor\u0000html/Overload_AsterNET_FastAGI_AGIChannel__ctor.htm\u000056","AGIException Constructor\u0000html/Overload_AsterNET_FastAGI_AGIException__ctor.htm\u000061","AGIReply Constructor\u0000html/Overload_AsterNET_FastAGI_AGIReply__ctor.htm\u000046","AGIScript.ControlStreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_ControlStreamFile.htm\u0000441","AGIScript.DatabaseDelTree Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_DatabaseDelTree.htm\u000066","AGIScript.Exec Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_Exec.htm\u000043","AGIScript.GetData Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetData.htm\u0000156","AGIScript.GetFullVariable Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetFullVariable.htm\u000077","AGIScript.GetOption Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_GetOption.htm\u0000132","AGIScript.PlayMusicOnHold Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_PlayMusicOnHold.htm\u000053","AGIScript.RecordFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_RecordFile.htm\u0000245","AGIScript.SayAlpha Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayAlpha.htm\u000060","AGIScript.SayDateTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDateTime.htm\u0000133","AGIScript.SayDigits Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayDigits.htm\u000059","AGIScript.SayNumber Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayNumber.htm\u000058","AGIScript.SayPhonetic Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayPhonetic.htm\u000064","AGIScript.SayTime Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SayTime.htm\u000058","AGIScript.SetPriority Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_SetPriority.htm\u000051","AGIScript.StreamFile Method\u0000html/Overload_AsterNET_FastAGI_AGIScript_StreamFile.htm\u000056","AsteriskFastAGI Constructor\u0000html/Overload_AsterNET_FastAGI_AsteriskFastAGI__ctor.htm\u0000104","ChannelStatusCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ChannelStatusCommand__ctor.htm\u000047","ControlStreamFileCommand.ControlDigits Method\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand_ControlDigits.htm\u000060","ControlStreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ControlStreamFileCommand__ctor.htm\u0000191","DatabaseDelCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelCommand__ctor.htm\u000051","DatabaseDelTreeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_DatabaseDelTreeCommand__ctor.htm\u000043","ExecCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ExecCommand__ctor.htm\u000043","GetDataCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetDataCommand__ctor.htm\u000078","GetFullVariableCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetFullVariableCommand__ctor.htm\u000043","GetOptionCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_GetOptionCommand__ctor.htm\u000058","HangupCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_HangupCommand__ctor.htm\u000051","ReceiveCharCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveCharCommand__ctor.htm\u000050","ReceiveTextCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_ReceiveTextCommand__ctor.htm\u000062","RecordFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_RecordFileCommand__ctor.htm\u000059","SayAlphaCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayAlphaCommand__ctor.htm\u000043","SayDateTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDateTimeCommand__ctor.htm\u0000152","SayDigitsCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayDigitsCommand__ctor.htm\u000043","SayNumberCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayNumberCommand__ctor.htm\u000043","SayPhoneticCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayPhoneticCommand__ctor.htm\u000043","SayTimeCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SayTimeCommand__ctor.htm\u000043","SetMusicOnCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetMusicOnCommand__ctor.htm\u000057","SetPriorityCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_SetPriorityCommand__ctor.htm\u000041","StreamFileCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_StreamFileCommand__ctor.htm\u000071","WaitForDigitCommand Constructor\u0000html/Overload_AsterNET_FastAGI_Command_WaitForDigitCommand__ctor.htm\u000051","GeneralMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy__ctor.htm\u000058","ResourceMappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy__ctor.htm\u000045","MappingStrategy Constructor\u0000html/Overload_AsterNET_FastAGI_MappingStrategy__ctor.htm\u000044","Logger.Debug Method\u0000html/Overload_AsterNET_Logger_Debug.htm\u000041","Logger.Error Method\u0000html/Overload_AsterNET_Logger_Error.htm\u000041","Logger.Info Method\u0000html/Overload_AsterNET_Logger_Info.htm\u000041","Logger.Visible Method\u0000html/Overload_AsterNET_Logger_Visible.htm\u000054","Logger.Warning Method\u0000html/Overload_AsterNET_Logger_Warning.htm\u000041","AbsoluteTimeoutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AbsoluteTimeoutAction__ctor.htm\u000048","AgentCallbackLoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentCallbackLoginAction__ctor.htm\u000082","AgentLogoffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AgentLogoffAction__ctor.htm\u000060","AOCMessageAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AOCMessageAction__ctor.htm\u000075","AtxferAction Constructor\u0000html/Overload_AsterNET_Manager_Action_AtxferAction__ctor.htm\u000041","BridgeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_BridgeAction__ctor.htm\u000049","ChallengeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChallengeAction__ctor.htm\u000055","ChangeMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ChangeMonitorAction__ctor.htm\u000059","CommandAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CommandAction__ctor.htm\u000043","ConfbridgeKickAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeKickAction__ctor.htm\u000049","ConfbridgeLockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeLockAction__ctor.htm\u000039","ConfbridgeMuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeMuteAction__ctor.htm\u000049","ConfbridgeSetSingleVideoSrcAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction__ctor.htm\u000043","ConfbridgeStartRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStartRecordAction__ctor.htm\u0000151","ConfbridgeStopRecordAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeStopRecordAction__ctor.htm\u000041","ConfbridgeUnlockAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnlockAction__ctor.htm\u000039","ConfbridgeUnmuteAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ConfbridgeUnmuteAction__ctor.htm\u000049","CreateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_CreateConfigAction__ctor.htm\u000095","DBDelAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelAction__ctor.htm\u000058","DBDelTreeAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBDelTreeAction__ctor.htm\u000055","DBGetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBGetAction__ctor.htm\u000058","DBPutAction Constructor\u0000html/Overload_AsterNET_Manager_Action_DBPutAction__ctor.htm\u000060","EventsAction Constructor\u0000html/Overload_AsterNET_Manager_Action_EventsAction__ctor.htm\u000051","GetConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetConfigAction__ctor.htm\u000041","GetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_GetVarAction__ctor.htm\u000065","HangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_HangupAction__ctor.htm\u000046","LoginAction Constructor\u0000html/Overload_AsterNET_Manager_Action_LoginAction__ctor.htm\u0000107","MailboxCountAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxCountAction__ctor.htm\u000053","MailboxStatusAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MailboxStatusAction__ctor.htm\u000049","MonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_MonitorAction__ctor.htm\u0000116","ParkAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ParkAction__ctor.htm\u000051","QueueAddAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueAddAction__ctor.htm\u0000111","QueueLogAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueLogAction__ctor.htm\u000049","QueuePauseAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePauseAction__ctor.htm\u0000124","QueuePenaltyAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueuePenaltyAction__ctor.htm\u000049","QueueReloadAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueReloadAction__ctor.htm\u000067","QueueRemoveAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRemoveAction__ctor.htm\u000054","QueueResetAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueResetAction__ctor.htm\u000037","QueueRuleAction Constructor\u0000html/Overload_AsterNET_Manager_Action_QueueRuleAction__ctor.htm\u000045","RedirectAction Constructor\u0000html/Overload_AsterNET_Manager_Action_RedirectAction__ctor.htm\u000090","SetCDRUserFieldAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetCDRUserFieldAction__ctor.htm\u000090","SetVarAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SetVarAction__ctor.htm\u000078","SIPShowPeerAction Constructor\u0000html/Overload_AsterNET_Manager_Action_SIPShowPeerAction__ctor.htm\u000049","StopMonitorAction Constructor\u0000html/Overload_AsterNET_Manager_Action_StopMonitorAction__ctor.htm\u000047","UpdateConfigAction.AddCommand Method\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction_AddCommand.htm\u0000123","UpdateConfigAction Constructor\u0000html/Overload_AsterNET_Manager_Action_UpdateConfigAction__ctor.htm\u000065","ZapDialOffhookAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDialOffhookAction__ctor.htm\u000052","ZapDNDOffAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOffAction__ctor.htm\u000053","ZapDNDOnAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapDNDOnAction__ctor.htm\u000053","ZapHangupAction Constructor\u0000html/Overload_AsterNET_Manager_Action_ZapHangupAction__ctor.htm\u000058","AuthenticationFailedException Constructor\u0000html/Overload_AsterNET_Manager_AuthenticationFailedException__ctor.htm\u000052","AbstractConfbridgeEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_AbstractConfbridgeEvent__ctor.htm\u000045","FailedACLEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_FailedACLEvent__ctor.htm\u000045","ManagerEvent Constructor\u0000html/Overload_AsterNET_Manager_Event_ManagerEvent__ctor.htm\u000042","ManagerConnection.BuildAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_BuildAction.htm\u000033","ManagerConnection.Login Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_Login.htm\u000087","ManagerConnection.SendAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendAction.htm\u000052","ManagerConnection.SendEventGeneratingAction Method\u0000html/Overload_AsterNET_Manager_ManagerConnection_SendEventGeneratingAction.htm\u000033","ManagerConnection Constructor\u0000html/Overload_AsterNET_Manager_ManagerConnection__ctor.htm\u000070","ManagerException Constructor\u0000html/Overload_AsterNET_Manager_ManagerException__ctor.htm\u000052","ManagerError Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerError__ctor.htm\u000046","ManagerResponse Constructor\u0000html/Overload_AsterNET_Manager_Response_ManagerResponse__ctor.htm\u000049","MD5Support.GetInstance Method\u0000html/Overload_AsterNET_Util_MD5Support_GetInstance.htm\u000053","ThreadClass Constructor\u0000html/Overload_AsterNET_Util_ThreadClass__ctor.htm\u000071","AGIChannel Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIChannel.htm\u000037","AGIException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIException.htm\u0000200","AGIHangupException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIHangupException.htm\u0000200","AGINetworkException Properties\u0000html/Properties_T_AsterNET_FastAGI_AGINetworkException.htm\u0000200","AGIReply Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIReply.htm\u0000104","AGIRequest Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIRequest.htm\u0000212","AGIScript Properties\u0000html/Properties_T_AsterNET_FastAGI_AGIScript.htm\u000032","AsteriskFastAGI Properties\u0000html/Properties_T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000105","ChannelStatusCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u000033","ControlStreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u000096","DatabaseDelCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u000056","DatabaseDelTreeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u000052","DatabaseGetCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u000044","DatabasePutCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u000060","ExecCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ExecCommand.htm\u000054","GetDataCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000108","GetFullVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u000052","GetOptionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u000075","GetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u000065","HangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_HangupCommand.htm\u000042","ReceiveCharCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u000047","ReceiveTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u000047","RecordFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000117","SayAlphaCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u000055","SayDateTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u000097","SayDigitsCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u000055","SayNumberCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u000054","SayPhoneticCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u000054","SayTimeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u000065","SendImageCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendImageCommand.htm\u000040","SendTextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SendTextCommand.htm\u000040","SetAutoHangupCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u000047","SetCallerIdCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u000039","SetContextCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetContextCommand.htm\u000044","SetExtensionCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u000044","SetMusicOnCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u000045","SetPriorityCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u000058","SetVariableCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u000051","StreamFileCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u000081","TDDModeCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u000072","VerboseCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_VerboseCommand.htm\u000048","WaitForDigitCommand Properties\u0000html/Properties_T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u000048","InvalidCommandSyntaxException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000228","InvalidOrUnknownCommandException Properties\u0000html/Properties_T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000200","ResourceMappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u000033","ScriptMapping Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u000081","MappingStrategy Properties\u0000html/Properties_T_AsterNET_FastAGI_MappingStrategy.htm\u000032","SocketConnection Properties\u0000html/Properties_T_AsterNET_IO_SocketConnection.htm\u000048","AbsoluteTimeoutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000218","AgentCallbackLoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000339","AgentLogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000234","AgentsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgentsAction.htm\u0000197","AgiAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AgiAction.htm\u0000199","AOCMessageAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000197","AtxferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_AtxferAction.htm\u0000205","BridgeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_BridgeAction.htm\u0000186","ChallengeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChallengeAction.htm\u0000214","ChangeMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000233","CommandAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CommandAction.htm\u0000210","ConfbridgeKickAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000185","ConfbridgeListAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000184","ConfbridgeListRoomsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000183","ConfbridgeLockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000184","ConfbridgeMuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000185","ConfbridgeSetSingleVideoSrcAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000185","ConfbridgeStartRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000184","ConfbridgeStopRecordAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000184","ConfbridgeUnlockAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000184","ConfbridgeUnmuteAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000185","CoreSettingsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000183","CoreShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000183","CoreStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000183","CreateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000184","DBDelAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelAction.htm\u0000207","DBDelTreeAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000207","DBGetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBGetAction.htm\u0000203","DBPutAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_DBPutAction.htm\u0000211","EventsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_EventsAction.htm\u0000258","ExtensionStateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000220","GetConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetConfigAction.htm\u0000197","GetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_GetVarAction.htm\u0000235","HangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_HangupAction.htm\u0000208","LoginAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LoginAction.htm\u0000347","LogoffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_LogoffAction.htm\u0000197","MailboxCountAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000242","MailboxStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000281","ManagerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerAction.htm\u0000169","ManagerActionEvent Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000197","ManagerActionResponse Properties\u0000html/Properties_T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000197","MonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_MonitorAction.htm\u0000302","OriginateAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_OriginateAction.htm\u0000538","ParkAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkAction.htm\u0000242","ParkedCallsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000197","PingAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_PingAction.htm\u0000197","ProxyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ProxyAction.htm\u0000197","QueueAddAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueAddAction.htm\u0000325","QueueLogAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueLogAction.htm\u0000188","QueuePauseAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000258","QueuePenaltyAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000186","QueueReloadAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000187","QueueRemoveAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000225","QueueResetAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueResetAction.htm\u0000184","QueueRuleAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000184","QueueStatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000211","RedirectAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_RedirectAction.htm\u0000240","SetCDRUserFieldAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000269","SetVarAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SetVarAction.htm\u0000225","SIPPeersAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000183","SIPShowPeerAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000199","StatusAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StatusAction.htm\u0000197","StopMonitorAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000214","UpdateConfigAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000294","ZapDialOffhookAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000225","ZapDNDOffAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000217","ZapDNDOnAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000217","ZapHangupAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000214","ZapShowChannelsAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000197","ZapTransferAction Properties\u0000html/Properties_T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000214","AuthenticationFailedException Properties\u0000html/Properties_T_AsterNET_Manager_AuthenticationFailedException.htm\u0000200","EventTimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_EventTimeoutException.htm\u0000257","AbstractAgentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000396","AbstractAgentVariables Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000360","AbstractChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000440","AbstractConfbridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000342","AbstractMeetmeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000341","AbstractParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000382","AbstractQueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000682","AgentCallbackLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000346","AgentCallbackLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000392","AgentCalledEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000400","AgentCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000457","AgentConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000449","AgentDumpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000417","AgentLoginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000346","AgentLogoffEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000346","AgentsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000376","AgentsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AgentsEvent.htm\u0000528","AGIExecEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000338","AlarmClearEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000333","AlarmEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AlarmEvent.htm\u0000358","AsyncAGIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000337","AttendedTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000399","BlindTransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000368","BridgeActivityEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000495","BridgeCreateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000381","BridgeDestroyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000381","BridgeEnterEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000621","BridgeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeEvent.htm\u0000359","BridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000621","BridgeStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000339","CdrEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_CdrEvent.htm\u0000349","ChannelReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000355","ChannelUpdateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000356","ConfbridgeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000349","ConfbridgeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000351","ConfbridgeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000351","ConfbridgeListCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000376","ConfbridgeListEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000353","ConfbridgeListRoomsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000376","ConfbridgeListRoomsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000352","ConfbridgeStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000349","ConfbridgeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000350","ConnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectEvent.htm\u0000355","ConnectionStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000339","DBGetResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000415","DialBeginEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000470","DialEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEndEvent.htm\u0000471","DialEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DialEvent.htm\u0000400","DisconnectEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000346","DNDStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000387","DTMFEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_DTMFEvent.htm\u0000337","ExtensionStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000364","FailedACLEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000336","FaxReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000516","HangupEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HangupEvent.htm\u0000523","HoldedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000397","HoldEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_HoldEvent.htm\u0000334","JabberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JabberEvent.htm\u0000335","JitterBufStatsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000349","JoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_JoinEvent.htm\u0000457","LeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LeaveEvent.htm\u0000382","LinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LinkEvent.htm\u0000429","LogChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000365","ManagerEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ManagerEvent.htm\u0000277","MeetmeEndEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000355","MeetmeJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000357","MeetmeLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000358","MeetmeMuteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000356","MeetmeStopTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000355","MeetmeTalkingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000356","MeetmeTalkRequestEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000356","MessageWaitingEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000400","MobileStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000335","ModuleLoadReportEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000336","MonitorStartEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000333","MonitorStopEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000333","NewAccountCodeEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000335","NewCallerIdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000398","NewChannelEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000503","NewExtenEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000396","NewStateEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_NewStateEvent.htm\u0000503","OriginateResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000383","ParkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000459","ParkedCallGiveUpEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000410","ParkedCallsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000376","ParkedCallTimeOutEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000410","PeerEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000461","PeerlistCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000388","PeerStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000520","PRIEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_PRIEvent.htm\u0000337","QueueCallerAbandonEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000337","QueueCallerJoinEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000383","QueueCallerLeaveEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000383","QueueEntryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000439","QueueEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueEvent.htm\u0000368","QueueMemberAddedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000695","QueueMemberEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000635","QueueMemberPausedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u0000747","QueueMemberPauseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u0000788","QueueMemberPenaltyEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000754","QueueMemberRemovedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u0000776","QueueMemberRinginuseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u0000765","QueueMemberStatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000665","QueueParamsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000549","QueueStatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000376","RegistryEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RegistryEvent.htm\u0000514","ReloadEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ReloadEvent.htm\u0000392","RenameEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RenameEvent.htm\u0000353","ResponseEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ResponseEvent.htm\u0000362","RTCPReceivedEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000345","RTCPSentEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000345","RTPReceiverStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000339","RTPSenderStatEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000339","ShowDialPlanCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000338","ShutdownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000407","StatusCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000377","StatusEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_StatusEvent.htm\u0000440","TransferEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_TransferEvent.htm\u0000346","UnholdEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnholdEvent.htm\u0000333","UnknownEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnknownEvent.htm\u0000333","UnlinkEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000429","UnparkedCallEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000423","UserEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_UserEvent.htm\u0000334","VarSetEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_VarSetEvent.htm\u0000352","ZapShowChannelsCompleteEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000376","ZapShowChannelsEvent Properties\u0000html/Properties_T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000546","IResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_IResponseHandler.htm\u000033","ManagerConnection Properties\u0000html/Properties_T_AsterNET_Manager_ManagerConnection.htm\u0000383","ManagerException Properties\u0000html/Properties_T_AsterNET_Manager_ManagerException.htm\u0000200","Originate Properties\u0000html/Properties_T_AsterNET_Manager_Originate.htm\u0000255","ResponseEventHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEventHandler.htm\u000034","ResponseEvents Properties\u0000html/Properties_T_AsterNET_Manager_ResponseEvents.htm\u000042","ResponseHandler Properties\u0000html/Properties_T_AsterNET_Manager_ResponseHandler.htm\u000034","ChallengeResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000362","CommandResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_CommandResponse.htm\u0000363","ExtensionStateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000351","GetConfigResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000358","MailboxCountResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000379","MailboxStatusResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000382","ManagerError Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerError.htm\u0000347","ManagerResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_ManagerResponse.htm\u0000291","OriginateResponse Properties\u0000html/Properties_T_AsterNET_Manager_Response_OriginateResponse.htm\u000040","TimeoutException Properties\u0000html/Properties_T_AsterNET_Manager_TimeoutException.htm\u0000200","MD5Support Properties\u0000html/Properties_T_AsterNET_Util_MD5Support.htm\u000042","ThreadClass Properties\u0000html/Properties_T_AsterNET_Util_ThreadClass.htm\u000069","AGIChannel.LastReply Property\u0000html/P_AsterNET_FastAGI_AGIChannel_LastReply.htm\u0000108","AGIReply.Extra Property\u0000html/P_AsterNET_FastAGI_AGIReply_Extra.htm\u0000164","AGIReply.FirstLine Property\u0000html/P_AsterNET_FastAGI_AGIReply_FirstLine.htm\u0000118","AGIReply.Lines Property\u0000html/P_AsterNET_FastAGI_AGIReply_Lines.htm\u0000118","AGIReply.ResultCode Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCode.htm\u0000124","AGIReply.ResultCodeAsChar Property\u0000html/P_AsterNET_FastAGI_AGIReply_ResultCodeAsChar.htm\u0000112","AGIRequest.AccountCode Property\u0000html/P_AsterNET_FastAGI_AGIRequest_AccountCode.htm\u0000112","AGIRequest.CallerId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerId.htm\u0000118","AGIRequest.CallerIdName Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallerIdName.htm\u0000118","AGIRequest.CallingAni2 Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingAni2.htm\u0000114","AGIRequest.CallingPres Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingPres.htm\u0000114","AGIRequest.CallingTns Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTns.htm\u0000114","AGIRequest.CallingTon Property\u0000html/P_AsterNET_FastAGI_AGIRequest_CallingTon.htm\u0000114","AGIRequest.Channel Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Channel.htm\u0000116","AGIRequest.Context Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Context.htm\u0000118","AGIRequest.Dnid Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Dnid.htm\u0000118","AGIRequest.Enhanced Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Enhanced.htm\u0000134","AGIRequest.Extension Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Extension.htm\u0000118","AGIRequest.Language Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Language.htm\u0000113","AGIRequest.LocalAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalAddress.htm\u0000135","AGIRequest.LocalPort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_LocalPort.htm\u0000129","AGIRequest.Priority Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Priority.htm\u0000118","AGIRequest.Rdnis Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Rdnis.htm\u0000118","AGIRequest.RemoteAddress Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemoteAddress.htm\u0000135","AGIRequest.RemotePort Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RemotePort.htm\u0000129","AGIRequest.Request Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Request.htm\u0000118","AGIRequest.RequestURL Property\u0000html/P_AsterNET_FastAGI_AGIRequest_RequestURL.htm\u0000124","AGIRequest.Script Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Script.htm\u0000112","AGIRequest.Type Property\u0000html/P_AsterNET_FastAGI_AGIRequest_Type.htm\u0000128","AGIRequest.UniqueId Property\u0000html/P_AsterNET_FastAGI_AGIRequest_UniqueId.htm\u0000118","AGIScript.Channel Property\u0000html/P_AsterNET_FastAGI_AGIScript_Channel.htm\u0000118","AsteriskFastAGI.BindPort Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_BindPort.htm\u0000120","AsteriskFastAGI.MappingStrategy Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_MappingStrategy.htm\u0000129","AsteriskFastAGI.PoolSize Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_PoolSize.htm\u0000133","AsteriskFastAGI.SocketEncoding Property\u0000html/P_AsterNET_FastAGI_AsteriskFastAGI_SocketEncoding.htm\u0000135","ChannelStatusCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_ChannelStatusCommand_Channel.htm\u0000138","ControlStreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_EscapeDigits.htm\u0000139","ControlStreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_File.htm\u0000132","ControlStreamFileCommand.ForwardDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_ForwardDigit.htm\u0000112","ControlStreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_Offset.htm\u0000126","ControlStreamFileCommand.PauseDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_PauseDigit.htm\u0000113","ControlStreamFileCommand.RewindDigit Property\u0000html/P_AsterNET_FastAGI_Command_ControlStreamFileCommand_RewindDigit.htm\u0000111","DatabaseDelCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_Family.htm\u0000136","DatabaseDelCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelCommand_KeyTree.htm\u0000130","DatabaseDelTreeCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_Family.htm\u0000132","DatabaseDelTreeCommand.KeyTree Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseDelTreeCommand_KeyTree.htm\u0000130","DatabaseGetCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Family.htm\u0000124","DatabaseGetCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabaseGetCommand_Key.htm\u0000130","DatabasePutCommand.Family Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Family.htm\u0000132","DatabasePutCommand.Key Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Key.htm\u0000130","DatabasePutCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_DatabasePutCommand_Value.htm\u0000129","ExecCommand.Application Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Application.htm\u0000132","ExecCommand.Options Property\u0000html/P_AsterNET_FastAGI_Command_ExecCommand_Options.htm\u0000132","GetDataCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_File.htm\u0000137","GetDataCommand.MaxDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_MaxDigits.htm\u0000143","GetDataCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetDataCommand_Timeout.htm\u0000150","GetFullVariableCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Channel.htm\u0000130","GetFullVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetFullVariableCommand_Variable.htm\u0000132","GetOptionCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_EscapeDigits.htm\u0000134","GetOptionCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_File.htm\u0000132","GetOptionCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_GetOptionCommand_Timeout.htm\u0000134","GetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm\u0000154","HangupCommand.Channel Property\u0000html/P_AsterNET_FastAGI_Command_HangupCommand_Channel.htm\u0000154","ReceiveCharCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveCharCommand_Timeout.htm\u0000130","ReceiveTextCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_ReceiveTextCommand_Timeout.htm\u0000130","RecordFileCommand.Beep Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Beep.htm\u0000132","RecordFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_EscapeDigits.htm\u0000134","RecordFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_File.htm\u0000132","RecordFileCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Format.htm\u0000139","RecordFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Offset.htm\u0000124","RecordFileCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_RecordFileCommand_Timeout.htm\u0000132","SayAlphaCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_EscapeDigits.htm\u0000135","SayAlphaCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayAlphaCommand_Text.htm\u0000130","SayDateTimeCommand.Format Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Format.htm\u0000133","SayDateTimeCommand.getEscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_getEscapeDigits.htm\u0000135","SayDateTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Time.htm\u0000145","SayDateTimeCommand.Timezone Property\u0000html/P_AsterNET_FastAGI_Command_SayDateTimeCommand_Timezone.htm\u0000133","SayDigitsCommand.Digits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_Digits.htm\u0000130","SayDigitsCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayDigitsCommand_EscapeDigits.htm\u0000135","SayNumberCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_EscapeDigits.htm\u0000135","SayNumberCommand.Number Property\u0000html/P_AsterNET_FastAGI_Command_SayNumberCommand_Number.htm\u0000129","SayPhoneticCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_EscapeDigits.htm\u0000135","SayPhoneticCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SayPhoneticCommand_Text.htm\u0000129","SayTimeCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_EscapeDigits.htm\u0000135","SayTimeCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SayTimeCommand_Time.htm\u0000137","SendImageCommand.Image Property\u0000html/P_AsterNET_FastAGI_Command_SendImageCommand_Image.htm\u0000134","SendTextCommand.Text Property\u0000html/P_AsterNET_FastAGI_Command_SendTextCommand_Text.htm\u0000134","SetAutoHangupCommand.Time Property\u0000html/P_AsterNET_FastAGI_Command_SetAutoHangupCommand_Time.htm\u0000142","SetCallerIdCommand.CallerId Property\u0000html/P_AsterNET_FastAGI_Command_SetCallerIdCommand_CallerId.htm\u0000128","SetContextCommand.Context Property\u0000html/P_AsterNET_FastAGI_Command_SetContextCommand_Context.htm\u0000133","SetExtensionCommand.Extension Property\u0000html/P_AsterNET_FastAGI_Command_SetExtensionCommand_Extension.htm\u0000142","SetMusicOnCommand.MusicOnHoldClass Property\u0000html/P_AsterNET_FastAGI_Command_SetMusicOnCommand_MusicOnHoldClass.htm\u0000150","SetPriorityCommand.Label Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Label.htm\u0000133","SetPriorityCommand.Priority Property\u0000html/P_AsterNET_FastAGI_Command_SetPriorityCommand_Priority.htm\u0000129","SetVariableCommand.Value Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Value.htm\u0000129","SetVariableCommand.Variable Property\u0000html/P_AsterNET_FastAGI_Command_SetVariableCommand_Variable.htm\u0000132","StreamFileCommand.EscapeDigits Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_EscapeDigits.htm\u0000135","StreamFileCommand.File Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_File.htm\u0000145","StreamFileCommand.Offset Property\u0000html/P_AsterNET_FastAGI_Command_StreamFileCommand_Offset.htm\u0000126","TDDModeCommand.Mode Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Mode.htm\u0000111","TDDModeCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_TDDModeCommand_Timeout.htm\u0000140","VerboseCommand.Level Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Level.htm\u0000123","VerboseCommand.Message Property\u0000html/P_AsterNET_FastAGI_Command_VerboseCommand_Message.htm\u0000129","WaitForDigitCommand.Timeout Property\u0000html/P_AsterNET_FastAGI_Command_WaitForDigitCommand_Timeout.htm\u0000134","InvalidCommandSyntaxException.Synopsis Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Synopsis.htm\u0000128","InvalidCommandSyntaxException.Usage Property\u0000html/P_AsterNET_FastAGI_InvalidCommandSyntaxException_Usage.htm\u0000128","ResourceMappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy_ResourceBundleName.htm\u0000124","ScriptMapping.PreLoadedAssembly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_PreLoadedAssembly.htm\u0000138","ScriptMapping.ScriptAssmebly Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptAssmebly.htm\u0000150","ScriptMapping.ScriptClass Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptClass.htm\u0000130","ScriptMapping.ScriptName Property\u0000html/P_AsterNET_FastAGI_MappingStrategies_ScriptMapping_ScriptName.htm\u0000131","MappingStrategy.ResourceBundleName Property\u0000html/P_AsterNET_FastAGI_MappingStrategy_ResourceBundleName.htm\u0000121","SocketConnection.Encoding Property\u0000html/P_AsterNET_IO_SocketConnection_Encoding.htm\u0000118","SocketConnection.Initial Property\u0000html/P_AsterNET_IO_SocketConnection_Initial.htm\u0000129","SocketConnection.IsConnected Property\u0000html/P_AsterNET_IO_SocketConnection_IsConnected.htm\u0000107","SocketConnection.LocalAddress Property\u0000html/P_AsterNET_IO_SocketConnection_LocalAddress.htm\u0000118","SocketConnection.LocalPort Property\u0000html/P_AsterNET_IO_SocketConnection_LocalPort.htm\u0000114","SocketConnection.NetworkStream Property\u0000html/P_AsterNET_IO_SocketConnection_NetworkStream.htm\u0000118","SocketConnection.RemoteAddress Property\u0000html/P_AsterNET_IO_SocketConnection_RemoteAddress.htm\u0000118","SocketConnection.RemotePort Property\u0000html/P_AsterNET_IO_SocketConnection_RemotePort.htm\u0000114","SocketConnection.TcpClient Property\u0000html/P_AsterNET_IO_SocketConnection_TcpClient.htm\u0000118","AbsoluteTimeoutAction.Action Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Action.htm\u0000131","AbsoluteTimeoutAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Channel.htm\u0000130","AbsoluteTimeoutAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_AbsoluteTimeoutAction_Timeout.htm\u0000127","AgentCallbackLoginAction.AckCall Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_AckCall.htm\u0000165","AgentCallbackLoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Action.htm\u0000131","AgentCallbackLoginAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Agent.htm\u0000145","AgentCallbackLoginAction.Context Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Context.htm\u0000134","AgentCallbackLoginAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_Exten.htm\u0000137","AgentCallbackLoginAction.WrapupTime Property\u0000html/P_AsterNET_Manager_Action_AgentCallbackLoginAction_WrapupTime.htm\u0000157","AgentLogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Action.htm\u0000136","AgentLogoffAction.Agent Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Agent.htm\u0000168","AgentLogoffAction.Soft Property\u0000html/P_AsterNET_Manager_Action_AgentLogoffAction_Soft.htm\u0000155","AgentsAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgentsAction_Action.htm\u0000131","AgiAction.Action Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Action.htm\u0000131","AgiAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Channel.htm\u0000138","AgiAction.Command Property\u0000html/P_AsterNET_Manager_Action_AgiAction_Command.htm\u0000138","AOCMessageAction.Action Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Action.htm\u0000133","AOCMessageAction.AocBillingId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_AocBillingId.htm\u0000138","AOCMessageAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_Channel.htm\u0000138","AOCMessageAction.ChannelPrefix Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChannelPrefix.htm\u0000138","AOCMessageAction.ChargeType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargeType.htm\u0000138","AOCMessageAction.ChargingAssociationId Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationId.htm\u0000138","AOCMessageAction.ChargingAssociationNumber Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingAssociationNumber.htm\u0000138","AOCMessageAction.ChargingrAssociationPlan Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_ChargingrAssociationPlan.htm\u0000138","AOCMessageAction.CurrencyAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyAmount.htm\u0000138","AOCMessageAction.CurrencyMultiplier Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyMultiplier.htm\u0000138","AOCMessageAction.CurrencyName Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_CurrencyName.htm\u0000138","AOCMessageAction.MsgType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_MsgType.htm\u0000138","AOCMessageAction.TotalType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_TotalType.htm\u0000138","AOCMessageAction.UnitAmount Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitAmount.htm\u0000132","AOCMessageAction.UnitType Property\u0000html/P_AsterNET_Manager_Action_AOCMessageAction_UnitType.htm\u0000132","AtxferAction.Action Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Action.htm\u0000133","AtxferAction.Channel Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Channel.htm\u0000125","AtxferAction.Context Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Context.htm\u0000127","AtxferAction.Exten Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Exten.htm\u0000127","AtxferAction.Priority Property\u0000html/P_AsterNET_Manager_Action_AtxferAction_Priority.htm\u0000127","BridgeAction.Action Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Action.htm\u0000133","BridgeAction.Channel1 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel1.htm\u0000138","BridgeAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Channel2.htm\u0000138","BridgeAction.Tone Property\u0000html/P_AsterNET_Manager_Action_BridgeAction_Tone.htm\u0000138","ChallengeAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_Action.htm\u0000131","ChallengeAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_ChallengeAction_AuthType.htm\u0000138","ChangeMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Action.htm\u0000131","ChangeMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_Channel.htm\u0000136","ChangeMonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_ChangeMonitorAction_File.htm\u0000142","CommandAction.Action Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Action.htm\u0000131","CommandAction.Command Property\u0000html/P_AsterNET_Manager_Action_CommandAction_Command.htm\u0000134","ConfbridgeKickAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Action.htm\u0000133","ConfbridgeKickAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Channel.htm\u0000138","ConfbridgeKickAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeKickAction_Conference.htm\u0000138","ConfbridgeListAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Action.htm\u0000133","ConfbridgeListAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListAction_Conference.htm\u0000138","ConfbridgeListRoomsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeListRoomsAction_Action.htm\u0000133","ConfbridgeLockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Action.htm\u0000133","ConfbridgeLockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeLockAction_Conference.htm\u0000138","ConfbridgeMuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Action.htm\u0000133","ConfbridgeMuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Channel.htm\u0000138","ConfbridgeMuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeMuteAction_Conference.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Action.htm\u0000133","ConfbridgeSetSingleVideoSrcAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Channel.htm\u0000138","ConfbridgeSetSingleVideoSrcAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction_Conference.htm\u0000138","ConfbridgeStartRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Action.htm\u0000133","ConfbridgeStartRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStartRecordAction_Conference.htm\u0000138","ConfbridgeStopRecordAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Action.htm\u0000133","ConfbridgeStopRecordAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeStopRecordAction_Conference.htm\u0000138","ConfbridgeUnlockAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Action.htm\u0000133","ConfbridgeUnlockAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnlockAction_Conference.htm\u0000138","ConfbridgeUnmuteAction.Action Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Action.htm\u0000133","ConfbridgeUnmuteAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Channel.htm\u0000138","ConfbridgeUnmuteAction.Conference Property\u0000html/P_AsterNET_Manager_Action_ConfbridgeUnmuteAction_Conference.htm\u0000138","CoreSettingsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreSettingsAction_Action.htm\u0000133","CoreShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreShowChannelsAction_Action.htm\u0000133","CoreStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_CoreStatusAction_Action.htm\u0000133","CreateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Action.htm\u0000133","CreateConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_CreateConfigAction_Filename.htm\u0000138","DBDelAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Action.htm\u0000133","DBDelAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Family.htm\u0000133","DBDelAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelAction_Key.htm\u0000133","DBDelTreeAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Action.htm\u0000133","DBDelTreeAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Family.htm\u0000133","DBDelTreeAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBDelTreeAction_Key.htm\u0000133","DBGetAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Action.htm\u0000133","DBGetAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Family.htm\u0000135","DBGetAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBGetAction_Key.htm\u0000133","DBPutAction.Action Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Action.htm\u0000133","DBPutAction.Family Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Family.htm\u0000132","DBPutAction.Key Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Key.htm\u0000130","DBPutAction.Val Property\u0000html/P_AsterNET_Manager_Action_DBPutAction_Val.htm\u0000129","EventsAction.Action Property\u0000html/P_AsterNET_Manager_Action_EventsAction_Action.htm\u0000131","EventsAction.EventMask Property\u0000html/P_AsterNET_Manager_Action_EventsAction_EventMask.htm\u0000182","ExtensionStateAction.Action Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Action.htm\u0000131","ExtensionStateAction.Context Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Context.htm\u0000136","ExtensionStateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_ExtensionStateAction_Exten.htm\u0000129","GetConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Action.htm\u0000124","GetConfigAction.Filename Property\u0000html/P_AsterNET_Manager_Action_GetConfigAction_Filename.htm\u0000128","GetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Action.htm\u0000131","GetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Channel.htm\u0000148","GetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_GetVarAction_Variable.htm\u0000132","HangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Action.htm\u0000131","HangupAction.Channel Property\u0000html/P_AsterNET_Manager_Action_HangupAction_Channel.htm\u0000132","LoginAction.Action Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Action.htm\u0000131","LoginAction.AuthType Property\u0000html/P_AsterNET_Manager_Action_LoginAction_AuthType.htm\u0000158","LoginAction.Events Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Events.htm\u0000182","LoginAction.Key Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Key.htm\u0000127","LoginAction.Secret Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Secret.htm\u0000155","LoginAction.Username Property\u0000html/P_AsterNET_Manager_Action_LoginAction_Username.htm\u0000133","LogoffAction.Action Property\u0000html/P_AsterNET_Manager_Action_LogoffAction_Action.htm\u0000131","MailboxCountAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Action.htm\u0000131","MailboxCountAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxCountAction_Mailbox.htm\u0000166","MailboxStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Action.htm\u0000131","MailboxStatusAction.Mailbox Property\u0000html/P_AsterNET_Manager_Action_MailboxStatusAction_Mailbox.htm\u0000205","ManagerAction.Action Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Action.htm\u0000124","ManagerAction.ActionId Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ActionId.htm\u0000138","ManagerAction.ProxyKey Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_ProxyKey.htm\u0000194","ManagerAction.Server Property\u0000html/P_AsterNET_Manager_Action_ManagerAction_Server.htm\u0000182","MonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Action.htm\u0000131","MonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Channel.htm\u0000137","MonitorAction.File Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_File.htm\u0000166","MonitorAction.Format Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Format.htm\u0000147","MonitorAction.Mix Property\u0000html/P_AsterNET_Manager_Action_MonitorAction_Mix.htm\u0000133","OriginateAction.Account Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Account.htm\u0000155","OriginateAction.Action Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Action.htm\u0000131","OriginateAction.Application Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Application.htm\u0000135","OriginateAction.Async Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Async.htm\u0000153","OriginateAction.CallerId Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_CallerId.htm\u0000134","OriginateAction.Channel Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Channel.htm\u0000148","OriginateAction.Context Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Context.htm\u0000152","OriginateAction.Data Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Data.htm\u0000147","OriginateAction.Exten Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Exten.htm\u0000146","OriginateAction.Priority Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Priority.htm\u0000150","OriginateAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Timeout.htm\u0000164","OriginateAction.Variable Property\u0000html/P_AsterNET_Manager_Action_OriginateAction_Variable.htm\u0000289","ParkAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Action.htm\u0000131","ParkAction.Channel Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel.htm\u0000129","ParkAction.Channel2 Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Channel2.htm\u0000137","ParkAction.Parkinglot Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Parkinglot.htm\u0000127","ParkAction.Timeout Property\u0000html/P_AsterNET_Manager_Action_ParkAction_Timeout.htm\u0000136","ParkedCallsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ParkedCallsAction_Action.htm\u0000131","PingAction.Action Property\u0000html/P_AsterNET_Manager_Action_PingAction_Action.htm\u0000131","QueueAddAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Action.htm\u0000131","QueueAddAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Interface.htm\u0000153","QueueAddAction.MemberName Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_MemberName.htm\u0000129","QueueAddAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Paused.htm\u0000139","QueueAddAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Penalty.htm\u0000158","QueueAddAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueAddAction_Queue.htm\u0000142","QueueLogAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Action.htm\u0000133","QueueLogAction.Event Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Event.htm\u0000138","QueueLogAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Interface.htm\u0000138","QueueLogAction.Message Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Message.htm\u0000138","QueueLogAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Queue.htm\u0000138","QueueLogAction.Uniqueid Property\u0000html/P_AsterNET_Manager_Action_QueueLogAction_Uniqueid.htm\u0000138","QueuePauseAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Action.htm\u0000131","QueuePauseAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Interface.htm\u0000140","QueuePauseAction.Paused Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Paused.htm\u0000139","QueuePauseAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePauseAction_Queue.htm\u0000139","QueuePenaltyAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Action.htm\u0000133","QueuePenaltyAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Interface.htm\u0000138","QueuePenaltyAction.Penalty Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Penalty.htm\u0000138","QueuePenaltyAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueuePenaltyAction_Queue.htm\u0000138","QueueReloadAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Action.htm\u0000133","QueueReloadAction.Members Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Members.htm\u0000138","QueueReloadAction.Parameters Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Parameters.htm\u0000138","QueueReloadAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Queue.htm\u0000138","QueueReloadAction.Rules Property\u0000html/P_AsterNET_Manager_Action_QueueReloadAction_Rules.htm\u0000138","QueueRemoveAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Action.htm\u0000131","QueueRemoveAction.Interface Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Interface.htm\u0000134","QueueRemoveAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueRemoveAction_Queue.htm\u0000136","QueueResetAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Action.htm\u0000133","QueueResetAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueResetAction_Queue.htm\u0000138","QueueRuleAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Action.htm\u0000133","QueueRuleAction.Rule Property\u0000html/P_AsterNET_Manager_Action_QueueRuleAction_Rule.htm\u0000138","QueueStatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Action.htm\u0000131","QueueStatusAction.Member Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Member.htm\u0000128","QueueStatusAction.Queue Property\u0000html/P_AsterNET_Manager_Action_QueueStatusAction_Queue.htm\u0000128","RedirectAction.Action Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Action.htm\u0000131","RedirectAction.Channel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Channel.htm\u0000131","RedirectAction.Context Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Context.htm\u0000128","RedirectAction.Exten Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Exten.htm\u0000128","RedirectAction.ExtraChannel Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_ExtraChannel.htm\u0000133","RedirectAction.Priority Property\u0000html/P_AsterNET_Manager_Action_RedirectAction_Priority.htm\u0000122","SetCDRUserFieldAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Action.htm\u0000131","SetCDRUserFieldAction.Append Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Append.htm\u0000146","SetCDRUserFieldAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_Channel.htm\u0000142","SetCDRUserFieldAction.UserField Property\u0000html/P_AsterNET_Manager_Action_SetCDRUserFieldAction_UserField.htm\u0000141","SetVarAction.Action Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Action.htm\u0000131","SetVarAction.Channel Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Channel.htm\u0000130","SetVarAction.Value Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Value.htm\u0000129","SetVarAction.Variable Property\u0000html/P_AsterNET_Manager_Action_SetVarAction_Variable.htm\u0000132","SIPPeersAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPPeersAction_Action.htm\u0000133","SIPShowPeerAction.Action Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Action.htm\u0000133","SIPShowPeerAction.Peer Property\u0000html/P_AsterNET_Manager_Action_SIPShowPeerAction_Peer.htm\u0000137","StatusAction.Action Property\u0000html/P_AsterNET_Manager_Action_StatusAction_Action.htm\u0000131","StopMonitorAction.Action Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Action.htm\u0000131","StopMonitorAction.Channel Property\u0000html/P_AsterNET_Manager_Action_StopMonitorAction_Channel.htm\u0000138","UpdateConfigAction.Action Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Action.htm\u0000124","UpdateConfigAction.Actions Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Actions.htm\u0000207","UpdateConfigAction.DstFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_DstFileName.htm\u0000128","UpdateConfigAction.Reload Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_Reload.htm\u0000155","UpdateConfigAction.SrcFileName Property\u0000html/P_AsterNET_Manager_Action_UpdateConfigAction_SrcFileName.htm\u0000128","ZapDialOffhookAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Action.htm\u0000131","ZapDialOffhookAction.Number Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_Number.htm\u0000134","ZapDialOffhookAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDialOffhookAction_ZapChannel.htm\u0000130","ZapDNDOffAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_Action.htm\u0000131","ZapDNDOffAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOffAction_ZapChannel.htm\u0000135","ZapDNDOnAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_Action.htm\u0000131","ZapDNDOnAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapDNDOnAction_ZapChannel.htm\u0000135","ZapHangupAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_Action.htm\u0000131","ZapHangupAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapHangupAction_ZapChannel.htm\u0000132","ZapShowChannelsAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapShowChannelsAction_Action.htm\u0000131","ZapTransferAction.Action Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_Action.htm\u0000131","ZapTransferAction.ZapChannel Property\u0000html/P_AsterNET_Manager_Action_ZapTransferAction_ZapChannel.htm\u0000132","EventTimeoutException.PartialResult Property\u0000html/P_AsterNET_Manager_EventTimeoutException_PartialResult.htm\u0000190","AbstractAgentEvent.Member Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Member.htm\u0000131","AbstractAgentEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_MemberName.htm\u0000131","AbstractAgentEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentEvent_Queue.htm\u0000130","AbstractAgentVariables.Variable Property\u0000html/P_AsterNET_Manager_Event_AbstractAgentVariables_Variable.htm\u0000252","AbstractChannelEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_AccountCode.htm\u0000126","AbstractChannelEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerId.htm\u0000142","AbstractChannelEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdName.htm\u0000143","AbstractChannelEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_CallerIdNum.htm\u0000142","AbstractChannelEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelState.htm\u0000126","AbstractChannelEvent.ChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ChannelStateDesc.htm\u0000127","AbstractChannelEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_ConnectedLineName.htm\u0000138","AbstractChannelEvent.Connectedlinenum Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_Connectedlinenum.htm\u0000138","AbstractChannelEvent.State Property\u0000html/P_AsterNET_Manager_Event_AbstractChannelEvent_State.htm\u0000146","AbstractConfbridgeEvent.Conference Property\u0000html/P_AsterNET_Manager_Event_AbstractConfbridgeEvent_Conference.htm\u0000130","AbstractMeetmeEvent.Meetme Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Meetme.htm\u0000128","AbstractMeetmeEvent.Usernum Property\u0000html/P_AsterNET_Manager_Event_AbstractMeetmeEvent_Usernum.htm\u0000132","AbstractParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerId.htm\u0000133","AbstractParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdName.htm\u0000133","AbstractParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_CallerIdNum.htm\u0000133","AbstractParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_AbstractParkedCallEvent_Exten.htm\u0000134","AbstractQueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_CallsTaken.htm\u0000134","AbstractQueueMemberEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_InCall.htm\u0000137","AbstractQueueMemberEvent.Interface Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Interface.htm\u0000138","AbstractQueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_LastCall.htm\u0000149","AbstractQueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Location.htm\u0000158","AbstractQueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_MemberName.htm\u0000137","AbstractQueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Membership.htm\u0000169","AbstractQueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Paused.htm\u0000146","AbstractQueueMemberEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_PausedReason.htm\u0000143","AbstractQueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Penalty.htm\u0000144","AbstractQueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Queue.htm\u0000128","AbstractQueueMemberEvent.Ringinuse Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Ringinuse.htm\u0000131","AbstractQueueMemberEvent.StateInterface Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_StateInterface.htm\u0000142","AbstractQueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AbstractQueueMemberEvent_Status.htm\u0000148","AgentCallbackLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_Agent.htm\u0000133","AgentCallbackLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLoginEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Agent.htm\u0000142","AgentCallbackLogoffEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginChan.htm\u0000138","AgentCallbackLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_LoginTime.htm\u0000138","AgentCallbackLogoffEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCallbackLogoffEvent_Reason.htm\u0000174","AgentCalledEvent.AgentCalled Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentCalled.htm\u0000138","AgentCalledEvent.AgentName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_AgentName.htm\u0000138","AgentCalledEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerId.htm\u0000138","AgentCalledEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdName.htm\u0000133","AgentCalledEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_CallerIdNum.htm\u0000133","AgentCalledEvent.ChannelCalling Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_ChannelCalling.htm\u0000138","AgentCalledEvent.Context Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Context.htm\u0000138","AgentCalledEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_DestinationChannel.htm\u0000138","AgentCalledEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Extension.htm\u0000138","AgentCalledEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Priority.htm\u0000138","AgentCalledEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_AgentCalledEvent_Queue.htm\u0000138","AgentCompleteEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_HoldTime.htm\u0000131","AgentCompleteEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_Reason.htm\u0000134","AgentCompleteEvent.TalkTime Property\u0000html/P_AsterNET_Manager_Event_AgentCompleteEvent_TalkTime.htm\u0000132","AgentConnectEvent.BridgedChannel Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_BridgedChannel.htm\u0000127","AgentConnectEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_HoldTime.htm\u0000131","AgentConnectEvent.RingTime Property\u0000html/P_AsterNET_Manager_Event_AgentConnectEvent_RingTime.htm\u0000131","AgentLoginEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_Agent.htm\u0000133","AgentLoginEvent.LoginChan Property\u0000html/P_AsterNET_Manager_Event_AgentLoginEvent_LoginChan.htm\u0000138","AgentLogoffEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_Agent.htm\u0000133","AgentLogoffEvent.LoginTime Property\u0000html/P_AsterNET_Manager_Event_AgentLogoffEvent_LoginTime.htm\u0000138","AgentsEvent.Agent Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Agent.htm\u0000127","AgentsEvent.LoggedInChan Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInChan.htm\u0000146","AgentsEvent.LoggedInTime Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_LoggedInTime.htm\u0000145","AgentsEvent.Name Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Name.htm\u0000130","AgentsEvent.Status Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_Status.htm\u0000179","AgentsEvent.TalkingTo Property\u0000html/P_AsterNET_Manager_Event_AgentsEvent_TalkingTo.htm\u0000148","AGIExecEvent.Command Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Command.htm\u0000138","AGIExecEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_CommandId.htm\u0000135","AGIExecEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_Result.htm\u0000138","AGIExecEvent.ResultCode Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_ResultCode.htm\u0000132","AGIExecEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AGIExecEvent_SubEvent.htm\u0000138","AlarmEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_AlarmEvent_Alarm.htm\u0000146","AsyncAGIEvent.CommandId Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_CommandId.htm\u0000138","AsyncAGIEvent.Env Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Env.htm\u0000138","AsyncAGIEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_Result.htm\u0000138","AsyncAGIEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_AsyncAGIEvent_SubEvent.htm\u0000138","AttendedTransferEvent.DestBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestBridgeUniqueId.htm\u0000138","AttendedTransferEvent.DestType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_DestType.htm\u0000138","AttendedTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_IsExternal.htm\u0000132","AttendedTransferEvent.OrigBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeCreator.htm\u0000138","AttendedTransferEvent.OrigBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeName.htm\u0000138","AttendedTransferEvent.OrigBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeNumChannels.htm\u0000138","AttendedTransferEvent.OrigBridgetechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgetechnology.htm\u0000138","AttendedTransferEvent.OrigBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeType.htm\u0000138","AttendedTransferEvent.OrigBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigBridgeUniqueId.htm\u0000138","AttendedTransferEvent.OrigTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererAccountCode.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridName.htm\u0000138","AttendedTransferEvent.OrigTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.OrigTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannel.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelState.htm\u0000138","AttendedTransferEvent.OrigTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.OrigTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.OrigTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererContext.htm\u0000138","AttendedTransferEvent.OrigTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererLanguage.htm\u0000138","AttendedTransferEvent.OrigTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererPriority.htm\u0000138","AttendedTransferEvent.OrigTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_OrigTransfererUniqueId.htm\u0000138","AttendedTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_Result.htm\u0000132","AttendedTransferEvent.SecondBridgeCreator Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeCreator.htm\u0000138","AttendedTransferEvent.SecondBridgeName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeName.htm\u0000138","AttendedTransferEvent.SecondBridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeNumChannels.htm\u0000138","AttendedTransferEvent.SecondBridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeTechnology.htm\u0000138","AttendedTransferEvent.SecondBridgeType Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeType.htm\u0000138","AttendedTransferEvent.SecondBridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondBridgeUniqueId.htm\u0000138","AttendedTransferEvent.SecondTransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererAccountCode.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridName.htm\u0000138","AttendedTransferEvent.SecondTransfererCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererCalleridNum.htm\u0000138","AttendedTransferEvent.SecondTransfererChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannel.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelState.htm\u0000138","AttendedTransferEvent.SecondTransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererChannelStatedesc.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineName.htm\u0000138","AttendedTransferEvent.SecondTransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererConnectedLineNum.htm\u0000138","AttendedTransferEvent.SecondTransfererContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererContext.htm\u0000138","AttendedTransferEvent.SecondTransfererExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererExten.htm\u0000138","AttendedTransferEvent.SecondTransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererLanguage.htm\u0000138","AttendedTransferEvent.SecondTransfererPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererPriority.htm\u0000138","AttendedTransferEvent.SecondTransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_SecondTransfererUniqueId.htm\u0000138","AttendedTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeAccountCode.htm\u0000138","AttendedTransferEvent.TransfereeCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridName.htm\u0000138","AttendedTransferEvent.TransfereeCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeCalleridNum.htm\u0000138","AttendedTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannel.htm\u0000138","AttendedTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelState.htm\u0000138","AttendedTransferEvent.TransfereeChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineName.htm\u0000138","AttendedTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeContext.htm\u0000138","AttendedTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeExten.htm\u0000138","AttendedTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeLanguage.htm\u0000138","AttendedTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereePriority.htm\u0000138","AttendedTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransfereeUniqueId.htm\u0000138","AttendedTransferEvent.TransferTargetAccountCode Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetAccountCode.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridName.htm\u0000138","AttendedTransferEvent.TransferTargetCalleridNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetCalleridNum.htm\u0000138","AttendedTransferEvent.TransferTargetChannel Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannel.htm\u0000138","AttendedTransferEvent.TransferTargetChannelState Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelState.htm\u0000138","AttendedTransferEvent.TransferTargetChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetChannelStatedesc.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineName.htm\u0000138","AttendedTransferEvent.TransferTargetConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetConnectedLineNum.htm\u0000138","AttendedTransferEvent.TransferTargetContext Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetContext.htm\u0000138","AttendedTransferEvent.TransferTargetLanguage Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetLanguage.htm\u0000138","AttendedTransferEvent.TransferTargetPriority Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetPriority.htm\u0000138","AttendedTransferEvent.TransferTargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_AttendedTransferEvent_TransferTargetUniqueId.htm\u0000138","BlindTransferEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeCreator.htm\u0000138","BlindTransferEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeName.htm\u0000138","BlindTransferEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeNumChannels.htm\u0000138","BlindTransferEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeTechnology.htm\u0000138","BlindTransferEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeType.htm\u0000138","BlindTransferEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_BridgeUniqueId.htm\u0000138","BlindTransferEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Context.htm\u0000138","BlindTransferEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Extension.htm\u0000138","BlindTransferEvent.IsExternal Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_IsExternal.htm\u0000138","BlindTransferEvent.Result Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_Result.htm\u0000132","BlindTransferEvent.TransfereeAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeAccountCode.htm\u0000138","BlindTransferEvent.TransfereeCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdName.htm\u0000138","BlindTransferEvent.TransfereeCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeCallerIdNum.htm\u0000138","BlindTransferEvent.TransfereeChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannel.htm\u0000138","BlindTransferEvent.TransfereeChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelState.htm\u0000138","BlindTransferEvent.TransfereeChannelStateDesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeChannelStateDesc.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineName.htm\u0000138","BlindTransferEvent.TransfereeConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfereeContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeContext.htm\u0000138","BlindTransferEvent.TransfereeExten Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeExten.htm\u0000138","BlindTransferEvent.TransfereeLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeLanguage.htm\u0000138","BlindTransferEvent.TransfereePriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereePriority.htm\u0000138","BlindTransferEvent.TransfereeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfereeUniqueId.htm\u0000138","BlindTransferEvent.TransfererAccountCode Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererAccountCode.htm\u0000138","BlindTransferEvent.TransfererCallerIdName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdName.htm\u0000138","BlindTransferEvent.TransfererCallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererCallerIdNum.htm\u0000138","BlindTransferEvent.TransfererChannel Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannel.htm\u0000138","BlindTransferEvent.TransfererChannelState Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelState.htm\u0000138","BlindTransferEvent.TransfererChannelStatedesc Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererChannelStatedesc.htm\u0000138","BlindTransferEvent.TransfererConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineName.htm\u0000138","BlindTransferEvent.TransfererConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererConnectedLineNum.htm\u0000138","BlindTransferEvent.TransfererContext Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererContext.htm\u0000138","BlindTransferEvent.TransfererLanguage Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererLanguage.htm\u0000138","BlindTransferEvent.TransfererPriority Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererPriority.htm\u0000138","BlindTransferEvent.TransfererUniqueId Property\u0000html/P_AsterNET_Manager_Event_BlindTransferEvent_TransfererUniqueId.htm\u0000138","BridgeActivityEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_AccountCode.htm\u0000130","BridgeActivityEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeCreator.htm\u0000130","BridgeActivityEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeName.htm\u0000130","BridgeActivityEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeNumChannels.htm\u0000130","BridgeActivityEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeTechnology.htm\u0000130","BridgeActivityEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeType.htm\u0000130","BridgeActivityEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_BridgeUniqueId.htm\u0000130","BridgeActivityEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdName.htm\u0000130","BridgeActivityEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_CallerIdNum.htm\u0000130","BridgeActivityEvent.ChannelState Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelState.htm\u0000130","BridgeActivityEvent.ChannelStatedDesc Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ChannelStatedDesc.htm\u0000130","BridgeActivityEvent.ConnectedLineName Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineName.htm\u0000130","BridgeActivityEvent.ConnectedLineNum Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_ConnectedLineNum.htm\u0000130","BridgeActivityEvent.Context Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Context.htm\u0000130","BridgeActivityEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Exten.htm\u0000130","BridgeActivityEvent.Language Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Language.htm\u0000130","BridgeActivityEvent.Linkedid Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Linkedid.htm\u0000130","BridgeActivityEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_BridgeActivityEvent_Priority.htm\u0000130","BridgeEvent.BridgeState Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeState.htm\u0000139","BridgeEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_BridgeType.htm\u0000139","BridgeEvent.CallerId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId1.htm\u0000138","BridgeEvent.CallerId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_CallerId2.htm\u0000138","BridgeEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel1.htm\u0000138","BridgeEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Channel2.htm\u0000138","BridgeEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Reason.htm\u0000138","BridgeEvent.Response Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_Response.htm\u0000138","BridgeEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId1.htm\u0000138","BridgeEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_BridgeEvent_UniqueId2.htm\u0000138","BridgeStateEvent.BridgeCreator Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeCreator.htm\u0000138","BridgeStateEvent.BridgeName Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeName.htm\u0000138","BridgeStateEvent.BridgeNumChannels Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeNumChannels.htm\u0000132","BridgeStateEvent.BridgeTechnology Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeTechnology.htm\u0000138","BridgeStateEvent.BridgeType Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeType.htm\u0000138","BridgeStateEvent.BridgeUniqueId Property\u0000html/P_AsterNET_Manager_Event_BridgeStateEvent_BridgeUniqueId.htm\u0000138","CdrEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AccountCode.htm\u0000138","CdrEvent.AmaFlags Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AmaFlags.htm\u0000138","CdrEvent.AnswerTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_AnswerTime.htm\u0000138","CdrEvent.BillableSeconds Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_BillableSeconds.htm\u0000135","CdrEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_CallerId.htm\u0000138","CdrEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Destination.htm\u0000138","CdrEvent.DestinationChannel Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationChannel.htm\u0000138","CdrEvent.DestinationContext Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_DestinationContext.htm\u0000138","CdrEvent.Disposition Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Disposition.htm\u0000138","CdrEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Duration.htm\u0000135","CdrEvent.EndTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_EndTime.htm\u0000138","CdrEvent.LastApplication Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastApplication.htm\u0000138","CdrEvent.LastData Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_LastData.htm\u0000138","CdrEvent.Src Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_Src.htm\u0000138","CdrEvent.StartTime Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_StartTime.htm\u0000138","CdrEvent.UserField Property\u0000html/P_AsterNET_Manager_Event_CdrEvent_UserField.htm\u0000138","ChannelReloadEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ChannelType.htm\u0000131","ChannelReloadEvent.PeerCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_PeerCount.htm\u0000132","ChannelReloadEvent.RegistryCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_RegistryCount.htm\u0000132","ChannelReloadEvent.ReloadReason Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_ReloadReason.htm\u0000130","ChannelReloadEvent.UserCount Property\u0000html/P_AsterNET_Manager_Event_ChannelReloadEvent_UserCount.htm\u0000132","ChannelUpdateEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_ChannelType.htm\u0000137","ChannelUpdateEvent.GTalkSID Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_GTalkSID.htm\u0000138","ChannelUpdateEvent.IAX2CallnoLocal Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoLocal.htm\u0000138","ChannelUpdateEvent.IAX2CallnoRemote Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2CallnoRemote.htm\u0000138","ChannelUpdateEvent.IAX2Peer Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_IAX2Peer.htm\u0000138","ChannelUpdateEvent.PeerName Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_PeerName.htm\u0000138","ChannelUpdateEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipCallId.htm\u0000138","ChannelUpdateEvent.SipFullContact Property\u0000html/P_AsterNET_Manager_Event_ChannelUpdateEvent_SipFullContact.htm\u0000138","ConfbridgeJoinEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDname.htm\u0000138","ConfbridgeJoinEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeJoinEvent_CallerIDnum.htm\u0000138","ConfbridgeLeaveEvent.CallerIDname Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDname.htm\u0000138","ConfbridgeLeaveEvent.CallerIDnum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeLeaveEvent_CallerIDnum.htm\u0000138","ConfbridgeListEvent.Admin Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_Admin.htm\u0000138","ConfbridgeListEvent.CallerIDName Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDName.htm\u0000138","ConfbridgeListEvent.CallerIDNum Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_CallerIDNum.htm\u0000138","ConfbridgeListEvent.MarkedUser Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListEvent_MarkedUser.htm\u0000138","ConfbridgeListRoomsEvent.Locked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Locked.htm\u0000138","ConfbridgeListRoomsEvent.Marked Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Marked.htm\u0000132","ConfbridgeListRoomsEvent.Parties Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeListRoomsEvent_Parties.htm\u0000132","ConfbridgeTalkingEvent.TalkingStatus Property\u0000html/P_AsterNET_Manager_Event_ConfbridgeTalkingEvent_TalkingStatus.htm\u0000138","ConnectEvent.ProtocolIdentifier Property\u0000html/P_AsterNET_Manager_Event_ConnectEvent_ProtocolIdentifier.htm\u0000130","ConnectionStateEvent.Reconnect Property\u0000html/P_AsterNET_Manager_Event_ConnectionStateEvent_Reconnect.htm\u0000121","DBGetResponseEvent.Family Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Family.htm\u0000134","DBGetResponseEvent.Key Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Key.htm\u0000134","DBGetResponseEvent.Val Property\u0000html/P_AsterNET_Manager_Event_DBGetResponseEvent_Val.htm\u0000134","DialEndEvent.Forward Property\u0000html/P_AsterNET_Manager_Event_DialEndEvent_Forward.htm\u0000138","DialEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerId.htm\u0000128","DialEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdName.htm\u0000129","DialEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_DialEvent_CallerIdNum.htm\u0000129","DialEvent.Destination Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Destination.htm\u0000131","DialEvent.DestUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DestUniqueId.htm\u0000132","DialEvent.DialStatus Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialStatus.htm\u0000138","DialEvent.DialString Property\u0000html/P_AsterNET_Manager_Event_DialEvent_DialString.htm\u0000138","DialEvent.Src Property\u0000html/P_AsterNET_Manager_Event_DialEvent_Src.htm\u0000130","DialEvent.SrcUniqueId Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SrcUniqueId.htm\u0000132","DialEvent.SubEvent Property\u0000html/P_AsterNET_Manager_Event_DialEvent_SubEvent.htm\u0000138","DNDStateEvent.State Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_State.htm\u0000148","DNDStateEvent.Status Property\u0000html/P_AsterNET_Manager_Event_DNDStateEvent_Status.htm\u0000148","DTMFEvent.Begin Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Begin.htm\u0000132","DTMFEvent.Digit Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Digit.htm\u0000138","DTMFEvent.Direction Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_Direction.htm\u0000138","DTMFEvent.End Property\u0000html/P_AsterNET_Manager_Event_DTMFEvent_End.htm\u0000132","ExtensionStatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Context.htm\u0000130","ExtensionStatusEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Exten.htm\u0000127","ExtensionStatusEvent.Hint Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Hint.htm\u0000128","ExtensionStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ExtensionStatusEvent_Status.htm\u0000124","FailedACLEvent.ACLName Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_ACLName.htm\u0000138","FailedACLEvent.LocalAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_LocalAddress.htm\u0000138","FailedACLEvent.RemoteAddress Property\u0000html/P_AsterNET_Manager_Event_FailedACLEvent_RemoteAddress.htm\u0000138","FaxReceivedEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_CallerId.htm\u0000138","FaxReceivedEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Exten.htm\u0000133","FaxReceivedEvent.Filename Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Filename.htm\u0000139","FaxReceivedEvent.LocalStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_LocalStationId.htm\u0000132","FaxReceivedEvent.PagesTransferred Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_PagesTransferred.htm\u0000124","FaxReceivedEvent.RemoteStationId Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_RemoteStationId.htm\u0000132","FaxReceivedEvent.Resolution Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_Resolution.htm\u0000126","FaxReceivedEvent.TransferRate Property\u0000html/P_AsterNET_Manager_Event_FaxReceivedEvent_TransferRate.htm\u0000125","HangupEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_Cause.htm\u0000124","HangupEvent.CauseTxt Property\u0000html/P_AsterNET_Manager_Event_HangupEvent_CauseTxt.htm\u0000132","HoldedCallEvent.Channel1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel1.htm\u0000137","HoldedCallEvent.Channel2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_Channel2.htm\u0000136","HoldedCallEvent.UniqueId1 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId1.htm\u0000138","HoldedCallEvent.UniqueId2 Property\u0000html/P_AsterNET_Manager_Event_HoldedCallEvent_UniqueId2.htm\u0000137","HoldEvent.Status Property\u0000html/P_AsterNET_Manager_Event_HoldEvent_Status.htm\u0000138","JabberEvent.Account Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Account.htm\u0000138","JabberEvent.Packet Property\u0000html/P_AsterNET_Manager_Event_JabberEvent_Packet.htm\u0000138","JitterBufStatsEvent.LocalDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalDropped.htm\u0000132","JitterBufStatsEvent.LocalJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJBDelay.htm\u0000132","JitterBufStatsEvent.LocalJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalJitter.htm\u0000132","JitterBufStatsEvent.LocalLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalLossPercent.htm\u0000132","JitterBufStatsEvent.Localooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Localooo.htm\u0000132","JitterBufStatsEvent.LocalReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalReceived.htm\u0000132","JitterBufStatsEvent.LocalTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_LocalTotalLost.htm\u0000132","JitterBufStatsEvent.Owner Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Owner.htm\u0000138","JitterBufStatsEvent.Ping Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Ping.htm\u0000132","JitterBufStatsEvent.RemoteDropped Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteDropped.htm\u0000132","JitterBufStatsEvent.RemoteJBDelay Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJBDelay.htm\u0000132","JitterBufStatsEvent.RemoteJitter Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteJitter.htm\u0000132","JitterBufStatsEvent.RemoteLossPercent Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteLossPercent.htm\u0000132","JitterBufStatsEvent.Remoteooo Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_Remoteooo.htm\u0000132","JitterBufStatsEvent.RemoteReceived Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteReceived.htm\u0000132","JitterBufStatsEvent.RemoteTotalLost Property\u0000html/P_AsterNET_Manager_Event_JitterBufStatsEvent_RemoteTotalLost.htm\u0000132","JoinEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerId.htm\u0000152","JoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_CallerIdName.htm\u0000152","JoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_JoinEvent_Position.htm\u0000128","LogChannelEvent.Enabled Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Enabled.htm\u0000126","LogChannelEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_Reason.htm\u0000133","LogChannelEvent.ReasonCode Property\u0000html/P_AsterNET_Manager_Event_LogChannelEvent_ReasonCode.htm\u0000109","ManagerEvent.Attributes Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Attributes.htm\u0000223","ManagerEvent.Channel Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Channel.htm\u0000130","ManagerEvent.DateReceived Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_DateReceived.htm\u0000153","ManagerEvent.Privilege Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Privilege.htm\u0000172","ManagerEvent.Server Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Server.htm\u0000182","ManagerEvent.Source Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Source.htm\u0000130","ManagerEvent.Timestamp Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_Timestamp.htm\u0000159","ManagerEvent.UniqueId Property\u0000html/P_AsterNET_Manager_Event_ManagerEvent_UniqueId.htm\u0000131","MeetmeJoinEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdName.htm\u0000138","MeetmeJoinEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeJoinEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdName.htm\u0000138","MeetmeLeaveEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_CallerIdNum.htm\u0000138","MeetmeLeaveEvent.Duration Property\u0000html/P_AsterNET_Manager_Event_MeetmeLeaveEvent_Duration.htm\u0000135","MeetmeMuteEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeMuteEvent_Status.htm\u0000132","MeetmeTalkingEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkingEvent_Status.htm\u0000132","MeetmeTalkRequestEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MeetmeTalkRequestEvent_Status.htm\u0000132","MessageWaitingEvent.Mailbox Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Mailbox.htm\u0000152","MessageWaitingEvent.New Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_New.htm\u0000127","MessageWaitingEvent.Old Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Old.htm\u0000127","MessageWaitingEvent.Waiting Property\u0000html/P_AsterNET_Manager_Event_MessageWaitingEvent_Waiting.htm\u0000127","MobileStatusEvent.Device Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Device.htm\u0000138","MobileStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_MobileStatusEvent_Status.htm\u0000138","ModuleLoadReportEvent.ModuleCount Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleCount.htm\u0000132","ModuleLoadReportEvent.ModuleLoadStatus Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleLoadStatus.htm\u0000138","ModuleLoadReportEvent.ModuleSelection Property\u0000html/P_AsterNET_Manager_Event_ModuleLoadReportEvent_ModuleSelection.htm\u0000138","NewAccountCodeEvent.AccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_AccountCode.htm\u0000138","NewAccountCodeEvent.OldAccountCode Property\u0000html/P_AsterNET_Manager_Event_NewAccountCodeEvent_OldAccountCode.htm\u0000138","NewCallerIdEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerId.htm\u0000129","NewCallerIdEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdName.htm\u0000143","NewCallerIdEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CallerIdNum.htm\u0000130","NewCallerIdEvent.CidCallingPres Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPres.htm\u0000140","NewCallerIdEvent.CidCallingPresNumeric Property\u0000html/P_AsterNET_Manager_Event_NewCallerIdEvent_CidCallingPresNumeric.htm\u0000107","NewExtenEvent.AppData Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppData.htm\u0000146","NewExtenEvent.AppdEvent Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_AppdEvent.htm\u0000138","NewExtenEvent.Application Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Application.htm\u0000133","NewExtenEvent.Context Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Context.htm\u0000134","NewExtenEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Extension.htm\u0000127","NewExtenEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_NewExtenEvent_Priority.htm\u0000121","OriginateResponseEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerId.htm\u0000138","OriginateResponseEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdName.htm\u0000138","OriginateResponseEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_CallerIdNum.htm\u0000138","OriginateResponseEvent.Context Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Context.htm\u0000138","OriginateResponseEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Exten.htm\u0000138","OriginateResponseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Reason.htm\u0000132","OriginateResponseEvent.Response Property\u0000html/P_AsterNET_Manager_Event_OriginateResponseEvent_Response.htm\u0000138","ParkedCallEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerId.htm\u0000133","ParkedCallEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdName.htm\u0000133","ParkedCallEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_CallerIdNum.htm\u0000133","ParkedCallEvent.Exten Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Exten.htm\u0000132","ParkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_From.htm\u0000134","ParkedCallEvent.Timeout Property\u0000html/P_AsterNET_Manager_Event_ParkedCallEvent_Timeout.htm\u0000141","PeerEntryEvent.Acl Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Acl.htm\u0000132","PeerEntryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChannelType.htm\u0000131","PeerEntryEvent.ChanObjectType Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ChanObjectType.htm\u0000136","PeerEntryEvent.Dynamic Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Dynamic.htm\u0000132","PeerEntryEvent.IpAddress Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpAddress.htm\u0000131","PeerEntryEvent.IpPort Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_IpPort.htm\u0000132","PeerEntryEvent.NatSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_NatSupport.htm\u0000132","PeerEntryEvent.ObjectName Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_ObjectName.htm\u0000138","PeerEntryEvent.RealtimeDevice Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_RealtimeDevice.htm\u0000132","PeerEntryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_Status.htm\u0000163","PeerEntryEvent.TextSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_TextSupport.htm\u0000132","PeerEntryEvent.VideoSupport Property\u0000html/P_AsterNET_Manager_Event_PeerEntryEvent_VideoSupport.htm\u0000132","PeerlistCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_PeerlistCompleteEvent_ListItems.htm\u0000127","PeerStatusEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Cause.htm\u0000190","PeerStatusEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_ChannelType.htm\u0000130","PeerStatusEvent.Peer Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Peer.htm\u0000179","PeerStatusEvent.PeerStatus Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_PeerStatus.htm\u0000147","PeerStatusEvent.Time Property\u0000html/P_AsterNET_Manager_Event_PeerStatusEvent_Time.htm\u0000163","PRIEvent.DChannel Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_DChannel.htm\u0000138","PRIEvent.PriEvent Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEvent.htm\u0000138","PRIEvent.PriEventCode Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_PriEventCode.htm\u0000138","PRIEvent.Span Property\u0000html/P_AsterNET_Manager_Event_PRIEvent_Span.htm\u0000138","QueueCallerAbandonEvent.HoldTime Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_HoldTime.htm\u0000132","QueueCallerAbandonEvent.OriginalPosition Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_OriginalPosition.htm\u0000132","QueueCallerAbandonEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Position.htm\u0000132","QueueCallerAbandonEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueCallerAbandonEvent_Queue.htm\u0000138","QueueCallerJoinEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerJoinEvent_Position.htm\u0000138","QueueCallerLeaveEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueCallerLeaveEvent_Position.htm\u0000138","QueueEntryEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerId.htm\u0000133","QueueEntryEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_CallerIdName.htm\u0000132","QueueEntryEvent.Position Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Position.htm\u0000127","QueueEntryEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Queue.htm\u0000134","QueueEntryEvent.Wait Property\u0000html/P_AsterNET_Manager_Event_QueueEntryEvent_Wait.htm\u0000133","QueueEvent.Count Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Count.htm\u0000141","QueueEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueEvent_Queue.htm\u0000130","QueueMemberAddedEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_CallsTaken.htm\u0000127","QueueMemberAddedEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_LastCall.htm\u0000143","QueueMemberAddedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_MemberName.htm\u0000140","QueueMemberAddedEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Membership.htm\u0000162","QueueMemberAddedEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Paused.htm\u0000143","QueueMemberAddedEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Penalty.htm\u0000137","QueueMemberAddedEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberAddedEvent_Status.htm\u0000139","QueueMemberEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_CallsTaken.htm\u0000127","QueueMemberEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_LastCall.htm\u0000143","QueueMemberEvent.Location Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Location.htm\u0000141","QueueMemberEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_MemberName.htm\u0000131","QueueMemberEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Membership.htm\u0000185","QueueMemberEvent.Name Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Name.htm\u0000131","QueueMemberEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Paused.htm\u0000144","QueueMemberEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Penalty.htm\u0000137","QueueMemberEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Queue.htm\u0000130","QueueMemberEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberEvent_Status.htm\u0000173","QueueMemberPausedEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_InCall.htm\u0000124","QueueMemberPausedEvent.PausedReason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_PausedReason.htm\u0000130","QueueMemberPausedEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPausedEvent_Reason.htm\u0000128","QueueMemberPauseEvent.Reason Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPauseEvent_Reason.htm\u0000129","QueueMemberPenaltyEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberPenaltyEvent_Penalty.htm\u0000125","QueueMemberRemovedEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRemovedEvent_MemberName.htm\u0000140","QueueMemberRinginuseEvent.Ringinuse Property\u0000html/P_AsterNET_Manager_Event_QueueMemberRinginuseEvent_Ringinuse.htm\u0000123","QueueMemberStatusEvent.CallsTaken Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_CallsTaken.htm\u0000127","QueueMemberStatusEvent.InCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_InCall.htm\u0000129","QueueMemberStatusEvent.LastCall Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_LastCall.htm\u0000143","QueueMemberStatusEvent.MemberName Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_MemberName.htm\u0000140","QueueMemberStatusEvent.Membership Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Membership.htm\u0000162","QueueMemberStatusEvent.Paused Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Paused.htm\u0000143","QueueMemberStatusEvent.Penalty Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Penalty.htm\u0000137","QueueMemberStatusEvent.StateInterface Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_StateInterface.htm\u0000134","QueueMemberStatusEvent.Status Property\u0000html/P_AsterNET_Manager_Event_QueueMemberStatusEvent_Status.htm\u0000139","QueueParamsEvent.Abandoned Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Abandoned.htm\u0000130","QueueParamsEvent.Calls Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Calls.htm\u0000138","QueueParamsEvent.Completed Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Completed.htm\u0000130","QueueParamsEvent.Holdtime Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Holdtime.htm\u0000138","QueueParamsEvent.Max Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Max.htm\u0000152","QueueParamsEvent.Queue Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Queue.htm\u0000130","QueueParamsEvent.ServiceLevel Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevel.htm\u0000139","QueueParamsEvent.ServiceLevelPerf Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_ServiceLevelPerf.htm\u0000152","QueueParamsEvent.Strategy Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Strategy.htm\u0000127","QueueParamsEvent.Weight Property\u0000html/P_AsterNET_Manager_Event_QueueParamsEvent_Weight.htm\u0000165","RegistryEvent.Cause Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Cause.htm\u0000149","RegistryEvent.ChannelType Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_ChannelType.htm\u0000131","RegistryEvent.Domain Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Domain.htm\u0000153","RegistryEvent.Status Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Status.htm\u0000190","RegistryEvent.User Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_User.htm\u0000115","RegistryEvent.Username Property\u0000html/P_AsterNET_Manager_Event_RegistryEvent_Username.htm\u0000155","ReloadEvent.Message Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Message.htm\u0000148","ReloadEvent.Module Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Module.htm\u0000135","ReloadEvent.Status Property\u0000html/P_AsterNET_Manager_Event_ReloadEvent_Status.htm\u0000126","RenameEvent.NewName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_NewName.htm\u0000131","RenameEvent.OldName Property\u0000html/P_AsterNET_Manager_Event_RenameEvent_OldName.htm\u0000131","ResponseEvent.ActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_ActionId.htm\u0000135","ResponseEvent.InternalActionId Property\u0000html/P_AsterNET_Manager_Event_ResponseEvent_InternalActionId.htm\u0000136","RTCPReceivedEvent.DLSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_DLSR.htm\u0000138","RTCPReceivedEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_FractionLost.htm\u0000135","RTCPReceivedEvent.From Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_From.htm\u0000138","RTCPReceivedEvent.HighestSequence Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_HighestSequence.htm\u0000135","RTCPReceivedEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_IAJitter.htm\u0000135","RTCPReceivedEvent.LastSR Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_LastSR.htm\u0000138","RTCPReceivedEvent.PacketsLost Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PacketsLost.htm\u0000132","RTCPReceivedEvent.PT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_PT.htm\u0000138","RTCPReceivedEvent.ReceptionReports Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_ReceptionReports.htm\u0000132","RTCPReceivedEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_RTT.htm\u0000138","RTCPReceivedEvent.SenderSSRC Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SenderSSRC.htm\u0000135","RTCPReceivedEvent.SequenceNumberCycles Property\u0000html/P_AsterNET_Manager_Event_RTCPReceivedEvent_SequenceNumberCycles.htm\u0000132","RTCPSentEvent.CumulativeLoss Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_CumulativeLoss.htm\u0000135","RTCPSentEvent.DlSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_DlSr.htm\u0000138","RTCPSentEvent.FractionLost Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_FractionLost.htm\u0000135","RTCPSentEvent.IAJitter Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_IAJitter.htm\u0000132","RTCPSentEvent.OursSrc Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_OursSrc.htm\u0000135","RTCPSentEvent.ReportBlock Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_ReportBlock.htm\u0000135","RTCPSentEvent.SentNtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentNtp.htm\u0000138","RTCPSentEvent.SentOctets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentOctets.htm\u0000135","RTCPSentEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentPackets.htm\u0000135","RTCPSentEvent.SentRtp Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_SentRtp.htm\u0000135","RTCPSentEvent.TheirLastSr Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_TheirLastSr.htm\u0000135","RTCPSentEvent.To Property\u0000html/P_AsterNET_Manager_Event_RTCPSentEvent_To.htm\u0000138","RTPReceiverStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Jitter.htm\u0000132","RTPReceiverStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_LostPackets.htm\u0000135","RTPReceiverStatEvent.ReceivedPackets Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_ReceivedPackets.htm\u0000135","RTPReceiverStatEvent.RRCount Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_RRCount.htm\u0000135","RTPReceiverStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_SSRC.htm\u0000135","RTPReceiverStatEvent.Transit Property\u0000html/P_AsterNET_Manager_Event_RTPReceiverStatEvent_Transit.htm\u0000132","RTPSenderStatEvent.Jitter Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_Jitter.htm\u0000135","RTPSenderStatEvent.LostPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_LostPackets.htm\u0000135","RTPSenderStatEvent.RTT Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_RTT.htm\u0000132","RTPSenderStatEvent.SentPackets Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SentPackets.htm\u0000135","RTPSenderStatEvent.SRCount Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SRCount.htm\u0000135","RTPSenderStatEvent.SSRC Property\u0000html/P_AsterNET_Manager_Event_RTPSenderStatEvent_SSRC.htm\u0000135","ShowDialPlanCompleteEvent.EventList Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_EventList.htm\u0000138","ShowDialPlanCompleteEvent.ListContexts Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListContexts.htm\u0000132","ShowDialPlanCompleteEvent.ListExtensions Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListExtensions.htm\u0000132","ShowDialPlanCompleteEvent.ListItems Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListItems.htm\u0000132","ShowDialPlanCompleteEvent.ListPriorities Property\u0000html/P_AsterNET_Manager_Event_ShowDialPlanCompleteEvent_ListPriorities.htm\u0000132","ShutdownEvent.File Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_File.htm\u0000138","ShutdownEvent.Func Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Func.htm\u0000138","ShutdownEvent.Line Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Line.htm\u0000132","ShutdownEvent.Restart Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Restart.htm\u0000133","ShutdownEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_SequenceNumber.htm\u0000132","ShutdownEvent.Shutdown Property\u0000html/P_AsterNET_Manager_Event_ShutdownEvent_Shutdown.htm\u0000160","StatusCompleteEvent.Items Property\u0000html/P_AsterNET_Manager_Event_StatusCompleteEvent_Items.htm\u0000132","StatusEvent.Account Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Account.htm\u0000138","StatusEvent.CallerId Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerId.htm\u0000138","StatusEvent.CallerIdName Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdName.htm\u0000140","StatusEvent.CallerIdNum Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_CallerIdNum.htm\u0000140","StatusEvent.Context Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Context.htm\u0000138","StatusEvent.Extension Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Extension.htm\u0000138","StatusEvent.Link Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Link.htm\u0000143","StatusEvent.Priority Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Priority.htm\u0000132","StatusEvent.Seconds Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_Seconds.htm\u0000130","StatusEvent.State Property\u0000html/P_AsterNET_Manager_Event_StatusEvent_State.htm\u0000138","TransferEvent.SipCallId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_SipCallId.htm\u0000138","TransferEvent.TargetChannel Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetChannel.htm\u0000138","TransferEvent.TargetUniqueId Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TargetUniqueId.htm\u0000138","TransferEvent.Transfer2Parking Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_Transfer2Parking.htm\u0000132","TransferEvent.TransferContext Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferContext.htm\u0000138","TransferEvent.TransferExten Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferExten.htm\u0000138","TransferEvent.TransferMethod Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferMethod.htm\u0000124","TransferEvent.TransferType Property\u0000html/P_AsterNET_Manager_Event_TransferEvent_TransferType.htm\u0000125","UnparkedCallEvent.From Property\u0000html/P_AsterNET_Manager_Event_UnparkedCallEvent_From.htm\u0000134","UserEvent.UserEventName Property\u0000html/P_AsterNET_Manager_Event_UserEvent_UserEventName.htm\u0000138","VarSetEvent.File Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_File.htm\u0000138","VarSetEvent.Func Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Func.htm\u0000138","VarSetEvent.Line Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Line.htm\u0000132","VarSetEvent.SequenceNumber Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_SequenceNumber.htm\u0000132","VarSetEvent.Value Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Value.htm\u0000128","VarSetEvent.Variable Property\u0000html/P_AsterNET_Manager_Event_VarSetEvent_Variable.htm\u0000129","ZapShowChannelsEvent.Alarm Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Alarm.htm\u0000149","ZapShowChannelsEvent.Context Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Context.htm\u0000136","ZapShowChannelsEvent.Signalling Property\u0000html/P_AsterNET_Manager_Event_ZapShowChannelsEvent_Signalling.htm\u0000248","IResponseHandler.Action Property\u0000html/P_AsterNET_Manager_IResponseHandler_Action.htm\u0000113","IResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_IResponseHandler_Hash.htm\u0000124","ManagerConnection.AsteriskVersion Property\u0000html/P_AsterNET_Manager_ManagerConnection_AsteriskVersion.htm\u0000114","ManagerConnection.DefaultEventTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultEventTimeout.htm\u0000141","ManagerConnection.DefaultResponseTimeout Property\u0000html/P_AsterNET_Manager_ManagerConnection_DefaultResponseTimeout.htm\u0000136","ManagerConnection.FireAllEvents Property\u0000html/P_AsterNET_Manager_ManagerConnection_FireAllEvents.htm\u0000147","ManagerConnection.Hostname Property\u0000html/P_AsterNET_Manager_ManagerConnection_Hostname.htm\u0000135","ManagerConnection.KeepAlive Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAlive.htm\u0000148","ManagerConnection.KeepAliveAfterAuthenticationFailure Property\u0000html/P_AsterNET_Manager_ManagerConnection_KeepAliveAfterAuthenticationFailure.htm\u0000137","ManagerConnection.Password Property\u0000html/P_AsterNET_Manager_ManagerConnection_Password.htm\u0000143","ManagerConnection.PingInterval Property\u0000html/P_AsterNET_Manager_ManagerConnection_PingInterval.htm\u0000134","ManagerConnection.Port Property\u0000html/P_AsterNET_Manager_ManagerConnection_Port.htm\u0000141","ManagerConnection.ReconnectIntervalFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalFast.htm\u0000121","ManagerConnection.ReconnectIntervalMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectIntervalMax.htm\u0000121","ManagerConnection.ReconnectRetryFast Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryFast.htm\u0000120","ManagerConnection.ReconnectRetryMax Property\u0000html/P_AsterNET_Manager_ManagerConnection_ReconnectRetryMax.htm\u0000120","ManagerConnection.SleepTime Property\u0000html/P_AsterNET_Manager_ManagerConnection_SleepTime.htm\u0000169","ManagerConnection.SocketEncoding Property\u0000html/P_AsterNET_Manager_ManagerConnection_SocketEncoding.htm\u0000126","ManagerConnection.Username Property\u0000html/P_AsterNET_Manager_ManagerConnection_Username.htm\u0000143","ManagerConnection.Version Property\u0000html/P_AsterNET_Manager_ManagerConnection_Version.htm\u0000118","Originate.Account Property\u0000html/P_AsterNET_Manager_Originate_Account.htm\u0000153","Originate.Application Property\u0000html/P_AsterNET_Manager_Originate_Application.htm\u0000131","Originate.CallerId Property\u0000html/P_AsterNET_Manager_Originate_CallerId.htm\u0000132","Originate.Channel Property\u0000html/P_AsterNET_Manager_Originate_Channel.htm\u0000139","Originate.Context Property\u0000html/P_AsterNET_Manager_Originate_Context.htm\u0000150","Originate.Data Property\u0000html/P_AsterNET_Manager_Originate_Data.htm\u0000130","Originate.Exten Property\u0000html/P_AsterNET_Manager_Originate_Exten.htm\u0000144","Originate.Priority Property\u0000html/P_AsterNET_Manager_Originate_Priority.htm\u0000141","Originate.Timeout Property\u0000html/P_AsterNET_Manager_Originate_Timeout.htm\u0000166","ResponseEventHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Action.htm\u0000131","ResponseEventHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_Hash.htm\u0000147","ResponseEventHandler.ResponseEvents Property\u0000html/P_AsterNET_Manager_ResponseEventHandler_ResponseEvents.htm\u0000118","ResponseEvents.Complete Property\u0000html/P_AsterNET_Manager_ResponseEvents_Complete.htm\u0000122","ResponseEvents.Events Property\u0000html/P_AsterNET_Manager_ResponseEvents_Events.htm\u0000145","ResponseEvents.Response Property\u0000html/P_AsterNET_Manager_ResponseEvents_Response.htm\u0000135","ResponseHandler.Action Property\u0000html/P_AsterNET_Manager_ResponseHandler_Action.htm\u0000131","ResponseHandler.Hash Property\u0000html/P_AsterNET_Manager_ResponseHandler_Hash.htm\u0000147","ResponseHandler.Response Property\u0000html/P_AsterNET_Manager_ResponseHandler_Response.htm\u0000118","ChallengeResponse.Challenge Property\u0000html/P_AsterNET_Manager_Response_ChallengeResponse_Challenge.htm\u0000144","CommandResponse.Result Property\u0000html/P_AsterNET_Manager_Response_CommandResponse_Result.htm\u0000169","ExtensionStateResponse.Context Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Context.htm\u0000138","ExtensionStateResponse.Exten Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Exten.htm\u0000138","ExtensionStateResponse.Hint Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Hint.htm\u0000138","ExtensionStateResponse.Status Property\u0000html/P_AsterNET_Manager_Response_ExtensionStateResponse_Status.htm\u0000132","GetConfigResponse.Categories Property\u0000html/P_AsterNET_Manager_Response_GetConfigResponse_Categories.htm\u0000160","MailboxCountResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_Mailbox.htm\u0000130","MailboxCountResponse.NewMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_NewMessages.htm\u0000127","MailboxCountResponse.OldMessages Property\u0000html/P_AsterNET_Manager_Response_MailboxCountResponse_OldMessages.htm\u0000126","MailboxStatusResponse.Mailbox Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Mailbox.htm\u0000137","MailboxStatusResponse.Waiting Property\u0000html/P_AsterNET_Manager_Response_MailboxStatusResponse_Waiting.htm\u0000134","ManagerResponse.ActionId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_ActionId.htm\u0000139","ManagerResponse.Attributes Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Attributes.htm\u0000194","ManagerResponse.DateReceived Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_DateReceived.htm\u0000131","ManagerResponse.Message Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Message.htm\u0000142","ManagerResponse.Privilege Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Privilege.htm\u0000172","ManagerResponse.Response Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Response.htm\u0000156","ManagerResponse.Server Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_Server.htm\u0000182","ManagerResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_ManagerResponse_UniqueId.htm\u0000153","OriginateResponse.Channel Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Channel.htm\u0000138","OriginateResponse.ChannelName Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_ChannelName.htm\u0000138","OriginateResponse.EndTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_EndTime.htm\u0000132","OriginateResponse.IsSuccess Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_IsSuccess.htm\u0000117","OriginateResponse.Reason Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Reason.htm\u0000132","OriginateResponse.Response Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_Response.htm\u0000138","OriginateResponse.StartTime Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_StartTime.htm\u0000132","OriginateResponse.UniqueId Property\u0000html/P_AsterNET_Manager_Response_OriginateResponse_UniqueId.htm\u0000138","MD5Support.DigestData Property\u0000html/P_AsterNET_Util_MD5Support_DigestData.htm\u0000142","ThreadClass.IsAlive Property\u0000html/P_AsterNET_Util_ThreadClass_IsAlive.htm\u0000110","ThreadClass.IsBackground Property\u0000html/P_AsterNET_Util_ThreadClass_IsBackground.htm\u0000130","ThreadClass.Name Property\u0000html/P_AsterNET_Util_ThreadClass_Name.htm\u0000128","Common Class\u0000html/T_AsterNET_Common.htm\u0000180","AGIChannel Class\u0000html/T_AsterNET_FastAGI_AGIChannel.htm\u0000259","AGIConnectionHandler Class\u0000html/T_AsterNET_FastAGI_AGIConnectionHandler.htm\u0000269","AGIException Class\u0000html/T_AsterNET_FastAGI_AGIException.htm\u0000542","AGIHangupException Class\u0000html/T_AsterNET_FastAGI_AGIHangupException.htm\u0000512","AGINetworkException Class\u0000html/T_AsterNET_FastAGI_AGINetworkException.htm\u0000513","AGIReader Class\u0000html/T_AsterNET_FastAGI_AGIReader.htm\u0000234","AGIReply Class\u0000html/T_AsterNET_FastAGI_AGIReply.htm\u0000441","AGIReplyStatuses Enumeration\u0000html/T_AsterNET_FastAGI_AGIReplyStatuses.htm\u0000197","AGIRequest Class\u0000html/T_AsterNET_FastAGI_AGIRequest.htm\u0000401","AGIScript Class\u0000html/T_AsterNET_FastAGI_AGIScript.htm\u00001854","AGIWriter Class\u0000html/T_AsterNET_FastAGI_AGIWriter.htm\u0000226","AsteriskFastAGI Class\u0000html/T_AsterNET_FastAGI_AsteriskFastAGI.htm\u0000458","AGICommand Class\u0000html/T_AsterNET_FastAGI_Command_AGICommand.htm\u0000399","AnswerCommand Class\u0000html/T_AsterNET_FastAGI_Command_AnswerCommand.htm\u0000258","ChannelStatusCommand Class\u0000html/T_AsterNET_FastAGI_Command_ChannelStatusCommand.htm\u0000331","ControlStreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_ControlStreamFileCommand.htm\u0000599","DatabaseDelCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelCommand.htm\u0000310","DatabaseDelTreeCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseDelTreeCommand.htm\u0000298","DatabaseGetCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabaseGetCommand.htm\u0000301","DatabasePutCommand Class\u0000html/T_AsterNET_FastAGI_Command_DatabasePutCommand.htm\u0000299","ExecCommand Class\u0000html/T_AsterNET_FastAGI_Command_ExecCommand.htm\u0000302","GetDataCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetDataCommand.htm\u0000423","GetFullVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetFullVariableCommand.htm\u0000360","GetOptionCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetOptionCommand.htm\u0000418","GetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_GetVariableCommand.htm\u0000343","HangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_HangupCommand.htm\u0000293","NoopCommand Class\u0000html/T_AsterNET_FastAGI_Command_NoopCommand.htm\u0000243","ReceiveCharCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveCharCommand.htm\u0000347","ReceiveTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_ReceiveTextCommand.htm\u0000350","RecordFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_RecordFileCommand.htm\u0000455","SayAlphaCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayAlphaCommand.htm\u0000330","SayDateTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDateTimeCommand.htm\u0000483","SayDigitsCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayDigitsCommand.htm\u0000330","SayNumberCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayNumberCommand.htm\u0000328","SayPhoneticCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayPhoneticCommand.htm\u0000331","SayTimeCommand Class\u0000html/T_AsterNET_FastAGI_Command_SayTimeCommand.htm\u0000363","SendImageCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendImageCommand.htm\u0000302","SendTextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SendTextCommand.htm\u0000295","SetAutoHangupCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetAutoHangupCommand.htm\u0000301","SetCallerIdCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetCallerIdCommand.htm\u0000259","SetContextCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetContextCommand.htm\u0000266","SetExtensionCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetExtensionCommand.htm\u0000266","SetMusicOffCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOffCommand.htm\u0000254","SetMusicOnCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetMusicOnCommand.htm\u0000297","SetPriorityCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetPriorityCommand.htm\u0000299","SetVariableCommand Class\u0000html/T_AsterNET_FastAGI_Command_SetVariableCommand.htm\u0000273","StreamFileCommand Class\u0000html/T_AsterNET_FastAGI_Command_StreamFileCommand.htm\u0000416","TDDModeCommand Class\u0000html/T_AsterNET_FastAGI_Command_TDDModeCommand.htm\u0000333","VerboseCommand Class\u0000html/T_AsterNET_FastAGI_Command_VerboseCommand.htm\u0000276","WaitForDigitCommand Class\u0000html/T_AsterNET_FastAGI_Command_WaitForDigitCommand.htm\u0000343","IMappingStrategy Interface\u0000html/T_AsterNET_FastAGI_IMappingStrategy.htm\u000095","InvalidCommandSyntaxException Class\u0000html/T_AsterNET_FastAGI_InvalidCommandSyntaxException.htm\u0000542","InvalidOrUnknownCommandException Class\u0000html/T_AsterNET_FastAGI_InvalidOrUnknownCommandException.htm\u0000508","GeneralMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_GeneralMappingStrategy.htm\u0000296","ResourceMappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ResourceMappingStrategy.htm\u0000308","ScriptMapping Class\u0000html/T_AsterNET_FastAGI_MappingStrategies_ScriptMapping.htm\u0000291","MappingStrategy Class\u0000html/T_AsterNET_FastAGI_MappingStrategy.htm\u0000399","ServerSocket Class\u0000html/T_AsterNET_IO_ServerSocket.htm\u0000226","SocketConnection Class\u0000html/T_AsterNET_IO_SocketConnection.htm\u0000335","Logger Class\u0000html/T_AsterNET_Logger.htm\u0000315","Logger.MessageLevel Enumeration\u0000html/T_AsterNET_Logger_MessageLevel.htm\u000089","AbsoluteTimeoutAction Class\u0000html/T_AsterNET_Manager_Action_AbsoluteTimeoutAction.htm\u0000533","AgentCallbackLoginAction Class\u0000html/T_AsterNET_Manager_Action_AgentCallbackLoginAction.htm\u0000649","AgentLogoffAction Class\u0000html/T_AsterNET_Manager_Action_AgentLogoffAction.htm\u0000470","AgentsAction Class\u0000html/T_AsterNET_Manager_Action_AgentsAction.htm\u0000452","AgiAction Class\u0000html/T_AsterNET_Manager_Action_AgiAction.htm\u0000416","AOCMessageAction Class\u0000html/T_AsterNET_Manager_Action_AOCMessageAction.htm\u0000452","AtxferAction Class\u0000html/T_AsterNET_Manager_Action_AtxferAction.htm\u0000426","BridgeAction Class\u0000html/T_AsterNET_Manager_Action_BridgeAction.htm\u0000415","ChallengeAction Class\u0000html/T_AsterNET_Manager_Action_ChallengeAction.htm\u0000476","ChangeMonitorAction Class\u0000html/T_AsterNET_Manager_Action_ChangeMonitorAction.htm\u0000485","CommandAction Class\u0000html/T_AsterNET_Manager_Action_CommandAction.htm\u0000452","ConfbridgeKickAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeKickAction.htm\u0000414","ConfbridgeListAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListAction.htm\u0000433","ConfbridgeListRoomsAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeListRoomsAction.htm\u0000416","ConfbridgeLockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeLockAction.htm\u0000403","ConfbridgeMuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeMuteAction.htm\u0000414","ConfbridgeSetSingleVideoSrcAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeSetSingleVideoSrcAction.htm\u0000408","ConfbridgeStartRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStartRecordAction.htm\u0000515","ConfbridgeStopRecordAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeStopRecordAction.htm\u0000405","ConfbridgeUnlockAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnlockAction.htm\u0000403","ConfbridgeUnmuteAction Class\u0000html/T_AsterNET_Manager_Action_ConfbridgeUnmuteAction.htm\u0000414","CoreSettingsAction Class\u0000html/T_AsterNET_Manager_Action_CoreSettingsAction.htm\u0000397","CoreShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_CoreShowChannelsAction.htm\u0000397","CoreStatusAction Class\u0000html/T_AsterNET_Manager_Action_CoreStatusAction.htm\u0000397","CreateConfigAction Class\u0000html/T_AsterNET_Manager_Action_CreateConfigAction.htm\u0000459","DBDelAction Class\u0000html/T_AsterNET_Manager_Action_DBDelAction.htm\u0000445","DBDelTreeAction Class\u0000html/T_AsterNET_Manager_Action_DBDelTreeAction.htm\u0000442","DBGetAction Class\u0000html/T_AsterNET_Manager_Action_DBGetAction.htm\u0000480","DBPutAction Class\u0000html/T_AsterNET_Manager_Action_DBPutAction.htm\u0000460","EventsAction Class\u0000html/T_AsterNET_Manager_Action_EventsAction.htm\u0000492","ExtensionStateAction Class\u0000html/T_AsterNET_Manager_Action_ExtensionStateAction.htm\u0000432","GetConfigAction Class\u0000html/T_AsterNET_Manager_Action_GetConfigAction.htm\u0000426","GetVarAction Class\u0000html/T_AsterNET_Manager_Action_GetVarAction.htm\u0000473","HangupAction Class\u0000html/T_AsterNET_Manager_Action_HangupAction.htm\u0000431","LoginAction Class\u0000html/T_AsterNET_Manager_Action_LoginAction.htm\u0000678","LogoffAction Class\u0000html/T_AsterNET_Manager_Action_LogoffAction.htm\u0000406","MailboxCountAction Class\u0000html/T_AsterNET_Manager_Action_MailboxCountAction.htm\u0000484","MailboxStatusAction Class\u0000html/T_AsterNET_Manager_Action_MailboxStatusAction.htm\u0000515","ManagerAction Class\u0000html/T_AsterNET_Manager_Action_ManagerAction.htm\u0000617","ManagerActionEvent Class\u0000html/T_AsterNET_Manager_Action_ManagerActionEvent.htm\u0000526","ManagerActionResponse Class\u0000html/T_AsterNET_Manager_Action_ManagerActionResponse.htm\u0000465","MonitorAction Class\u0000html/T_AsterNET_Manager_Action_MonitorAction.htm\u0000600","OriginateAction Class\u0000html/T_AsterNET_Manager_Action_OriginateAction.htm\u0000999","ParkAction Class\u0000html/T_AsterNET_Manager_Action_ParkAction.htm\u0000480","ParkedCallsAction Class\u0000html/T_AsterNET_Manager_Action_ParkedCallsAction.htm\u0000448","PingAction Class\u0000html/T_AsterNET_Manager_Action_PingAction.htm\u0000420","ProxyAction Class\u0000html/T_AsterNET_Manager_Action_ProxyAction.htm\u0000421","QueueAddAction Class\u0000html/T_AsterNET_Manager_Action_QueueAddAction.htm\u0000618","QueueLogAction Class\u0000html/T_AsterNET_Manager_Action_QueueLogAction.htm\u0000417","QueuePauseAction Class\u0000html/T_AsterNET_Manager_Action_QueuePauseAction.htm\u0000574","QueuePenaltyAction Class\u0000html/T_AsterNET_Manager_Action_QueuePenaltyAction.htm\u0000415","QueueReloadAction Class\u0000html/T_AsterNET_Manager_Action_QueueReloadAction.htm\u0000434","QueueRemoveAction Class\u0000html/T_AsterNET_Manager_Action_QueueRemoveAction.htm\u0000460","QueueResetAction Class\u0000html/T_AsterNET_Manager_Action_QueueResetAction.htm\u0000401","QueueRuleAction Class\u0000html/T_AsterNET_Manager_Action_QueueRuleAction.htm\u0000409","QueueStatusAction Class\u0000html/T_AsterNET_Manager_Action_QueueStatusAction.htm\u0000511","RedirectAction Class\u0000html/T_AsterNET_Manager_Action_RedirectAction.htm\u0000511","SetCDRUserFieldAction Class\u0000html/T_AsterNET_Manager_Action_SetCDRUserFieldAction.htm\u0000566","SetVarAction Class\u0000html/T_AsterNET_Manager_Action_SetVarAction.htm\u0000512","SIPPeersAction Class\u0000html/T_AsterNET_Manager_Action_SIPPeersAction.htm\u0000443","SIPShowPeerAction Class\u0000html/T_AsterNET_Manager_Action_SIPShowPeerAction.htm\u0000466","StatusAction Class\u0000html/T_AsterNET_Manager_Action_StatusAction.htm\u0000449","StopMonitorAction Class\u0000html/T_AsterNET_Manager_Action_StopMonitorAction.htm\u0000443","UpdateConfigAction Class\u0000html/T_AsterNET_Manager_Action_UpdateConfigAction.htm\u0000838","ZapDialOffhookAction Class\u0000html/T_AsterNET_Manager_Action_ZapDialOffhookAction.htm\u0000454","ZapDNDOffAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOffAction.htm\u0000449","ZapDNDOnAction Class\u0000html/T_AsterNET_Manager_Action_ZapDNDOnAction.htm\u0000449","ZapHangupAction Class\u0000html/T_AsterNET_Manager_Action_ZapHangupAction.htm\u0000445","ZapShowChannelsAction Class\u0000html/T_AsterNET_Manager_Action_ZapShowChannelsAction.htm\u0000447","ZapTransferAction Class\u0000html/T_AsterNET_Manager_Action_ZapTransferAction.htm\u0000420","AgentCallbackLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLoginEventHandler.htm\u0000146","AgentCallbackLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCallbackLogoffEventHandler.htm\u0000146","AgentCalledEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCalledEventHandler.htm\u0000146","AgentCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentCompleteEventHandler.htm\u0000146","AgentConnectEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentConnectEventHandler.htm\u0000146","AgentDumpEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentDumpEventHandler.htm\u0000146","AgentLoginEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLoginEventHandler.htm\u0000146","AgentLogoffEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentLogoffEventHandler.htm\u0000146","AgentsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsCompleteEventHandler.htm\u0000146","AgentsEventHandler Delegate\u0000html/T_AsterNET_Manager_AgentsEventHandler.htm\u0000146","AGIExecHandler Delegate\u0000html/T_AsterNET_Manager_AGIExecHandler.htm\u0000146","AlarmClearEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmClearEventHandler.htm\u0000146","AlarmEventHandler Delegate\u0000html/T_AsterNET_Manager_AlarmEventHandler.htm\u0000146","AsteriskVersion Enumeration\u0000html/T_AsterNET_Manager_AsteriskVersion.htm\u0000100","AttendedTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_AttendedTransferEventHandler.htm\u0000146","AuthenticationFailedException Class\u0000html/T_AsterNET_Manager_AuthenticationFailedException.htm\u0000529","BlindTransferEventHandler Delegate\u0000html/T_AsterNET_Manager_BlindTransferEventHandler.htm\u0000146","BridgeCreateEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeCreateEventHandler.htm\u0000146","BridgeDestroyEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeDestroyEventHandler.htm\u0000146","BridgeEnterEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEnterEventHandler.htm\u0000146","BridgeEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeEventHandler.htm\u0000146","BridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_BridgeLeaveEventHandler.htm\u0000146","CdrEventHandler Delegate\u0000html/T_AsterNET_Manager_CdrEventHandler.htm\u0000146","ConfbridgeEndEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeEndEventHandler.htm\u0000146","ConfbridgeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeJoinEventHandler.htm\u0000146","ConfbridgeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeLeaveEventHandler.htm\u0000146","ConfbridgeStartEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeStartEventHandler.htm\u0000146","ConfbridgeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_ConfbridgeTalkingEventHandler.htm\u0000146","ConnectionStateEventHandler Delegate\u0000html/T_AsterNET_Manager_ConnectionStateEventHandler.htm\u0000146","DBGetResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_DBGetResponseEventHandler.htm\u0000146","DialBeginEventHandler Delegate\u0000html/T_AsterNET_Manager_DialBeginEventHandler.htm\u0000146","DialEndEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEndEventHandler.htm\u0000146","DialEventHandler Delegate\u0000html/T_AsterNET_Manager_DialEventHandler.htm\u0000146","DNDStateEventHandler Delegate\u0000html/T_AsterNET_Manager_DNDStateEventHandler.htm\u0000146","DTMFEventHandler Delegate\u0000html/T_AsterNET_Manager_DTMFEventHandler.htm\u0000146","EventTimeoutException Class\u0000html/T_AsterNET_Manager_EventTimeoutException.htm\u0000601","AbstractAgentEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentEvent.htm\u0000753","AbstractAgentVariables Class\u0000html/T_AsterNET_Manager_Event_AbstractAgentVariables.htm\u0000693","AbstractChannelEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractChannelEvent.htm\u0000704","AbstractConfbridgeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractConfbridgeEvent.htm\u0000643","AbstractMeetmeEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractMeetmeEvent.htm\u0000642","AbstractParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractParkedCallEvent.htm\u0000643","AbstractQueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_AbstractQueueMemberEvent.htm\u0000971","AgentCallbackLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLoginEvent.htm\u0000600","AgentCallbackLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCallbackLogoffEvent.htm\u0000649","AgentCalledEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCalledEvent.htm\u0000755","AgentCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentCompleteEvent.htm\u0000803","AgentConnectEvent Class\u0000html/T_AsterNET_Manager_Event_AgentConnectEvent.htm\u0000788","AgentDumpEvent Class\u0000html/T_AsterNET_Manager_Event_AgentDumpEvent.htm\u0000760","AgentLoginEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLoginEvent.htm\u0000600","AgentLogoffEvent Class\u0000html/T_AsterNET_Manager_Event_AgentLogoffEvent.htm\u0000603","AgentsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsCompleteEvent.htm\u0000637","AgentsEvent Class\u0000html/T_AsterNET_Manager_Event_AgentsEvent.htm\u0000783","AGIExecEvent Class\u0000html/T_AsterNET_Manager_Event_AGIExecEvent.htm\u0000600","AlarmClearEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmClearEvent.htm\u0000581","AlarmEvent Class\u0000html/T_AsterNET_Manager_Event_AlarmEvent.htm\u0000608","AsyncAGIEvent Class\u0000html/T_AsterNET_Manager_Event_AsyncAGIEvent.htm\u0000581","AttendedTransferEvent Class\u0000html/T_AsterNET_Manager_Event_AttendedTransferEvent.htm\u0000643","BlindTransferEvent Class\u0000html/T_AsterNET_Manager_Event_BlindTransferEvent.htm\u0000612","BridgeActivityEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeActivityEvent.htm\u0000757","BridgeCreateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeCreateEvent.htm\u0000629","BridgeDestroyEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeDestroyEvent.htm\u0000629","BridgeEnterEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEnterEvent.htm\u0000869","BridgeEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeEvent.htm\u0000686","BridgeEvent.BridgeStates Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeStates.htm\u000093","BridgeEvent.BridgeTypes Enumeration\u0000html/T_AsterNET_Manager_Event_BridgeEvent_BridgeTypes.htm\u0000125","BridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeLeaveEvent.htm\u0000869","BridgeStateEvent Class\u0000html/T_AsterNET_Manager_Event_BridgeStateEvent.htm\u0000601","CdrEvent Class\u0000html/T_AsterNET_Manager_Event_CdrEvent.htm\u0000625","ChannelReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelReloadEvent.htm\u0000599","ChannelUpdateEvent Class\u0000html/T_AsterNET_Manager_Event_ChannelUpdateEvent.htm\u0000597","ConfbridgeEndEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeEndEvent.htm\u0000597","ConfbridgeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeJoinEvent.htm\u0000599","ConfbridgeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeLeaveEvent.htm\u0000599","ConfbridgeListCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListCompleteEvent.htm\u0000624","ConfbridgeListEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListEvent.htm\u0000601","ConfbridgeListRoomsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsCompleteEvent.htm\u0000624","ConfbridgeListRoomsEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeListRoomsEvent.htm\u0000600","ConfbridgeStartEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeStartEvent.htm\u0000597","ConfbridgeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_ConfbridgeTalkingEvent.htm\u0000598","ConnectEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectEvent.htm\u0000614","ConnectionStateEvent Class\u0000html/T_AsterNET_Manager_Event_ConnectionStateEvent.htm\u0000603","DBGetResponseEvent Class\u0000html/T_AsterNET_Manager_Event_DBGetResponseEvent.htm\u0000674","DialBeginEvent Class\u0000html/T_AsterNET_Manager_Event_DialBeginEvent.htm\u0000714","DialEndEvent Class\u0000html/T_AsterNET_Manager_Event_DialEndEvent.htm\u0000715","DialEvent Class\u0000html/T_AsterNET_Manager_Event_DialEvent.htm\u0000662","DisconnectEvent Class\u0000html/T_AsterNET_Manager_Event_DisconnectEvent.htm\u0000607","DNDStateEvent Class\u0000html/T_AsterNET_Manager_Event_DNDStateEvent.htm\u0000649","DTMFEvent Class\u0000html/T_AsterNET_Manager_Event_DTMFEvent.htm\u0000578","ExtensionStatusEvent Class\u0000html/T_AsterNET_Manager_Event_ExtensionStatusEvent.htm\u0000611","FailedACLEvent Class\u0000html/T_AsterNET_Manager_Event_FailedACLEvent.htm\u0000591","FaxReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_FaxReceivedEvent.htm\u0000888","HangupEvent Class\u0000html/T_AsterNET_Manager_Event_HangupEvent.htm\u0000773","HoldedCallEvent Class\u0000html/T_AsterNET_Manager_Event_HoldedCallEvent.htm\u0000645","HoldEvent Class\u0000html/T_AsterNET_Manager_Event_HoldEvent.htm\u0000597","JabberEvent Class\u0000html/T_AsterNET_Manager_Event_JabberEvent.htm\u0000579","JitterBufStatsEvent Class\u0000html/T_AsterNET_Manager_Event_JitterBufStatsEvent.htm\u0000593","JoinEvent Class\u0000html/T_AsterNET_Manager_Event_JoinEvent.htm\u0000708","LeaveEvent Class\u0000html/T_AsterNET_Manager_Event_LeaveEvent.htm\u0000633","LinkEvent Class\u0000html/T_AsterNET_Manager_Event_LinkEvent.htm\u0000721","LogChannelEvent Class\u0000html/T_AsterNET_Manager_Event_LogChannelEvent.htm\u0000612","ManagerEvent Class\u0000html/T_AsterNET_Manager_Event_ManagerEvent.htm\u0000830","MeetmeEndEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeEndEvent.htm\u0000603","MeetmeJoinEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeJoinEvent.htm\u0000610","MeetmeLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeLeaveEvent.htm\u0000611","MeetmeMuteEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeMuteEvent.htm\u0000604","MeetmeStopTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeStopTalkingEvent.htm\u0000610","MeetmeTalkingEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkingEvent.htm\u0000604","MeetmeTalkRequestEvent Class\u0000html/T_AsterNET_Manager_Event_MeetmeTalkRequestEvent.htm\u0000604","MessageWaitingEvent Class\u0000html/T_AsterNET_Manager_Event_MessageWaitingEvent.htm\u0000645","MobileStatusEvent Class\u0000html/T_AsterNET_Manager_Event_MobileStatusEvent.htm\u0000579","ModuleLoadReportEvent Class\u0000html/T_AsterNET_Manager_Event_ModuleLoadReportEvent.htm\u0000580","MonitorStartEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStartEvent.htm\u0000577","MonitorStopEvent Class\u0000html/T_AsterNET_Manager_Event_MonitorStopEvent.htm\u0000577","NewAccountCodeEvent Class\u0000html/T_AsterNET_Manager_Event_NewAccountCodeEvent.htm\u0000579","NewCallerIdEvent Class\u0000html/T_AsterNET_Manager_Event_NewCallerIdEvent.htm\u0000646","NewChannelEvent Class\u0000html/T_AsterNET_Manager_Event_NewChannelEvent.htm\u0000753","NewExtenEvent Class\u0000html/T_AsterNET_Manager_Event_NewExtenEvent.htm\u0000645","NewStateEvent Class\u0000html/T_AsterNET_Manager_Event_NewStateEvent.htm\u0000755","OriginateResponseEvent Class\u0000html/T_AsterNET_Manager_Event_OriginateResponseEvent.htm\u0000631","ParkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallEvent.htm\u0000729","ParkedCallGiveUpEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallGiveUpEvent.htm\u0000670","ParkedCallsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallsCompleteEvent.htm\u0000634","ParkedCallTimeOutEvent Class\u0000html/T_AsterNET_Manager_Event_ParkedCallTimeOutEvent.htm\u0000669","PeerEntryEvent Class\u0000html/T_AsterNET_Manager_Event_PeerEntryEvent.htm\u0000716","PeerlistCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_PeerlistCompleteEvent.htm\u0000659","PeerStatusEvent Class\u0000html/T_AsterNET_Manager_Event_PeerStatusEvent.htm\u0000779","PRIEvent Class\u0000html/T_AsterNET_Manager_Event_PRIEvent.htm\u0000578","QueueCallerAbandonEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerAbandonEvent.htm\u0000578","QueueCallerJoinEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerJoinEvent.htm\u0000627","QueueCallerLeaveEvent Class\u0000html/T_AsterNET_Manager_Event_QueueCallerLeaveEvent.htm\u0000627","QueueEntryEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEntryEvent.htm\u0000702","QueueEvent Class\u0000html/T_AsterNET_Manager_Event_QueueEvent.htm\u0000634","QueueMemberAddedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberAddedEvent.htm\u0000955","QueueMemberEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberEvent.htm\u0000898","QueueMemberPausedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPausedEvent.htm\u00001024","QueueMemberPauseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPauseEvent.htm\u00001036","QueueMemberPenaltyEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberPenaltyEvent.htm\u0000997","QueueMemberRemovedEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRemovedEvent.htm\u00001036","QueueMemberRinginuseEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberRinginuseEvent.htm\u00001002","QueueMemberStatusEvent Class\u0000html/T_AsterNET_Manager_Event_QueueMemberStatusEvent.htm\u0000902","QueueParamsEvent Class\u0000html/T_AsterNET_Manager_Event_QueueParamsEvent.htm\u0000810","QueueStatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_QueueStatusCompleteEvent.htm\u0000636","RegistryEvent Class\u0000html/T_AsterNET_Manager_Event_RegistryEvent.htm\u0000776","ReloadEvent Class\u0000html/T_AsterNET_Manager_Event_ReloadEvent.htm\u0000649","RenameEvent Class\u0000html/T_AsterNET_Manager_Event_RenameEvent.htm\u0000607","ResponseEvent Class\u0000html/T_AsterNET_Manager_Event_ResponseEvent.htm\u0000722","RTCPReceivedEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPReceivedEvent.htm\u0000589","RTCPSentEvent Class\u0000html/T_AsterNET_Manager_Event_RTCPSentEvent.htm\u0000589","RTPReceiverStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPReceiverStatEvent.htm\u0000583","RTPSenderStatEvent Class\u0000html/T_AsterNET_Manager_Event_RTPSenderStatEvent.htm\u0000583","ShowDialPlanCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ShowDialPlanCompleteEvent.htm\u0000582","ShutdownEvent Class\u0000html/T_AsterNET_Manager_Event_ShutdownEvent.htm\u0000660","StatusCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_StatusCompleteEvent.htm\u0000637","StatusEvent Class\u0000html/T_AsterNET_Manager_Event_StatusEvent.htm\u0000691","TransferEvent Class\u0000html/T_AsterNET_Manager_Event_TransferEvent.htm\u0000590","UnholdEvent Class\u0000html/T_AsterNET_Manager_Event_UnholdEvent.htm\u0000595","UnknownEvent Class\u0000html/T_AsterNET_Manager_Event_UnknownEvent.htm\u0000570","UnlinkEvent Class\u0000html/T_AsterNET_Manager_Event_UnlinkEvent.htm\u0000683","UnparkedCallEvent Class\u0000html/T_AsterNET_Manager_Event_UnparkedCallEvent.htm\u0000682","UserEvent Class\u0000html/T_AsterNET_Manager_Event_UserEvent.htm\u0000803","VarSetEvent Class\u0000html/T_AsterNET_Manager_Event_VarSetEvent.htm\u0000596","ZapShowChannelsCompleteEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsCompleteEvent.htm\u0000637","ZapShowChannelsEvent Class\u0000html/T_AsterNET_Manager_Event_ZapShowChannelsEvent.htm\u0000801","ExtensionStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_ExtensionStatusEventHandler.htm\u0000146","FailedACLEventHandler Delegate\u0000html/T_AsterNET_Manager_FailedACLEventHandler.htm\u0000146","HangupEventHandler Delegate\u0000html/T_AsterNET_Manager_HangupEventHandler.htm\u0000146","HoldedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldedCallEventHandler.htm\u0000146","HoldEventHandler Delegate\u0000html/T_AsterNET_Manager_HoldEventHandler.htm\u0000146","IResponseHandler Interface\u0000html/T_AsterNET_Manager_IResponseHandler.htm\u0000112","JoinEventHandler Delegate\u0000html/T_AsterNET_Manager_JoinEventHandler.htm\u0000146","LeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_LeaveEventHandler.htm\u0000146","LinkEventHandler Delegate\u0000html/T_AsterNET_Manager_LinkEventHandler.htm\u0000146","LogChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_LogChannelEventHandler.htm\u0000146","ManagerConnection Class\u0000html/T_AsterNET_Manager_ManagerConnection.htm\u00002042","ManagerEventHandler Delegate\u0000html/T_AsterNET_Manager_ManagerEventHandler.htm\u0000146","ManagerException Class\u0000html/T_AsterNET_Manager_ManagerException.htm\u0000522","ManagerReader Class\u0000html/T_AsterNET_Manager_ManagerReader.htm\u0000222","MeetMeJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeJoinEventHandler.htm\u0000146","MeetMeLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeLeaveEventHandler.htm\u0000146","MeetMeTalkingEventHandler Delegate\u0000html/T_AsterNET_Manager_MeetMeTalkingEventHandler.htm\u0000146","MessageWaitingEventHandler Delegate\u0000html/T_AsterNET_Manager_MessageWaitingEventHandler.htm\u0000146","NewCallerIdEventHandler Delegate\u0000html/T_AsterNET_Manager_NewCallerIdEventHandler.htm\u0000146","NewChannelEventHandler Delegate\u0000html/T_AsterNET_Manager_NewChannelEventHandler.htm\u0000146","NewExtenEventHandler Delegate\u0000html/T_AsterNET_Manager_NewExtenEventHandler.htm\u0000146","NewStateEventHandler Delegate\u0000html/T_AsterNET_Manager_NewStateEventHandler.htm\u0000146","Originate Class\u0000html/T_AsterNET_Manager_Originate.htm\u0000521","OriginateResponseEventHandler Delegate\u0000html/T_AsterNET_Manager_OriginateResponseEventHandler.htm\u0000146","ParkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallEventHandler.htm\u0000146","ParkedCallGiveUpEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallGiveUpEventHandler.htm\u0000146","ParkedCallsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallsCompleteEventHandler.htm\u0000146","ParkedCallTimeOutEventHandler Delegate\u0000html/T_AsterNET_Manager_ParkedCallTimeOutEventHandler.htm\u0000146","PeerEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerEntryEventHandler.htm\u0000146","PeerlistCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerlistCompleteEventHandler.htm\u0000146","PeerStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_PeerStatusEventHandler.htm\u0000146","QueueCallerAbandonEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerAbandonEventHandler.htm\u0000146","QueueCallerJoinEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerJoinEventHandler.htm\u0000146","QueueCallerLeaveEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueCallerLeaveEventHandler.htm\u0000146","QueueEntryEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueEntryEventHandler.htm\u0000146","QueueMemberAddedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberAddedEventHandler.htm\u0000146","QueueMemberEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberEventHandler.htm\u0000146","QueueMemberPausedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPausedEventHandler.htm\u0000146","QueueMemberPauseEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberPauseEventHandler.htm\u0000146","QueueMemberRemovedEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberRemovedEventHandler.htm\u0000146","QueueMemberStatusEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueMemberStatusEventHandler.htm\u0000146","QueueParamsEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueParamsEventHandler.htm\u0000146","QueueStatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_QueueStatusCompleteEventHandler.htm\u0000146","RegistryEventHandler Delegate\u0000html/T_AsterNET_Manager_RegistryEventHandler.htm\u0000146","RenameEventHandler Delegate\u0000html/T_AsterNET_Manager_RenameEventHandler.htm\u0000146","ResponseEventHandler Class\u0000html/T_AsterNET_Manager_ResponseEventHandler.htm\u0000253","ResponseEvents Class\u0000html/T_AsterNET_Manager_ResponseEvents.htm\u0000249","ResponseHandler Class\u0000html/T_AsterNET_Manager_ResponseHandler.htm\u0000250","ChallengeResponse Class\u0000html/T_AsterNET_Manager_Response_ChallengeResponse.htm\u0000771","CommandResponse Class\u0000html/T_AsterNET_Manager_Response_CommandResponse.htm\u0000825","ExtensionStateResponse Class\u0000html/T_AsterNET_Manager_Response_ExtensionStateResponse.htm\u0000751","GetConfigResponse Class\u0000html/T_AsterNET_Manager_Response_GetConfigResponse.htm\u0000832","MailboxCountResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxCountResponse.htm\u0000790","MailboxStatusResponse Class\u0000html/T_AsterNET_Manager_Response_MailboxStatusResponse.htm\u0000791","ManagerError Class\u0000html/T_AsterNET_Manager_Response_ManagerError.htm\u0000770","ManagerResponse Class\u0000html/T_AsterNET_Manager_Response_ManagerResponse.htm\u0000736","OriginateResponse Class\u0000html/T_AsterNET_Manager_Response_OriginateResponse.htm\u0000264","StatusCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusCompleteEventHandler.htm\u0000146","StatusEventHandler Delegate\u0000html/T_AsterNET_Manager_StatusEventHandler.htm\u0000146","TimeoutException Class\u0000html/T_AsterNET_Manager_TimeoutException.htm\u0000513","TransferEventHandler Delegate\u0000html/T_AsterNET_Manager_TransferEventHandler.htm\u0000146","UnholdEventHandler Delegate\u0000html/T_AsterNET_Manager_UnholdEventHandler.htm\u0000146","UnlinkEventHandler Delegate\u0000html/T_AsterNET_Manager_UnlinkEventHandler.htm\u0000146","UnparkedCallEventHandler Delegate\u0000html/T_AsterNET_Manager_UnparkedCallEventHandler.htm\u0000146","UserEventHandler Delegate\u0000html/T_AsterNET_Manager_UserEventHandler.htm\u0000146","VarSetEventHandler Delegate\u0000html/T_AsterNET_Manager_VarSetEventHandler.htm\u0000146","ZapShowChannelsCompleteEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsCompleteEventHandler.htm\u0000146","ZapShowChannelsEventHandler Delegate\u0000html/T_AsterNET_Manager_ZapShowChannelsEventHandler.htm\u0000146","MD5Support Class\u0000html/T_AsterNET_Util_MD5Support.htm\u0000303","ThreadClass Class\u0000html/T_AsterNET_Util_ThreadClass.htm\u0000343","ThreadPool Class\u0000html/T_AsterNET_Util_ThreadPool.htm\u0000289"] \ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm new file mode 100644 index 0000000..295d0c1 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AGIExec.htm @@ -0,0 +1,9 @@ +ManagerConnection.AGIExec Event
Click or drag to resize
ManagerConnectionAGIExec Event
+ AgiExec is execute +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AGIExecHandler AGIExec

Value

Type: AsterNET.ManagerAGIExecHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm new file mode 100644 index 0000000..c950602 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogin.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentCallbackLogin Event
Click or drag to resize
ManagerConnectionAgentCallbackLogin Event
+ An AgentCallbackLogin is triggered when an agent is successfully logged in. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentCallbackLoginEventHandler AgentCallbackLogin

Value

Type: AsterNET.ManagerAgentCallbackLoginEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm new file mode 100644 index 0000000..f22f89a --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCallbackLogoff.htm @@ -0,0 +1,8 @@ +ManagerConnection.AgentCallbackLogoff Event
Click or drag to resize
ManagerConnectionAgentCallbackLogoff Event
+ An AgentCallbackLogoff is triggered when an agent that previously logged in is logged of.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentCallbackLogoffEventHandler AgentCallbackLogoff

Value

Type: AsterNET.ManagerAgentCallbackLogoffEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm new file mode 100644 index 0000000..73a04ac --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentCalled.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentCalled Event
Click or drag to resize
ManagerConnectionAgentCalled Event
+ An AgentCalled is triggered when an agent is ring.
+ To enable AgentCalled you have to set eventwhencalled = yes in queues.conf.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentCalledEventHandler AgentCalled

Value

Type: AsterNET.ManagerAgentCalledEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm new file mode 100644 index 0000000..58dae02 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentComplete.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentComplete Event
Click or drag to resize
ManagerConnectionAgentComplete Event
+ An AgentCompleteEvent is triggered when at the end of a call if the caller was connected to an agent. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentCompleteEventHandler AgentComplete

Value

Type: AsterNET.ManagerAgentCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm new file mode 100644 index 0000000..8cd6eed --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentConnect.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentConnect Event
Click or drag to resize
ManagerConnectionAgentConnect Event
+ An AgentConnectEvent is triggered when a caller is connected to an agent. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentConnectEventHandler AgentConnect

Value

Type: AsterNET.ManagerAgentConnectEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm new file mode 100644 index 0000000..c86fcaf --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentDump.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentDump Event
Click or drag to resize
ManagerConnectionAgentDump Event
+ An AgentDumpEvent is triggered when an agent dumps the caller while listening to the queue announcement. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentDumpEventHandler AgentDump

Value

Type: AsterNET.ManagerAgentDumpEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm new file mode 100644 index 0000000..57547c8 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogin.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentLogin Event
Click or drag to resize
ManagerConnectionAgentLogin Event
+ An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentLoginEventHandler AgentLogin

Value

Type: AsterNET.ManagerAgentLoginEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm new file mode 100644 index 0000000..437c94c --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentLogoff.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentLogoff Event
Click or drag to resize
ManagerConnectionAgentLogoff Event
+ An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentLogoffEventHandler AgentLogoff

Value

Type: AsterNET.ManagerAgentLogoffEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Agents.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Agents.htm new file mode 100644 index 0000000..cfc340f --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Agents.htm @@ -0,0 +1,9 @@ +ManagerConnection.Agents Event
Click or drag to resize
ManagerConnectionAgents Event
+ An AgentsEvent is triggered for each agent in response to an AgentsAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentsEventHandler Agents

Value

Type: AsterNET.ManagerAgentsEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm new file mode 100644 index 0000000..34d52cc --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AgentsComplete.htm @@ -0,0 +1,9 @@ +ManagerConnection.AgentsComplete Event
Click or drag to resize
ManagerConnectionAgentsComplete Event
+ An AgentsCompleteEvent is triggered after the state of all agents has been reported in response to an AgentsAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AgentsCompleteEventHandler AgentsComplete

Value

Type: AsterNET.ManagerAgentsCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm new file mode 100644 index 0000000..58701b5 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Alarm.htm @@ -0,0 +1,9 @@ +ManagerConnection.Alarm Event
Click or drag to resize
ManagerConnectionAlarm Event
+ An AlarmEvent is triggered when a Zap channel enters or changes alarm state. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AlarmEventHandler Alarm

Value

Type: AsterNET.ManagerAlarmEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm new file mode 100644 index 0000000..77afe12 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AlarmClear.htm @@ -0,0 +1,9 @@ +ManagerConnection.AlarmClear Event
Click or drag to resize
ManagerConnectionAlarmClear Event
+ An AlarmEvent is triggered when a Zap channel leaves alarm state. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AlarmClearEventHandler AlarmClear

Value

Type: AsterNET.ManagerAlarmClearEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm new file mode 100644 index 0000000..a852375 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_AttendedTransfer.htm @@ -0,0 +1,7 @@ +ManagerConnection.AttendedTransfer Event
Click or drag to resize
ManagerConnectionAttendedTransfer Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.AttendedTransfer"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event AttendedTransferEventHandler AttendedTransfer

Value

Type: AsterNET.ManagerAttendedTransferEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm new file mode 100644 index 0000000..d5599ab --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_BlindTransfer.htm @@ -0,0 +1,7 @@ +ManagerConnection.BlindTransfer Event
Click or drag to resize
ManagerConnectionBlindTransfer Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BlindTransfer"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event BlindTransferEventHandler BlindTransfer

Value

Type: AsterNET.ManagerBlindTransferEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Bridge.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Bridge.htm new file mode 100644 index 0000000..95536f3 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Bridge.htm @@ -0,0 +1,7 @@ +ManagerConnection.Bridge Event
Click or drag to resize
ManagerConnectionBridge Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.Bridge"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event BridgeEventHandler Bridge

Value

Type: AsterNET.ManagerBridgeEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm new file mode 100644 index 0000000..f237760 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeCreate.htm @@ -0,0 +1,7 @@ +ManagerConnection.BridgeCreate Event
Click or drag to resize
ManagerConnectionBridgeCreate Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeCreate"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event BridgeCreateEventHandler BridgeCreate

Value

Type: AsterNET.ManagerBridgeCreateEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm new file mode 100644 index 0000000..a39461a --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeDestroy.htm @@ -0,0 +1,7 @@ +ManagerConnection.BridgeDestroy Event
Click or drag to resize
ManagerConnectionBridgeDestroy Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeDestroy"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event BridgeDestroyEventHandler BridgeDestroy

Value

Type: AsterNET.ManagerBridgeDestroyEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm new file mode 100644 index 0000000..138a436 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeEnter.htm @@ -0,0 +1,7 @@ +ManagerConnection.BridgeEnter Event
Click or drag to resize
ManagerConnectionBridgeEnter Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeEnter"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event BridgeEnterEventHandler BridgeEnter

Value

Type: AsterNET.ManagerBridgeEnterEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm new file mode 100644 index 0000000..22a7662 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_BridgeLeave.htm @@ -0,0 +1,7 @@ +ManagerConnection.BridgeLeave Event
Click or drag to resize
ManagerConnectionBridgeLeave Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.BridgeLeave"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event BridgeLeaveEventHandler BridgeLeave

Value

Type: AsterNET.ManagerBridgeLeaveEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm new file mode 100644 index 0000000..90461d8 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Cdr.htm @@ -0,0 +1,9 @@ +ManagerConnection.Cdr Event
Click or drag to resize
ManagerConnectionCdr Event
+ A CdrEvent is triggered when a call detail record is generated, usually at the end of a call. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event CdrEventHandler Cdr

Value

Type: AsterNET.ManagerCdrEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm new file mode 100644 index 0000000..d68409d --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeEnd.htm @@ -0,0 +1,9 @@ +ManagerConnection.ConfbridgeEnd Event
Click or drag to resize
ManagerConnectionConfbridgeEnd Event
+ This event is sent when the last user leaves a conference and it is torn down. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ConfbridgeEndEventHandler ConfbridgeEnd

Value

Type: AsterNET.ManagerConfbridgeEndEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm new file mode 100644 index 0000000..0d855fa --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeJoin.htm @@ -0,0 +1,9 @@ +ManagerConnection.ConfbridgeJoin Event
Click or drag to resize
ManagerConnectionConfbridgeJoin Event
+ This event is sent when a user joins a conference - either one already in progress or as the first user to join a newly instantiated bridge. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ConfbridgeJoinEventHandler ConfbridgeJoin

Value

Type: AsterNET.ManagerConfbridgeJoinEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm new file mode 100644 index 0000000..ad00536 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeLeave.htm @@ -0,0 +1,9 @@ +ManagerConnection.ConfbridgeLeave Event
Click or drag to resize
ManagerConnectionConfbridgeLeave Event
+ This event is sent when a user leaves a conference. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ConfbridgeLeaveEventHandler ConfbridgeLeave

Value

Type: AsterNET.ManagerConfbridgeLeaveEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm new file mode 100644 index 0000000..fc0f8cf --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeStart.htm @@ -0,0 +1,9 @@ +ManagerConnection.ConfbridgeStart Event
Click or drag to resize
ManagerConnectionConfbridgeStart Event
+ This event is sent when the first user requests a conference and it is instantiated +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ConfbridgeStartEventHandler ConfbridgeStart

Value

Type: AsterNET.ManagerConfbridgeStartEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm new file mode 100644 index 0000000..29bf6bf --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ConfbridgeTalking.htm @@ -0,0 +1,9 @@ +ManagerConnection.ConfbridgeTalking Event
Click or drag to resize
ManagerConnectionConfbridgeTalking Event
+ This event is sent when the conference detects that a user has either begin or stopped talking. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ConfbridgeTalkingEventHandler ConfbridgeTalking

Value

Type: AsterNET.ManagerConfbridgeTalkingEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm new file mode 100644 index 0000000..53542d0 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ConnectionState.htm @@ -0,0 +1,9 @@ +ManagerConnection.ConnectionState Event
Click or drag to resize
ManagerConnectionConnectionState Event
+ A ConnectionState is triggered after Connect/Disconnect/Reload/Shutdown events. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ConnectionStateEventHandler ConnectionState

Value

Type: AsterNET.ManagerConnectionStateEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm new file mode 100644 index 0000000..582e847 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_DBGetResponse.htm @@ -0,0 +1,7 @@ +ManagerConnection.DBGetResponse Event
Click or drag to resize
ManagerConnectionDBGetResponse Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.DBGetResponse"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event DBGetResponseEventHandler DBGetResponse

Value

Type: AsterNET.ManagerDBGetResponseEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DNDState.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DNDState.htm new file mode 100644 index 0000000..fb48183 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_DNDState.htm @@ -0,0 +1,9 @@ +ManagerConnection.DNDState Event
Click or drag to resize
ManagerConnectionDNDState Event
+ A DNDStateEvent is triggered by the Zap channel driver when a channel enters or leaves DND (do not disturb) state. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event DNDStateEventHandler DNDState

Value

Type: AsterNET.ManagerDNDStateEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm new file mode 100644 index 0000000..2c56276 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_DTMF.htm @@ -0,0 +1,7 @@ +ManagerConnection.DTMF Event
Click or drag to resize
ManagerConnectionDTMF Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.DTMF"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event DTMFEventHandler DTMF

Value

Type: AsterNET.ManagerDTMFEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm new file mode 100644 index 0000000..5115984 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Dial.htm @@ -0,0 +1,8 @@ +ManagerConnection.Dial Event
Click or drag to resize
ManagerConnectionDial Event
+ A Dial is triggered whenever a phone attempts to dial someone.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event DialEventHandler Dial

Value

Type: AsterNET.ManagerDialEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm new file mode 100644 index 0000000..c1d6945 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_DialBegin.htm @@ -0,0 +1,8 @@ +ManagerConnection.DialBegin Event
Click or drag to resize
ManagerConnectionDialBegin Event
+ Raised when a dial action has started.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event DialBeginEventHandler DialBegin

Value

Type: AsterNET.ManagerDialBeginEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm new file mode 100644 index 0000000..058e7f3 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_DialEnd.htm @@ -0,0 +1,8 @@ +ManagerConnection.DialEnd Event
Click or drag to resize
ManagerConnectionDialEnd Event
+ Raised when a dial action has completed.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event DialEndEventHandler DialEnd

Value

Type: AsterNET.ManagerDialEndEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm new file mode 100644 index 0000000..4df1576 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ExtensionStatus.htm @@ -0,0 +1,8 @@ +ManagerConnection.ExtensionStatus Event
Click or drag to resize
ManagerConnectionExtensionStatus Event
+ An ExtensionStatus is triggered when the state of an extension changes.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ExtensionStatusEventHandler ExtensionStatus

Value

Type: AsterNET.ManagerExtensionStatusEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm new file mode 100644 index 0000000..aa5bea3 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_FailedACL.htm @@ -0,0 +1,7 @@ +ManagerConnection.FailedACL Event
Click or drag to resize
ManagerConnectionFailedACL Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.FailedACL"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event FailedACLEventHandler FailedACL

Value

Type: AsterNET.ManagerFailedACLEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Hangup.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Hangup.htm new file mode 100644 index 0000000..a830a18 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Hangup.htm @@ -0,0 +1,8 @@ +ManagerConnection.Hangup Event
Click or drag to resize
ManagerConnectionHangup Event
+ A Hangup is triggered when a channel is hung up.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event HangupEventHandler Hangup

Value

Type: AsterNET.ManagerHangupEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm new file mode 100644 index 0000000..31119cf --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Hold.htm @@ -0,0 +1,8 @@ +ManagerConnection.Hold Event
Click or drag to resize
ManagerConnectionHold Event
+ A Hold is triggered by the SIP channel driver when a channel is put on hold.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event HoldEventHandler Hold

Value

Type: AsterNET.ManagerHoldEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm new file mode 100644 index 0000000..0a439f2 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_HoldedCall.htm @@ -0,0 +1,8 @@ +ManagerConnection.HoldedCall Event
Click or drag to resize
ManagerConnectionHoldedCall Event
+ A HoldedCall is triggered when a channel is put on hold.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event HoldedCallEventHandler HoldedCall

Value

Type: AsterNET.ManagerHoldedCallEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm new file mode 100644 index 0000000..52ef351 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Join.htm @@ -0,0 +1,8 @@ +ManagerConnection.Join Event
Click or drag to resize
ManagerConnectionJoin Event
+ A Join is triggered when a channel joines a queue.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event JoinEventHandler Join

Value

Type: AsterNET.ManagerJoinEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm new file mode 100644 index 0000000..a0bab71 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Leave.htm @@ -0,0 +1,8 @@ +ManagerConnection.Leave Event
Click or drag to resize
ManagerConnectionLeave Event
+ A Leave is triggered when a channel leaves a queue.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event LeaveEventHandler Leave

Value

Type: AsterNET.ManagerLeaveEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm new file mode 100644 index 0000000..b26da7c --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Link.htm @@ -0,0 +1,12 @@ +ManagerConnection.Link Event
Click or drag to resize
ManagerConnectionLink Event
+ A Link is triggered when two voice channels are linked together and voice data exchange commences.
+ Several Link events may be seen for a single call. This can occur when Asterisk fails to setup a + native bridge for the call.This is when Asterisk must sit between two telephones and perform + CODEC conversion on their behalf. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event LinkEventHandler Link

Value

Type: AsterNET.ManagerLinkEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm new file mode 100644 index 0000000..5a2ce6b --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_LogChannel.htm @@ -0,0 +1,8 @@ +ManagerConnection.LogChannel Event
Click or drag to resize
ManagerConnectionLogChannel Event
+ A LogChannel is triggered when logging is turned on or off.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event LogChannelEventHandler LogChannel

Value

Type: AsterNET.ManagerLogChannelEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm new file mode 100644 index 0000000..a371ac7 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeJoin.htm @@ -0,0 +1,8 @@ +ManagerConnection.MeetMeJoin Event
Click or drag to resize
ManagerConnectionMeetMeJoin Event
+ A MeetMeJoin is triggered if a channel joins a meet me conference.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event MeetMeJoinEventHandler MeetMeJoin

Value

Type: AsterNET.ManagerMeetMeJoinEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm new file mode 100644 index 0000000..10cda7c --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeLeave.htm @@ -0,0 +1,8 @@ +ManagerConnection.MeetMeLeave Event
Click or drag to resize
ManagerConnectionMeetMeLeave Event
+ A MeetMeLeave is triggered if a channel leaves a meet me conference.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event MeetMeLeaveEventHandler MeetMeLeave

Value

Type: AsterNET.ManagerMeetMeLeaveEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm new file mode 100644 index 0000000..dd99d37 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_MeetMeTalking.htm @@ -0,0 +1,10 @@ +ManagerConnection.MeetMeTalking Event
Click or drag to resize
ManagerConnectionMeetMeTalking Event
+ A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
+ To enable talker detection you must pass the option 'T' to the MeetMe application. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event MeetMeTalkingEventHandler MeetMeTalking

Value

Type: AsterNET.ManagerMeetMeTalkingEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm new file mode 100644 index 0000000..db39983 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_MessageWaiting.htm @@ -0,0 +1,8 @@ +ManagerConnection.MessageWaiting Event
Click or drag to resize
ManagerConnectionMessageWaiting Event
+ A MessageWaiting is triggered when someone leaves voicemail.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event MessageWaitingEventHandler MessageWaiting

Value

Type: AsterNET.ManagerMessageWaitingEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm new file mode 100644 index 0000000..07f264f --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_NewCallerId.htm @@ -0,0 +1,8 @@ +ManagerConnection.NewCallerId Event
Click or drag to resize
ManagerConnectionNewCallerId Event
+ A NewCallerId is triggered when the caller id of a channel changes.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event NewCallerIdEventHandler NewCallerId

Value

Type: AsterNET.ManagerNewCallerIdEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm new file mode 100644 index 0000000..5c13cdb --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_NewChannel.htm @@ -0,0 +1,8 @@ +ManagerConnection.NewChannel Event
Click or drag to resize
ManagerConnectionNewChannel Event
+ A NewChannel is triggered when a new channel is created.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event NewChannelEventHandler NewChannel

Value

Type: AsterNET.ManagerNewChannelEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewExten.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewExten.htm new file mode 100644 index 0000000..a655d34 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_NewExten.htm @@ -0,0 +1,8 @@ +ManagerConnection.NewExten Event
Click or drag to resize
ManagerConnectionNewExten Event
+ A NewExten is triggered when a channel is connected to a new extension.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event NewExtenEventHandler NewExten

Value

Type: AsterNET.ManagerNewExtenEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_NewState.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_NewState.htm new file mode 100644 index 0000000..3bf5e28 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_NewState.htm @@ -0,0 +1,8 @@ +ManagerConnection.NewState Event
Click or drag to resize
ManagerConnectionNewState Event
+ A NewState is triggered when the state of a channel has changed.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event NewStateEventHandler NewState

Value

Type: AsterNET.ManagerNewStateEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm new file mode 100644 index 0000000..6b8cdf6 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_OriginateResponse.htm @@ -0,0 +1,9 @@ +ManagerConnection.OriginateResponse Event
Click or drag to resize
ManagerConnectionOriginateResponse Event
+ An OriginateResponse is triggered when the execution of an Originate. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event OriginateResponseEventHandler OriginateResponse

Value

Type: AsterNET.ManagerOriginateResponseEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm new file mode 100644 index 0000000..4787fbd --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCall.htm @@ -0,0 +1,9 @@ +ManagerConnection.ParkedCall Event
Click or drag to resize
ManagerConnectionParkedCall Event
+ A ParkedCall is triggered when a channel is parked (in this case no + action id is set) and in response to a ParkedCallsAction.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ParkedCallEventHandler ParkedCall

Value

Type: AsterNET.ManagerParkedCallEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm new file mode 100644 index 0000000..8c2c781 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallGiveUp.htm @@ -0,0 +1,8 @@ +ManagerConnection.ParkedCallGiveUp Event
Click or drag to resize
ManagerConnectionParkedCallGiveUp Event
+ A ParkedCallGiveUp is triggered when a channel that has been parked is hung up.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ParkedCallGiveUpEventHandler ParkedCallGiveUp

Value

Type: AsterNET.ManagerParkedCallGiveUpEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm new file mode 100644 index 0000000..8e62dc6 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallTimeOut.htm @@ -0,0 +1,8 @@ +ManagerConnection.ParkedCallTimeOut Event
Click or drag to resize
ManagerConnectionParkedCallTimeOut Event
+ A ParkedCallTimeOut is triggered when call parking times out for a given channel.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ParkedCallTimeOutEventHandler ParkedCallTimeOut

Value

Type: AsterNET.ManagerParkedCallTimeOutEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm new file mode 100644 index 0000000..d7c6822 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ParkedCallsComplete.htm @@ -0,0 +1,9 @@ +ManagerConnection.ParkedCallsComplete Event
Click or drag to resize
ManagerConnectionParkedCallsComplete Event
+ A ParkedCallsComplete is triggered after all parked calls have been reported in response to a ParkedCallsAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ParkedCallsCompleteEventHandler ParkedCallsComplete

Value

Type: AsterNET.ManagerParkedCallsCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm new file mode 100644 index 0000000..d25de9e --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerEntry.htm @@ -0,0 +1,8 @@ +ManagerConnection.PeerEntry Event
Click or drag to resize
ManagerConnectionPeerEntry Event
+ A PeerEntry is triggered in response to a SIPPeersAction or SIPShowPeerAction and contains information about a peer.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event PeerEntryEventHandler PeerEntry

Value

Type: AsterNET.ManagerPeerEntryEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm new file mode 100644 index 0000000..4fa8840 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerStatus.htm @@ -0,0 +1,8 @@ +ManagerConnection.PeerStatus Event
Click or drag to resize
ManagerConnectionPeerStatus Event
+ A PeerStatus is triggered when a SIP or IAX client attempts to registrer at this asterisk server.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event PeerStatusEventHandler PeerStatus

Value

Type: AsterNET.ManagerPeerStatusEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm new file mode 100644 index 0000000..0c4f05b --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_PeerlistComplete.htm @@ -0,0 +1,8 @@ +ManagerConnection.PeerlistComplete Event
Click or drag to resize
ManagerConnectionPeerlistComplete Event
+ A PeerlistComplete is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event PeerlistCompleteEventHandler PeerlistComplete

Value

Type: AsterNET.ManagerPeerlistCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm new file mode 100644 index 0000000..d2a8787 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerAbandon.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueCallerAbandon Event
Click or drag to resize
ManagerConnectionQueueCallerAbandon Event
+ A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueCallerAbandonEventHandler QueueCallerAbandon

Value

Type: AsterNET.ManagerQueueCallerAbandonEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm new file mode 100644 index 0000000..b5abff0 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerJoin.htm @@ -0,0 +1,8 @@ +ManagerConnection.QueueCallerJoin Event
Click or drag to resize
ManagerConnectionQueueCallerJoin Event
+ Raised when a caller joins a Queue.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueCallerJoinEventHandler QueueCallerJoin

Value

Type: AsterNET.ManagerQueueCallerJoinEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm new file mode 100644 index 0000000..3654da2 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueCallerLeave.htm @@ -0,0 +1,8 @@ +ManagerConnection.QueueCallerLeave Event
Click or drag to resize
ManagerConnectionQueueCallerLeave Event
+ Raised when a caller leaves a Queue.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueCallerLeaveEventHandler QueueCallerLeave

Value

Type: AsterNET.ManagerQueueCallerLeaveEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm new file mode 100644 index 0000000..ca1686b --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueEntry.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueEntry Event
Click or drag to resize
ManagerConnectionQueueEntry Event
+ A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueEntryEventHandler QueueEntry

Value

Type: AsterNET.ManagerQueueEntryEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm new file mode 100644 index 0000000..d5a27dd --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMember.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueMember Event
Click or drag to resize
ManagerConnectionQueueMember Event
+ A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueMemberEventHandler QueueMember

Value

Type: AsterNET.ManagerQueueMemberEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm new file mode 100644 index 0000000..99f32d4 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberAdded.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueMemberAdded Event
Click or drag to resize
ManagerConnectionQueueMemberAdded Event
+ A QueueMemberAddedEvent is triggered when a queue member is added to a queue. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueMemberAddedEventHandler QueueMemberAdded

Value

Type: AsterNET.ManagerQueueMemberAddedEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPause.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPause.htm new file mode 100644 index 0000000..9db9b8e --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPause.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueMemberPause Event
Click or drag to resize
ManagerConnectionQueueMemberPause Event
+ A QueueMemberPauseEvent is triggered when a queue member is paused or unpaused.
Available since : Asterisk 12. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueMemberPauseEventHandler QueueMemberPause

Value

Type: AsterNET.ManagerQueueMemberPauseEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm new file mode 100644 index 0000000..f0d6925 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberPaused.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueMemberPaused Event
Click or drag to resize
ManagerConnectionQueueMemberPaused Event
+ A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. + Replaced by : QueueMemberPauseEvent since Asterisk 12.
Removed since : Asterisk 13.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueMemberPausedEventHandler QueueMemberPaused

Value

Type: AsterNET.ManagerQueueMemberPausedEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm new file mode 100644 index 0000000..ab1164d --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberRemoved.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueMemberRemoved Event
Click or drag to resize
ManagerConnectionQueueMemberRemoved Event
+ A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueMemberRemovedEventHandler QueueMemberRemoved

Value

Type: AsterNET.ManagerQueueMemberRemovedEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm new file mode 100644 index 0000000..458167e --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueMemberStatus.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueMemberStatus Event
Click or drag to resize
ManagerConnectionQueueMemberStatus Event
+ A QueueMemberStatusEvent shows the status of a QueueMemberEvent. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueMemberStatusEventHandler QueueMemberStatus

Value

Type: AsterNET.ManagerQueueMemberStatusEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm new file mode 100644 index 0000000..1145a80 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueParams.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueParams Event
Click or drag to resize
ManagerConnectionQueueParams Event
+ A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueParamsEventHandler QueueParams

Value

Type: AsterNET.ManagerQueueParamsEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm new file mode 100644 index 0000000..a597064 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_QueueStatusComplete.htm @@ -0,0 +1,9 @@ +ManagerConnection.QueueStatusComplete Event
Click or drag to resize
ManagerConnectionQueueStatusComplete Event
+ A QueueStatusCompleteEvent is triggered after the state of all queues has been reported in response to a QueueStatusAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event QueueStatusCompleteEventHandler QueueStatusComplete

Value

Type: AsterNET.ManagerQueueStatusCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Registry.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Registry.htm new file mode 100644 index 0000000..34744b8 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Registry.htm @@ -0,0 +1,9 @@ +ManagerConnection.Registry Event
Click or drag to resize
ManagerConnectionRegistry Event
+ A Registry is triggered when this asterisk server attempts to register + as a client at another SIP or IAX server.

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event RegistryEventHandler Registry

Value

Type: AsterNET.ManagerRegistryEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Rename.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Rename.htm new file mode 100644 index 0000000..3398548 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Rename.htm @@ -0,0 +1,9 @@ +ManagerConnection.Rename Event
Click or drag to resize
ManagerConnectionRename Event
+ A RenameEvent is triggered when the name of a channel is changed. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event RenameEventHandler Rename

Value

Type: AsterNET.ManagerRenameEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Status.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Status.htm new file mode 100644 index 0000000..f599c0b --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Status.htm @@ -0,0 +1,9 @@ +ManagerConnection.Status Event
Click or drag to resize
ManagerConnectionStatus Event
+ A StatusEvent is triggered for each active channel in response to a StatusAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event StatusEventHandler Status

Value

Type: AsterNET.ManagerStatusEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm new file mode 100644 index 0000000..3ca180a --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_StatusComplete.htm @@ -0,0 +1,9 @@ +ManagerConnection.StatusComplete Event
Click or drag to resize
ManagerConnectionStatusComplete Event
+ A StatusCompleteEvent is triggered after the state of all channels has been reported in response to a StatusAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event StatusCompleteEventHandler StatusComplete

Value

Type: AsterNET.ManagerStatusCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Transfer.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Transfer.htm new file mode 100644 index 0000000..99f113a --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Transfer.htm @@ -0,0 +1,7 @@ +ManagerConnection.Transfer Event
Click or drag to resize
ManagerConnectionTransfer Event

[Missing <summary> documentation for "E:AsterNET.Manager.ManagerConnection.Transfer"]

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event TransferEventHandler Transfer

Value

Type: AsterNET.ManagerTransferEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm new file mode 100644 index 0000000..6a91dd8 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_UnhandledEvent.htm @@ -0,0 +1,9 @@ +ManagerConnection.UnhandledEvent Event
Click or drag to resize
ManagerConnectionUnhandledEvent Event
+ An UnhandledEvent is triggered on unknown event. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ManagerEventHandler UnhandledEvent

Value

Type: AsterNET.ManagerManagerEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Unhold.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Unhold.htm new file mode 100644 index 0000000..b522947 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Unhold.htm @@ -0,0 +1,9 @@ +ManagerConnection.Unhold Event
Click or drag to resize
ManagerConnectionUnhold Event
+ An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event UnholdEventHandler Unhold

Value

Type: AsterNET.ManagerUnholdEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_Unlink.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_Unlink.htm new file mode 100644 index 0000000..7aee449 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_Unlink.htm @@ -0,0 +1,9 @@ +ManagerConnection.Unlink Event
Click or drag to resize
ManagerConnectionUnlink Event
+ An UnlinkEvent is triggered when a link between two voice channels is discontinued, for example, just before call completion. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event UnlinkEventHandler Unlink

Value

Type: AsterNET.ManagerUnlinkEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm new file mode 100644 index 0000000..00e7aac --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_UnparkedCall.htm @@ -0,0 +1,9 @@ +ManagerConnection.UnparkedCall Event
Click or drag to resize
ManagerConnectionUnparkedCall Event
+ A UnparkedCallEvent is triggered when a channel that has been parked is resumed. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event UnparkedCallEventHandler UnparkedCall

Value

Type: AsterNET.ManagerUnparkedCallEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm new file mode 100644 index 0000000..de66b0b --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_UserEvents.htm @@ -0,0 +1,9 @@ +ManagerConnection.UserEvents Event
Click or drag to resize
ManagerConnectionUserEvents Event
+ A ZapShowChannelsEvent is triggered on UserEvent in dialplan. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event UserEventHandler UserEvents

Value

Type: AsterNET.ManagerUserEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_VarSet.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_VarSet.htm new file mode 100644 index 0000000..29f3e87 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_VarSet.htm @@ -0,0 +1,9 @@ +ManagerConnection.VarSet Event
Click or drag to resize
ManagerConnectionVarSet Event
+ When a variable is set +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event VarSetEventHandler VarSet

Value

Type: AsterNET.ManagerVarSetEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm new file mode 100644 index 0000000..671381a --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannels.htm @@ -0,0 +1,9 @@ +ManagerConnection.ZapShowChannels Event
Click or drag to resize
ManagerConnectionZapShowChannels Event
+ A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of a zap channel. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ZapShowChannelsEventHandler ZapShowChannels

Value

Type: AsterNET.ManagerZapShowChannelsEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm b/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm new file mode 100644 index 0000000..6d18d49 --- /dev/null +++ b/docs/html/E_AsterNET_Manager_ManagerConnection_ZapShowChannelsComplete.htm @@ -0,0 +1,9 @@ +ManagerConnection.ZapShowChannelsComplete Event
Click or drag to resize
ManagerConnectionZapShowChannelsComplete Event
+ A ZapShowChannelsCompleteEvent is triggered after the state of all zap channels has been reported in response to a ZapShowChannelsAction. +

Namespace: AsterNET.Manager
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public event ZapShowChannelsCompleteEventHandler ZapShowChannelsComplete

Value

Type: AsterNET.ManagerZapShowChannelsCompleteEventHandler
See Also
\ No newline at end of file diff --git a/docs/html/Events_T_AsterNET_Manager_ManagerConnection.htm b/docs/html/Events_T_AsterNET_Manager_ManagerConnection.htm new file mode 100644 index 0000000..8cb589b --- /dev/null +++ b/docs/html/Events_T_AsterNET_Manager_ManagerConnection.htm @@ -0,0 +1,126 @@ +ManagerConnection Events
Click or drag to resize
ManagerConnection Events

The ManagerConnection type exposes the following members.

Events
+   + NameDescription
Public eventAgentCallbackLogin
+ An AgentCallbackLogin is triggered when an agent is successfully logged in. +
Public eventAgentCallbackLogoff
+ An AgentCallbackLogoff is triggered when an agent that previously logged in is logged of.
Public eventAgentCalled
+ An AgentCalled is triggered when an agent is ring.
+ To enable AgentCalled you have to set eventwhencalled = yes in queues.conf.
Public eventAgentComplete
+ An AgentCompleteEvent is triggered when at the end of a call if the caller was connected to an agent. +
Public eventAgentConnect
+ An AgentConnectEvent is triggered when a caller is connected to an agent. +
Public eventAgentDump
+ An AgentDumpEvent is triggered when an agent dumps the caller while listening to the queue announcement. +
Public eventAgentLogin
+ An AgentLoginEvent is triggered when an agent is successfully logged in using AgentLogin. +
Public eventAgentLogoff
+ An AgentCallbackLogoffEvent is triggered when an agent that previously logged in using AgentLogin is logged of. +
Public eventAgents
+ An AgentsEvent is triggered for each agent in response to an AgentsAction. +
Public eventAgentsComplete
+ An AgentsCompleteEvent is triggered after the state of all agents has been reported in response to an AgentsAction. +
Public eventAGIExec
+ AgiExec is execute +
Public eventAlarm
+ An AlarmEvent is triggered when a Zap channel enters or changes alarm state. +
Public eventAlarmClear
+ An AlarmEvent is triggered when a Zap channel leaves alarm state. +
Public eventAttendedTransfer
Public eventBlindTransfer
Public eventBridge
Public eventBridgeCreate
Public eventBridgeDestroy
Public eventBridgeEnter
Public eventBridgeLeave
Public eventCdr
+ A CdrEvent is triggered when a call detail record is generated, usually at the end of a call. +
Public eventConfbridgeEnd
+ This event is sent when the last user leaves a conference and it is torn down. +
Public eventConfbridgeJoin
+ This event is sent when a user joins a conference - either one already in progress or as the first user to join a newly instantiated bridge. +
Public eventConfbridgeLeave
+ This event is sent when a user leaves a conference. +
Public eventConfbridgeStart
+ This event is sent when the first user requests a conference and it is instantiated +
Public eventConfbridgeTalking
+ This event is sent when the conference detects that a user has either begin or stopped talking. +
Public eventConnectionState
+ A ConnectionState is triggered after Connect/Disconnect/Reload/Shutdown events. +
Public eventDBGetResponse
Public eventDial
+ A Dial is triggered whenever a phone attempts to dial someone.
Public eventDialBegin
+ Raised when a dial action has started.
Public eventDialEnd
+ Raised when a dial action has completed.
Public eventDNDState
+ A DNDStateEvent is triggered by the Zap channel driver when a channel enters or leaves DND (do not disturb) state. +
Public eventDTMF
Public eventExtensionStatus
+ An ExtensionStatus is triggered when the state of an extension changes.
Public eventFailedACL
Public eventHangup
+ A Hangup is triggered when a channel is hung up.
Public eventHold
+ A Hold is triggered by the SIP channel driver when a channel is put on hold.
Public eventHoldedCall
+ A HoldedCall is triggered when a channel is put on hold.
Public eventJoin
+ A Join is triggered when a channel joines a queue.
Public eventLeave
+ A Leave is triggered when a channel leaves a queue.
Public eventLink
+ A Link is triggered when two voice channels are linked together and voice data exchange commences.
+ Several Link events may be seen for a single call. This can occur when Asterisk fails to setup a + native bridge for the call.This is when Asterisk must sit between two telephones and perform + CODEC conversion on their behalf. +
Public eventLogChannel
+ A LogChannel is triggered when logging is turned on or off.
Public eventMeetMeJoin
+ A MeetMeJoin is triggered if a channel joins a meet me conference.
Public eventMeetMeLeave
+ A MeetMeLeave is triggered if a channel leaves a meet me conference.
Public eventMeetMeTalking
+ A MeetMeTalkingEvent is triggered when a user starts talking in a meet me conference.
+ To enable talker detection you must pass the option 'T' to the MeetMe application. +
Public eventMessageWaiting
+ A MessageWaiting is triggered when someone leaves voicemail.
Public eventNewCallerId
+ A NewCallerId is triggered when the caller id of a channel changes.
Public eventNewChannel
+ A NewChannel is triggered when a new channel is created.
Public eventNewExten
+ A NewExten is triggered when a channel is connected to a new extension.
Public eventNewState
+ A NewState is triggered when the state of a channel has changed.
Public eventOriginateResponse
+ An OriginateResponse is triggered when the execution of an Originate. +
Public eventParkedCall
+ A ParkedCall is triggered when a channel is parked (in this case no + action id is set) and in response to a ParkedCallsAction.
Public eventParkedCallGiveUp
+ A ParkedCallGiveUp is triggered when a channel that has been parked is hung up.
Public eventParkedCallsComplete
+ A ParkedCallsComplete is triggered after all parked calls have been reported in response to a ParkedCallsAction. +
Public eventParkedCallTimeOut
+ A ParkedCallTimeOut is triggered when call parking times out for a given channel.
Public eventPeerEntry
+ A PeerEntry is triggered in response to a SIPPeersAction or SIPShowPeerAction and contains information about a peer.
Public eventPeerlistComplete
+ A PeerlistComplete is triggered after the details of all peers has been reported in response to an SIPPeersAction or SIPShowPeerAction.
Public eventPeerStatus
+ A PeerStatus is triggered when a SIP or IAX client attempts to registrer at this asterisk server.
Public eventQueueCallerAbandon
+ A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. +
Public eventQueueCallerJoin
+ Raised when a caller joins a Queue.
Public eventQueueCallerLeave
+ Raised when a caller leaves a Queue.
Public eventQueueEntry
+ A QueueEntryEvent is triggered in response to a QueueStatusAction and contains information about an entry in a queue. +
Public eventQueueMember
+ A QueueMemberEvent is triggered in response to a QueueStatusAction and contains information about a member of a queue. +
Public eventQueueMemberAdded
+ A QueueMemberAddedEvent is triggered when a queue member is added to a queue. +
Public eventQueueMemberPause
+ A QueueMemberPauseEvent is triggered when a queue member is paused or unpaused.
Available since : Asterisk 12. +
Public eventQueueMemberPaused
+ A QueueMemberPausedEvent is triggered when a queue member is paused or unpaused. + Replaced by : QueueMemberPauseEvent since Asterisk 12.
Removed since : Asterisk 13.
Public eventQueueMemberRemoved
+ A QueueMemberRemovedEvent is triggered when a queue member is removed from a queue. +
Public eventQueueMemberStatus
+ A QueueMemberStatusEvent shows the status of a QueueMemberEvent. +
Public eventQueueParams
+ A QueueParamsEvent is triggered in response to a QueueStatusAction and contains the parameters of a queue. +
Public eventQueueStatusComplete
+ A QueueStatusCompleteEvent is triggered after the state of all queues has been reported in response to a QueueStatusAction. +
Public eventRegistry
+ A Registry is triggered when this asterisk server attempts to register + as a client at another SIP or IAX server.
Public eventRename
+ A RenameEvent is triggered when the name of a channel is changed. +
Public eventStatus
+ A StatusEvent is triggered for each active channel in response to a StatusAction. +
Public eventStatusComplete
+ A StatusCompleteEvent is triggered after the state of all channels has been reported in response to a StatusAction. +
Public eventTransfer
Public eventUnhandledEvent
+ An UnhandledEvent is triggered on unknown event. +
Public eventUnhold
+ An UnholdEvent is triggered by the SIP channel driver when a channel is no longer put on hold. +
Public eventUnlink
+ An UnlinkEvent is triggered when a link between two voice channels is discontinued, for example, just before call completion. +
Public eventUnparkedCall
+ A UnparkedCallEvent is triggered when a channel that has been parked is resumed. +
Public eventUserEvents
+ A ZapShowChannelsEvent is triggered on UserEvent in dialplan. +
Public eventVarSet
+ When a variable is set +
Public eventZapShowChannels
+ A ZapShowChannelsEvent is triggered in response to a ZapShowChannelsAction and shows the state of a zap channel. +
Public eventZapShowChannelsComplete
+ A ZapShowChannelsCompleteEvent is triggered after the state of all zap channels has been reported in response to a ZapShowChannelsAction. +
Top
See Also
\ No newline at end of file diff --git a/docs/html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm b/docs/html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm index a030111..712950b 100644 --- a/docs/html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm +++ b/docs/html/M_AsterNET_FastAGI_AGIScript_GetChannelStatus.htm @@ -1,3 +1,7 @@ -AGIScript.GetChannelStatus Method
AGIScriptGetChannelStatus Method

[Missing <summary> documentation for "M:AsterNET.FastAGI.AGIScript.GetChannelStatus"]

Namespace: AsterNET.FastAGI
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected int GetChannelStatus()

Return Value

Type: Int32
the status of the channel. +
See Also
\ No newline at end of file diff --git a/docs/html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm b/docs/html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm index 4226f9e..290f293 100644 --- a/docs/html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm +++ b/docs/html/M_AsterNET_FastAGI_AGIScript_PlayMusicOnHold_1.htm @@ -1,4 +1,6 @@ -AGIScript.PlayMusicOnHold Method (String)
AGIScriptPlayMusicOnHold Method (String)

[Missing <summary> documentation for "M:AsterNET.FastAGI.AGIScript.PlayMusicOnHold(System.String)"]

Namespace: AsterNET.FastAGI
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected void PlayMusicOnHold(
+AGIScript.PlayMusicOnHold Method (String)
AGIScriptPlayMusicOnHold Method (String)
+ Plays music on hold from the given music on hold class. +

Namespace: AsterNET.FastAGI
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected void PlayMusicOnHold(
 	string musicOnHoldClass
 )

Parameters

musicOnHoldClass
Type: SystemString

[Missing <param name="musicOnHoldClass"/> documentation for "M:AsterNET.FastAGI.AGIScript.PlayMusicOnHold(System.String)"]

See Also
\ No newline at end of file +

Parameters

musicOnHoldClass
Type: SystemString
the music on hold class to play music from as configures in Asterisk's <musiconhold.conf/code$gt;.
See Also
\ No newline at end of file diff --git a/docs/html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm b/docs/html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm index 4629e86..c58d63a 100644 --- a/docs/html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm +++ b/docs/html/M_AsterNET_FastAGI_AGIScript_SetCallerId.htm @@ -1,4 +1,7 @@ -AGIScript.SetCallerId Method
AGIScriptSetCallerId Method

[Missing <summary> documentation for "M:AsterNET.FastAGI.AGIScript.SetCallerId(System.String)"]

Namespace: AsterNET.FastAGI
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected void SetCallerId(
+AGIScript.SetCallerId Method 
AGIScriptSetCallerId Method
+ Sets the caller id on the current channel.
+ The raw caller id to set, for example "John Doe<1234>". +

Namespace: AsterNET.FastAGI
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected void SetCallerId(
 	string callerId
 )
\ No newline at end of file diff --git a/docs/html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm b/docs/html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm index 463f667..cbc249a 100644 --- a/docs/html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm +++ b/docs/html/P_AsterNET_FastAGI_Command_GetVariableCommand_Variable.htm @@ -1,4 +1,7 @@ -GetVariableCommand.Variable Property
GetVariableCommandVariable Property

[Missing <summary> documentation for "P:AsterNET.FastAGI.Command.GetVariableCommand.Variable"]

Namespace: AsterNET.FastAGI.Command
Assembly: AsterNET (in AsterNET.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public string Variable { get; set; }