Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    #61
    Perhaps too obvious to mention, but we do not see a call to registerDynamicDSGenerator at all.

    If that's really it.. we need to remind you to please involve Support only when you have thoroughly analyzed your code and believe you have found a framework bug. That's what this service is here for - for more of a "peer programming" experience, please consider our Consulting services.

    Comment


      #62
      Originally posted by Isomorphic View Post
      Is there new information here? This appears to be the same mysterious error, poorly reported by GWT, that you indicated could not be reproduced outside of GWT Development Mode. On this error, we are waiting for a test case from you that reproduces the issue.
      Yes, I cannot reproduce this out of GWT development mode, however in GWT development mode, after this error presents itself, the app grid is not usable and appears to be 'wedged'.

      Still working on the test case. Thanks for the pointer about registering the DyanamicDSGenrator. For completeness, here is the DynamicDSGenerator registration call I was missing, I put it in the constructor:
      Code:
      package com.smartgwt.sample.server.ds;
      
      import com.isomorphic.datasource.DSRequest;
      import com.isomorphic.datasource.DSResponse;
      import com.isomorphic.datasource.DataSource;
      import com.isomorphic.rpc.RPCManager;
      import com.isomorphic.servlet.IDACall;
      import com.isomorphic.servlet.RequestContext;
      import org.apache.commons.logging.Log;
      import org.apache.commons.logging.LogFactory;
      
      public class TestIDACall extends IDACall {
      
          public TestIDACall() {
              super();
              com.isomorphic.datasource.DataSource.addDynamicDSGenerator(new TestDSGenerator(), "dynamic_test_item");
              logger.debug("TestDSGenerator registered for Datasource: dynamic_test_item");
          }
      
          private Log logger = LogFactory.getLog(this.getClass().getName());
          @Override
          public DSResponse handleDSRequest(DSRequest dsRequest, RPCManager rpc, RequestContext context) throws Exception {
      
              if(dsRequest.getDataSourceName().equals("dynamic_test_item")) {
                  logger.debug("TestIDACall.handleDSRequest for dynamic_test_item");
                  DSResponse dsResponse = null;
                  DataSource ds = rpc.getDataSource("dynamic_test_item");
                  dsResponse = ds.execute(dsRequest);
                  return dsResponse;
              }
              else
                  return super.handleDSRequest(dsRequest, rpc, context);
          }
      }
      Last edited by JLivermore; 9 Oct 2014, 07:19.

      Comment


        #63
        Originally posted by Isomorphic View Post
        The indicates a call to DataSource.load() where you are passing the same ID twice. You should correct this problem; we can't really say whether it would cause the mysterious error you reported earlier.
        Turns out, I was not calling DataSource.load() twice, but doing a DataSource.load() then a DataSource.get(). So we are back to 2 GWT exceptions with no real information in the GWT stack traces.

        I created a stand alone project using CustomDS example, I set it up with a DynamicDSGenerator and doing a DataSource.fetch() first, and setting TreeGrid.setInitialData() works fine. I do not see the exceptions I am seeing in our code base. So this proves the SmartGWT API works fine.

        Upon further isolation, I am finding that the DataSource.load() call creates one browser pop-up error.
        Code:
            private Function loadDataSourceFunction = new Function() {
                @Override
                public void execute() {
                    treeDataSource = DataSource.get(treeGridFactTableDataSource, new TreeGridRequestTransformer(), new TreeGridResponseTransformer());
                    if (treeDataSource != null) {
                        GWT.log("treeGrid DataSource set : " + treeDataSource.getID());
                        if(treeDataSource.getShowPrompt()) treeDataSource.setShowPrompt(Boolean.FALSE);
                        Criteria criteria = new Criteria();
                        String[] allFactQueriesSerialized = serializeAllFactQueries();
                        if(allFactQueriesSerialized != null)
                            criteria.addCriteria("spcs", allFactQueriesSerialized);
                        treeDataSource.fetchData(criteria, new TreeGridInitDSCallback());
                    } else GWT.log("treeDataSource is NULL");
                }
            };
        
            private void createTreeGrid() {
                GWT.log("createTreeGrid()");
                
                treeGridFactTableDataSource = PivotTableDataSourceID.treeInstance(model).getApplicationID();
                DataSource.load(treeGridFactTableDataSource, loadDataSourceFunction);
        
            }
        I set a break point at DataSource.load(treeGridFactTableDataSource, loadDataSourceFunction);
        And another break point at treeDataSource = DataSource.get(treeGridFactTableDataSource, new TreeGridRequestTransformer(), new TreeGridResponseTransformer());
        and this stack trace is what is shown in the client log. So somewhere between DataSource.load() and calling the callback function loadDataSourceFunction this error happens:
        Code:
        ERROR: 15:41:31.163:MOU1:WARN:Log:GWT uncaught exceptions have been encountered.  Check the Development Mode console for more details.
        com.smartgwt.client.core.JsObject$SGWT_WARN: 15:41:31.163:MOU1:WARN:Log:GWT uncaught exceptions have been encountered.  Check the Development Mode console for more details.
        	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
        	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
        	at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
        	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
        	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:338)
        	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:219)
        	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:304)
        	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107)
        	at com.smartgwt.client.util.SC.logWarn(SC.java)
        	at com.smartgwt.client.SmartGwtEntryPoint$1.onUncaughtException(SmartGwtEntryPoint.java:400)
        	at com.google.gwt.core.client.impl.Impl.reportUncaughtException(Impl.java:228)
        	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:358)
        	at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
        	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        	at java.lang.reflect.Method.invoke(Method.java:606)
        	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
        	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
        	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
        	at java.lang.Thread.run(Thread.java:744)
        ERROR: Uncaught exception escaped
        com.google.gwt.core.client.JavaScriptException: (String) @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)([JavaScript object(1532), JavaScript object(1062), JavaScript object(1551)]): Invoking an instance method on a null instance
        	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:249)
        	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:284)
        	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:356)
        	at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
        	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        	at java.lang.reflect.Method.invoke(Method.java:606)
        	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
        	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
        	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
        	at java.lang.Thread.run(Thread.java:744)
        This was the first error that was caused by a DataSource.load().

        And then the second error we've seen before and discussed at length:
        Code:
        ERROR: Uncaught exception escaped
        com.google.gwt.core.client.JavaScriptException: (String) @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)([JavaScript object(5975), JavaScript object(3314), JavaScript object(6128)]): Invoking an instance method on a null instance
        	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:249)
        	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:284)
        	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:356)
        	at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
        	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        	at java.lang.reflect.Method.invoke(Method.java:606)
        	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
        	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
        	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
        	at java.lang.Thread.run(Thread.java:744)
        ERROR: Uncaught exception escaped
        com.google.gwt.core.client.JavaScriptException: (String) @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)([JavaScript object(5981), JavaScript object(4), JavaScript object(6385)]): Invoking an instance method on a null instance
        	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:249)
        	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
        	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:284)
        	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
        	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
        	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:356)
        	at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
        	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        	at java.lang.reflect.Method.invoke(Method.java:606)
        	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
        	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
        	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
        	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
        	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
        	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
        	at java.lang.Thread.run(Thread.java:744)
        This appears after the DSRequest goes out. This is the latest status.
        Last edited by JLivermore; 13 Oct 2014, 12:03.

        Comment


          #64
          Originally posted by JLivermore View Post
          Turns out, I was not calling DataSource.load() twice, but doing a DataSource.load() then a DataSource.get().
          We didn't say you were calling DataSource.load() twice, we said you were passing the same ID twice, but you did report that you've fixed that error (in #51).

          As far as these weird, poorly reported exceptions, we can't quite tell if you're reporting a new error here between DataSource.load() and your callback, and for some reason you didn't clarify whether it happens before or after the server response comes back.. there's still not a lot we can do with this information.

          One wild guess - do you get these errors at all if you remove all your breakpoints?

          Comment


            #65
            Yes, these errors appear with no breakpoints. I was using the break points to try to isolate the error reported in the client log.

            I see the error after DataSource.load() and the callback function passed into that call - Function.execute().

            That is the root of where these strange GWT errors are happening. I need to look into when the registration call to my DynamicDSGenerator is being made, perhaps it's not registered in the right sequence?

            Comment


              #66
              Originally posted by JLivermore View Post
              I see the error after DataSource.load() and the callback function passed into that call - Function.execute().
              DataSource.load() causes a call to the server, so again the question is whether the error happens before the response leaves, while it's pending or once it returns. This would have been obvious from the logs but you've trimmed them again.

              I need to look into when the registration call to my DynamicDSGenerator is being made, perhaps it's not registered in the right sequence?
              You've previously posted the server's response and it was fine, so there is no possibility that the cause could be on the server.

              Comment


                #67
                I will dig deeper and report back. Thanks.
                Last edited by JLivermore; 13 Oct 2014, 14:26.

                Comment


                  #68
                  I've got more details and sequences of events. The series of errors happens regardless of having breakpoints set in the code, so I used breakpoints to try to isolate events (denoted in the code below by ->):
                  Code:
                      private Function loadDataSourceFunction = new Function() {
                          @Override
                          public void execute() {
                  ->          treeDataSource = DataSource.get(treeGridFactTableDataSource, new TreeGridRequestTransformer(), new TreeGridResponseTransformer());
                              if (treeDataSource != null) {
                                  GWT.log("treeGrid DataSource set : " + treeDataSource.getID());
                                  if(treeDataSource.getShowPrompt()) treeDataSource.setShowPrompt(Boolean.FALSE);
                                  Criteria criteria = new Criteria();
                                  String[] allFactQueriesSerialized = serializeAllFactQueries();
                                  if(allFactQueriesSerialized != null)
                                      criteria.addCriteria("spcs", allFactQueriesSerialized);
                  ->              treeDataSource.fetchData(criteria, new TreeGridInitDSCallback());
                              } else GWT.log("treeDataSource is NULL");
                          }
                      };
                      private void createTreeGrid() {
                          GWT.log("createTreeGrid()");
                          GWT.log("Kornel DataSource.get");
                          treeGridFactTableDataSource = PivotTableDataSourceID.treeInstance(model).getApplicationID();
                  ->      DataSource.load(treeGridFactTableDataSource, loadDataSourceFunction);
                      }
                  Here is the client console out from my IDE:
                  Code:
                  Loading module: com.anstca.tz.Main
                    Top URL: http://127.0.0.1:8080/tzw/home.htm?gwt.codesvr=127.0.0.1:9997
                    User agent: Unknown
                    Remote host: 127.0.0.1:51015
                    Tab key: 1304
                    Session key: V7HGDeZuQm[NFK)_
                  DEBUG: Validating units:
                    INFO: Ignored 1 unit with compilation errors in first pass.
                  Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
                  INFO: Module com.anstca.tz.Main has been loaded
                  INFO: addStyleName is not supported. Calling setStyleName instead
                  INFO: Kornel DataSource.load
                  INFO: PivotTableWindow.loadDataSourceCallBackFunction.execute() treeDS[pivot_table_tree_fact_RTF_384_682] is NULL and did not load.
                  INFO: createTreeGrid()
                  INFO: Kornel DataSource.get
                  INFO: ModelMediator.updatePivotTableAndRefresh()
                  ERROR: 09:00:42.378:MOU3:WARN:Log:GWT uncaught exceptions have been encountered.  Check the Development Mode console for more details.
                  com.smartgwt.client.core.JsObject$SGWT_WARN: 09:00:42.378:MOU3:WARN:Log:GWT uncaught exceptions have been encountered.  Check the Development Mode console for more details.
                  	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
                  	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
                  	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
                  	at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
                  	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
                  	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                  	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:338)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:219)
                  	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:304)
                  	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107)
                  	at com.smartgwt.client.util.SC.logWarn(SC.java)
                  	at com.smartgwt.client.SmartGwtEntryPoint$1.onUncaughtException(SmartGwtEntryPoint.java:400)
                  	at com.google.gwt.core.client.impl.Impl.reportUncaughtException(Impl.java:228)
                  	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:358)
                  	at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
                  	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                  	at java.lang.reflect.Method.invoke(Method.java:606)
                  	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                  	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                  	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
                  	at java.lang.Thread.run(Thread.java:744)
                  ERROR: Uncaught exception escaped
                  com.google.gwt.core.client.JavaScriptException: (String) @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)([JavaScript object(1611), JavaScript object(1633), JavaScript object(1636)]): Invoking an instance method on a null instance
                  	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:249)
                  	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:284)
                  	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
                  	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                  	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:356)
                  	at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
                  	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                  	at java.lang.reflect.Method.invoke(Method.java:606)
                  	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                  	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                  	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
                  	at java.lang.Thread.run(Thread.java:744)
                  INFO: treeGrid DataSource set : pivot_table_tree_fact_RTF_384_682
                  INFO: TreeGridRequestTransformer : DSOperationType.FETCH
                  INFO: base criteria map : {}
                  INFO: TreeGridRequestTransformer parentNodeId is NULL - root node request
                  INFO: ViewContext.addFactQuery() factQuery : PivotTableFactQuerySPContext{TZWUserID=384, ViewID=2355, ClientID=682, DataSource='realTimeEquitiesFactDataSource', TimeFrameDimensionID=189, StartDate='2014-10-14', EndDate='2014-10-14', FactTableID='RTF', DimensionFilter='190:2^682|189:2', NodeDimensionList='', SelectedMeasureIDList='873|872|875|874|867|870', GroupByDimensionID=141, ParentNodeID='', IncludeTotal=true}
                  INFO: ViewContext.addFactQuery() size is 1
                  INFO: TreeGridRequestTransformer root node criteria sent to server : {spc=[189, 2014-10-14, 2014-10-14, RTF, 190:2^682|189:2, , 873|872|875|874|867|870, 141, , true, 384, 2355, 682, realTimeEquitiesFactDataSource]}
                  ERROR: Uncaught exception escaped
                  com.google.gwt.core.client.JavaScriptException: (String) @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)([JavaScript object(3419), JavaScript object(4), JavaScript object(3525)]): Invoking an instance method on a null instance
                  	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:249)
                  	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:284)
                  	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
                  	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                  	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:356)
                  	at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
                  	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                  	at java.lang.reflect.Method.invoke(Method.java:606)
                  	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                  	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                  	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
                  	at java.lang.Thread.run(Thread.java:744)
                  INFO: PivotTableGrid.TreeGridResponseTransformer
                  INFO: PivotTableGrid.TreeGridResponseTransformer - do nothing
                  ERROR: Uncaught exception escaped
                  com.google.gwt.core.client.JavaScriptException: (String) @com.google.gwt.core.client.impl.Impl::apply(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)([JavaScript object(3410), JavaScript object(3402), JavaScript object(3545)]): Invoking an instance method on a null instance
                  	at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:249)
                  	at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:576)
                  	at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject(ModuleSpace.java:284)
                  	at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject(JavaScriptHost.java:91)
                  	at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
                  	at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:356)
                  	at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
                  	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
                  	at java.lang.reflect.Method.invoke(Method.java:606)
                  	at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:103)
                  	at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
                  	at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessages(BrowserChannelServer.java:293)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:547)
                  	at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
                  	at java.lang.Thread.run(Thread.java:744)

                  Comment


                    #69
                    Here is the SmartClient Dev Console log with RPCManager and RPCManagerResponse set to DEBUG:
                    Code:
                    08:52:02.595:INFO:Log:initialized
                    08:52:03.862:INFO:Log:isc.Page is loaded
                    09:00:30.675:pointerup2:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:30.690:pointerup2:INFO:RPCXXXXXX XX:sendQueue[0]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                    09:00:30.708:pointerup2:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:30.712:pointerup2:DEBUG:RPCXXXXXX XX:XMLHttpRequest POST to http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 contentType: application/x-www-form-urlencoded; charset=UTF-8 with body -->isc_tnum=0&_transaction=<transaction xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:type="xsd:Object"><transactionNum xsi:type="xsd:long">0</transactionNum><operations xsi:type="xsd:List"><elem xsi:type="xsd:Object"><criteria xsi:type="xsd:Object"><UserID>384</UserID><ExcludeFactTableID xsi:nil="true"/><IncludeFactTableID>RTF,</IncludeFactTableID></criteria><operationConfig xsi:type="xsd:Object"><dataSource>pivot_table_view_menu_button</dataSource><operationType>fetch</operationType><textMatchStyle>exact</textMatchStyle></operationConfig><useStrictJSON xsi:type="xsd:boolean">true</useStrictJSON><appID>builtinApplication</appID><operation>pivot_table_view_menu_button_fetch</operation><oldValues xsi:type="xsd:Object"><UserID>384</UserID><ExcludeFactTableID xsi:nil="true"/><IncludeFactTableID>RTF,</IncludeFactTableID></oldValues></elem></operations></transaction>&protocolVersion=1.0<--
                    09:00:30.806:TMR5:INFO:RPCXXXXXX XX:transaction 0 arrived after 75ms
                    09:00:30.812:TMR5:DEBUG:RPCXXXXXX XX:Result string for transaction 0: "//isc_RPCResponseStart-->[{"affectedRows":0,"data":[{"id":2278,"productCode":"WRT","viewPublicFL":false,"name":"James 1","productName":"Equity RealTime"},{"id":2093,"productCode":"WRT","viewPublicFL":true,"name":"RealTime 1st View","productName":"Equity RealTime"},{"id":2355,"productCode":"WRT","viewPublicFL":false,"name":"t2","productName":"Equity RealTime"},{"id":2094,"productCode":"WRT","viewPublicFL":true,"name":"XXXXXX XX View","productName":"Equity RealTime"},{"id":2095,"productCode":"WRT","viewPublicFL":true,"name":"chris 1","productName":"Equity RealTime"},{"id":2097,"productCode":"WRT","viewPublicFL":true,"name":"Randy","productName":"Equity RealTime"},{"id":2101,"productCode":"WRT","viewPublicFL":true,"name":"jamie","productName":"Equity RealTime"},{"id":2113,"productCode":"WRT","viewPublicFL":true,"name":"Laurie's View","productName":"Equity RealTime"},{"id":2117,"productCode":"WRT","viewPublicFL":true,"name":"Liquidation Master","productName":"Equity RealTime"},{"id":2118,"productCode":"WRT","viewPublicFL":true,"name":"Test View with Refresh Rate of 1 minute","productName":"Equity RealTime"},{"id":2119,"productCode":"WRT","viewPublicFL":true,"name":"Test View - Saved Dimension Filter item","productName":"Equity RealTime"},{"id":2132,"productCode":"WRT","viewPublicFL":true,"name":"Test View - Save View with sorted column","productName":"Equity RealTime"}],"endRow":12,"invalidateCache":false,"isDSResponse":true,"operationType":"fetch","queueStatus":0,"startRow":0,"status":0,"totalRows":12}]//isc_RPCResponseEnd"
                    09:00:30.827:TMR5:INFO:RPCXXXXXX XX:rpcResponse(custom)[rpc]: result: 12 records[status=0]
                    09:00:33.343:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:33.359:INFO:RPCXXXXXX XX:sendQueue[1]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_flat_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                    09:00:33.373:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:33.378:DEBUG:RPCXXXXXX XX:XMLHttpRequest GET from http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_flat_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 with fields: {isc_tnum: 1,
                    _transaction: "<transaction xmlns:xsi="http://www.w3.or..."[230],
                    protocolVersion: "1.0"} full URL string: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_flat_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1&isc_tnum=1&_transaction=%3Ctransaction%20xmlns%3Axsi%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2F10%2FXMLSchema-instance%22%20xsi%3Atype%3D%22xsd%3AObject%22%3E%3CtransactionNum%20xsi%3Atype%3D%22xsd%3Along%22%3E1%3C%2FtransactionNum%3E%3Coperations%20xsi%3Atype%3D%22xsd%3AList%22%3E%3Celem%3E__ISC_NULL__%3C%2Felem%3E%3C%2Foperations%3E%3C%2Ftransaction%3E&protocolVersion=1.0
                    09:00:33.464:TMR2:INFO:RPCXXXXXX XX:transaction 1 arrived after 71ms
                    09:00:33.471:TMR2:DEBUG:RPCXXXXXX XX:Result string for transaction 1: "if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
                        allowAdvancedCriteria:true,
                        ID:"pivot_table_flat_fact_RTF_384_682",
                        fields:[
                            {
                                hidden:true,
                                primaryKey:true,
                                name:"id",
                                type:"integer",
                                required:true
                            },
                            {
                                detail:true,
                                hidden:true,
                                rootValue:"0",
                                name:"pid",
                                type:"integer",
                                required:true,
                                foreignKey:"pre_trade_cube.id"
                            },
                            {
                                title:"Dimensions",
                                width:"300",
                                name:"name",
                                type:"text"
                            },
                            {
                                hidden:true,
                                name:"isFolder",
                                type:"boolean"
                            },
                            {
                                hidden:true,
                                name:"isOpen",
                                type:"boolean"
                            },
                            {
                                title:"Algo",
                                desc:"Algo",
                                name:"Algo",
                                mid:"-163",
                                type:"text"
                            },
                            {
                                title:"AlgoSetting",
                                desc:"AlgoSetting",
                                name:"AlgoSetting",
                                mid:"-164",
                                type:"text"
                            },
                            {
                                title:"Basket ID",
                                desc:"Basket ID",
                                name:"BasketID",
                                mid:"-168",
                                type:"text"
                            },
                            {
                                title:"Brk Pct of Avaialble",
                                desc:"Brk Pct of Avaialble",
                                name:"BrkPctofAvaialble",
                                mid:"-178",
                                type:"text"
                            },
                            {
                                title:"Brk Pct of Interval",
                                desc:"Brk Pct of Interval",
                                name:"BrkPctofInterval",
                                mid:"-177",
                                type:"text"
                            },
                            {
                                title:"XXXXXX XX",
                                desc:"XXXXXX XX",
                                name:"XXXXXX XX",
                                mid:"-143",
                                type:"text"
                            },
                            {
                                title:"Buys or Sells",
                                desc:"Buys or Sells",
                                name:"BuysorSells",
                                mid:"-139",
                                type:"text"
                            },
                            {
                                title:"Client ID",
                                desc:"Client ID",
                                name:"ClientID",
                                mid:"-190",
                                type:"text"
                            },
                            {
                                title:"Currency",
                                desc:"Currency",
                                name:"Currency",
                                mid:"-166",
                                type:"text"
                            },
                            {
                                title:"Daily Pct Available Volume",
                                desc:"Daily Pct Available Volume",
                                name:"DailyPctAvailableVolume",
                                mid:"-174",
                                type:"text"
                            },
                            {
                                title:"Daily Pct Interval Volume",
                                desc:"Daily Pct Interval Volume",
                                name:"DailyPctIntervalVolume",
                                mid:"-175",
                                type:"text"
                            },
                            {
                                title:"Daily Pct Total Mkt",
                                desc:"Daily Pct Total Mkt",
                                name:"DailyPctTotalMkt",
                                mid:"-176",
                                type:"text"
                            },
                            {
                                title:"Electronic or Manual",
                                desc:"Electronic or Manual",
                                name:"ElectronicorManual",
                                mid:"-179",
                                type:"text"
                            },
                            {
                                title:"Industry Group",
                                desc:"Industry Group",
                                name:"IndustryGroup",
                                mid:"-173",
                                type:"text"
                            },
                            {
                                title:"Limit",
                                desc:"Limit",
                                name:"Limit",
                                mid:"-162",
                                type:"text"
                            },
                            {
                                title:"XXXXXX XX",
                                desc:"XXXXXX XX",
                                name:"XXXXXX XX",
                                mid:"-141",
                                type:"text"
                            },
                            {
                                title:"XXXXXX XX OrderId",
                                desc:"XXXXXX XX OrderId",
                                name:"XXXXXX XXOrderId",
                                mid:"-148",
                                type:"text"
                            },
                            {
                                title:"Market Cap",
                                desc:"Market Cap",
                                name:"MarketCap",
                                mid:"-170",
                                type:"text"
                            },
                            {
                                title:"Name",
                                desc:"Name",
                                name:"Name",
                                mid:"-172",
                                type:"text"
                            },
                            {
                                title:"Order ID",
                                desc:"Order ID",
                                name:"OrderID",
                                mid:"-140",
                                type:"text"
                            },
                            {
                                title:"Order Status",
                                desc:"Order Status",
                                name:"OrderStatus",
                                mid:"-165",
                                type:"text"
                            },
                            {
                                title:"Order Type",
                                desc:"Order Type",
                                name:"OrderType",
                                mid:"-167",
                                type:"text"
                            },
                            {
                                title:"PostTake",
                                desc:"PostTake",
                                name:"PostTake",
                                mid:"-161",
                                type:"text"
                            },
                            {
                                title:"Reason Code",
                                desc:"Reason Code",
                                name:"ReasonCode",
                                mid:"-144",
                                type:"text"
                            },
                            {
                                title:"Sales Instructions",
                                desc:"Sales Instructions",
                                name:"SalesInstructions",
                                mid:"-145",
                                type:"text"
                            },
                            {
                                title:"Sector",
                                desc:"Sector",
                                name:"Sector",
                                mid:"-171",
                                type:"text"
                            },
                            {
                                title:"Simulator Trader",
                                desc:"Simulator Trader",
                                name:"SimulatorTrader",
                                mid:"-169",
                                type:"text"
                            },
                            {
                                title:"Symbol",
                                desc:"Symbol",
                                name:"Symbol",
                                mid:"-138",
                                type:"text"
                            },
                            {
                                title:"Trade Date",
                                desc:"Trade Date",
                                name:"TradeDate",
                                mid:"-189",
                                type:"text"
                            },
                            {
                                title:"Trader",
                                desc:"Trader",
                                name:"Trader",
                                mid:"-142",
                                type:"text"
                            },
                            {
                                title:"Venue",
                                desc:"Venue",
                                name:"Venue",
                                mid:"-160",
                                type:"text"
                            },
                            {
                                title:"bCostToComp /BP",
                                desc:"XXXXXX XX Cost To Complete in basis points (%/100).",
                                name:"bCostToCompBP",
                                mid:"932",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /CPS",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"bCostToCompCPS",
                                mid:"933",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in thousands.",
                                name:"bCostToCompK",
                                mid:"934",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bPlcStrikeBP",
                                mid:"923",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bPlcStrikeCPS",
                                mid:"924",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bPlcStrikeK",
                                mid:"925",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /BP",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in basis points (%/100).",
                                name:"bAVWAPBP",
                                mid:"929",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /CPS",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in cents per share.",
                                name:"bAVWAPCPS",
                                mid:"930",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /K",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in thousands.",
                                name:"bAVWAPK",
                                mid:"931",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bIVWAPBP",
                                mid:"926",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bIVWAPCPS",
                                mid:"927",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bIVWAPK",
                                mid:"928",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /K",
                                desc:"XXXXXX XX Opportunity Cost at entry in thousands.",
                                name:"dOppCostK",
                                mid:"874",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /BP",
                                desc:"XXXXXX XX Opportunity Cost at entry in basis points (%/100).",
                                name:"dOppCostBP",
                                mid:"875",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /CPS",
                                desc:"XXXXXX XX Opportunity Cost at entry in cents per share.",
                                name:"dOppCostCPS",
                                mid:"876",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"dCostToCompCPS",
                                mid:"879",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /K",
                                desc:"XXXXXX XX Strike cost at entry in thousands.",
                                name:"dEntStrikeK",
                                mid:"865",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /BP",
                                desc:"XXXXXX XX Strike cost at entry in basis points (%/100).",
                                name:"dEntStrikeBP",
                                mid:"866",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /CPS",
                                desc:"XXXXXX XX Strike cost at entry in cents per share.",
                                name:"dEntStrikeCPS",
                                mid:"867",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /CPS",
                                desc:"AVWAP in cents per share.",
                                name:"dAVWAPCPS",
                                mid:"917",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /K",
                                desc:"AVWAP in thousands.",
                                name:"dAVWAPK",
                                mid:"918",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /BP",
                                desc:"AVWAP in bais points (%/100).",
                                name:"dAVWAPBP",
                                mid:"916",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /K",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in thousands.",
                                name:"dIVWAPK",
                                mid:"868",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /BP",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in basis points (%/100).",
                                name:"dIVWAPBP",
                                mid:"869",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /CPS",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in cents per share.",
                                name:"dIVWAPCPS",
                                mid:"870",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prior Close Prin /K",
                                desc:"Principal executed in thousands based on prior close.",
                                name:"PriorClosePrinK",
                                mid:"941",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /CPS",
                                desc:"Close in cents per share.",
                                name:"dCloseCPS",
                                mid:"920",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /K",
                                desc:"Close in thousands.",
                                name:"dCloseK",
                                mid:"921",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /BP",
                                desc:"Close in bais points (%/100).",
                                name:"dCloseBP",
                                mid:"919",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /BP",
                                desc:"Open in bais points (%/100).",
                                name:"dOpenBP",
                                mid:"910",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /CPS",
                                desc:"Open in cents per share.",
                                name:"dOpenCPS",
                                mid:"911",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /K",
                                desc:"Open in thousands.",
                                name:"dOpenK",
                                mid:"912",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /BP",
                                desc:"Prior close in basis points (%/100).",
                                name:"PriorCloseBP",
                                mid:"907",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /CPS",
                                desc:"Prior close in cents per share.",
                                name:"PriorCloseCPS",
                                mid:"908",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /K",
                                desc:"Prior close in thousands.",
                                name:"PriorCloseK",
                                mid:"909",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose",
                                desc:"Prior close price.",
                                name:"PriorClose",
                                mid:"922",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /BP",
                                desc:"VWAP in bais points (%/100).",
                                name:"dVWAPBP",
                                mid:"913",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /CPS",
                                desc:"VWAP in cents per share.",
                                name:"dVWAPCPS",
                                mid:"914",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /K",
                                desc:"VWAP in thousands.",
                                name:"dVWAPK",
                                mid:"915",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Ave Price",
                                desc:"Ave Price",
                                name:"AvePrice",
                                mid:"906",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /CPS",
                                desc:"Remaining principal in thousands.",
                                name:"PrinLeavesK",
                                mid:"881",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Leaves /K",
                                desc:"Principal executed and remaining principal in thousands.",
                                name:"PrinTotalK",
                                mid:"882",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed",
                                desc:"Principal executed.",
                                name:"PrinExecuted",
                                mid:"883",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed /K",
                                desc:"Principal executed in thousands.",
                                name:"PrinExecutedK",
                                mid:"871",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Ordered",
                                desc:"Number of Shares Ordered.",
                                name:"SharesOrdered",
                                mid:"872",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Remaining",
                                desc:"Number of Shares Outstanding.",
                                name:"SharesRemaining",
                                mid:"873",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares",
                                desc:"Number of Shares Traded.",
                                name:"Shares",
                                mid:"880",
                                format:"#,##0.00",
                                type:"float"
                            }
                        ],
                        serverType:"generic"
                    })
                    "
                    09:00:33.484:TMR2:INFO:RPCXXXXXX XX:rpcResponse(unstructured) results -->"if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
                        allowAdvancedCriteria:true,
                        ID:"pivot_table_flat_fact_RTF_384_682",
                        fields:[
                            {
                                hidden:true,
                                primaryKey:true,
                                name:"id",
                                type:"integer",
                                required:true
                            },
                            {
                                detail:true,
                                hidden:true,
                                rootValue:"0",
                                name:"pid",
                                type:"integer",
                                required:true,
                                foreignKey:"pre_trade_cube.id"
                            },
                            {
                                title:"Dimensions",
                                width:"300",
                                name:"name",
                                type:"text"
                            },
                            {
                                hidden:true,
                                name:"isFolder",
                                type:"boolean"
                            },
                            {
                                hidden:true,
                                name:"isOpen",
                                type:"boolean"
                            },
                            {
                                title:"Algo",
                                desc:"Algo",
                                name:"Algo",
                                mid:"-163",
                                type:"text"
                            },
                            {
                                title:"AlgoSetting",
                                desc:"AlgoSetting",
                                name:"AlgoSetting",
                                mid:"-164",
                                type:"text"
                            },
                            {
                                title:"Basket ID",
                                desc:"Basket ID",
                                name:"BasketID",
                                mid:"-168",
                                type:"text"
                            },
                            {
                                title:"Brk Pct of Avaialble",
                                desc:"Brk Pct of Avaialble",
                                name:"BrkPctofAvaialble",
                                mid:"-178",
                                type:"text"
                            },
                            {
                                title:"Brk Pct of Interval",
                                desc:"Brk Pct of Interval",
                                name:"BrkPctofInterval",
                                mid:"-177",
                                type:"text"
                            },
                            {
                                title:"XXXXXX XX",
                                desc:"XXXXXX XX",
                                name:"XXXXXX XX",
                                mid:"-143",
                                type:"text"
                            },
                            {
                                title:"Buys or Sells",
                                desc:"Buys or Sells",
                                name:"BuysorSells",
                                mid:"-139",
                                type:"text"
                            },
                            {
                                title:"Client ID",
                                desc:"Client ID",
                                name:"ClientID",
                                mid:"-190",
                                type:"text"
                            },
                            {
                                title:"Currency",
                                desc:"Currency",
                                name:"Currency",
                                mid:"-166",
                                type:"text"
                            },
                            {
                                title:"Daily Pct Available Volume",
                                desc:"Daily Pct Available Volume",
                                name:"DailyPctAvailableVolume",
                                mid:"-174",
                                type:"text"
                            },
                            {
                                title:"Daily Pct Interval Volume",
                                desc:"Daily Pct Interval Volume",
                                name:"DailyPctIntervalVolume",
                                mid:"-175",
                                type:"text"
                            },
                            {
                                title:"Daily Pct Total Mkt",
                                desc:"Daily Pct Total Mkt",
                                name:"DailyPctTotalMkt",
                                mid:"-176",
                                type:"text"
                            },
                            {
                                title:"Electronic or Manual",
                                desc:"Electronic or Manual",
                                name:"ElectronicorManual",
                                mid:"-179",
                                type:"text"
                            },
                            {
                                title:"Industry Group",
                                desc:"Industry Group",
                                name:"IndustryGroup",
                                mid:"-173",
                                type:"text"
                            },
                            {
                                title:"Limit",
                                desc:"Limit",
                                name:"Limit",
                                mid:"-162",
                                type:"text"
                            },
                            {
                                title:"XXXXXX XX",
                                desc:"XXXXXX XX",
                                name:"XXXXXX XX",
                                mid:"-141",
                                type:"text"
                            },
                            {
                                title:"XXXXXX XX OrderId",
                                desc:"XXXXXX XX OrderId",
                                name:"XXXXXX XXOrderId",
                                mid:"-148",
                                type:"text"
                            },
                            {
                                title:"Market Cap",
                                desc:"Market Cap",
                                name:"MarketCap",
                                mid:"-170",
                                type:"text"
                            },
                            {
                                title:"Name",
                                desc:"Name",
                                name:"Name",
                                mid:"-172",
                                type:"text"
                            },
                            {
                                title:"Order ID",
                                desc:"Order ID",
                                name:"OrderID",
                                mid:"-140",
                                type:"text"
                            },
                            {
                                title:"Order Status",
                                desc:"Order Status",
                                name:"OrderStatus",
                                mid:"-165",
                                type:"text"
                            },
                            {
                                title:"Order Type",
                                desc:"Order Type",
                                name:"OrderType",
                                mid:"-167",
                                type:"text"
                            },
                            {
                                title:"PostTake",
                                desc:"PostTake",
                                name:"PostTake",
                                mid:"-161",
                                type:"text"
                            },
                            {
                                title:"Reason Code",
                                desc:"Reason Code",
                                name:"ReasonCode",
                                mid:"-144",
                                type:"text"
                            },
                            {
                                title:"Sales Instructions",
                                desc:"Sales Instructions",
                                name:"SalesInstructions",
                                mid:"-145",
                                type:"text"
                            },
                            {
                                title:"Sector",
                                desc:"Sector",
                                name:"Sector",
                                mid:"-171",
                                type:"text"
                            },
                            {
                                title:"Simulator Trader",
                                desc:"Simulator Trader",
                                name:"SimulatorTrader",
                                mid:"-169",
                                type:"text"
                            },
                            {
                                title:"Symbol",
                                desc:"Symbol",
                                name:"Symbol",
                                mid:"-138",
                                type:"text"
                            },
                            {
                                title:"Trade Date",
                                desc:"Trade Date",
                                name:"TradeDate",
                                mid:"-189",
                                type:"text"
                            },
                            {
                                title:"Trader",
                                desc:"Trader",
                                name:"Trader",
                                mid:"-142",
                                type:"text"
                            },
                            {
                                title:"Venue",
                                desc:"Venue",
                                name:"Venue",
                                mid:"-160",
                                type:"text"
                            },
                            {
                                title:"bCostToComp /BP",
                                desc:"XXXXXX XX Cost To Complete in basis points (%/100).",
                                name:"bCostToCompBP",
                                mid:"932",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /CPS",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"bCostToCompCPS",
                                mid:"933",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in thousands.",
                                name:"bCostToCompK",
                                mid:"934",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bPlcStrikeBP",
                                mid:"923",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bPlcStrikeCPS",
                                mid:"924",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bPlcStrikeK",
                                mid:"925",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /BP",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in basis points (%/100).",
                                name:"bAVWAPBP",
                                mid:"929",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /CPS",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in cents per share.",
                                name:"bAVWAPCPS",
                                mid:"930",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /K",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in thousands.",
                                name:"bAVWAPK",
                                mid:"931",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bIVWAPBP",
                                mid:"926",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bIVWAPCPS",
                                mid:"927",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bIVWAPK",
                                mid:"928",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /K",
                                desc:"XXXXXX XX Opportunity Cost at entry in thousands.",
                                name:"dOppCostK",
                                mid:"874",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /BP",
                                desc:"XXXXXX XX Opportunity Cost at entry in basis points (%/100).",
                                name:"dOppCostBP",
                                mid:"875",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /CPS",
                                desc:"XXXXXX XX Opportunity Cost at entry in cents per share.",
                                name:"dOppCostCPS",
                                mid:"876",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"dCostToCompCPS",
                                mid:"879",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /K",
                                desc:"XXXXXX XX Strike cost at entry in thousands.",
                                name:"dEntStrikeK",
                                mid:"865",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /BP",
                                desc:"XXXXXX XX Strike cost at entry in basis points (%/100).",
                                name:"dEntStrikeBP",
                                mid:"866",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /CPS",
                                desc:"XXXXXX XX Strike cost at entry in cents per share.",
                                name:"dEntStrikeCPS",
                                mid:"867",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /CPS",
                                desc:"AVWAP in cents per share.",
                                name:"dAVWAPCPS",
                                mid:"917",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /K",
                                desc:"AVWAP in thousands.",
                                name:"dAVWAPK",
                                mid:"918",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /BP",
                                desc:"AVWAP in bais points (%/100).",
                                name:"dAVWAPBP",
                                mid:"916",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /K",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in thousands.",
                                name:"dIVWAPK",
                                mid:"868",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /BP",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in basis points (%/100).",
                                name:"dIVWAPBP",
                                mid:"869",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /CPS",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in cents per share.",
                                name:"dIVWAPCPS",
                                mid:"870",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prior Close Prin /K",
                                desc:"Principal executed in thousands based on prior close.",
                                name:"PriorClosePrinK",
                                mid:"941",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /CPS",
                                desc:"Close in cents per share.",
                                name:"dCloseCPS",
                                mid:"920",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /K",
                                desc:"Close in thousands.",
                                name:"dCloseK",
                                mid:"921",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /BP",
                                desc:"Close in bais points (%/100).",
                                name:"dCloseBP",
                                mid:"919",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /BP",
                                desc:"Open in bais points (%/100).",
                                name:"dOpenBP",
                                mid:"910",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /CPS",
                                desc:"Open in cents per share.",
                                name:"dOpenCPS",
                                mid:"911",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /K",
                                desc:"Open in thousands.",
                                name:"dOpenK",
                                mid:"912",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /BP",
                                desc:"Prior close in basis points (%/100).",
                                name:"PriorCloseBP",
                                mid:"907",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /CPS",
                                desc:"Prior close in cents per share.",
                                name:"PriorCloseCPS",
                                mid:"908",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /K",
                                desc:"Prior close in thousands.",
                                name:"PriorCloseK",
                                mid:"909",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose",
                                desc:"Prior close price.",
                                name:"PriorClose",
                                mid:"922",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /BP",
                                desc:"VWAP in bais points (%/100).",
                                name:"dVWAPBP",
                                mid:"913",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /CPS",
                                desc:"VWAP in cents per share.",
                                name:"dVWAPCPS",
                                mid:"914",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /K",
                                desc:"VWAP in thousands.",
                                name:"dVWAPK",
                                mid:"915",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Ave Price",
                                desc:"Ave Price",
                                name:"AvePrice",
                                mid:"906",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /CPS",
                                desc:"Remaining principal in thousands.",
                                name:"PrinLeavesK",
                                mid:"881",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Leaves /K",
                                desc:"Principal executed and remaining principal in thousands.",
                                name:"PrinTotalK",
                                mid:"882",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed",
                                desc:"Principal executed.",
                                name:"PrinExecuted",
                                mid:"883",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed /K",
                                desc:"Principal executed in thousands.",
                                name:"PrinExecutedK",
                                mid:"871",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Ordered",
                                desc:"Number of Shares Ordered.",
                                name:"SharesOrdered",
                                mid:"872",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Remaining",
                                desc:"Number of Shares Outstanding.",
                                name:"SharesRemaining",
                                mid:"873",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares",
                                desc:"Number of Shares Traded.",
                                name:"Shares",
                                mid:"880",
                                format:"#,##0.00",
                                type:"float"
                            }
                        ],
                        serverType:"generic"
                    })
                    "<--
                    09:00:33.517:TMR2:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:33.531:TMR2:INFO:RPCXXXXXX XX:sendQueue[2]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                    09:00:33.546:TMR2:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:33.550:TMR2:DEBUG:RPCXXXXXX XX:XMLHttpRequest POST to http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 contentType: application/x-www-form-urlencoded; charset=UTF-8 with body -->isc_tnum=2&_transaction=<transaction xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:type="xsd:Object"><transactionNum xsi:type="xsd:long">2</transactionNum><operations xsi:type="xsd:List"><elem xsi:type="xsd:Object"><criteria xsi:type="xsd:Object"><UserID>384</UserID><FactTableID>RTF</FactTableID></criteria><operationConfig xsi:type="xsd:Object"><dataSource>pivot_table_report_launcher_list</dataSource><operationType>fetch</operationType><textMatchStyle>exact</textMatchStyle></operationConfig><useStrictJSON xsi:type="xsd:boolean">true</useStrictJSON><appID>builtinApplication</appID><operation>pivot_table_report_launcher_list_fetch</operation><oldValues xsi:type="xsd:Object"><UserID>384</UserID><FactTableID>RTF</FactTableID></oldValues></elem></operations></transaction>&protocolVersion=1.0<--
                    09:00:38.052:TMR2:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:38.074:TMR2:INFO:RPCXXXXXX XX:sendQueue[3]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                    09:00:38.098:TMR2:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:38.102:TMR2:DEBUG:RPCXXXXXX XX:XMLHttpRequest GET from http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 with fields: {isc_tnum: 3,
                    _transaction: "<transaction xmlns:xsi="http://www.w3.or..."[230],
                    protocolVersion: "1.0"} full URL string: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1&isc_tnum=3&_transaction=%3Ctransaction%20xmlns%3Axsi%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2F10%2FXMLSchema-instance%22%20xsi%3Atype%3D%22xsd%3AObject%22%3E%3CtransactionNum%20xsi%3Atype%3D%22xsd%3Along%22%3E3%3C%2FtransactionNum%3E%3Coperations%20xsi%3Atype%3D%22xsd%3AList%22%3E%3Celem%3E__ISC_NULL__%3C%2Felem%3E%3C%2Foperations%3E%3C%2Ftransaction%3E&protocolVersion=1.0
                    09:00:42.378:MOU3:WARN:Log:GWT uncaught exceptions have been encountered.  Check the Development Mode console for more details.
                    09:00:42.420:TMR7:INFO:RPCXXXXXX XX:transaction 3 arrived after 4305ms
                    09:00:42.424:TMR7:DEBUG:RPCXXXXXX XX:Result string for transaction 3: "if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
                        allowAdvancedCriteria:true,
                        ID:"pivot_table_tree_fact_RTF_384_682",
                        fields:[
                            {
                                hidden:true,
                                primaryKey:true,
                                name:"cid",
                                type:"text",
                                required:true
                            },
                            {
                                hidden:true,
                                name:"pid",
                                type:"text",
                                required:true,
                                foreignKey:"cid"
                            },
                            {
                                title:"Dimensions",
                                width:"300",
                                name:"name",
                                type:"text"
                            },
                            {
                                title:"bCostToComp /BP",
                                desc:"XXXXXX XX Cost To Complete in basis points (%/100).",
                                name:"bCostToCompBP",
                                mid:"932",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /CPS",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"bCostToCompCPS",
                                mid:"933",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in thousands.",
                                name:"bCostToCompK",
                                mid:"934",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bPlcStrikeBP",
                                mid:"923",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bPlcStrikeCPS",
                                mid:"924",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bPlcStrikeK",
                                mid:"925",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /BP",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in basis points (%/100).",
                                name:"bAVWAPBP",
                                mid:"929",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /CPS",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in cents per share.",
                                name:"bAVWAPCPS",
                                mid:"930",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /K",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in thousands.",
                                name:"bAVWAPK",
                                mid:"931",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bIVWAPBP",
                                mid:"926",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bIVWAPCPS",
                                mid:"927",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bIVWAPK",
                                mid:"928",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /K",
                                desc:"XXXXXX XX Opportunity Cost at entry in thousands.",
                                name:"dOppCostK",
                                mid:"874",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /BP",
                                desc:"XXXXXX XX Opportunity Cost at entry in basis points (%/100).",
                                name:"dOppCostBP",
                                mid:"875",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /CPS",
                                desc:"XXXXXX XX Opportunity Cost at entry in cents per share.",
                                name:"dOppCostCPS",
                                mid:"876",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"dCostToCompCPS",
                                mid:"879",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /K",
                                desc:"XXXXXX XX Strike cost at entry in thousands.",
                                name:"dEntStrikeK",
                                mid:"865",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /BP",
                                desc:"XXXXXX XX Strike cost at entry in basis points (%/100).",
                                name:"dEntStrikeBP",
                                mid:"866",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /CPS",
                                desc:"XXXXXX XX Strike cost at entry in cents per share.",
                                name:"dEntStrikeCPS",
                                mid:"867",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /CPS",
                                desc:"AVWAP in cents per share.",
                                name:"dAVWAPCPS",
                                mid:"917",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /K",
                                desc:"AVWAP in thousands.",
                                name:"dAVWAPK",
                                mid:"918",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /BP",
                                desc:"AVWAP in bais points (%/100).",
                                name:"dAVWAPBP",
                                mid:"916",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /K",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in thousands.",
                                name:"dIVWAPK",
                                mid:"868",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /BP",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in basis points (%/100).",
                                name:"dIVWAPBP",
                                mid:"869",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /CPS",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in cents per share.",
                                name:"dIVWAPCPS",
                                mid:"870",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prior Close Prin /K",
                                desc:"Principal executed in thousands based on prior close.",
                                name:"PriorClosePrinK",
                                mid:"941",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /CPS",
                                desc:"Close in cents per share.",
                                name:"dCloseCPS",
                                mid:"920",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /K",
                                desc:"Close in thousands.",
                                name:"dCloseK",
                                mid:"921",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /BP",
                                desc:"Close in bais points (%/100).",
                                name:"dCloseBP",
                                mid:"919",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /BP",
                                desc:"Open in bais points (%/100).",
                                name:"dOpenBP",
                                mid:"910",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /CPS",
                                desc:"Open in cents per share.",
                                name:"dOpenCPS",
                                mid:"911",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /K",
                                desc:"Open in thousands.",
                                name:"dOpenK",
                                mid:"912",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /BP",
                                desc:"Prior close in basis points (%/100).",
                                name:"PriorCloseBP",
                                mid:"907",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /CPS",
                                desc:"Prior close in cents per share.",
                                name:"PriorCloseCPS",
                                mid:"908",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /K",
                                desc:"Prior close in thousands.",
                                name:"PriorCloseK",
                                mid:"909",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose",
                                desc:"Prior close price.",
                                name:"PriorClose",
                                mid:"922",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /BP",
                                desc:"VWAP in bais points (%/100).",
                                name:"dVWAPBP",
                                mid:"913",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /CPS",
                                desc:"VWAP in cents per share.",
                                name:"dVWAPCPS",
                                mid:"914",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /K",
                                desc:"VWAP in thousands.",
                                name:"dVWAPK",
                                mid:"915",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Ave Price",
                                desc:"Ave Price",
                                name:"AvePrice",
                                mid:"906",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /CPS",
                                desc:"Remaining principal in thousands.",
                                name:"PrinLeavesK",
                                mid:"881",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Leaves /K",
                                desc:"Principal executed and remaining principal in thousands.",
                                name:"PrinTotalK",
                                mid:"882",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed",
                                desc:"Principal executed.",
                                name:"PrinExecuted",
                                mid:"883",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed /K",
                                desc:"Principal executed in thousands.",
                                name:"PrinExecutedK",
                                mid:"871",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Ordered",
                                desc:"Number of Shares Ordered.",
                                name:"SharesOrdered",
                                mid:"872",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Remaining",
                                desc:"Number of Shares Outstanding.",
                                name:"SharesRemaining",
                                mid:"873",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares",
                                desc:"Number of Shares Traded.",
                                name:"Shares",
                                mid:"880",
                                format:"#,##0.00",
                                type:"float"
                            }
                        ],
                        serverType:"generic"
                    })
                    "
                    09:00:42.438:TMR7:INFO:RPCXXXXXX XX:rpcResponse(unstructured) results -->"if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
                        allowAdvancedCriteria:true,
                        ID:"pivot_table_tree_fact_RTF_384_682",
                        fields:[
                            {
                                hidden:true,
                                primaryKey:true,
                                name:"cid",
                                type:"text",
                                required:true
                            },
                            {
                                hidden:true,
                                name:"pid",
                                type:"text",
                                required:true,
                                foreignKey:"cid"
                            },
                            {
                                title:"Dimensions",
                                width:"300",
                                name:"name",
                                type:"text"
                            },
                            {
                                title:"bCostToComp /BP",
                                desc:"XXXXXX XX Cost To Complete in basis points (%/100).",
                                name:"bCostToCompBP",
                                mid:"932",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /CPS",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"bCostToCompCPS",
                                mid:"933",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in thousands.",
                                name:"bCostToCompK",
                                mid:"934",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bPlcStrikeBP",
                                mid:"923",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bPlcStrikeCPS",
                                mid:"924",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bPlcStrike /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bPlcStrikeK",
                                mid:"925",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /BP",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in basis points (%/100).",
                                name:"bAVWAPBP",
                                mid:"929",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /CPS",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in cents per share.",
                                name:"bAVWAPCPS",
                                mid:"930",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bAVWAP /K",
                                desc:"XXXXXX XX Available VWAP from trade placement to close in thousands.",
                                name:"bAVWAPK",
                                mid:"931",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /BP",
                                desc:"XXXXXX XX Placement Strike in bais points (%/100).",
                                name:"bIVWAPBP",
                                mid:"926",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /CPS",
                                desc:"XXXXXX XX Placement in cents per share.",
                                name:"bIVWAPCPS",
                                mid:"927",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"bIVWAP /K",
                                desc:"XXXXXX XX Placement in thousands.",
                                name:"bIVWAPK",
                                mid:"928",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /K",
                                desc:"XXXXXX XX Opportunity Cost at entry in thousands.",
                                name:"dOppCostK",
                                mid:"874",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /BP",
                                desc:"XXXXXX XX Opportunity Cost at entry in basis points (%/100).",
                                name:"dOppCostBP",
                                mid:"875",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOppCost /CPS",
                                desc:"XXXXXX XX Opportunity Cost at entry in cents per share.",
                                name:"dOppCostCPS",
                                mid:"876",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /K",
                                desc:"XXXXXX XX Cost To Complete in cents per share.",
                                name:"dCostToCompCPS",
                                mid:"879",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /K",
                                desc:"XXXXXX XX Strike cost at entry in thousands.",
                                name:"dEntStrikeK",
                                mid:"865",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /BP",
                                desc:"XXXXXX XX Strike cost at entry in basis points (%/100).",
                                name:"dEntStrikeBP",
                                mid:"866",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dEntStrike /CPS",
                                desc:"XXXXXX XX Strike cost at entry in cents per share.",
                                name:"dEntStrikeCPS",
                                mid:"867",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /CPS",
                                desc:"AVWAP in cents per share.",
                                name:"dAVWAPCPS",
                                mid:"917",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /K",
                                desc:"AVWAP in thousands.",
                                name:"dAVWAPK",
                                mid:"918",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dAVWAP /BP",
                                desc:"AVWAP in bais points (%/100).",
                                name:"dAVWAPBP",
                                mid:"916",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /K",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in thousands.",
                                name:"dIVWAPK",
                                mid:"868",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /BP",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in basis points (%/100).",
                                name:"dIVWAPBP",
                                mid:"869",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dIVWAP /CPS",
                                desc:"XXXXXX XX Interval VWAP from entry to last execution in cents per share.",
                                name:"dIVWAPCPS",
                                mid:"870",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prior Close Prin /K",
                                desc:"Principal executed in thousands based on prior close.",
                                name:"PriorClosePrinK",
                                mid:"941",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /CPS",
                                desc:"Close in cents per share.",
                                name:"dCloseCPS",
                                mid:"920",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /K",
                                desc:"Close in thousands.",
                                name:"dCloseK",
                                mid:"921",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dClose /BP",
                                desc:"Close in bais points (%/100).",
                                name:"dCloseBP",
                                mid:"919",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /BP",
                                desc:"Open in bais points (%/100).",
                                name:"dOpenBP",
                                mid:"910",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /CPS",
                                desc:"Open in cents per share.",
                                name:"dOpenCPS",
                                mid:"911",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dOpen /K",
                                desc:"Open in thousands.",
                                name:"dOpenK",
                                mid:"912",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /BP",
                                desc:"Prior close in basis points (%/100).",
                                name:"PriorCloseBP",
                                mid:"907",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /CPS",
                                desc:"Prior close in cents per share.",
                                name:"PriorCloseCPS",
                                mid:"908",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose /K",
                                desc:"Prior close in thousands.",
                                name:"PriorCloseK",
                                mid:"909",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"PriorClose",
                                desc:"Prior close price.",
                                name:"PriorClose",
                                mid:"922",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /BP",
                                desc:"VWAP in bais points (%/100).",
                                name:"dVWAPBP",
                                mid:"913",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /CPS",
                                desc:"VWAP in cents per share.",
                                name:"dVWAPCPS",
                                mid:"914",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dVWAP /K",
                                desc:"VWAP in thousands.",
                                name:"dVWAPK",
                                mid:"915",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Ave Price",
                                desc:"Ave Price",
                                name:"AvePrice",
                                mid:"906",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"dCostToComp /CPS",
                                desc:"Remaining principal in thousands.",
                                name:"PrinLeavesK",
                                mid:"881",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Leaves /K",
                                desc:"Principal executed and remaining principal in thousands.",
                                name:"PrinTotalK",
                                mid:"882",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed",
                                desc:"Principal executed.",
                                name:"PrinExecuted",
                                mid:"883",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Prin Executed /K",
                                desc:"Principal executed in thousands.",
                                name:"PrinExecutedK",
                                mid:"871",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Ordered",
                                desc:"Number of Shares Ordered.",
                                name:"SharesOrdered",
                                mid:"872",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares Remaining",
                                desc:"Number of Shares Outstanding.",
                                name:"SharesRemaining",
                                mid:"873",
                                format:"#,##0.00",
                                type:"float"
                            },
                            {
                                title:"Shares",
                                desc:"Number of Shares Traded.",
                                name:"Shares",
                                mid:"880",
                                format:"#,##0.00",
                                type:"float"
                            }
                        ],
                        serverType:"generic"
                    })
                    "<--
                    09:00:56.113:TMR7:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:56.149:TMR7:INFO:RPCXXXXXX XX:sendQueue[4]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                    09:00:56.187:TMR7:DEBUG:RPCXXXXXX XX:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                    09:00:56.197:TMR7:DEBUG:RPCXXXXXX XX:XMLHttpRequest POST to http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 contentType: application/x-www-form-urlencoded; charset=UTF-8 with body -->isc_tnum=4&_transaction=<transaction xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:type="xsd:Object"><transactionNum xsi:type="xsd:long">4</transactionNum><operations xsi:type="xsd:List"><elem xsi:type="xsd:Object"><criteria xsi:type="xsd:Object"><spc xsi:type="xsd:List"><elem>189</elem><elem>2014-10-14</elem><elem>2014-10-14</elem><elem>RTF</elem><elem>190:2^682|189:2</elem><elem></elem><elem>873|872|875|874|867|870</elem><elem>141</elem><elem></elem><elem>true</elem><elem>384</elem><elem>2355</elem><elem>682</elem><elem>realTimeEquitiesFactDataSource</elem></spc></criteria><operationConfig xsi:type="xsd:Object"><dataSource>pivot_table_tree_fact_RTF_384_682</dataSource><operationType>fetch</operationType><textMatchStyle>exact</textMatchStyle></operationConfig><useStrictJSON xsi:type="xsd:boolean">true</useStrictJSON><appID>builtinApplication</appID><operation>pivot_table_tree_fact_RTF_384_682_fetch</operation><oldValues xsi:type="xsd:Object"><spc xsi:type="xsd:List"><elem>189</elem><elem>2014-10-14</elem><elem>2014-10-14</elem><elem>RTF</elem><elem>190:2^682|189:2</elem><elem></elem><elem>873|872|875|874|867|870</elem><elem>141</elem><elem></elem><elem>true</elem><elem>384</elem><elem>2355</elem><elem>682</elem><elem>realTimeEquitiesFactDataSource</elem></spc></oldValues></elem></operations></transaction>&protocolVersion=1.0<--
                    09:00:56.257:TMR8:INFO:RPCXXXXXX XX:transaction 2 arrived after 22679ms
                    09:00:56.262:TMR8:DEBUG:RPCXXXXXX XX:Result string for transaction 2: "//isc_RPCResponseStart-->[{"affectedRows":0,"data":[],"endRow":0,"invalidateCache":false,"isDSResponse":true,"operationType":"fetch","queueStatus":0,"startRow":0,"status":0,"totalRows":0}]//isc_RPCResponseEnd"
                    09:00:56.278:TMR8:INFO:RPCXXXXXX XX:rpcResponse(custom)[rpc]: result: 0 records[status=0]
                    09:01:50.627:TMR3:INFO:RPCXXXXXX XX:transaction 4 arrived after 54406ms
                    09:01:50.630:TMR3:DEBUG:RPCXXXXXX XX:Result string for transaction 4: "//isc_RPCResponseStart-->[{"affectedRows":0,"data":[{"SharesOrdered":40373,"dOppCostBP":0.0,"SharesRemaining":40373,"dIVWAPCPS":0.0,"name":"Grand Total","cid":"Grand Total","dEntStrikeCPS":0.0},{"SharesOrdered":2872,"dOppCostBP":0.0,"SharesRemaining":2872,"dIVWAPCPS":0.0,"name":"XXXXXXX XXXXXXXXXXX","pid":"Grand Total","cid":"XXXXXXX XXXXXXXXXXX","dEntStrikeCPS":0.0},{"SharesOrdered":37500,"dOppCostBP":0.0,"SharesRemaining":37500,"dIVWAPCPS":0.0,"name":"XXXXXXX XXXXXXXXXXX","pid":"Grand Total","cid":"XXXXXXX XXXXXXXXXXX","dEntStrikeCPS":0.0},{"SharesOrdered":1,"SharesRemaining":1,"dIVWAPCPS":0.0,"name":"TEST ICC MODIFICATION","pid":"Grand Total","cid":"TEST ICC MODIFICATION","dEntStrikeCPS":0.0}],"endRow":3,"invalidateCache":false,"isDSResponse":true,"queueStatus":0,"startRow":0,"status":0,"totalRows":4}]//isc_RPCResponseEnd"
                    09:01:50.644:TMR3:INFO:RPCXXXXXX XX:rpcResponse(custom)[rpc]: result: 4 records[status=0]
                    There are two DataSources being requested in this log, the one to pay attention to is pivot_table_tree_fact_RTF_384_682.

                    The series of events taking into account of the breakpoints set in the code listing above:
                    ------------------------------------------------------------------------------
                    ->Breakpoint : DataSource.load(pivot_table_tree_fact_RTF_384_682, Function)
                    Click Continue in debugger : RPCRequest for DatatSource.load(Function) goes out and is waiting for the RPCResponse, and we get a pop-up error.
                    We see a browser pop-up error (GWT JS errors).
                    Click OK to the error.

                    ->Breakpoint : Function.execute() - DataSource.get(pivot_table_tree_fact_RTF_384_682)
                    Click continue in the debugger.

                    ->Breakpoint : DataSource.fetch()
                    Click continue in the debugger.
                    We see the RPCResponse come back for the DataSource.load().
                    We see the DSRequest go out for the DataSource.fetch().
                    We see a pop-up error (GWT JS) and the DSRequest is waiting for the DSResponse.
                    Click OK on the pop-up error.
                    We see the DSResponse come back for the DataSource.fetch() and we get another pop-up error (GWT JS).
                    Click OK and the TreeGrid is wedged.

                    All of the listings above are complete.

                    In a nutshell, here are when we are seeing the GWT pop-up errors:
                    1. DataSource.load() RPCRequest goes out.
                    2. DataSource.fetch() DSRequest goes out.
                    3. DSRequest comes back.
                    Last edited by JLivermore; 14 Oct 2014, 05:45.

                    Comment


                      #70
                      RPCRequest from DataSource.load
                      Code:
                      {
                          "actionURL":"http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_RTF_384_682", 
                          "showPrompt":false, 
                          "transport":"xmlHttpRequest", 
                          "promptStyle":"cursor", 
                          "httpMethod":"GET", 
                          "willHandleError":true, 
                          "data":null
                      }
                      RPCResponse to DataSource.load
                      Code:
                      {
                          ID:"pivot_table_tree_fact_RTF_384_682", 
                          serverType:"generic", 
                          fields:[
                              {
                                  hidden:true, 
                                  primaryKey:true, 
                                  name:"cid", 
                                  type:"text", 
                                  required:true
                              }, 
                              {
                                  hidden:true, 
                                  name:"pid", 
                                  type:"text", 
                                  required:true, 
                                  foreignKey:"cid", 
                                  nillable:true
                              }, 
                              {
                                  title:"Dimensions", 
                                  width:"300", 
                                  name:"name", 
                                  type:"text"
                              }, 
                              {
                                  title:"bCostToComp /BP", 
                                  desc:"XXXXXX XXX Cost To Complete in basis points (%/100).", 
                                  name:"bCostToCompBP", 
                                  mid:"932", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bCostToComp /CPS", 
                                  desc:"XXXXXX XXX Cost To Complete in cents per share.", 
                                  name:"bCostToCompCPS", 
                                  mid:"933", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bCostToComp /K", 
                                  desc:"XXXXXX XXX Cost To Complete in thousands.", 
                                  name:"bCostToCompK", 
                                  mid:"934", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bPlcStrike /BP", 
                                  desc:"XXXXXX XXX Strike in bais points (%/100).", 
                                  name:"bPlcStrikeBP", 
                                  mid:"923", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bPlcStrike /CPS", 
                                  desc:"XXXXXX XXX in cents per share.", 
                                  name:"bPlcStrikeCPS", 
                                  mid:"924", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bPlcStrike /K", 
                                  desc:"XXXXXX XXX in thousands.", 
                                  name:"bPlcStrikeK", 
                                  mid:"925", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bAXXXXX /BP", 
                                  desc:"XXXXXX XXX Available XXXXX from trade placement to close in basis points (%/100).", 
                                  name:"bAXXXXXBP", 
                                  mid:"929", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bAXXXXX /CPS", 
                                  desc:"XXXXXX XXX Available XXXXX from trade placement to close in cents per share.", 
                                  name:"bAXXXXXCPS", 
                                  mid:"930", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bAXXXXX /K", 
                                  desc:"XXXXXX XXX Available XXXXX from trade placement to close in thousands.", 
                                  name:"bAXXXXXK", 
                                  mid:"931", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bIXXXXX /BP", 
                                  desc:"XXXXXX XXX Strike in bais points (%/100).", 
                                  name:"bIXXXXXBP", 
                                  mid:"926", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bIXXXXX /CPS", 
                                  desc:"XXXXXX XXX in cents per share.", 
                                  name:"bIXXXXXCPS", 
                                  mid:"927", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"bIXXXXX /K", 
                                  desc:"XXXXXX XXX in thousands.", 
                                  name:"bIXXXXXK", 
                                  mid:"928", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dOppCost /K", 
                                  desc:"XXXXXX XXX Opportunity Cost at entry in thousands.", 
                                  name:"dOppCostK", 
                                  mid:"874", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dOppCost /BP", 
                                  desc:"XXXXXX XXX Opportunity Cost at entry in basis points (%/100).", 
                                  name:"dOppCostBP", 
                                  mid:"875", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dOppCost /CPS", 
                                  desc:"XXXXXX XXX Opportunity Cost at entry in cents per share.", 
                                  name:"dOppCostCPS", 
                                  mid:"876", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dCostToComp /K", 
                                  desc:"XXXXXX XXX Cost To Complete in cents per share.", 
                                  name:"dCostToCompCPS", 
                                  mid:"879", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dEntStrike /K", 
                                  desc:"XXXXXX XXX Strike cost at entry in thousands.", 
                                  name:"dEntStrikeK", 
                                  mid:"865", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dEntStrike /BP", 
                                  desc:"XXXXXX XXX Strike cost at entry in basis points (%/100).", 
                                  name:"dEntStrikeBP", 
                                  mid:"866", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dEntStrike /CPS", 
                                  desc:"XXXXXX XXX Strike cost at entry in cents per share.", 
                                  name:"dEntStrikeCPS", 
                                  mid:"867", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dAXXXXX /CPS", 
                                  desc:"AXXXXX in cents per share.", 
                                  name:"dAXXXXXCPS", 
                                  mid:"917", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dAXXXXX /K", 
                                  desc:"AXXXXX in thousands.", 
                                  name:"dAXXXXXK", 
                                  mid:"918", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dAXXXXX /BP", 
                                  desc:"AXXXXX in bais points (%/100).", 
                                  name:"dAXXXXXBP", 
                                  mid:"916", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dIXXXXX /K", 
                                  desc:"XXXXXX XXX Interval XXXXX from entry to last execution in thousands.", 
                                  name:"dIXXXXXK", 
                                  mid:"868", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dIXXXXX /BP", 
                                  desc:"XXXXXX XXX Interval XXXXX from entry to last execution in basis points (%/100).", 
                                  name:"dIXXXXXBP", 
                                  mid:"869", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dIXXXXX /CPS", 
                                  desc:"XXXXXX XXX Interval XXXXX from entry to last execution in cents per share.", 
                                  name:"dIXXXXXCPS", 
                                  mid:"870", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Prior Close Prin /K", 
                                  desc:"Principal executed in thousands based on prior close.", 
                                  name:"PriorClosePrinK", 
                                  mid:"941", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dClose /CPS", 
                                  desc:"Close in cents per share.", 
                                  name:"dCloseCPS", 
                                  mid:"920", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dClose /K", 
                                  desc:"Close in thousands.", 
                                  name:"dCloseK", 
                                  mid:"921", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dClose /BP", 
                                  desc:"Close in bais points (%/100).", 
                                  name:"dCloseBP", 
                                  mid:"919", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dOpen /BP", 
                                  desc:"Open in bais points (%/100).", 
                                  name:"dOpenBP", 
                                  mid:"910", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dOpen /CPS", 
                                  desc:"Open in cents per share.", 
                                  name:"dOpenCPS", 
                                  mid:"911", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dOpen /K", 
                                  desc:"Open in thousands.", 
                                  name:"dOpenK", 
                                  mid:"912", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"PriorClose /BP", 
                                  desc:"Prior close in basis points (%/100).", 
                                  name:"PriorCloseBP", 
                                  mid:"907", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"PriorClose /CPS", 
                                  desc:"Prior close in cents per share.", 
                                  name:"PriorCloseCPS", 
                                  mid:"908", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"PriorClose /K", 
                                  desc:"Prior close in thousands.", 
                                  name:"PriorCloseK", 
                                  mid:"909", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"PriorClose", 
                                  desc:"Prior close price.", 
                                  name:"PriorClose", 
                                  mid:"922", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dXXXXX /BP", 
                                  desc:"XXXXX in bais points (%/100).", 
                                  name:"dXXXXXBP", 
                                  mid:"913", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dXXXXX /CPS", 
                                  desc:"XXXXX in cents per share.", 
                                  name:"dXXXXXCPS", 
                                  mid:"914", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dXXXXX /K", 
                                  desc:"XXXXX in thousands.", 
                                  name:"dXXXXXK", 
                                  mid:"915", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Ave Price", 
                                  desc:"Ave Price", 
                                  name:"AvePrice", 
                                  mid:"906", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"dCostToComp /CPS", 
                                  desc:"Remaining principal in thousands.", 
                                  name:"PrinLeavesK", 
                                  mid:"881", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Prin Leaves /K", 
                                  desc:"Principal executed and remaining principal in thousands.", 
                                  name:"PrinTotalK", 
                                  mid:"882", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Prin Executed", 
                                  desc:"Principal executed.", 
                                  name:"PrinExecuted", 
                                  mid:"883", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Prin Executed /K", 
                                  desc:"Principal executed in thousands.", 
                                  name:"PrinExecutedK", 
                                  mid:"871", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Shares Ordered", 
                                  desc:"Number of Shares Ordered.", 
                                  name:"SharesOrdered", 
                                  mid:"872", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Shares Remaining", 
                                  desc:"Number of Shares Outstanding.", 
                                  name:"SharesRemaining", 
                                  mid:"873", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }, 
                              {
                                  title:"Shares", 
                                  desc:"Number of Shares Traded.", 
                                  name:"Shares", 
                                  mid:"880", 
                                  format:"#,##0.00", 
                                  type:"float"
                              }
                          ], 
                          allowAdvancedCriteria:true
                      }
                      DSRequest for DataSource.fetch
                      Code:
                      {
                          dataSource:"pivot_table_tree_fact_RTF_384_682", 
                          operationType:"fetch", 
                          data:{
                              spc:[
                                  "189", 
                                  "2014-10-14", 
                                  "2014-10-14", 
                                  "RTF", 
                                  "190:2^682|189:2", 
                                  "", 
                                  "873|872|875|874|867|870", 
                                  "141", 
                                  "", 
                                  "true", 
                                  "384", 
                                  "2355", 
                                  "682", 
                                  "realTimeEquitiesFactDataSource"
                              ]
                          }, 
                          textMatchStyle:"exact", 
                          showPrompt:false, 
                          oldValues:{
                              spc:[
                                  "189", 
                                  "2014-10-14", 
                                  "2014-10-14", 
                                  "RTF", 
                                  "190:2^682|189:2", 
                                  "", 
                                  "873|872|875|874|867|870", 
                                  "141", 
                                  "", 
                                  "true", 
                                  "384", 
                                  "2355", 
                                  "682", 
                                  "realTimeEquitiesFactDataSource"
                              ]
                          }, 
                          requestId:"pivot_table_tree_fact_RTF_384_682$6272", 
                          useStrictJSON:true, 
                          fallbackToEval:true, 
                          lastClientEventThreadCode:"TMR5", 
                          bypassCache:true
                      }
                      DSResponse to DataSource.fetch
                      Code:
                      [
                          {
                              affectedRows:0, 
                              data:[
                                  {
                                      SharesOrdered:248750, 
                                      dOppCostBP:0, 
                                      SharesRemaining:248750, 
                                      dIXXXXXCPS:0, 
                                      name:"Grand Total", 
                                      cid:"Grand Total", 
                                      dOppCostK:-525.8371875, 
                                      dEntStrikeCPS:0
                                  }, 
                                  {
                                      SharesOrdered:2872, 
                                      dOppCostBP:0, 
                                      SharesRemaining:2872, 
                                      dIXXXXXCPS:0, 
                                      name:"XXXXXXXXX XXXXXXX", 
                                      pid:"Grand Total", 
                                      cid:"XXXXXXXXX XXXXXXX", 
                                      dEntStrikeCPS:0
                                  }, 
                                  {
                                      SharesOrdered:62654, 
                                      dOppCostBP:0, 
                                      SharesRemaining:62654, 
                                      dIXXXXXCPS:0, 
                                      name:"XXXX XXXXX", 
                                      pid:"Grand Total", 
                                      cid:"XXXX XXXXX", 
                                      dEntStrikeCPS:0
                                  }, 
                                  {
                                      SharesOrdered:37500, 
                                      dOppCostBP:0, 
                                      SharesRemaining:37500, 
                                      dIXXXXXCPS:0, 
                                      name:"XXXXXXXXX XXXXXXX", 
                                      pid:"Grand Total", 
                                      cid:"XXXXXXXXX XXXXXXX", 
                                      dEntStrikeCPS:0
                                  }, 
                                  {
                                      SharesOrdered:145723, 
                                      dOppCostBP:0, 
                                      SharesRemaining:145723, 
                                      dIXXXXXCPS:0, 
                                      name:"XXXXXXXXX XXXXXXX", 
                                      pid:"Grand Total", 
                                      cid:"XXXXXXXXX XXXXXXX", 
                                      dOppCostK:-525.8371875, 
                                      dEntStrikeCPS:0
                                  }, 
                                  {
                                      SharesOrdered:1, 
                                      SharesRemaining:1, 
                                      dIXXXXXCPS:0, 
                                      name:"TEST ICC MODIFICATION", 
                                      pid:"Grand Total", 
                                      cid:"TEST ICC MODIFICATION", 
                                      dEntStrikeCPS:0
                                  }
                              ], 
                              endRow:5, 
                              invalidateCache:false, 
                              isDSResponse:true, 
                              queueStatus:0, 
                              startRow:0, 
                              status:0, 
                              totalRows:6
                          }
                      ]
                      Here is my DyanmicDSGenerator
                      Code:
                      package com.anstca.tz.server.floater.pivottable.ds;
                      
                      import com.anstca.tz.client.floater.pivottable.view.PivotTableDataSourceID;
                      import com.anstca.tz.client.floater.pivottable.model.Measure;
                      import com.anstca.tz.server.floater.pivottable.dao.PivotTableDao;
                      import com.isomorphic.datasource.*;
                      
                      import java.util.List;
                      import org.apache.commons.logging.Log;
                      import org.apache.commons.logging.LogFactory;
                      
                      public class PivotTableTreeDSGenerator implements DynamicDSGenerator {
                          private Log logger = LogFactory.getLog(this.getClass().getName());
                      
                          private PivotTableDao dao = null;
                      
                          public PivotTableTreeDSGenerator(PivotTableDao dao) {
                              super();
                              logger.debug(" <<<<<<<<<<<<PivotTableTreeDSGenerator created : " + this.toString() + ">>>>>>>>>>>>>>>>>>>");
                              this.dao = dao;
                          }
                      
                          public DataSource getDataSource(String dataSource, DSRequest dsr) {
                              if(dataSource != null && dataSource.startsWith("pivot_table_tree_fact_", 0)) {
                                  logger.debug("data source requested [" + dataSource + "]");
                                  PivotTableDataSourceID pivotTableDataSourceID = new PivotTableDataSourceID(dataSource);
                                  logger.debug("  data source created [" + pivotTableDataSourceID.getApplicationID() + "]");
                                  try {
                                      return DataSource.fromXML(createDS(pivotTableDataSourceID));
                                  } catch (Exception ex) {
                                      logger.error(ex);
                                      return null;
                                  }
                              }
                              else return null;
                          }
                      
                          // rootValue="0-1"
                      //    stringBuilder.append("<field name=\"isOpen\"   type=\"boolean\"   hidden=\"true\"/>");
                      //        stringBuilder.append("<field name=\"isFolder\"   type=\"boolean\"   hidden=\"true\"/>");
                      
                          private String createDS(PivotTableDataSourceID pivotTableDataSourceID) {
                              StringBuilder stringBuilder = new StringBuilder("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" +
                                      "<DataSource ID=\"" + pivotTableDataSourceID.getApplicationID() +  "\" " +
                                      "serverConstructor=\"com.anstca.tz.server.floater.pivottable.ds.PivotTableTreeDataSource\" " +
                                      "serverType=\"generic\"><fields>");
                      
                              stringBuilder.append("<field name=\"cid\"   type=\"text\"   primaryKey=\"true\" required=\"true\" hidden=\"true\"/>");
                              stringBuilder.append("<field name=\"pid\"   type=\"text\" foreignKey=\"cid\" required=\"true\" hidden=\"true\"/>");
                              stringBuilder.append("<field name=\"name\"   type=\"text\"   title=\"Dimensions\" width=\"300\"/>");
                      
                              List<Measure> measures = getMeasures(pivotTableDataSourceID.getFactTableID(), Long.decode(pivotTableDataSourceID.getClientID()));
                      
                              for (Measure measurement : measures) {
                                  stringBuilder.append("<field name=\"").append(measurement.getName()).append("\" type=\"float\"  title=\"").append(measurement.getDisplayName()).append("\" mid=\"").append(measurement.getId()).append("\" desc=\"").append(measurement.getDescription()).append("\" format=\"").append(measurement.getFormat()).append("\" />");
                              }
                              stringBuilder.append("</fields></DataSource>");
                      
                              String returnString = stringBuilder.toString();
                      
                              return returnString;
                          }
                      
                      
                          private List<Measure> getMeasures(String factTableID, Long clientID) {
                              List<Measure> list = null;
                              if(factTableID != null && clientID != null) {
                                  list = dao.getAvailableMeasures(factTableID, clientID);
                              }
                              return list;
                          }
                      
                      }
                      Last edited by JLivermore; 14 Oct 2014, 06:31.

                      Comment


                        #71
                        Your log from the Developer Console seems to disagree with your statements of what you detected via breakpoint debugging - there's only one exception logged whereas you report 3 pop-ups.

                        Of course that's strange because just a post ago you reported 2 exceptions and you used to be talking about just 1. Can you clarify how many errors you're getting?

                        As far as determining the timing, careful step through isn't necessary, it's just right there in the log as long as you don't show us trimmed versions.

                        The exception happened during handling of a mouseOut event, whose timing suggests that it is triggered by the arrival of the server response, which is very odd. So can we ask another obvious question: have you added some kind of third-party JavaScript library to your page?

                        As far as getting more detail, try turning the EventHandler log category to DEBUG to see what happens during processing of this weird mouseOut event.

                        09:00:38.102:TMR2:DEBUG:RPCXXXXXX XX:XMLHttpRequest GET from http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 with fields: {isc_tnum: 3,
                        _transaction: "<transaction xmlns:xsi="http://www.w3.or..."[230],
                        protocolVersion: "1.0"} full URL string: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_RTF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1&isc_tnum=3&_transaction=%3Ctransaction%20xmlns%3Axsi%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2F10%2FXMLSchema-instance%22%20xsi%3Atype%3D%22xsd%3AObject%22%3E%3CtransactionNum%20xsi%3Atype%3D%22xsd%3Along%22%3E3%3C%2FtransactionNum%3E%3Coperations%20xsi%3Atype%3D%22xsd%3AList%22%3E%3Celem%3E__ISC_NULL__%3C%2Felem%3E%3C%2Foperations%3E%3C%2Ftransaction%3E&protocolVersion=1.0
                        09:00:42.378:MOU3:WARN:Log:GWT uncaught exceptions have been encountered. Check the Development Mode console for more details.
                        09:00:42.420:TMR7:INFO:RPCXXXXXX XX:transaction 3 arrived after 4305ms

                        Comment


                          #72
                          Originally posted by Isomorphic View Post
                          Your log from the Developer Console seems to disagree with your statements of what you detected via breakpoint debugging - there's only one exception logged whereas you report 3 pop-ups.

                          Of course that's strange because just a post ago you reported 2 exceptions and you used to be talking about just 1. Can you clarify how many errors you're getting?
                          Sure, it is an evolution. I commented out my DataSource.load() which sent me trouble shooting the DataSource.get() which would never work because the DataSource was not dynamically created yet via DataSource.load(). That sent me down the wrong path trouble shooting 1 error message. Once this was resolved we are back to 3 pop-up errors as I last outlined, in different stages along the way (in a nutshell 1,2,3 above).

                          Originally posted by Isomorphic View Post
                          As far as determining the timing, careful step through isn't necessary, it's just right there in the log as long as you don't show us trimmed versions.

                          The exception happened during handling of a mouseOut event, whose timing suggests that it is triggered by the arrival of the server response, which is very odd. So can we ask another obvious question: have you added some kind of third-party JavaScript library to your page?

                          As far as getting more detail, try turning the EventHandler log category to DEBUG to see what happens during processing of this weird mouseOut event.
                          I will setup another set of logs with EventHandler also set to Debug. I suspect that enexpected mouseOut event was from me stepping through the debugger (going between the browser and IDE). And no breakpoints too, a straight run through the code.
                          Last edited by JLivermore; 14 Oct 2014, 13:22.

                          Comment


                            #73
                            The datasource string to pay attention to is pivot_table_tree_fact_POF_384_682.
                            part1
                            Code:
                            17:30:35.295:pointermove5:INFO:EventHandler:Target Canvas for event 'pointermove': [PaneContainer ID:isc_TabSet_0_paneContainer]
                            17:30:35.301:pointermove5:DEBUG:EventHandler:mousing over [PaneContainer ID:isc_TabSet_0_paneContainer]
                            17:30:35.399:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:35.405:pointermove8:DEBUG:EventHandler:mousing out of [PaneContainer ID:isc_TabSet_0_paneContainer]  mousing over [HLayout ID:isc_HLayout_2]
                            17:30:35.970:pointermove0:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:35.987:pointerdown2:INFO:EventHandler:Target Canvas for event 'pointerdown': [HLayout ID:isc_HLayout_2]
                            17:30:35.995:pointerdown2:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[HLayout ID:isc_HLayout_2]' has handler: Canvas.prepareForDragging()
                            17:30:35.998:pointerdown2:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[VLayout ID:isc_VLayout_3]' has handler: Canvas.prepareForDragging()
                            17:30:36.001:pointerdown2:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[PaneContainer ID:isc_TabSet_0_paneContainer]' has handler: Canvas.prepareForDragging()
                            17:30:36.004:pointerdown2:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[TabSet ID:isc_TabSet_0]' has handler: Canvas.prepareForDragging()
                            17:30:36.007:pointerdown2:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[VLayout ID:isc_VLayout_4]' has handler: Canvas.prepareForDragging()
                            17:30:36.032:pointerdown2:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[VLayout ID:isc_VLayout_5]' has handler: Canvas.prepareForDragging()
                            17:30:36.035:pointerdown2:DEBUG:EventHandler:Event 'prepareForDragging' bubbled to top
                            17:30:36.038:pointerdown2:DEBUG:EventHandler:Event 'mouseDown' bubbled to top
                            17:30:36.052:pointermove6:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:36.062:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:36.066:pointerup0:INFO:EventHandler:Target Canvas for event 'pointerup': [HLayout ID:isc_HLayout_2]
                            17:30:36.071:pointerup0:DEBUG:EventHandler:Event 'mouseUp' bubbled to top
                            17:30:36.075:pointerup0:DEBUG:EventHandler:Event 'click' bubbled to top
                            17:30:36.079:pointermove3:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:36.435:pointermove5:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:36.586:pointermove7:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:36.735:pointermove9:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:36.885:pointermove1:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:37.031:pointermove3:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:37.060:pointermove5:INFO:EventHandler:Target Canvas for event 'pointermove': [HLayout ID:isc_HLayout_2]
                            17:30:37.181:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:37.187:pointermove8:DEBUG:EventHandler:mousing out of [HLayout ID:isc_HLayout_2]  mousing over [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:37.891:pointermove1:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:37.895:pointerdown3:INFO:EventHandler:Target Canvas for event 'pointerdown': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:37.899:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[MenuButton ID:isc_PivotTableViewMenuButton_0]' has handler: Canvas.prepareForDragging()
                            17:30:37.902:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[HLayout ID:isc_HLayout_2]' has handler: Canvas.prepareForDragging()
                            17:30:37.905:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[VLayout ID:isc_VLayout_3]' has handler: Canvas.prepareForDragging()
                            17:30:37.908:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[PaneContainer ID:isc_TabSet_0_paneContainer]' has handler: Canvas.prepareForDragging()
                            17:30:37.911:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[TabSet ID:isc_TabSet_0]' has handler: Canvas.prepareForDragging()
                            17:30:37.913:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[VLayout ID:isc_VLayout_4]' has handler: Canvas.prepareForDragging()
                            17:30:37.916:pointerdown3:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[VLayout ID:isc_VLayout_5]' has handler: Canvas.prepareForDragging()
                            17:30:37.919:pointerdown3:DEBUG:EventHandler:Event 'prepareForDragging' bubbled to top
                            17:30:37.922:pointerdown3:DEBUG:EventHandler:Event 'mouseDown' bubbled to top
                            17:30:37.966:pointerup6:INFO:EventHandler:Target Canvas for event 'pointerup': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:37.973:pointerup6:DEBUG:EventHandler:Event 'mouseUp' bubbled to top
                            17:30:37.982:pointerup6:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:37.987:pointerup6:INFO:RPCManager:sendQueue[1]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                            17:30:37.993:pointerup6:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:37.997:pointerup6:DEBUG:RPCManager:XMLHttpRequest POST to http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 contentType: application/x-www-form-urlencoded; charset=UTF-8 with body -->isc_tnum=1&_transaction=<transaction xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:type="xsd:Object"><transactionNum xsi:type="xsd:long">1</transactionNum><operations xsi:type="xsd:List"><elem xsi:type="xsd:Object"><criteria xsi:type="xsd:Object"><UserID>384</UserID><ExcludeFactTableID>RTF,PEF,</ExcludeFactTableID><IncludeFactTableID xsi:nil="true"/></criteria><operationConfig xsi:type="xsd:Object"><dataSource>pivot_table_view_menu_button</dataSource><operationType>fetch</operationType><textMatchStyle>exact</textMatchStyle></operationConfig><useStrictJSON xsi:type="xsd:boolean">true</useStrictJSON><appID>builtinApplication</appID><operation>pivot_table_view_menu_button_fetch</operation><oldValues xsi:type="xsd:Object"><UserID>384</UserID><ExcludeFactTableID>RTF,PEF,</ExcludeFactTableID><IncludeFactTableID xsi:nil="true"/></oldValues></elem></operations></transaction>&protocolVersion=1.0<--
                            17:30:38.014:pointerup6:DEBUG:EventHandler:Event 'click' bubbled to top
                            17:30:38.495:TMR2:INFO:RPCManager:transaction 1 arrived after 495ms
                            17:30:38.499:TMR2:DEBUG:RPCManager:Result string for transaction 1: "//isc_RPCResponseStart-->[{"affectedRows":0,"data":[{"id":2285,"productCode":"WZG","viewPublicFL":false,"name":"James1","productName":"Equity Post Trade"},{"id":2308,"productCode":"WZG","viewPublicFL":false,"name":"James2","productName":"Equity Post Trade"},{"id":2319,"productCode":"WZG","viewPublicFL":false,"name":"korneltest","productName":"Equity Post Trade"},{"id":2321,"productCode":"WZG","viewPublicFL":false,"name":"James3 Dimensions","productName":"Equity Post Trade"},{"id":2324,"productCode":"WZG","viewPublicFL":true,"name":"testk","productName":"Equity Post Trade"},{"id":2325,"productCode":"WZG","viewPublicFL":false,"name":"ktest","productName":"Equity Post Trade"},{"id":2328,"productCode":"WZG","viewPublicFL":false,"name":"kornels","productName":"Equity Post Trade"},{"id":2340,"productCode":"WZG","viewPublicFL":false,"name":"dd","productName":"Equity Post Trade"},{"id":779,"productCode":"WZG","viewPublicFL":true,"name":"XXXXDay","productName":"Equity Post Trade"},{"id":786,"productCode":"WZG","viewPublicFL":true,"name":"Commission","productName":"Equity Post Trade"},{"id":1061,"productCode":"WZG","viewPublicFL":true,"name":"PMDay","productName":"Equity Post Trade"},{"id":619,"productCode":"WZG","viewPublicFL":true,"name":"PMOrder","productName":"Equity Post Trade"},{"id":937,"productCode":"WZG","viewPublicFL":true,"name":"TraderOrder","productName":"Equity Post Trade"},{"id":2003,"productCode":"WZG","viewPublicFL":true,"name":"Test BRK","productName":"Equity Post Trade"},{"id":2316,"productCode":"WZG","viewPublicFL":true,"name":"Ted Test","productName":"Equity Post Trade"},{"id":2329,"productCode":"WZG","viewPublicFL":true,"name":"kpiv2","productName":"Equity Post Trade"},{"id":2334,"productCode":"WZG","viewPublicFL":true,"name":"Ted Test 03","productName":"Equity Post Trade"},{"id":2327,"productCode":"WZG","viewPublicFL":true,"name":"testkpub","productName":"Equity Post Trade"},{"id":2323,"productCode":"WZG","viewPublicFL":true,"name":"testkpublic","productName":"Equity Post Trade"},{"id":2338,"productCode":"WZG","viewPublicFL":true,"name":"testpublic2","productName":"Equity Post Trade"}],"endRow":20,"invalidateCache":false,"isDSResponse":true,"operationType":"fetch","queueStatus":0,"startRow":0,"status":0,"totalRows":20}]//isc_RPCResponseEnd"
                            17:30:38.504:TMR2:INFO:RPCManager:rpcResponse(custom)[rpc]: result: 20 records[status=0]
                            17:30:38.997:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.001:pointermove8:DEBUG:EventHandler:mousing over [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.005:pointermove0:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.008:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.011:pointermove4:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.015:pointermove6:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.018:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.021:pointermove0:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.025:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.028:pointermove4:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.121:pointermove6:INFO:EventHandler:Target Canvas for event 'pointermove': [MenuButton ID:isc_PivotTableViewMenuButton_0]
                            17:30:39.327:pointermove9:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_4_body]
                            17:30:39.333:pointermove9:DEBUG:EventHandler:mousing out of [MenuButton ID:isc_PivotTableViewMenuButton_0]  mousing over [GridBody ID:isc_Menu_4_body]
                            17:30:39.526:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_4_body]
                            17:30:39.626:pointermove5:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_4_body]
                            17:30:39.923:pointermove1:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_4_body]
                            17:30:40.392:pointermove4:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_4_body]
                            17:30:40.575:pointermove7:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:40.581:pointermove7:DEBUG:EventHandler:mousing out of [GridBody ID:isc_Menu_4_body]  mousing over [GridBody ID:isc_Menu_3_body]
                            17:30:40.627:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:40.776:pointermove6:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.082:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.182:pointermove6:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.319:pointermove0:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.417:pointermove4:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.702:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.892:pointermove0:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:41.988:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:42.105:pointermove5:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:42.208:pointermove9:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:42.361:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:42.578:pointermove5:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:42.759:pointermove8:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:43.516:pointermove2:INFO:EventHandler:Target Canvas for event 'pointermove': [GridBody ID:isc_Menu_3_body]
                            17:30:43.520:pointerdown4:INFO:EventHandler:Target Canvas for event 'pointerdown': [GridBody ID:isc_Menu_3_body]
                            17:30:43.524:pointerdown4:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[GridBody ID:isc_Menu_3_body]' has handler: Canvas.prepareForDragging()
                            17:30:43.527:pointerdown4:DEBUG:EventHandler:Bubbling event 'prepareForDragging', target '[Menu ID:isc_Menu_3]' has handler: Canvas.prepareForDragging()
                            17:30:43.529:pointerdown4:DEBUG:EventHandler:Event 'prepareForDragging' bubbled to top
                            17:30:43.532:pointerdown4:DEBUG:EventHandler:Event 'mouseDown' bubbled to top
                            17:30:43.577:pointerup7:INFO:EventHandler:Target Canvas for event 'pointerup': [GridBody ID:isc_Menu_3_body]
                            17:30:43.582:pointerup7:DEBUG:EventHandler:Event 'mouseUp' bubbled to top
                            17:30:44.069:pointerup7:DEBUG:EventHandler:Event 'click' bubbled to top
                            17:30:44.073:pointerup7[E]:DEBUG:EventHandler:firing threadExitActions: [
                            anonymous()
                            ]
                            17:30:44.676:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:44.680:INFO:RPCManager:sendQueue[2]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                            17:30:44.685:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:44.688:DEBUG:RPCManager:XMLHttpRequest POST to http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 contentType: application/x-www-form-urlencoded; charset=UTF-8 with body -->isc_tnum=2&_transaction=<transaction xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:type="xsd:Object"><transactionNum xsi:type="xsd:long">2</transactionNum><operations xsi:type="xsd:List"><elem xsi:type="xsd:Object"><criteria xsi:type="xsd:Object"><UserID>384</UserID><FactTableID>POF</FactTableID></criteria><operationConfig xsi:type="xsd:Object"><dataSource>pivot_table_report_launcher_list</dataSource><operationType>fetch</operationType><textMatchStyle>exact</textMatchStyle></operationConfig><useStrictJSON xsi:type="xsd:boolean">true</useStrictJSON><appID>builtinApplication</appID><operation>pivot_table_report_launcher_list_fetch</operation><oldValues xsi:type="xsd:Object"><UserID>384</UserID><FactTableID>POF</FactTableID></oldValues></elem></operations></transaction>&protocolVersion=1.0<--
                            17:30:45.927:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:45.931:DEBUG:RPCManager:Grabbed prompt from first request that defined one: Loading...
                            17:30:45.934:INFO:RPCManager:sendQueue[3]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                            17:30:45.939:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:45.942:DEBUG:RPCManager:XMLHttpRequest POST to http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/IDACall?isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 contentType: application/x-www-form-urlencoded; charset=UTF-8 with body -->isc_tnum=3&_transaction=<transaction xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" xsi:type="xsd:Object"><transactionNum xsi:type="xsd:long">3</transactionNum><operations xsi:type="xsd:List"><elem xsi:type="xsd:Object"><criteria xsi:type="xsd:Object"><clientID>682</clientID><factTableID>POF</factTableID><lastDataPoint>2013-10-31</lastDataPoint><dataSource>postTradeEquitiesFactDataSource</dataSource><dimensionID>1</dimensionID></criteria><operationConfig xsi:type="xsd:Object"><dataSource>pivot_table_time_frame</dataSource><operationType>fetch</operationType><textMatchStyle>startsWith</textMatchStyle></operationConfig><startRow xsi:type="xsd:long">0</startRow><endRow xsi:type="xsd:long">75</endRow><componentId>isc_PickListMenu_0</componentId><useStrictJSON xsi:type="xsd:boolean">true</useStrictJSON><appID>builtinApplication</appID><operation>pivot_table_time_frame_fetch</operation><oldValues xsi:type="xsd:Object"><clientID>682</clientID><factTableID>POF</factTableID><lastDataPoint>2013-10-31</lastDataPoint><dataSource>postTradeEquitiesFactDataSource</dataSource><dimensionID>1</dimensionID></oldValues></elem></operations></transaction>&protocolVersion=1.0<--
                            17:30:45.954:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:45.958:INFO:RPCManager:sendQueue[4]: 1 RPCRequest(s); transport: xmlHttpRequest; target: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_POF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1
                            17:30:45.962:DEBUG:RPCManager:Using ActiveX XMLHttpRequest via constructor: MSXML2.XMLHTTP
                            17:30:45.966:DEBUG:RPCManager:XMLHttpRequest GET from http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_POF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1 with fields: {isc_tnum: 4,
                            _transaction: "<transaction xmlns:xsi="http://www.w3.or..."[230],
                            protocolVersion: "1.0"} full URL string: http://127.0.0.1:8080/tzw/com.anstca.tz.Main/sc/DataSourceLoader?dataSource=pivot_table_tree_fact_POF_384_682&isc_rpc=1&isc_v=v9.1p_2014-09-09&isc_xhr=1&isc_tnum=4&_transaction=%3Ctransaction%20xmlns%3Axsi%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2F10%2FXMLSchema-instance%22%20xsi%3Atype%3D%22xsd%3AObject%22%3E%3CtransactionNum%20xsi%3Atype%3D%22xsd%3Along%22%3E4%3C%2FtransactionNum%3E%3Coperations%20xsi%3Atype%3D%22xsd%3AList%22%3E%3Celem%3E__ISC_NULL__%3C%2Felem%3E%3C%2Foperations%3E%3C%2Ftransaction%3E&protocolVersion=1.0
                            17:30:46.058:TMR7[E]:DEBUG:EventHandler:firing threadExitActions: [
                            anonymous(),
                            anonymous(),
                            anonymous()
                            ]
                            17:30:47.596:TMR4:INFO:RPCManager:transaction 4 arrived after 1592ms
                            17:30:47.602:TMR4:DEBUG:RPCManager:Result string for transaction 4: "if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
                                allowAdvancedCriteria:true,
                                ID:"pivot_table_tree_fact_POF_384_682",
                                fields:[
                                    {
                                        hidden:true,
                                        primaryKey:true,
                                        name:"cid",
                                        type:"text",
                                        required:true
                                    },
                                    {
                                        hidden:true,
                                        name:"pid",
                                        type:"text",
                                        required:true,
                                        foreignKey:"cid"
                                    },
                                    {
                                        title:"Dimensions",
                                        width:"300",
                                        name:"name",
                                        type:"text"
                                    },
                                    {
                                        title:"C+bIXXXX /K",
                                        desc:"Commission + Interval XXXX from trade XXXXXX to XXXXXX cost from entry to close in thousands.",
                                        name:"CbIXXXXK",
                                        mid:"719",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"C+bIXXXX /BP",
                                        desc:"Commission + Interval XXXX from trade XXXXXX to XXXXXX cost from entry to close in basis points(%/100).",
                                        name:"CbIXXXXBP",
                                        mid:"720",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"C+bIXXXX /CPS",
                                        desc:"Commission + Interval XXXX from trade XXXXXX to XXXXXX cost from entry to close in cents per share.",
                                        name:"CbIXXXXCPS",
                                        mid:"721",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bExeStrike /K",
                                        desc:"XXXX Strike cost at trade XXXXXX time in thousands.",
                                        name:"bExeStrikeK",
                                        mid:"36",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bExeStrike /BP",
                                        desc:"XXXX Strike cost at trade XXXXXX time in basis points (%/100).",
                                        name:"bExeStrikeBP",
                                        mid:"37",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bExeStrike /CPS",
                                        desc:"XXXX Strike cost at trade XXXXXX time in cents per share.",
                                        name:"bExeStrikeCPS",
                                        mid:"38",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bPlcStrike /K",
                                        desc:"XXXX Strike cost at trade XXXXXX time in thousands.",
                                        name:"bPlcStrikeK",
                                        mid:"20",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bPlcStrike /BP",
                                        desc:"XXXX Strike cost at trade XXXXXX time in basis points (%/100).",
                                        name:"bPlcStrikeBP",
                                        mid:"21",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bPlcStrike /CPS",
                                        desc:"XXXX Strike cost at trade XXXXXX time in cents per share.",
                                        name:"bPlcStrikeCPS",
                                        mid:"22",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike10 /K",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 10th percentile in thousands.",
                                        name:"ubPlcStrike10K",
                                        mid:"245",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike10 /BP",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 10th percentile in basis points (%/100).",
                                        name:"ubPlcStrike10BP",
                                        mid:"246",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike10 /CPS",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 10th percentile in cents per share.",
                                        name:"ubPlcStrike10CPS",
                                        mid:"247",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike30 /K",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 30th percentile in thousands.",
                                        name:"ubPlcStrike30K",
                                        mid:"249",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike30 /BP",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 30th percentile in basis points (%/100).",
                                        name:"ubPlcStrike30BP",
                                        mid:"250",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike30 /CPS",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 30th percentile in cents per share.",
                                        name:"ubPlcStrike30CPS",
                                        mid:"251",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike50 /K",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 50th percentile in thousands.",
                                        name:"ubPlcStrike50K",
                                        mid:"253",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike50 /BP",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 50th percentile in basis points (%/100).",
                                        name:"ubPlcStrike50BP",
                                        mid:"254",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike70 /K",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 70th percentile in thousands.",
                                        name:"ubPlcStrike70K",
                                        mid:"257",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike70 /BP",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 70th percentile in basis points (%/100).",
                                        name:"ubPlcStrike70BP",
                                        mid:"258",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike70 /CPS",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 70th percentile in cents per share.",
                                        name:"ubPlcStrike70CPS",
                                        mid:"259",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike90 /K",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 90th percentile in thousands.",
                                        name:"ubPlcStrike90K",
                                        mid:"261",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike90 /BP",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 90th percentile in basis points (%/100).",
                                        name:"ubPlcStrike90BP",
                                        mid:"262",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike90 /CPS",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 90th percentile in cents per share.",
                                        name:"ubPlcStrike90CPS",
                                        mid:"263",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bPlcStrike vs Median /BP",
                                        desc:"bPlcStrike - bPlcStrike50 in basis points(%/100).",
                                        name:"bPlcStrikeDiffBP",
                                        mid:"840",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bPlcStrike vs Median /CPS",
                                        desc:"bPlcStrike - bPlcStrike50 in cents per share.",
                                        name:"bPlcStrikeDiffCPS",
                                        mid:"841",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubPlcStrike50 /CPS",
                                        desc:"XXXXDay Order Strike cost at XXXXXX vs universe 50th percentile in cents per share.",
                                        name:"ubPlcStrike50CPS",
                                        mid:"255",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bPlcStrike vs Median /K",
                                        desc:"bPlcStrike - bPlcStrike50 in Thousands",
                                        name:"bPlcStrikeDiffK",
                                        mid:"839",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"b10% Test /K",
                                        desc:"XXXX Ten-Percent Test from trade XXXXXX in thousands.",
                                        name:"b10TestK",
                                        mid:"409",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"b10% Test /BP",
                                        desc:"XXXX Ten-Percent Test from trade XXXXXX in basis points (%/100).",
                                        name:"b10TestBP",
                                        mid:"410",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"b10% Test /CPS",
                                        desc:"XXXX Ten-Percent Test from trade XXXXXX in cents per share.",
                                        name:"b10TestCPS",
                                        mid:"411",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"b20% Test /K",
                                        desc:"XXXX Twenty-Percent Test from trade XXXXXX in thousands.",
                                        name:"b20TestK",
                                        mid:"32",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"b20% Test /BP",
                                        desc:"XXXX Twenty-Percent Test from trade XXXXXX in basis points (%/100).",
                                        name:"b20TestBP",
                                        mid:"33",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"b20% Test /CPS",
                                        desc:"XXXX Twenty-Percent Test from trade XXXXXX in cents per share.",
                                        name:"b20TestCPS",
                                        mid:"34",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"XXXXOrderCount",
                                        desc:"XXXX Day Order Count",
                                        name:"bOrderCount",
                                        mid:"799",
                                        format:"#,###",
                                        type:"float"
                                    },
                                    {
                                        title:"bAXXXX /CPS",
                                        desc:"XXXX Available XXXX from trade XXXXXX to close in cents per share.",
                                        name:"bAXXXXCPS",
                                        mid:"26",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bAXXXX /K",
                                        desc:"XXXX Available XXXX from trade XXXXXX to close in thousands.",
                                        name:"bAXXXXK",
                                        mid:"24",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bAXXXX /BP",
                                        desc:"XXXX Available XXXX from trade XXXXXX to close in basis points (%/100).",
                                        name:"bAXXXXBP",
                                        mid:"25",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bIXXXX /K",
                                        desc:"XXXX Interval XXXX from trade XXXXXX to XXXXXX in thousands.",
                                        name:"bIXXXXK",
                                        mid:"28",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bIXXXX /BP",
                                        desc:"XXXX Interval XXXX from trade XXXXXX to XXXXXX in basis points (%/100).",
                                        name:"bIXXXXBP",
                                        mid:"29",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"bIXXXX /CPS",
                                        desc:"XXXX Interval XXXX from trade XXXXXX to XXXXXX in cents per share.",
                                        name:"bIXXXXCPS",
                                        mid:"30",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX10 /K",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 10th percentile in thousands.",
                                        name:"ubIXXXX10K",
                                        mid:"225",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX10 /BP",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 10th percentile in basis points (%/100).",
                                        name:"ubIXXXX10BP",
                                        mid:"226",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX10 /CPS",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 10th percentile in cents per share.",
                                        name:"ubIXXXX10CPS",
                                        mid:"227",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX30 /BP",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 30th percentile in basis points (%/100).",
                                        name:"ubIXXXX30BP",
                                        mid:"230",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX30 /CPS",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 30th percentile in cents per share.",
                                        name:"ubIXXXX30CPS",
                                        mid:"231",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX50 /K",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 50th percentile in thousands.",
                                        name:"ubIXXXX50K",
                                        mid:"233",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX50 /BP",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 50th percentile in basis points (%/100).",
                                        name:"ubIXXXX50BP",
                                        mid:"234",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX70 /K",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 70th percentile in thousands.",
                                        name:"ubIXXXX70K",
                                        mid:"237",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX70 /BP",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 70th percentile in basis points (%/100).",
                                        name:"ubIXXXX70BP",
                                        mid:"238",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX70 /CPS",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 70th percentile in cents per share.",
                                        name:"ubIXXXX70CPS",
                                        mid:"239",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX90 /K",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 90th percentile in thousands.",
                                        name:"ubIXXXX90K",
                                        mid:"241",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX90 /BP",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 90th percentile in basis points (%/100).",
                                        name:"ubIXXXX90BP",
                                        mid:"242",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX90 /CPS",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 90th percentile in cents per share.",
                                        name:"ubIXXXX90CPS",
                                        mid:"243",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX30 /K",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 30th percentile in thousands.",
                                        name:"ubIXXXX30K",
                                        mid:"229",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"ubIXXXX50 /CPS",
                                        desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 50th percentile in cents per share.",
                                        name:"ubIXXXX50CPS",
                                        mid:"235",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"LMTbIXXXX /CPS",
                                        desc:"XXXX Interval XXXX cost from XXXXXX to last within limit price in cents per share.",
                                        name:"LMTbIXXXXCPS",
                                        mid:"833",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"LMTbIXXXX /K",
                                        desc:"XXXX Interval XXXX cost from XXXXXX to last XXXXXX within limit price in Thousands",
                                        name:"LMTbIXXXXK",
                                        mid:"831",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"LMTbIXXXX /BP",
                                        desc:"XXXX Interval XXXX cost from XXXXXX to last XXXXXX within limit price in basis points(%/100).",
                                        name:"LMTbIXXXXBP",
                                        mid:"832",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"C+mAXXXX /BP",
                                        desc:"Commission + Day Available XXXX cost from entry to close in basis points(%/100).",
                                        name:"CmAXXXXBP",
                                        mid:"714",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"C+mAXXXX /CPS",
                                        desc:"Commission + Day Available XXXX cost from entry to close in cents per share.",
                                        name:"CmAXXXXCPS",
                                        mid:"715",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"C+mAXXXX /K",
                                        desc:"Commission + Day Available XXXX cost from entry to close in thousands.",
                                        name:"CmAXXXXK",
                                        mid:"713",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mDecStrike /K",
                                        desc:"Manager Day Strike cost at decision time in thousands.",
                                        name:"mDecStrikeK",
                                        mid:"40",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mDecStrike /BP",
                                        desc:"Manager Day Strike cost at decision time in basis points (%/100).",
                                        name:"mDecStrikeBP",
                                        mid:"41",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mDecStrike /CPS",
                                        desc:"Manager Day Strike cost at decision time in cents per share.",
                                        name:"mDecStrikeCPS",
                                        mid:"42",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mEntStrike /K",
                                        desc:"Manager Day Strike cost at entry in thousands.",
                                        name:"mEntStrikeK",
                                        mid:"48",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mEntStrike /CPS",
                                        desc:"Manager Day Strike cost at entry in cents per share.",
                                        name:"mEntStrikeCPS",
                                        mid:"50",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mEntStrike /BP",
                                        desc:"Manager Day Strike cost at entry in basis points (%/100).",
                                        name:"mEntStrikeBP",
                                        mid:"49",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike10 /K",
                                        desc:"Day Order Strike cost at entry vs universe 10th percentile in thousands.",
                                        name:"umEntStrike10K",
                                        mid:"285",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike10 /BP",
                                        desc:"Day Order Strike cost at entry vs universe 10th percentile in basis points (%/100).",
                                        name:"umEntStrike10BP",
                                        mid:"286",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike10 /CPS",
                                        desc:"Day Order Strike cost at entry vs universe 10th percentile in cents per share.",
                                        name:"umEntStrike10CPS",
                                        mid:"287",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike30 /K",
                                        desc:"Day Order Strike cost at entry vs universe 30th percentile in thousands.",
                                        name:"umEntStrike30K",
                                        mid:"289",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike30 /BP",
                                        desc:"Day Order Strike cost at entry vs universe 30th percentile in basis points (%/100).",
                                        name:"umEntStrike30BP",
                                        mid:"290",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike30 /CPS",
                                        desc:"Day Order Strike cost at entry vs universe 30th percentile in cents per share.",
                                        name:"umEntStrike30CPS",
                                        mid:"291",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike50 /K",
                                        desc:"Day Order Strike cost at entry vs universe 50th percentile in thousands.",
                                        name:"umEntStrike50K",
                                        mid:"293",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike50 /BP",
                                        desc:"Day Order Strike cost at entry vs universe 50th percentile in basis points (%/100).",
                                        name:"umEntStrike50BP",
                                        mid:"294",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike70 /K",
                                        desc:"Day Order Strike cost at entry vs universe 70th percentile in thousands.",
                                        name:"umEntStrike70K",
                                        mid:"297",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike70 /CPS",
                                        desc:"Day Order Strike cost at entry vs universe 70th percentile in cents per share.",
                                        name:"umEntStrike70CPS",
                                        mid:"299",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike90 /K",
                                        desc:"Day Order Strike cost at entry vs universe 90th percentile in thousands.",
                                        name:"umEntStrike90K",
                                        mid:"301",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike90 /BP",
                                        desc:"Day Order Strike cost at entry vs universe 90th percentile in basis points (%/100).",
                                        name:"umEntStrike90BP",
                                        mid:"302",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike90 /CPS",
                                        desc:"Day Order Strike cost at entry vs universe 90th percentile in cents per share.",
                                        name:"umEntStrike90CPS",
                                        mid:"303",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike50 /CPS",
                                        desc:"Day Order Strike cost at entry vs universe 50th percentile in cents per share.",
                                        name:"umEntStrike50CPS",
                                        mid:"295",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umEntStrike70 /BP",
                                        desc:"Day Order Strike cost at entry vs universe 70th percentile in basis points (%/100).",
                                        name:"umEntStrike70BP",
                                        mid:"298",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mExeStrike /CPS",
                                        desc:"Manager Day Strike cost at last XXXXXX in cents per share.",
                                        name:"mExeStrikeCPS",
                                        mid:"106",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mExeStrike /K",
                                        desc:"Manager Day Strike cost at last XXXXXX in thousands.",
                                        name:"mExeStrikeK",
                                        mid:"104",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mExeStrike /BP",
                                        desc:"Manager Day Strike cost at last XXXXXX in basis points (%/100).",
                                        name:"mExeStrikeBP",
                                        mid:"105",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mPlcStrike /K",
                                        desc:"Manager Day Strike cost at first XXXXXX in thousands.",
                                        name:"mPlcStrikeK",
                                        mid:"92",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mPlcStrike /BP",
                                        desc:"Manager Day Strike cost at first XXXXXX in basis points (%/100).",
                                        name:"mPlcStrikeBP",
                                        mid:"93",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mPlcStrike /CPS",
                                        desc:"Manager Day Strike cost at first XXXXXX in cents per share.",
                                        name:"mPlcStrikeCPS",
                                        mid:"94",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"LMTmIXXXX /BP",
                                        desc:"Day Interval XXXX cost from entry to last XXXXXX within limit price in basis points(%/100).",
                                        name:"LMTmIXXXXBP",
                                        mid:"828",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"LMTmIXXXX /CPS",
                                        desc:"Day Interval XXXX cost from entry to last XXXXXX within limit price in cents per share.",
                                        name:"LMTmIXXXXCPS",
                                        mid:"829",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX10 /K",
                                        desc:"Day Order AXXXX cost vs universe 10th percentile in thousands.",
                                        name:"umAXXXX10K",
                                        mid:"345",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX10 /BP",
                                        desc:"Day Order AXXXX cost vs universe 10th percentile in basis points (%/100).",
                                        name:"umAXXXX10BP",
                                        mid:"346",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX10 /CPS",
                                        desc:"Day Order AXXXX cost vs universe 10th percentile in cents per share.",
                                        name:"umAXXXX10CPS",
                                        mid:"347",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX30 /K",
                                        desc:"Day Order AXXXX cost vs universe 30th percentile in thousands.",
                                        name:"umAXXXX30K",
                                        mid:"349",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX30 /BP",
                                        desc:"Day Order AXXXX cost vs universe 30th percentile in basis points (%/100).",
                                        name:"umAXXXX30BP",
                                        mid:"350",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX30 /CPS",
                                        desc:"Day Order AXXXX cost vs universe 30th percentile in cents per share.",
                                        name:"umAXXXX30CPS",
                                        mid:"351",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX50 /K",
                                        desc:"Day Order AXXXX cost vs universe 50th percentile in thousands.",
                                        name:"umAXXXX50K",
                                        mid:"353",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX50 /BP",
                                        desc:"Day Order AXXXX cost vs universe 50th percentile in basis points (%/100).",
                                        name:"umAXXXX50BP",
                                        mid:"354",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX70 /K",
                                        desc:"Day Order AXXXX cost vs universe 70th percentile in thousands.",
                                        name:"umAXXXX70K",
                                        mid:"357",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX70 /CPS",
                                        desc:"Day Order AXXXX cost vs universe 70th percentile in cents per share.",
                                        name:"umAXXXX70CPS",
                                        mid:"359",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX90 /BP",
                                        desc:"Day Order AXXXX cost vs universe 90th percentile in basis points (%/100).",
                                        name:"umAXXXX90BP",
                                        mid:"362",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX90 /CPS",
                                        desc:"Day Order AXXXX cost vs universe 90th percentile in cents per share.",
                                        name:"umAXXXX90CPS",
                                        mid:"363",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mAXXXX /K",
                                        desc:"Manager Day Available XXXX cost from entry to close in thousands.",
                                        name:"mAXXXXK",
                                        mid:"60",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mAXXXX /BP",
                                        desc:"Manager Day Available XXXX cost from entry to close in basis points (%/100).",
                                        name:"mAXXXXBP",
                                        mid:"61",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mAXXXX /CPS",
                                        desc:"Manager Day Available XXXX cost from entry to close in cents per share.",
                                        name:"mAXXXXCPS",
                                        mid:"62",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX50 /CPS",
                                        desc:"Day Order AXXXX cost vs universe 50th percentile in cents per share.",
                                        name:"umAXXXX50CPS",
                                        mid:"355",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX70 /BP",
                                        desc:"Day Order AXXXX cost vs universe 70th percentile in basis points (%/100).",
                                        name:"umAXXXX70BP",
                                        mid:"358",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umAXXXX90 /K",
                                        desc:"Day Order AXXXX cost vs universe 90th percentile in thousands.",
                                        name:"umAXXXX90K",
                                        mid:"361",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mDC /K",
                                        desc:"Manager Day XXXX cost from decision to close in thousands.",
                                        name:"mDCK",
                                        mid:"52",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mDC /BP",
                                        desc:"Manager Day XXXX cost from decision to close in basis points (%/100).",
                                        name:"mDCBP",
                                        mid:"53",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mDC /CPS",
                                        desc:"Manager Day XXXX cost from decision to close in cents per share.",
                                        name:"mDCCPS",
                                        mid:"54",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mIXXXX /K",
                                        desc:"Manager Day Interval XXXX from entry to last XXXXXX in thousands.",
                                        name:"mIXXXXK",
                                        mid:"84",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mIXXXX /BP",
                                        desc:"Manager Day Interval XXXX from entry to last XXXXXX in basis points (%/100).",
                                        name:"mIXXXXBP",
                                        mid:"85",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX10 /K",
                                        desc:"Day Order IXXXX cost vs universe 10th percentile in thousands.",
                                        name:"umIXXXX10K",
                                        mid:"325",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX10 /BP",
                                        desc:"Day Order IXXXX cost vs universe 10th percentile in basis points (%/100).",
                                        name:"umIXXXX10BP",
                                        mid:"326",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX10 /CPS",
                                        desc:"Day Order IXXXX cost vs universe 10th percentile in cents per share.",
                                        name:"umIXXXX10CPS",
                                        mid:"327",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX30 /K",
                                        desc:"Day Order IXXXX cost vs universe 30th percentile in thousands.",
                                        name:"umIXXXX30K",
                                        mid:"329",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX30 /BP",
                                        desc:"Day Order IXXXX cost vs universe 30th percentile in basis points (%/100).",
                                        name:"umIXXXX30BP",
                                        mid:"330",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX30 /CPS",
                                        desc:"Day Order IXXXX cost vs universe 30th percentile in cents per share.",
                                        name:"umIXXXX30CPS",
                                        mid:"331",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX50 /K",
                                        desc:"Day Order IXXXX cost vs universe 50th percentile in thousands.",
                                        name:"umIXXXX50K",
                                        mid:"333",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX50 /BP",
                                        desc:"Day Order IXXXX cost vs universe 50th percentile in basis points (%/100).",
                                        name:"umIXXXX50BP",
                                        mid:"334",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX70 /K",
                                        desc:"Day Order IXXXX cost vs universe 70th percentile in thousands.",
                                        name:"umIXXXX70K",
                                        mid:"337",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX70 /CPS",
                                        desc:"Day Order IXXXX cost vs universe 70th percentile in cents per share.",
                                        name:"umIXXXX70CPS",
                                        mid:"339",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX90 /K",
                                        desc:"Day Order IXXXX cost vs universe 90th percentile in thousands.",
                                        name:"umIXXXX90K",
                                        mid:"341",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX90 /BP",
                                        desc:"Day Order IXXXX cost vs universe 90th percentile in basis points (%/100).",
                                        name:"umIXXXX90BP",
                                        mid:"342",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX90 /CPS",
                                        desc:"Day Order IXXXX cost vs universe 90th percentile in cents per share.",
                                        name:"umIXXXX90CPS",
                                        mid:"343",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mIXXXX /CPS",
                                        desc:"Manager Day Interval XXXX from entry to last XXXXXX in cents per share.",
                                        name:"mIXXXXCPS",
                                        mid:"86",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX50 /CPS",
                                        desc:"Day Order IXXXX cost vs universe 50th percentile in cents per share.",
                                        name:"umIXXXX50CPS",
                                        mid:"335",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"umIXXXX70 /BP",
                                        desc:"Day Order IXXXX cost vs universe 70th percentile in basis points (%/100).",
                                        name:"umIXXXX70BP",
                                        mid:"338",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mPC /K",
                                        desc:"Manager Day Available XXXX from first XXXXXX to close in thousands.",
                                        name:"mPCK",
                                        mid:"96",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mPC /BP",
                                        desc:"Manager Day Available XXXX from first XXXXXX to close in basis points (%/100).",
                                        name:"mPCBP",
                                        mid:"97",
                                        format:"#,##0.00",
                                        type:"float"
                                    },
                                    {
                                        title:"mPC /CPS",
                                        desc:"Manager Day Available XXXX from first XXXXXX to close in cents per share.",
                                        name:"mPCCPS",
                                        mid:"98",
                                        format:"#,##0.00",
                                        type:"float"
                                    },

                            Comment


                              #74
                              part2
                              Code:
                                      {
                                          title:"mPX /K",
                                          desc:"Manager Day Interval XXXX from  first XXXXXX to last XXXXXX in thousands.",
                                          name:"mPXK",
                                          mid:"100",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"mPX /BP",
                                          desc:"Manager Day Interval XXXX from  first XXXXXX to last XXXXXX in basis points (%/100).",
                                          name:"mPXBP",
                                          mid:"101",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"mPX /CPS",
                                          desc:"Manager Day Interval XXXX from  first XXXXXX to last XXXXXX in cents per share.",
                                          name:"mPXCPS",
                                          mid:"102",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"C+oAXXXX /K",
                                          desc:"Commission + Order Available XXXX cost from order entry to last day close in thousands.",
                                          name:"CoAXXXXK",
                                          mid:"716",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"C+oAXXXX /BP",
                                          desc:"Commission + Order Available XXXX cost from order entry to last day close in basis points(%/100).",
                                          name:"CoAXXXXBP",
                                          mid:"717",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"C+oAXXXX /CPS",
                                          desc:"Commission + Order Available XXXX cost from order entry to last day close in cents per share.",
                                          name:"CoAXXXXCPS",
                                          mid:"718",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"NetIS/BP",
                                          desc:"NetIS/BP = RCoEntStrike/BP - uoEntStrike50/BP",
                                          name:"NetISBP",
                                          mid:"842",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oCloStrike /K",
                                          desc:"Order Strike cost at close in thousands.",
                                          name:"oCloStrikeK",
                                          mid:"136",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oCloStrike /BP",
                                          desc:"Order Strike cost at close in basis points (%/100).",
                                          name:"oCloStrikeBP",
                                          mid:"137",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oCloStrike /CPS",
                                          desc:"Order Strike cost at close in cents per share.",
                                          name:"oCloStrikeCPS",
                                          mid:"138",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oDecStrike /K",
                                          desc:"Order Strike cost at decision in thousands.",
                                          name:"oDecStrikeK",
                                          mid:"116",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oDecStrike /BP",
                                          desc:"Order Strike cost at decision in basis points (%/100).",
                                          name:"oDecStrikeBP",
                                          mid:"117",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oDecStrike /CPS",
                                          desc:"Order Strike cost at decision in cents per share.",
                                          name:"oDecStrikeCPS",
                                          mid:"118",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oEntStrike /K",
                                          desc:"Order Strike cost at entry in thousands.",
                                          name:"oEntStrikeK",
                                          mid:"140",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oEntStrike /BP",
                                          desc:"Order Strike cost at entry in basis points (%/100).",
                                          name:"oEntStrikeBP",
                                          mid:"141",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oEntStrike /CPS",
                                          desc:"Order Strike cost at entry in cents per share.",
                                          name:"oEntStrikeCPS",
                                          mid:"142",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike10 /BP",
                                          desc:"MultiDay Order Strike cost at entry vs universe 10th percentile in basis points (%/100).",
                                          name:"uoEntStrike10BP",
                                          mid:"186",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike10 /CPS",
                                          desc:"MultiDay Order Strike cost at entry vs universe 10th percentile in cents per share.",
                                          name:"uoEntStrike10CPS",
                                          mid:"187",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike30 /BP",
                                          desc:"MultiDay Order Strike cost at entry vs universe 30th percentile in basis points (%/100).",
                                          name:"uoEntStrike30BP",
                                          mid:"190",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike30 /CPS",
                                          desc:"MultiDay Order Strike cost at entry vs universe 30th percentile in cents per share.",
                                          name:"uoEntStrike30CPS",
                                          mid:"191",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike50 /BP",
                                          desc:"MultiDay Order Strike cost at entry vs universe 50th percentile in basis points (%/100).",
                                          name:"uoEntStrike50BP",
                                          mid:"194",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike70 /BP",
                                          desc:"MultiDay Order Strike cost at entry vs universe 70th percentile in basis points (%/100).",
                                          name:"uoEntStrike70BP",
                                          mid:"198",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike70 /CPS",
                                          desc:"MultiDay Order Strike cost at entry vs universe 70th percentile in cents per share.",
                                          name:"uoEntStrike70CPS",
                                          mid:"199",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike90 /BP",
                                          desc:"MultiDay Order Strike cost at entry vs universe 90th percentile in basis points (%/100).",
                                          name:"uoEntStrike90BP",
                                          mid:"202",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike90 /CPS",
                                          desc:"MultiDay Order Strike cost at entry vs universe 90th percentile in cents per share.",
                                          name:"uoEntStrike90CPS",
                                          mid:"203",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoEntStrike50 /CPS",
                                          desc:"MultiDay Order Strike cost at entry vs universe 50th percentile in cents per share.",
                                          name:"uoEntStrike50CPS",
                                          mid:"195",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oOpnStrike /CPS",
                                          desc:"Order Strike cost against first day open in cents per share.",
                                          name:"oOpnStrikeCPS",
                                          mid:"126",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oOpnStrike /K",
                                          desc:"Order Strike cost against first day open in thousands.",
                                          name:"oOpnStrikeK",
                                          mid:"124",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oOpnStrike /BP",
                                          desc:"Order Strike cost against first day open in basis points (%/100).",
                                          name:"oOpnStrikeBP",
                                          mid:"125",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oPreEnt /K",
                                          desc:"Prior 2 days XXXX vs Order Entry cost in thousands.",
                                          name:"oPreEntK",
                                          mid:"668",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oPreEnt /BP",
                                          desc:"Prior 2 days XXXX vs Order Entry cost in basis points (%/100).",
                                          name:"oPreEntBP",
                                          mid:"669",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oPreEnt /CPS",
                                          desc:"Prior 2 days XXXX vs Order Entry cost in cents per share.",
                                          name:"oPreEntCPS",
                                          mid:"670",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o05% Test /K",
                                          desc:"Order Five-Percent Test from market first entry in thousands.",
                                          name:"o05TestK",
                                          mid:"453",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o05% Test /BP",
                                          desc:"Order Five-Percent Test from market first entry in basis points (%/100).",
                                          name:"o05TestBP",
                                          mid:"454",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o05% Test /CPS",
                                          desc:"Order Five-Percent Test from market first entry in cents per share.",
                                          name:"o05TestCPS",
                                          mid:"455",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o10% Test /K",
                                          desc:"Order Ten-Percent Test from market first entry in thousands.",
                                          name:"o10TestK",
                                          mid:"457",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o10% Test /CPS",
                                          desc:"Order Ten-Percent Test from market first entry in cents per share.",
                                          name:"o10TestCPS",
                                          mid:"459",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o10% Test /BP",
                                          desc:"Order Ten-Percent Test from market first entry in basis points (%/100).",
                                          name:"o10TestBP",
                                          mid:"458",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o15% Test /K",
                                          desc:"Order Fifteen-Percent Test from market first entry in thousands.",
                                          name:"o15TestK",
                                          mid:"461",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o15% Test /BP",
                                          desc:"Order Fifteen-Percent Test from market first entry in basis points (%/100).",
                                          name:"o15TestBP",
                                          mid:"462",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o15% Test /CPS",
                                          desc:"Order Fifteen-Percent Test from market first entry in cents per share.",
                                          name:"o15TestCPS",
                                          mid:"463",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o20% Opn /BP",
                                          desc:"Order Twenty-Percent Test from first day open in basis points (%/100).",
                                          name:"o20OpnBP",
                                          mid:"133",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o20% Opn /CPS",
                                          desc:"Order Twenty-Percent Test from first day open in cents per share.",
                                          name:"o20OpnCPS",
                                          mid:"134",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o20% Opn /K",
                                          desc:"Order Twenty-Percent Test from first day open in thousands.",
                                          name:"o20OpnK",
                                          mid:"132",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test30 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 30th percentile in basis points (%/100).",
                                          name:"uo20Test30BP",
                                          mid:"750",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test80 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 80th percentile in basis points (%/100).",
                                          name:"uo20Test80BP",
                                          mid:"770",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o20% Test /BP",
                                          desc:"Order Twenty-Percent Test from first entry in basis points (%/100).",
                                          name:"o20TestBP",
                                          mid:"149",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o20% Test /K",
                                          desc:"Order Twenty-Percent Test from first entry in thousands.",
                                          name:"o20TestK",
                                          mid:"148",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o20% Test /CPS",
                                          desc:"Order Twenty-Percent Test from first entry in cents per share.",
                                          name:"o20TestCPS",
                                          mid:"150",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test10 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 10th percentile in basis points (%/100).",
                                          name:"uo20Test10BP",
                                          mid:"746",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test10 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 10th percentile in cents per share.",
                                          name:"uo20Test10CPS",
                                          mid:"747",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test30 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 30th percentile in cents per share.",
                                          name:"uo20Test30CPS",
                                          mid:"751",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test20 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 20th percentile in basis points (%/100).",
                                          name:"uo20Test20BP",
                                          mid:"754",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test20 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 20th percentile in cents per share.",
                                          name:"uo20Test20CPS",
                                          mid:"755",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test50 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 50th percentile in basis points (%/100).",
                                          name:"uo20Test50BP",
                                          mid:"758",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test50 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 50th percentile in cents per share.",
                                          name:"uo20Test50CPS",
                                          mid:"759",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test60 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 60th percentile in basis points (%/100).",
                                          name:"uo20Test60BP",
                                          mid:"762",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test60 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 60th percentile in cents per share.",
                                          name:"uo20Test60CPS",
                                          mid:"763",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test70 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 70th percentile in basis points (%/100).",
                                          name:"uo20Test70BP",
                                          mid:"766",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test70 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 70th percentile in cents per share.",
                                          name:"uo20Test70CPS",
                                          mid:"767",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test80 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 80th percentile in cents per share.",
                                          name:"uo20Test80CPS",
                                          mid:"771",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test90 /BP",
                                          desc:"MultiDay Order 20% Test cost vs universe 90th percentile in basis points (%/100).",
                                          name:"uo20Test90BP",
                                          mid:"774",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uo20% Test90 /CPS",
                                          desc:"MultiDay Order 20% Test cost vs universe 90th percentile in cents per share.",
                                          name:"uo20Test90CPS",
                                          mid:"775",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o30% Test /BP",
                                          desc:"Order Thirty-Percent Test from market first entry in basis points (%/100).",
                                          name:"o30TestBP",
                                          mid:"482",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o30% Test /CPS",
                                          desc:"Order Thirty-Percent Test from market first entry in cents per share.",
                                          name:"o30TestCPS",
                                          mid:"483",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"o30% Test /K",
                                          desc:"Order Thirty-Percent Test from market first entry in thousands.",
                                          name:"o30TestK",
                                          mid:"481",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo075% Test /K",
                                          desc:"Order 7.5 Test from first entry in thousands.",
                                          name:"zBTo075TestK",
                                          mid:"690",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo075% Test /BP",
                                          desc:"Order 7.5 Test from first entry in basis points(%/100).",
                                          name:"zBTo075TestBP",
                                          mid:"691",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo075% Test /CPS",
                                          desc:"Order 7.5 Test from first entry in cents per share",
                                          name:"zBTo075TestCPS",
                                          mid:"692",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo125% Test /K",
                                          desc:"Order 12.5 Test from first entry in thousands.",
                                          name:"zBTo125TestK",
                                          mid:"694",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo125% Test /BP",
                                          desc:"Order 12.5 Test from first entry in basis points(%/100).",
                                          name:"zBTo125TestBP",
                                          mid:"695",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo125% Test /CPS",
                                          desc:"Order 12.5 Test from first entry in cents per share",
                                          name:"zBTo125TestCPS",
                                          mid:"696",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo175% Test /K",
                                          desc:"Order 17.5 Test from first entry in thousands.",
                                          name:"zBTo175TestK",
                                          mid:"698",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo175% Test /BP",
                                          desc:"Order 17.5 Test from first entry in basis points(%/100).",
                                          name:"zBTo175TestBP",
                                          mid:"699",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo175% Test /CPS",
                                          desc:"Order 17.5 Test from first entry in cents per share",
                                          name:"zBTo175TestCPS",
                                          mid:"700",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo225% Test /K",
                                          desc:"Order 22.5 Test from first entry in thousands.",
                                          name:"zBTo225TestK",
                                          mid:"702",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo225% Test /BP",
                                          desc:"Order 22.5 Test from first entry in basis points(%/100).",
                                          name:"zBTo225TestBP",
                                          mid:"703",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo225% Test /CPS",
                                          desc:"Order 22.5 Test from first entry in cents per share",
                                          name:"zBTo225TestCPS",
                                          mid:"704",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo25% Test /BP",
                                          desc:"Order 25 Test from first entry in basis points(%/100)",
                                          name:"zBTo25TestBP",
                                          mid:"711",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo25% Test /CPS",
                                          desc:"Order 25 Test from first entry in cents per share",
                                          name:"zBTo25TestCPS",
                                          mid:"712",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"zBTo25% Test /K",
                                          desc:"Order 25 Test from first entry in thousands",
                                          name:"zBTo25TestK",
                                          mid:"710",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"LMToIXXXX /BP",
                                          desc:"Order Interval XXXX cost from entry to last XXXXXX within limit price in basis points(%/100).",
                                          name:"LMToIXXXXBP",
                                          mid:"836",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"LMToIXXXX /K",
                                          desc:"Order Interval XXXX cost from entry to last XXXXXX within limit price in Thousands",
                                          name:"LMToIXXXXK",
                                          mid:"835",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"LMToIXXXX /CPS",
                                          desc:"Order Interval XXXX cost from entry to last XXXXXX within limit price in cents per share.",
                                          name:"LMToIXXXXCPS",
                                          mid:"837",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"NetAXXXX/BP",
                                          desc:"NetAXXXX/BP = RCoAXXXX/BP - uoAXXXX50/BP",
                                          name:"NetAXXXXBP",
                                          mid:"843",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oAXXXX /K",
                                          desc:"Order Available XXXX from entry to close in thousands.",
                                          name:"oAXXXXK",
                                          mid:"144",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oAXXXX /BP",
                                          desc:"Order Available XXXX from entry to close in basis points (%/100).",
                                          name:"oAXXXXBP",
                                          mid:"145",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX10 /BP",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 10th percentile in basis points (%/100).",
                                          name:"uoAXXXX10BP",
                                          mid:"206",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX10 /CPS",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 10th percentile in cents per share.",
                                          name:"uoAXXXX10CPS",
                                          mid:"207",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX30 /BP",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 30th percentile in basis points (%/100).",
                                          name:"uoAXXXX30BP",
                                          mid:"210",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX30 /CPS",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 30th percentile in cents per share.",
                                          name:"uoAXXXX30CPS",
                                          mid:"211",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX50 /BP",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 50th percentile in basis points (%/100).",
                                          name:"uoAXXXX50BP",
                                          mid:"214",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX70 /BP",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 70th percentile in basis points (%/100).",
                                          name:"uoAXXXX70BP",
                                          mid:"218",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX70 /CPS",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 70th percentile in cents per share.",
                                          name:"uoAXXXX70CPS",
                                          mid:"219",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX90 /BP",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 90th percentile in basis points (%/100).",
                                          name:"uoAXXXX90BP",
                                          mid:"222",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX90 /CPS",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 90th percentile in cents per share.",
                                          name:"uoAXXXX90CPS",
                                          mid:"223",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oAXXXX /CPS",
                                          desc:"Order Available XXXX from entry to close in cents per share.",
                                          name:"oAXXXXCPS",
                                          mid:"146",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoAXXXX50 /CPS",
                                          desc:"MultiDay Order XXXX cost from Entry to Close vs universe 50th percentile in cents per share.",
                                          name:"uoAXXXX50CPS",
                                          mid:"215",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oDC /K",
                                          desc:"Order XXXX from decision to close in thousands.",
                                          name:"oDCK",
                                          mid:"120",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oDC /BP",
                                          desc:"Order XXXX from decision to close in basis points (%/100).",
                                          name:"oDCBP",
                                          mid:"121",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oDC /CPS",
                                          desc:"Order XXXX from decision to close in cents per share.",
                                          name:"oDCCPS",
                                          mid:"122",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oIXXXX /K",
                                          desc:"Order Interval XXXX from entry to last XXXXXX in thousands.",
                                          name:"oIXXXXK",
                                          mid:"165",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oIXXXX /BP",
                                          desc:"Order Interval XXXX from entry to last XXXXXX in basis points (%/100).",
                                          name:"oIXXXXBP",
                                          mid:"166",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oIXXXX /CPS",
                                          desc:"Order Interval XXXX from entry to last XXXXXX in cents per share.",
                                          name:"oIXXXXCPS",
                                          mid:"167",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX10 /BP",
                                          desc:"MultiDay Order IXXXX cost vs universe 10th percentile in basis points (%/100).",
                                          name:"uoIXXXX10BP",
                                          mid:"808",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX10 /CPS",
                                          desc:"MultiDay Order IXXXX cost vs universe 10th percentile in cents per share.",
                                          name:"uoIXXXX10CPS",
                                          mid:"809",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX30 /BP",
                                          desc:"MultiDay Order IXXXX cost vs universe 30th percentile in basis points (%/100).",
                                          name:"uoIXXXX30BP",
                                          mid:"812",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX50 /CPS",
                                          desc:"MultiDay Order IXXXX cost vs universe 50th percentile in cents per share.",
                                          name:"uoIXXXX50CPS",
                                          mid:"817",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX70 /BP",
                                          desc:"MultiDay Order IXXXX cost vs universe 70th percentile in basis points (%/100).",
                                          name:"uoIXXXX70BP",
                                          mid:"820",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX70 /CPS",
                                          desc:"MultiDay Order IXXXX cost vs universe 70th percentile in cents per share.",
                                          name:"uoIXXXX70CPS",
                                          mid:"821",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX90 /BP",
                                          desc:"MultiDay Order IXXXX cost vs universe 90th percentile in basis points (%/100).",
                                          name:"uoIXXXX90BP",
                                          mid:"824",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX30 /CPS",
                                          desc:"MultiDay Order IXXXX cost vs universe 30th percentile in cents per share.",
                                          name:"uoIXXXX30CPS",
                                          mid:"813",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"uoIXXXX50 /BP",
                                          desc:"MultiDay Order IXXXX cost vs universe 50th percentile in basis points (%/100).",
                                          name:"uoIXXXX50BP",
                                          mid:"816",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oPost /K",
                                          desc:"Order cost against XXXX of 2 days after in thousands.",
                                          name:"oPostK",
                                          mid:"156",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oPost /BP",
                                          desc:"Order cost against XXXX of 2 days after in basis points (%/100).",
                                          name:"oPostBP",
                                          mid:"157",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oPost /CPS",
                                          desc:"Order cost against XXXX of 2 days after in cents per share.",
                                          name:"oPostCPS",
                                          mid:"158",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oXXXX /K",
                                          desc:"Order XXXX from first day open to last day close in thousands.",
                                          name:"oXXXXK",
                                          mid:"128",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oXXXX /CPS",
                                          desc:"Order XXXX from first day open to last day close in cents per share.",
                                          name:"oXXXXCPS",
                                          mid:"130",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"oXXXX /BP",
                                          desc:"Order XXXX from first day open to last day close in basis points (%/100).",
                                          name:"oXXXXBP",
                                          mid:"129",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"C+dXXXX /K",
                                          desc:"Commission + Day XXXX cost from open to close in thousands.",
                                          name:"CdXXXXK",
                                          mid:"722",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"C+dXXXX /BP",
                                          desc:"Commission + Day XXXX cost from open to close in basis points(%/100).",
                                          name:"CdXXXXBP",
                                          mid:"723",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"C+dXXXX /CPS",
                                          desc:"Commission + Day XXXX cost from open to close in cents per share.",
                                          name:"CdXXXXCPS",
                                          mid:"724",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dCloStrike /BP",
                                          desc:"Day Strike cost at close in basis points (%/100).",
                                          name:"dCloStrikeBP",
                                          mid:"69",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dCloStrike /K",
                                          desc:"Day Strike cost at close in thousands.",
                                          name:"dCloStrikeK",
                                          mid:"68",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dCloStrike /CPS",
                                          desc:"Day Strike cost at close in cents per share.",
                                          name:"dCloStrikeCPS",
                                          mid:"70",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dOpnStrike /K",
                                          desc:"Day Strike cost at open in thousands.",
                                          name:"dOpnStrikeK",
                                          mid:"44",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dOpnStrike /BP",
                                          desc:"Day Strike cost at open in basis points (%/100).",
                                          name:"dOpnStrikeBP",
                                          mid:"45",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike10 /K",
                                          desc:"Day Order Strike cost at entry vs universe 10th percentile in thousands.",
                                          name:"udOpnStrike10K",
                                          mid:"265",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike10 /BP",
                                          desc:"Day Order Strike cost at entry vs universe 10th percentile in basis points (%/100).",
                                          name:"udOpnStrike10BP",
                                          mid:"266",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike10 /CPS",
                                          desc:"Day Order Strike cost at entry vs universe 10th percentile in cents per share.",
                                          name:"udOpnStrike10CPS",
                                          mid:"267",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike30 /K",
                                          desc:"Day Order Strike cost at entry vs universe 30th percentile in thousands.",
                                          name:"udOpnStrike30K",
                                          mid:"269",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike30 /BP",
                                          desc:"Day Order Strike cost at entry vs universe 30th percentile in basis points (%/100).",
                                          name:"udOpnStrike30BP",
                                          mid:"270",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike30 /CPS",
                                          desc:"Day Order Strike cost at entry vs universe 30th percentile in cents per share.",
                                          name:"udOpnStrike30CPS",
                                          mid:"271",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike50 /K",
                                          desc:"Day Order Strike cost at entry vs universe 50th percentile in thousands.",
                                          name:"udOpnStrike50K",
                                          mid:"273",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike50 /BP",
                                          desc:"Day Order Strike cost at entry vs universe 50th percentile in basis points (%/100).",
                                          name:"udOpnStrike50BP",
                                          mid:"274",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike70 /K",
                                          desc:"Day Order Strike cost at entry vs universe 70th percentile in thousands.",
                                          name:"udOpnStrike70K",
                                          mid:"277",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike70 /CPS",
                                          desc:"Day Order Strike cost at entry vs universe 70th percentile in cents per share.",
                                          name:"udOpnStrike70CPS",
                                          mid:"279",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike90 /K",
                                          desc:"Day Order Strike cost at entry vs universe 90th percentile in thousands.",
                                          name:"udOpnStrike90K",
                                          mid:"281",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike90 /BP",
                                          desc:"Day Order Strike cost at entry vs universe 90th percentile in basis points (%/100).",
                                          name:"udOpnStrike90BP",
                                          mid:"282",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike90 /CPS",
                                          desc:"Day Order Strike cost at entry vs universe 90th percentile in cents per share.",
                                          name:"udOpnStrike90CPS",
                                          mid:"283",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dOpnStrike /CPS",
                                          desc:"Day Strike cost at open in cents per share.",
                                          name:"dOpnStrikeCPS",
                                          mid:"46",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike50 /CPS",
                                          desc:"Day Order Strike cost at entry vs universe 50th percentile in cents per share.",
                                          name:"udOpnStrike50CPS",
                                          mid:"275",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udOpnStrike70 /BP",
                                          desc:"Day Order Strike cost at entry vs universe 70th percentile in basis points (%/100).",
                                          name:"udOpnStrike70BP",
                                          mid:"278",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo70 /BP",
                                          desc:"Day Order PriorClose cost vs universe 70th percentile in basis points (%/100).",
                                          name:"udPriorClo70BP",
                                          mid:"398",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo90 /K",
                                          desc:"Day Order PriorClose cost vs universe 90th percentile in thousands.",
                                          name:"udPriorClo90K",
                                          mid:"401",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo10 /K",
                                          desc:"Day Order PriorClose cost vs universe 10th percentile in thousands.",
                                          name:"udPriorClo10K",
                                          mid:"385",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo10 /BP",
                                          desc:"Day Order PriorClose cost vs universe 10th percentile in basis points (%/100).",
                                          name:"udPriorClo10BP",
                                          mid:"386",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo10 /CPS",
                                          desc:"Day Order PriorClose cost vs universe 10th percentile in cents per share.",
                                          name:"udPriorClo10CPS",
                                          mid:"387",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo30 /K",
                                          desc:"Day Order PriorClose cost vs universe 30th percentile in thousands.",
                                          name:"udPriorClo30K",
                                          mid:"389",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo30 /BP",
                                          desc:"Day Order PriorClose cost vs universe 30th percentile in basis points (%/100).",
                                          name:"udPriorClo30BP",
                                          mid:"390",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo30 /CPS",
                                          desc:"Day Order PriorClose cost vs universe 30th percentile in cents per share.",
                                          name:"udPriorClo30CPS",
                                          mid:"391",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo50 /K",
                                          desc:"Day Order PriorClose cost vs universe 50th percentile in thousands.",
                                          name:"udPriorClo50K",
                                          mid:"393",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo50 /BP",
                                          desc:"Day Order PriorClose cost vs universe 50th percentile in basis points (%/100).",
                                          name:"udPriorClo50BP",
                                          mid:"394",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo50 /CPS",
                                          desc:"Day Order PriorClose cost vs universe 50th percentile in cents per share.",
                                          name:"udPriorClo50CPS",
                                          mid:"395",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo70 /K",
                                          desc:"Day Order PriorClose cost vs universe 70th percentile in thousands.",
                                          name:"udPriorClo70K",
                                          mid:"397",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo70 /CPS",
                                          desc:"Day Order PriorClose cost vs universe 70th percentile in cents per share.",
                                          name:"udPriorClo70CPS",
                                          mid:"399",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo90 /BP",
                                          desc:"Day Order PriorClose cost vs universe 90th percentile in basis points (%/100).",
                                          name:"udPriorClo90BP",
                                          mid:"402",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udPriorClo90 /CPS",
                                          desc:"Day Order PriorClose cost vs universe 90th percentile in cents per share.",
                                          name:"udPriorClo90CPS",
                                          mid:"403",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dPriorClo /K",
                                          desc:"Prior day close in thousands.",
                                          name:"dPriorCloK",
                                          mid:"16",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dPriorClo /BP",
                                          desc:"Prior day close in basis points (%/100).",
                                          name:"dPriorCloBP",
                                          mid:"17",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dPriorClo /CPS",
                                          desc:"Prior day close in cents per share.",
                                          name:"dPriorCloCPS",
                                          mid:"18",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOM GL /K",
                                          desc:"G/L to end of month in thousands.",
                                          name:"EOMGLK",
                                          mid:"72",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOM GL /BP",
                                          desc:"G/L to end of month in basis points (%/100).",
                                          name:"EOMGLBP",
                                          mid:"73",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOM GL /CPS",
                                          desc:"G/L to end of month in cents per share.",
                                          name:"EOMGLCPS",
                                          mid:"74",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOQ GL /K",
                                          desc:"G/L to end of quarter in thousands.",
                                          name:"EOQGLK",
                                          mid:"76",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOQ GL /BP",
                                          desc:"G/L to end of quarter in basis points (%/100).",
                                          name:"EOQGLBP",
                                          mid:"77",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOQ GL /CPS",
                                          desc:"G/L to end of quarter in cents per share.",
                                          name:"EOQGLCPS",
                                          mid:"78",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOY GL /K",
                                          desc:"G/L to end of year in thousands.",
                                          name:"EOYGLK",
                                          mid:"80",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOY GL /BP",
                                          desc:"G/L to end of year in basis points (%/100).",
                                          name:"EOYGLBP",
                                          mid:"81",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"EOY GL /CPS",
                                          desc:"G/L to end of year in cents per share.",
                                          name:"EOYGLCPS",
                                          mid:"82",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d05% Test /K",
                                          desc:"Day Five-Percent Test from trade entry in thousands.",
                                          name:"d05TestK",
                                          mid:"429",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d05% Test /BP",
                                          desc:"Day Five-Percent Test from trade entry in basis points (%/100).",
                                          name:"d05TestBP",
                                          mid:"430",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d05% Test /CPS",
                                          desc:"Day Five-Percent Test from trade entry in cents per share.",
                                          name:"d05TestCPS",
                                          mid:"431",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d10% Test /K",
                                          desc:"Day Ten-Percent Test from trade entry in thousands.",
                                          name:"d10TestK",
                                          mid:"433",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d10% Test /BP",
                                          desc:"Day Ten-Percent Test from trade entry in basis points (%/100).",
                                          name:"d10TestBP",
                                          mid:"434",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d10% Test /CPS",
                                          desc:"Day Ten-Percent Test from trade entry in cents per share.",
                                          name:"d10TestCPS",
                                          mid:"435",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d20% Opn /CPS",
                                          desc:"Manager Day Twenty-Percent Test from open in cents per share.",
                                          name:"d20OpnCPS",
                                          mid:"66",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d20% Opn /K",
                                          desc:"Manager Day Twenty-Percent Test from open in thousands.",
                                          name:"d20OpnK",
                                          mid:"64",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d20% Opn /BP",
                                          desc:"Manager Day Twenty-Percent Test from open in basis points (%/100).",
                                          name:"d20OpnBP",
                                          mid:"65",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d20% Test /K",
                                          desc:"Manager Day Twenty-Percent Test from entry in thousands.",
                                          name:"d20TestK",
                                          mid:"88",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d20% Test /CPS",
                                          desc:"Manager Day Twenty-Percent Test from entry in cents per share.",
                                          name:"d20TestCPS",
                                          mid:"90",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d20% Test /BP",
                                          desc:"Manager Day Twenty-Percent Test from entry in basis points (%/100).",
                                          name:"d20TestBP",
                                          mid:"89",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test10 /K",
                                          desc:"Day Order 20% Test cost vs universe 10th percentile in thousands.",
                                          name:"ud20Test10K",
                                          mid:"365",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test10 /BP",
                                          desc:"Day Order 20% Test cost vs universe 10th percentile in basis points (%/100).",
                                          name:"ud20Test10BP",
                                          mid:"366",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test10 /CPS",
                                          desc:"Day Order 20% Test cost vs universe 10th percentile in cents per share.",
                                          name:"ud20Test10CPS",
                                          mid:"367",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test30 /K",
                                          desc:"Day Order 20% Test cost vs universe 30th percentile in thousands.",
                                          name:"ud20Test30K",
                                          mid:"369",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test30 /BP",
                                          desc:"Day Order 20% Test cost vs universe 30th percentile in basis points (%/100).",
                                          name:"ud20Test30BP",
                                          mid:"370",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test30 /CPS",
                                          desc:"Day Order 20% Test cost vs universe 30th percentile in cents per share.",
                                          name:"ud20Test30CPS",
                                          mid:"371",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test50 /K",
                                          desc:"Day Order 20% Test cost vs universe 50th percentile in thousands.",
                                          name:"ud20Test50K",
                                          mid:"373",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test50 /BP",
                                          desc:"Day Order 20% Test cost vs universe 50th percentile in basis points (%/100).",
                                          name:"ud20Test50BP",
                                          mid:"374",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test70 /K",
                                          desc:"Day Order 20% Test cost vs universe 70th percentile in thousands.",
                                          name:"ud20Test70K",
                                          mid:"377",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test70 /CPS",
                                          desc:"Day Order 20% Test cost vs universe 70th percentile in cents per share.",
                                          name:"ud20Test70CPS",
                                          mid:"379",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test90 /BP",
                                          desc:"Day Order 20% Test cost vs universe 90th percentile in basis points (%/100).",
                                          name:"ud20Test90BP",
                                          mid:"382",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test90 /CPS",
                                          desc:"Day Order 20% Test cost vs universe 90th percentile in cents per share.",
                                          name:"ud20Test90CPS",
                                          mid:"383",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test50 /CPS",
                                          desc:"Day Order 20% Test cost vs universe 50th percentile in cents per share.",
                                          name:"ud20Test50CPS",
                                          mid:"375",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test70 /BP",
                                          desc:"Day Order 20% Test cost vs universe 70th percentile in basis points (%/100).",
                                          name:"ud20Test70BP",
                                          mid:"378",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"ud20% Test90 /K",
                                          desc:"Day Order 20% Test cost vs universe 90th percentile in thousands.",
                                          name:"ud20Test90K",
                                          mid:"381",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d30% Test /K",
                                          desc:"Day Thirty-Percent Test from trade entry in thousands.",
                                          name:"d30TestK",
                                          mid:"477",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d30% Test /BP",
                                          desc:"Day Thirty-Percent Test from trade entry in basis points (%/100).",
                                          name:"d30TestBP",
                                          mid:"478",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"d30% Test /CPS",
                                          desc:"Day Thirty-Percent Test from trade entry in cents per share.",
                                          name:"d30TestCPS",
                                          mid:"479",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dPost /K",
                                          desc:"Day post-trade in thousands.",
                                          name:"dPostK",
                                          mid:"112",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dPost /BP",
                                          desc:"Day post-trade in basis points (%/100).",
                                          name:"dPostBP",
                                          mid:"113",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dPost /CPS",
                                          desc:"Day post-trade in cents per share.",
                                          name:"dPostCPS",
                                          mid:"114",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dXXXX /K",
                                          desc:"Day XXXX cost from open to close in thousands.",
                                          name:"dXXXXK",
                                          mid:"56",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dXXXX /BP",
                                          desc:"Day XXXX cost from open to close in basis points (%/100).",
                                          name:"dXXXXBP",
                                          mid:"57",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"dXXXX /CPS",
                                          desc:"Day XXXX cost from open to close in cents per share.",
                                          name:"dXXXXCPS",
                                          mid:"58",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX10 /K",
                                          desc:"Day Order XXXX cost vs universe 10th percentile in thousands.",
                                          name:"udXXXX10K",
                                          mid:"305",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX10 /BP",
                                          desc:"Day Order XXXX cost vs universe 10th percentile in basis points (%/100).",
                                          name:"udXXXX10BP",
                                          mid:"306",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX10 /CPS",
                                          desc:"Day Order XXXX cost vs universe 10th percentile in cents per share.",
                                          name:"udXXXX10CPS",
                                          mid:"307",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX30 /K",
                                          desc:"Day Order XXXX cost vs universe 30th percentile in thousands.",
                                          name:"udXXXX30K",
                                          mid:"309",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX30 /BP",
                                          desc:"Day Order XXXX cost vs universe 30th percentile in basis points (%/100).",
                                          name:"udXXXX30BP",
                                          mid:"310",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX30 /CPS",
                                          desc:"Day Order XXXX cost vs universe 30th percentile in cents per share.",
                                          name:"udXXXX30CPS",
                                          mid:"311",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX50 /K",
                                          desc:"Day Order XXXX cost vs universe 50th percentile in thousands.",
                                          name:"udXXXX50K",
                                          mid:"313",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX50 /BP",
                                          desc:"Day Order XXXX cost vs universe 50th percentile in basis points (%/100).",
                                          name:"udXXXX50BP",
                                          mid:"314",
                                          format:"#,##0.00",
                                          type:"float"
                                      },
                                      {
                                          title:"udXXXX70 /K",
                                          desc:"Day Order XXXX cost vs universe 70th percentile in thousands.",
                                          name:"udXXXX70K",
                                          mid:"317",
                                          format:"#,##0.00",
                                          type:"float"
                                      },

                              Comment


                                #75
                                part3
                                Code:
                                        {
                                            title:"udXXXX70 /CPS",
                                            desc:"Day Order XXXX cost vs universe 70th percentile in cents per share.",
                                            name:"udXXXX70CPS",
                                            mid:"319",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"udXXXX90 /K",
                                            desc:"Day Order XXXX cost vs universe 90th percentile in thousands.",
                                            name:"udXXXX90K",
                                            mid:"321",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"udXXXX90 /BP",
                                            desc:"Day Order XXXX cost vs universe 90th percentile in basis points (%/100).",
                                            name:"udXXXX90BP",
                                            mid:"322",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"udXXXX90 /CPS",
                                            desc:"Day Order XXXX cost vs universe 90th percentile in cents per share.",
                                            name:"udXXXX90CPS",
                                            mid:"323",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"udXXXX50 /CPS",
                                            desc:"Day Order XXXX cost vs universe 50th percentile in cents per share.",
                                            name:"udXXXX50CPS",
                                            mid:"315",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"udXXXX70 /BP",
                                            desc:"Day Order XXXX cost vs universe 70th percentile in basis points (%/100).",
                                            name:"udXXXX70BP",
                                            mid:"318",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm70 /CPS",
                                            desc:"Universe commission 70th percentile in cents per share.",
                                            name:"uComm70CPS",
                                            mid:"859",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm10 /K",
                                            desc:"Universe commision 10th percentile in thousands.",
                                            name:"uComm10K",
                                            mid:"845",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm10 /BP",
                                            desc:"Universe commission 10th percentile in basis points (%/100).",
                                            name:"uComm10BP",
                                            mid:"846",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm10 /CPS",
                                            desc:"Universe commission 10th percentile in cents per share.",
                                            name:"uComm10CPS",
                                            mid:"847",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm30 /K",
                                            desc:"Universe commision 30th percentile in thousands.",
                                            name:"uComm30K",
                                            mid:"849",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm30 /BP",
                                            desc:"Universe commission 30th percentile in basis points (%/100).",
                                            name:"uComm30BP",
                                            mid:"850",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm30 /CPS",
                                            desc:"Universe commission 30th percentile in cents per share.",
                                            name:"uComm30CPS",
                                            mid:"851",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm50 /K",
                                            desc:"Universe commision 50th percentile in thousands.",
                                            name:"uComm50K",
                                            mid:"853",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm50 /BP",
                                            desc:"Universe commission 50th percentile in basis points (%/100).",
                                            name:"uComm50BP",
                                            mid:"854",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm50 /CPS",
                                            desc:"Universe commission 50th percentile in cents per share.",
                                            name:"uComm50CPS",
                                            mid:"855",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm70 /K",
                                            desc:"Universe commision 70th percentile in thousands.",
                                            name:"uComm70K",
                                            mid:"857",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm70 /BP",
                                            desc:"Universe commission 70th percentile in basis points (%/100).",
                                            name:"uComm70BP",
                                            mid:"858",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm90 /K",
                                            desc:"Universe commision 90th percentile in thousands.",
                                            name:"uComm90K",
                                            mid:"861",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm90 /BP",
                                            desc:"Universe commission 90th percentile in basis points (%/100).",
                                            name:"uComm90BP",
                                            mid:"862",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uComm90 /CPS",
                                            desc:"Universe commission 90th percentile in cents per share.",
                                            name:"uComm90CPS",
                                            mid:"863",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Comm",
                                            desc:"Commission amoun.",
                                            name:"Comm",
                                            mid:"7",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Comm /K",
                                            desc:"Commission in thousands.",
                                            name:"CommK",
                                            mid:"8",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Comm /BP",
                                            desc:"Commission in basis points (%/100).",
                                            name:"CommBP",
                                            mid:"9",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Comm /CPS",
                                            desc:"Commission in cents per share.",
                                            name:"CommCPS",
                                            mid:"10",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Taxes And Fees",
                                            desc:"Taxes and other fees.",
                                            name:"TaxesAndFees",
                                            mid:"11",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Taxes And Fees /K",
                                            desc:"Taxes and fees in thousands.",
                                            name:"TaxesAndFeesK",
                                            mid:"12",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Taxes and Fees /BP",
                                            desc:"Taxes and Fees in basis points (%/100).",
                                            name:"TaxesandFeesBP",
                                            mid:"13",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Taxes and Fees /CPS",
                                            desc:"Taxes and Fees in cents per share.",
                                            name:"TaxesandFeesCPS",
                                            mid:"14",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Price",
                                            desc:"Price",
                                            name:"Price",
                                            mid:"743",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Prin /K",
                                            desc:"Principal in thousands.",
                                            name:"PrinK",
                                            mid:"6",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"Shares",
                                            desc:"Number of Shares Traded.",
                                            name:"Shares",
                                            mid:"5",
                                            format:"#,###",
                                            type:"float"
                                        }
                                    ],
                                    serverType:"generic"
                                })
                                "
                                17:30:47.606:TMR4:INFO:RPCManager:rpcResponse(unstructured) results -->"if (window.isc == undefined || window.isc.DataSource == undefined){  alert("Can't load DataSources - SmartClient runtime not loaded");}isc.DataSource.create({
                                    allowAdvancedCriteria:true,
                                    ID:"pivot_table_tree_fact_POF_384_682",
                                    fields:[
                                        {
                                            hidden:true,
                                            primaryKey:true,
                                            name:"cid",
                                            type:"text",
                                            required:true
                                        },
                                        {
                                            hidden:true,
                                            name:"pid",
                                            type:"text",
                                            required:true,
                                            foreignKey:"cid"
                                        },
                                        {
                                            title:"Dimensions",
                                            width:"300",
                                            name:"name",
                                            type:"text"
                                        },
                                        {
                                            title:"C+bIXXXX /K",
                                            desc:"Commission + Interval XXXX from trade XXXXXX to XXXXXX cost from entry to close in thousands.",
                                            name:"CbIXXXXK",
                                            mid:"719",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+bIXXXX /BP",
                                            desc:"Commission + Interval XXXX from trade XXXXXX to XXXXXX cost from entry to close in basis points(%/100).",
                                            name:"CbIXXXXBP",
                                            mid:"720",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+bIXXXX /CPS",
                                            desc:"Commission + Interval XXXX from trade XXXXXX to XXXXXX cost from entry to close in cents per share.",
                                            name:"CbIXXXXCPS",
                                            mid:"721",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bExeStrike /K",
                                            desc:"XXXX Strike cost at trade XXXXXX time in thousands.",
                                            name:"bExeStrikeK",
                                            mid:"36",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bExeStrike /BP",
                                            desc:"XXXX Strike cost at trade XXXXXX time in basis points (%/100).",
                                            name:"bExeStrikeBP",
                                            mid:"37",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bExeStrike /CPS",
                                            desc:"XXXX Strike cost at trade XXXXXX time in cents per share.",
                                            name:"bExeStrikeCPS",
                                            mid:"38",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bPlcStrike /K",
                                            desc:"XXXX Strike cost at trade XXXXXX time in thousands.",
                                            name:"bPlcStrikeK",
                                            mid:"20",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bPlcStrike /BP",
                                            desc:"XXXX Strike cost at trade XXXXXX time in basis points (%/100).",
                                            name:"bPlcStrikeBP",
                                            mid:"21",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bPlcStrike /CPS",
                                            desc:"XXXX Strike cost at trade XXXXXX time in cents per share.",
                                            name:"bPlcStrikeCPS",
                                            mid:"22",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike10 /K",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 10th percentile in thousands.",
                                            name:"ubPlcStrike10K",
                                            mid:"245",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike10 /BP",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 10th percentile in basis points (%/100).",
                                            name:"ubPlcStrike10BP",
                                            mid:"246",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike10 /CPS",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 10th percentile in cents per share.",
                                            name:"ubPlcStrike10CPS",
                                            mid:"247",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike30 /K",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 30th percentile in thousands.",
                                            name:"ubPlcStrike30K",
                                            mid:"249",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike30 /BP",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 30th percentile in basis points (%/100).",
                                            name:"ubPlcStrike30BP",
                                            mid:"250",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike30 /CPS",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 30th percentile in cents per share.",
                                            name:"ubPlcStrike30CPS",
                                            mid:"251",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike50 /K",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 50th percentile in thousands.",
                                            name:"ubPlcStrike50K",
                                            mid:"253",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike50 /BP",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 50th percentile in basis points (%/100).",
                                            name:"ubPlcStrike50BP",
                                            mid:"254",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike70 /K",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 70th percentile in thousands.",
                                            name:"ubPlcStrike70K",
                                            mid:"257",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike70 /BP",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 70th percentile in basis points (%/100).",
                                            name:"ubPlcStrike70BP",
                                            mid:"258",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike70 /CPS",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 70th percentile in cents per share.",
                                            name:"ubPlcStrike70CPS",
                                            mid:"259",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike90 /K",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 90th percentile in thousands.",
                                            name:"ubPlcStrike90K",
                                            mid:"261",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike90 /BP",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 90th percentile in basis points (%/100).",
                                            name:"ubPlcStrike90BP",
                                            mid:"262",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike90 /CPS",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 90th percentile in cents per share.",
                                            name:"ubPlcStrike90CPS",
                                            mid:"263",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bPlcStrike vs Median /BP",
                                            desc:"bPlcStrike - bPlcStrike50 in basis points(%/100).",
                                            name:"bPlcStrikeDiffBP",
                                            mid:"840",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bPlcStrike vs Median /CPS",
                                            desc:"bPlcStrike - bPlcStrike50 in cents per share.",
                                            name:"bPlcStrikeDiffCPS",
                                            mid:"841",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubPlcStrike50 /CPS",
                                            desc:"XXXXDay Order Strike cost at XXXXXX vs universe 50th percentile in cents per share.",
                                            name:"ubPlcStrike50CPS",
                                            mid:"255",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bPlcStrike vs Median /K",
                                            desc:"bPlcStrike - bPlcStrike50 in Thousands",
                                            name:"bPlcStrikeDiffK",
                                            mid:"839",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"b10% Test /K",
                                            desc:"XXXX Ten-Percent Test from trade XXXXXX in thousands.",
                                            name:"b10TestK",
                                            mid:"409",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"b10% Test /BP",
                                            desc:"XXXX Ten-Percent Test from trade XXXXXX in basis points (%/100).",
                                            name:"b10TestBP",
                                            mid:"410",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"b10% Test /CPS",
                                            desc:"XXXX Ten-Percent Test from trade XXXXXX in cents per share.",
                                            name:"b10TestCPS",
                                            mid:"411",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"b20% Test /K",
                                            desc:"XXXX Twenty-Percent Test from trade XXXXXX in thousands.",
                                            name:"b20TestK",
                                            mid:"32",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"b20% Test /BP",
                                            desc:"XXXX Twenty-Percent Test from trade XXXXXX in basis points (%/100).",
                                            name:"b20TestBP",
                                            mid:"33",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"b20% Test /CPS",
                                            desc:"XXXX Twenty-Percent Test from trade XXXXXX in cents per share.",
                                            name:"b20TestCPS",
                                            mid:"34",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"XXXXOrderCount",
                                            desc:"XXXX Day Order Count",
                                            name:"bOrderCount",
                                            mid:"799",
                                            format:"#,###",
                                            type:"float"
                                        },
                                        {
                                            title:"bAXXXX /CPS",
                                            desc:"XXXX Available XXXX from trade XXXXXX to close in cents per share.",
                                            name:"bAXXXXCPS",
                                            mid:"26",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bAXXXX /K",
                                            desc:"XXXX Available XXXX from trade XXXXXX to close in thousands.",
                                            name:"bAXXXXK",
                                            mid:"24",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bAXXXX /BP",
                                            desc:"XXXX Available XXXX from trade XXXXXX to close in basis points (%/100).",
                                            name:"bAXXXXBP",
                                            mid:"25",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bIXXXX /K",
                                            desc:"XXXX Interval XXXX from trade XXXXXX to XXXXXX in thousands.",
                                            name:"bIXXXXK",
                                            mid:"28",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bIXXXX /BP",
                                            desc:"XXXX Interval XXXX from trade XXXXXX to XXXXXX in basis points (%/100).",
                                            name:"bIXXXXBP",
                                            mid:"29",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"bIXXXX /CPS",
                                            desc:"XXXX Interval XXXX from trade XXXXXX to XXXXXX in cents per share.",
                                            name:"bIXXXXCPS",
                                            mid:"30",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX10 /K",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 10th percentile in thousands.",
                                            name:"ubIXXXX10K",
                                            mid:"225",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX10 /BP",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 10th percentile in basis points (%/100).",
                                            name:"ubIXXXX10BP",
                                            mid:"226",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX10 /CPS",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 10th percentile in cents per share.",
                                            name:"ubIXXXX10CPS",
                                            mid:"227",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX30 /BP",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 30th percentile in basis points (%/100).",
                                            name:"ubIXXXX30BP",
                                            mid:"230",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX30 /CPS",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 30th percentile in cents per share.",
                                            name:"ubIXXXX30CPS",
                                            mid:"231",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX50 /K",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 50th percentile in thousands.",
                                            name:"ubIXXXX50K",
                                            mid:"233",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX50 /BP",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 50th percentile in basis points (%/100).",
                                            name:"ubIXXXX50BP",
                                            mid:"234",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX70 /K",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 70th percentile in thousands.",
                                            name:"ubIXXXX70K",
                                            mid:"237",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX70 /BP",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 70th percentile in basis points (%/100).",
                                            name:"ubIXXXX70BP",
                                            mid:"238",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX70 /CPS",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 70th percentile in cents per share.",
                                            name:"ubIXXXX70CPS",
                                            mid:"239",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX90 /K",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 90th percentile in thousands.",
                                            name:"ubIXXXX90K",
                                            mid:"241",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX90 /BP",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 90th percentile in basis points (%/100).",
                                            name:"ubIXXXX90BP",
                                            mid:"242",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX90 /CPS",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 90th percentile in cents per share.",
                                            name:"ubIXXXX90CPS",
                                            mid:"243",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX30 /K",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 30th percentile in thousands.",
                                            name:"ubIXXXX30K",
                                            mid:"229",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"ubIXXXX50 /CPS",
                                            desc:"XXXXDay Order XXXX cost from XXXXXX to XXXXXX vs universe 50th percentile in cents per share.",
                                            name:"ubIXXXX50CPS",
                                            mid:"235",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"LMTbIXXXX /CPS",
                                            desc:"XXXX Interval XXXX cost from XXXXXX to last within limit price in cents per share.",
                                            name:"LMTbIXXXXCPS",
                                            mid:"833",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"LMTbIXXXX /K",
                                            desc:"XXXX Interval XXXX cost from XXXXXX to last XXXXXX within limit price in Thousands",
                                            name:"LMTbIXXXXK",
                                            mid:"831",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"LMTbIXXXX /BP",
                                            desc:"XXXX Interval XXXX cost from XXXXXX to last XXXXXX within limit price in basis points(%/100).",
                                            name:"LMTbIXXXXBP",
                                            mid:"832",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+mAXXXX /BP",
                                            desc:"Commission + Day Available XXXX cost from entry to close in basis points(%/100).",
                                            name:"CmAXXXXBP",
                                            mid:"714",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+mAXXXX /CPS",
                                            desc:"Commission + Day Available XXXX cost from entry to close in cents per share.",
                                            name:"CmAXXXXCPS",
                                            mid:"715",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+mAXXXX /K",
                                            desc:"Commission + Day Available XXXX cost from entry to close in thousands.",
                                            name:"CmAXXXXK",
                                            mid:"713",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mDecStrike /K",
                                            desc:"Manager Day Strike cost at decision time in thousands.",
                                            name:"mDecStrikeK",
                                            mid:"40",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mDecStrike /BP",
                                            desc:"Manager Day Strike cost at decision time in basis points (%/100).",
                                            name:"mDecStrikeBP",
                                            mid:"41",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mDecStrike /CPS",
                                            desc:"Manager Day Strike cost at decision time in cents per share.",
                                            name:"mDecStrikeCPS",
                                            mid:"42",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mEntStrike /K",
                                            desc:"Manager Day Strike cost at entry in thousands.",
                                            name:"mEntStrikeK",
                                            mid:"48",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mEntStrike /CPS",
                                            desc:"Manager Day Strike cost at entry in cents per share.",
                                            name:"mEntStrikeCPS",
                                            mid:"50",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mEntStrike /BP",
                                            desc:"Manager Day Strike cost at entry in basis points (%/100).",
                                            name:"mEntStrikeBP",
                                            mid:"49",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike10 /K",
                                            desc:"Day Order Strike cost at entry vs universe 10th percentile in thousands.",
                                            name:"umEntStrike10K",
                                            mid:"285",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike10 /BP",
                                            desc:"Day Order Strike cost at entry vs universe 10th percentile in basis points (%/100).",
                                            name:"umEntStrike10BP",
                                            mid:"286",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike10 /CPS",
                                            desc:"Day Order Strike cost at entry vs universe 10th percentile in cents per share.",
                                            name:"umEntStrike10CPS",
                                            mid:"287",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike30 /K",
                                            desc:"Day Order Strike cost at entry vs universe 30th percentile in thousands.",
                                            name:"umEntStrike30K",
                                            mid:"289",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike30 /BP",
                                            desc:"Day Order Strike cost at entry vs universe 30th percentile in basis points (%/100).",
                                            name:"umEntStrike30BP",
                                            mid:"290",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike30 /CPS",
                                            desc:"Day Order Strike cost at entry vs universe 30th percentile in cents per share.",
                                            name:"umEntStrike30CPS",
                                            mid:"291",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike50 /K",
                                            desc:"Day Order Strike cost at entry vs universe 50th percentile in thousands.",
                                            name:"umEntStrike50K",
                                            mid:"293",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike50 /BP",
                                            desc:"Day Order Strike cost at entry vs universe 50th percentile in basis points (%/100).",
                                            name:"umEntStrike50BP",
                                            mid:"294",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike70 /K",
                                            desc:"Day Order Strike cost at entry vs universe 70th percentile in thousands.",
                                            name:"umEntStrike70K",
                                            mid:"297",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike70 /CPS",
                                            desc:"Day Order Strike cost at entry vs universe 70th percentile in cents per share.",
                                            name:"umEntStrike70CPS",
                                            mid:"299",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike90 /K",
                                            desc:"Day Order Strike cost at entry vs universe 90th percentile in thousands.",
                                            name:"umEntStrike90K",
                                            mid:"301",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike90 /BP",
                                            desc:"Day Order Strike cost at entry vs universe 90th percentile in basis points (%/100).",
                                            name:"umEntStrike90BP",
                                            mid:"302",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike90 /CPS",
                                            desc:"Day Order Strike cost at entry vs universe 90th percentile in cents per share.",
                                            name:"umEntStrike90CPS",
                                            mid:"303",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike50 /CPS",
                                            desc:"Day Order Strike cost at entry vs universe 50th percentile in cents per share.",
                                            name:"umEntStrike50CPS",
                                            mid:"295",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umEntStrike70 /BP",
                                            desc:"Day Order Strike cost at entry vs universe 70th percentile in basis points (%/100).",
                                            name:"umEntStrike70BP",
                                            mid:"298",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mExeStrike /CPS",
                                            desc:"Manager Day Strike cost at last XXXXXX in cents per share.",
                                            name:"mExeStrikeCPS",
                                            mid:"106",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mExeStrike /K",
                                            desc:"Manager Day Strike cost at last XXXXXX in thousands.",
                                            name:"mExeStrikeK",
                                            mid:"104",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mExeStrike /BP",
                                            desc:"Manager Day Strike cost at last XXXXXX in basis points (%/100).",
                                            name:"mExeStrikeBP",
                                            mid:"105",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPlcStrike /K",
                                            desc:"Manager Day Strike cost at first XXXXXX in thousands.",
                                            name:"mPlcStrikeK",
                                            mid:"92",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPlcStrike /BP",
                                            desc:"Manager Day Strike cost at first XXXXXX in basis points (%/100).",
                                            name:"mPlcStrikeBP",
                                            mid:"93",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPlcStrike /CPS",
                                            desc:"Manager Day Strike cost at first XXXXXX in cents per share.",
                                            name:"mPlcStrikeCPS",
                                            mid:"94",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"LMTmIXXXX /BP",
                                            desc:"Day Interval XXXX cost from entry to last XXXXXX within limit price in basis points(%/100).",
                                            name:"LMTmIXXXXBP",
                                            mid:"828",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"LMTmIXXXX /CPS",
                                            desc:"Day Interval XXXX cost from entry to last XXXXXX within limit price in cents per share.",
                                            name:"LMTmIXXXXCPS",
                                            mid:"829",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX10 /K",
                                            desc:"Day Order AXXXX cost vs universe 10th percentile in thousands.",
                                            name:"umAXXXX10K",
                                            mid:"345",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX10 /BP",
                                            desc:"Day Order AXXXX cost vs universe 10th percentile in basis points (%/100).",
                                            name:"umAXXXX10BP",
                                            mid:"346",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX10 /CPS",
                                            desc:"Day Order AXXXX cost vs universe 10th percentile in cents per share.",
                                            name:"umAXXXX10CPS",
                                            mid:"347",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX30 /K",
                                            desc:"Day Order AXXXX cost vs universe 30th percentile in thousands.",
                                            name:"umAXXXX30K",
                                            mid:"349",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX30 /BP",
                                            desc:"Day Order AXXXX cost vs universe 30th percentile in basis points (%/100).",
                                            name:"umAXXXX30BP",
                                            mid:"350",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX30 /CPS",
                                            desc:"Day Order AXXXX cost vs universe 30th percentile in cents per share.",
                                            name:"umAXXXX30CPS",
                                            mid:"351",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX50 /K",
                                            desc:"Day Order AXXXX cost vs universe 50th percentile in thousands.",
                                            name:"umAXXXX50K",
                                            mid:"353",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX50 /BP",
                                            desc:"Day Order AXXXX cost vs universe 50th percentile in basis points (%/100).",
                                            name:"umAXXXX50BP",
                                            mid:"354",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX70 /K",
                                            desc:"Day Order AXXXX cost vs universe 70th percentile in thousands.",
                                            name:"umAXXXX70K",
                                            mid:"357",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX70 /CPS",
                                            desc:"Day Order AXXXX cost vs universe 70th percentile in cents per share.",
                                            name:"umAXXXX70CPS",
                                            mid:"359",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX90 /BP",
                                            desc:"Day Order AXXXX cost vs universe 90th percentile in basis points (%/100).",
                                            name:"umAXXXX90BP",
                                            mid:"362",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX90 /CPS",
                                            desc:"Day Order AXXXX cost vs universe 90th percentile in cents per share.",
                                            name:"umAXXXX90CPS",
                                            mid:"363",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mAXXXX /K",
                                            desc:"Manager Day Available XXXX cost from entry to close in thousands.",
                                            name:"mAXXXXK",
                                            mid:"60",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mAXXXX /BP",
                                            desc:"Manager Day Available XXXX cost from entry to close in basis points (%/100).",
                                            name:"mAXXXXBP",
                                            mid:"61",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mAXXXX /CPS",
                                            desc:"Manager Day Available XXXX cost from entry to close in cents per share.",
                                            name:"mAXXXXCPS",
                                            mid:"62",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX50 /CPS",
                                            desc:"Day Order AXXXX cost vs universe 50th percentile in cents per share.",
                                            name:"umAXXXX50CPS",
                                            mid:"355",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX70 /BP",
                                            desc:"Day Order AXXXX cost vs universe 70th percentile in basis points (%/100).",
                                            name:"umAXXXX70BP",
                                            mid:"358",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umAXXXX90 /K",
                                            desc:"Day Order AXXXX cost vs universe 90th percentile in thousands.",
                                            name:"umAXXXX90K",
                                            mid:"361",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mDC /K",
                                            desc:"Manager Day XXXX cost from decision to close in thousands.",
                                            name:"mDCK",
                                            mid:"52",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mDC /BP",
                                            desc:"Manager Day XXXX cost from decision to close in basis points (%/100).",
                                            name:"mDCBP",
                                            mid:"53",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mDC /CPS",
                                            desc:"Manager Day XXXX cost from decision to close in cents per share.",
                                            name:"mDCCPS",
                                            mid:"54",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mIXXXX /K",
                                            desc:"Manager Day Interval XXXX from entry to last XXXXXX in thousands.",
                                            name:"mIXXXXK",
                                            mid:"84",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mIXXXX /BP",
                                            desc:"Manager Day Interval XXXX from entry to last XXXXXX in basis points (%/100).",
                                            name:"mIXXXXBP",
                                            mid:"85",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX10 /K",
                                            desc:"Day Order IXXXX cost vs universe 10th percentile in thousands.",
                                            name:"umIXXXX10K",
                                            mid:"325",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX10 /BP",
                                            desc:"Day Order IXXXX cost vs universe 10th percentile in basis points (%/100).",
                                            name:"umIXXXX10BP",
                                            mid:"326",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX10 /CPS",
                                            desc:"Day Order IXXXX cost vs universe 10th percentile in cents per share.",
                                            name:"umIXXXX10CPS",
                                            mid:"327",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX30 /K",
                                            desc:"Day Order IXXXX cost vs universe 30th percentile in thousands.",
                                            name:"umIXXXX30K",
                                            mid:"329",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX30 /BP",
                                            desc:"Day Order IXXXX cost vs universe 30th percentile in basis points (%/100).",
                                            name:"umIXXXX30BP",
                                            mid:"330",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX30 /CPS",
                                            desc:"Day Order IXXXX cost vs universe 30th percentile in cents per share.",
                                            name:"umIXXXX30CPS",
                                            mid:"331",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX50 /K",
                                            desc:"Day Order IXXXX cost vs universe 50th percentile in thousands.",
                                            name:"umIXXXX50K",
                                            mid:"333",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX50 /BP",
                                            desc:"Day Order IXXXX cost vs universe 50th percentile in basis points (%/100).",
                                            name:"umIXXXX50BP",
                                            mid:"334",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX70 /K",
                                            desc:"Day Order IXXXX cost vs universe 70th percentile in thousands.",
                                            name:"umIXXXX70K",
                                            mid:"337",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX70 /CPS",
                                            desc:"Day Order IXXXX cost vs universe 70th percentile in cents per share.",
                                            name:"umIXXXX70CPS",
                                            mid:"339",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX90 /K",
                                            desc:"Day Order IXXXX cost vs universe 90th percentile in thousands.",
                                            name:"umIXXXX90K",
                                            mid:"341",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX90 /BP",
                                            desc:"Day Order IXXXX cost vs universe 90th percentile in basis points (%/100).",
                                            name:"umIXXXX90BP",
                                            mid:"342",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX90 /CPS",
                                            desc:"Day Order IXXXX cost vs universe 90th percentile in cents per share.",
                                            name:"umIXXXX90CPS",
                                            mid:"343",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mIXXXX /CPS",
                                            desc:"Manager Day Interval XXXX from entry to last XXXXXX in cents per share.",
                                            name:"mIXXXXCPS",
                                            mid:"86",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX50 /CPS",
                                            desc:"Day Order IXXXX cost vs universe 50th percentile in cents per share.",
                                            name:"umIXXXX50CPS",
                                            mid:"335",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"umIXXXX70 /BP",
                                            desc:"Day Order IXXXX cost vs universe 70th percentile in basis points (%/100).",
                                            name:"umIXXXX70BP",
                                            mid:"338",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPC /K",
                                            desc:"Manager Day Available XXXX from first XXXXXX to close in thousands.",
                                            name:"mPCK",
                                            mid:"96",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPC /BP",
                                            desc:"Manager Day Available XXXX from first XXXXXX to close in basis points (%/100).",
                                            name:"mPCBP",
                                            mid:"97",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPC /CPS",
                                            desc:"Manager Day Available XXXX from first XXXXXX to close in cents per share.",
                                            name:"mPCCPS",
                                            mid:"98",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPX /K",
                                            desc:"Manager Day Interval XXXX from  first XXXXXX to last XXXXXX in thousands.",
                                            name:"mPXK",
                                            mid:"100",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPX /BP",
                                            desc:"Manager Day Interval XXXX from  first XXXXXX to last XXXXXX in basis points (%/100).",
                                            name:"mPXBP",
                                            mid:"101",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"mPX /CPS",
                                            desc:"Manager Day Interval XXXX from  first XXXXXX to last XXXXXX in cents per share.",
                                            name:"mPXCPS",
                                            mid:"102",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+oAXXXX /K",
                                            desc:"Commission + Order Available XXXX cost from order entry to last day close in thousands.",
                                            name:"CoAXXXXK",
                                            mid:"716",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+oAXXXX /BP",
                                            desc:"Commission + Order Available XXXX cost from order entry to last day close in basis points(%/100).",
                                            name:"CoAXXXXBP",
                                            mid:"717",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"C+oAXXXX /CPS",
                                            desc:"Commission + Order Available XXXX cost from order entry to last day close in cents per share.",
                                            name:"CoAXXXXCPS",
                                            mid:"718",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"NetIS/BP",
                                            desc:"NetIS/BP = RCoEntStrike/BP - uoEntStrike50/BP",
                                            name:"NetISBP",
                                            mid:"842",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oCloStrike /K",
                                            desc:"Order Strike cost at close in thousands.",
                                            name:"oCloStrikeK",
                                            mid:"136",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oCloStrike /BP",
                                            desc:"Order Strike cost at close in basis points (%/100).",
                                            name:"oCloStrikeBP",
                                            mid:"137",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oCloStrike /CPS",
                                            desc:"Order Strike cost at close in cents per share.",
                                            name:"oCloStrikeCPS",
                                            mid:"138",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oDecStrike /K",
                                            desc:"Order Strike cost at decision in thousands.",
                                            name:"oDecStrikeK",
                                            mid:"116",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oDecStrike /BP",
                                            desc:"Order Strike cost at decision in basis points (%/100).",
                                            name:"oDecStrikeBP",
                                            mid:"117",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oDecStrike /CPS",
                                            desc:"Order Strike cost at decision in cents per share.",
                                            name:"oDecStrikeCPS",
                                            mid:"118",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oEntStrike /K",
                                            desc:"Order Strike cost at entry in thousands.",
                                            name:"oEntStrikeK",
                                            mid:"140",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oEntStrike /BP",
                                            desc:"Order Strike cost at entry in basis points (%/100).",
                                            name:"oEntStrikeBP",
                                            mid:"141",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oEntStrike /CPS",
                                            desc:"Order Strike cost at entry in cents per share.",
                                            name:"oEntStrikeCPS",
                                            mid:"142",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike10 /BP",
                                            desc:"MultiDay Order Strike cost at entry vs universe 10th percentile in basis points (%/100).",
                                            name:"uoEntStrike10BP",
                                            mid:"186",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike10 /CPS",
                                            desc:"MultiDay Order Strike cost at entry vs universe 10th percentile in cents per share.",
                                            name:"uoEntStrike10CPS",
                                            mid:"187",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike30 /BP",
                                            desc:"MultiDay Order Strike cost at entry vs universe 30th percentile in basis points (%/100).",
                                            name:"uoEntStrike30BP",
                                            mid:"190",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike30 /CPS",
                                            desc:"MultiDay Order Strike cost at entry vs universe 30th percentile in cents per share.",
                                            name:"uoEntStrike30CPS",
                                            mid:"191",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike50 /BP",
                                            desc:"MultiDay Order Strike cost at entry vs universe 50th percentile in basis points (%/100).",
                                            name:"uoEntStrike50BP",
                                            mid:"194",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike70 /BP",
                                            desc:"MultiDay Order Strike cost at entry vs universe 70th percentile in basis points (%/100).",
                                            name:"uoEntStrike70BP",
                                            mid:"198",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike70 /CPS",
                                            desc:"MultiDay Order Strike cost at entry vs universe 70th percentile in cents per share.",
                                            name:"uoEntStrike70CPS",
                                            mid:"199",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike90 /BP",
                                            desc:"MultiDay Order Strike cost at entry vs universe 90th percentile in basis points (%/100).",
                                            name:"uoEntStrike90BP",
                                            mid:"202",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike90 /CPS",
                                            desc:"MultiDay Order Strike cost at entry vs universe 90th percentile in cents per share.",
                                            name:"uoEntStrike90CPS",
                                            mid:"203",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"uoEntStrike50 /CPS",
                                            desc:"MultiDay Order Strike cost at entry vs universe 50th percentile in cents per share.",
                                            name:"uoEntStrike50CPS",
                                            mid:"195",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oOpnStrike /CPS",
                                            desc:"Order Strike cost against first day open in cents per share.",
                                            name:"oOpnStrikeCPS",
                                            mid:"126",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oOpnStrike /K",
                                            desc:"Order Strike cost against first day open in thousands.",
                                            name:"oOpnStrikeK",
                                            mid:"124",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oOpnStrike /BP",
                                            desc:"Order Strike cost against first day open in basis points (%/100).",
                                            name:"oOpnStrikeBP",
                                            mid:"125",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oPreEnt /K",
                                            desc:"Prior 2 days XXXX vs Order Entry cost in thousands.",
                                            name:"oPreEntK",
                                            mid:"668",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oPreEnt /BP",
                                            desc:"Prior 2 days XXXX vs Order Entry cost in basis points (%/100).",
                                            name:"oPreEntBP",
                                            mid:"669",
                                            format:"#,##0.00",
                                            type:"float"
                                        },
                                        {
                                            title:"oPreEnt /CPS",
                                            desc:"Prior 2 days XXXX vs Order Entry cost in cents per share.",
                                            name:"oPreEntCPS",
                                            mid:"670",
                                            format:"#,##0.00",
                                            type:"float"
                                        },

                                Comment

                                Working...
                                X