[Paraview] Velocity field analysis - lambda2

Armin Wehrfritz dkxls23 at gmail.com
Tue Dec 8 15:15:56 EST 2015


Hi,

ParaView has several possibilities for user defined expressions, e.g:
1) "Calculator" filter
2) "Python Calculator" filter
3) "Programmable Filter"

The "Calculator" filter is very limited and only suited for simple
calculations (basically what you see in the GUI). The "Python
Calculator" filter has a wider selection of functions, including a
gradient function. For really advanced things, the "Programmable Filter"
probably gives you the most flexibility.

I have attached a very simple state file, that demonstrates how to use
the "Python Calculator" filter with an arbitrary expression, i.e.
"curl(gradient(RTData))" where RTData is a scalar field. The expression
itself doesn't make much sense, but shows the basic principle.

A really good introduction to all of this functionality is given in the
ParaView user guide (section 5.8 and 13):
http://www.paraview.org/paraview-guide/

HTH

-Armin





On 12/08/2015 01:45 PM, Tim Gallagher wrote:
> David,
>
> If you are using the filter called Calculator, there is no gradient nor
> transpose functions in it. The only functions you can use are the ones
> you can click on the little buttons in the GUI (you can type them
> instead of clicking, but those are the only ones available). So you must
> use the ComputeDerivative filter before the Calculator because you won't
> get the gradient any other way.
>
> Additionally, keep in mind that velocity is a vector and so the vector
> gradient of velocity will be a tensor output. It will have variable
> names like VectorGradient_0 through VectorGradient_8 when used inside
> the calculator. Only the scalar components are available, it doesn't
> work like a matrix in the Calculator filter.
>
> If you want to compute the strain (what I think your S is), you should
> use the ComputeDerivatives filter and set the "Vectors" to your velocity
> vector, set the  "Output Tensor Type" to "Strain" and since you are
> after lambda_2, you should set the "Output Vector Type" to "Vorticity".
>
> Once this is done, you will have cell-data fields for strain and for
> vorticity. You probably want to do a CellDataToPointData filter to get
> this back to node-centered data (which is required if you want
> iso-surfaces). Once that is done, in your Calculator filter, you now
> have access to scalars called Strain_0 through Strain_8 and Vorticity_X,
> Vorticity_Y and Vorticity_Z.
>
> Strain_0 is S_xx, Strain_1 is S_xy, Strain_2 is S_xz, Strain_3 is
> S_yx... through to Strain_8 = S_zz.
>
> With all of those individual components, your Calculator filter for
> Lambda_2 will just be a bunch of products and sums of those terms.
>
> Tim
>
> ------------------------------------------------------------------------
> *From: *"David Larsson" <david.larsson at sth.kth.se>
> *To: *"Tim Gallagher" <tim.gallagher at gatech.edu>
> *Cc: *paraview at paraview.org
> *Sent: *Tuesday, December 8, 2015 6:30:28 AM
> *Subject: *SV: [Paraview] Velocity field analysis - lambda2
>
> Hi Tim,
>
>
> thanks for your answer. Your method sound straight-forward. The only
> issue I have now is that I'm simply not sure how to control the
> Calculator of paraview. Following your steps, I want to set e.g.:
>
>
> 'Result Array Name': S_squared
>
>
> and then compute using the calculator something like
>
>
> (gradient(velocity) + transpose(gradient(velocity)))^2/2
>
>
> but this gives me a calculator error ('Syntax Error: expecting a
> variable name'). So I assume I'm simply using the calculator the wrong
> way (giving input in an incorrect manor).
>
>
> Could you specify how you give input to the calculator following your
> outlined steps? Also, do you know the difference between the
> 'ComputeDerivative' and 'Gradient' is?
>
>
> Thanks again for the help,
>
>
> /David
>
>
>
> <https://webmail.kth.se/owa/redir.aspx?C=IxWYxXymHES_fQvc4qU3B9BOtBARstEIlfcjHJ6nx0MeBY57EwkoSX2SdYQPib-GqeXHouLYnDA.&URL=mailto%3adavid.larsson%40sth.kth.se>
>
> ------------------------------------------------------------------------
> *Från:* Tim Gallagher <tim.gallagher at gatech.edu>
> *Skickat:* den 7 december 2015 23:16
> *Till:* tim gallagher
> *Kopia:* paraview at paraview.org; David Larsson
> *Ämne:* Re: [Paraview] Velocity field analysis - lambda2
> For the sake of people years later who come across this thread, there is
> a typo in my definition and it should be:
>
> lambda_2 = S_ik S_kj + \Omega_ik \Omega_kj
>
> Tim
>
> ------------------------------------------------------------------------
> *From: *"Tim Gallagher" <tim.gallagher at gatech.edu>
> *To: *"David Larsson" <david.larsson at sth.kth.se>
> *Cc: *paraview at paraview.org
> *Sent: *Monday, December 7, 2015 5:11:30 PM
> *Subject: *Re: [Paraview] Velocity field analysis - lambda2
>
> David,
>
> I haven't taken on lambda-2 yet, but I have been able to build a
> pipeline for Q-Criterion. It looks something like:
>
> Data -> CellDataToPointData (if it isn't already point data) ->
> ComputeDerivatives (set the gradient option to vorticity and the tensor
> option to strain) -> CellDataToPointData -> Calculator (compute |S|^2)
> -> Calculator (compute |\Omega|^2) -> Calculator (compute Q-criterion)
>
> Since lambda_2 = S_ik S_ij + \Omega_ik \Omega_kj, you can use the same
> procedure and use just the standard calculators if you want to expand
> the Einstein summation and plug them all.
>
> Once I've done this, I save the set of 3 calculators as a custom filter.
> When I use pvpython, I load my custom filter in the server manager and
> then use the CD2PD and ComputeDerivatives filters as needed. The python
> calculator might be a better way to do it, but I haven't tried that yet.
>
> Tim
>
> ------------------------------------------------------------------------
> *From: *"David Larsson" <david.larsson at sth.kth.se>
> *To: *paraview at paraview.org
> *Sent: *Monday, December 7, 2015 4:11:39 PM
> *Subject: *[Paraview] Velocity field analysis - lambda2
>
> Dear all,
>
>
> I'm working with velocity vector fields over multiple time steps. I
> would like to compute a number of entities for the velocity field - most
> importantly the lambda2-scalar, but being relatively new to paraview I'm
> not really sure how to do that.
>
>
> I can do some simple modifications using the calculator but can't really
> find my way to grad() or curl() etc. I guess the solution is going over
> to pvpython (which would also be preferred with regards to doing
> automated analysis).
>
>
> Does anyone have any experience with performing numerical analysis of
> vector velocity fields in pvpython that could give some hints on how to
> get started? Or does anyone even have performed lambda2-analysis on such?
>
>
> I've seen some similar questions in the mail-list from before but can't
> seem to find a conclusive answer, so I thought I'd give it a try myself.
>
>
> Thanks for the help.
>
>
> /David
>
>
>
> <https://webmail.kth.se/owa/redir.aspx?C=IxWYxXymHES_fQvc4qU3B9BOtBARstEIlfcjHJ6nx0MeBY57EwkoSX2SdYQPib-GqeXHouLYnDA.&URL=mailto%3adavid.larsson%40sth.kth.se>
>
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
>
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at: http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
-------------- next part --------------
<ParaView>
  <ServerManagerState version="4.4.0">
    <Proxy group="animation" type="AnimationScene" id="263" servers="16">
      <Property name="AnimationTime" id="263.AnimationTime" number_of_elements="1">
        <Element index="0" value="0"/>
      </Property>
      <Property name="Caching" id="263.Caching" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="263.Caching.bool"/>
      </Property>
      <Property name="Cues" id="263.Cues" number_of_elements="1">
        <Proxy value="265"/>
        <Domain name="groups" id="263.Cues.groups"/>
      </Property>
      <Property name="Duration" id="263.Duration" number_of_elements="1">
        <Element index="0" value="10"/>
      </Property>
      <Property name="EndTime" id="263.EndTime" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="FramesPerTimestep" id="263.FramesPerTimestep" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="263.FramesPerTimestep.range"/>
      </Property>
      <Property name="GoToFirst" id="263.GoToFirst"/>
      <Property name="GoToLast" id="263.GoToLast"/>
      <Property name="GoToNext" id="263.GoToNext"/>
      <Property name="GoToPrevious" id="263.GoToPrevious"/>
      <Property name="LockEndTime" id="263.LockEndTime" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="263.LockEndTime.bool"/>
      </Property>
      <Property name="LockStartTime" id="263.LockStartTime" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="263.LockStartTime.bool"/>
      </Property>
      <Property name="Loop" id="263.Loop" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="263.Loop.bool"/>
      </Property>
      <Property name="NumberOfFrames" id="263.NumberOfFrames" number_of_elements="1">
        <Element index="0" value="10"/>
        <Domain name="range" id="263.NumberOfFrames.range"/>
      </Property>
      <Property name="Play" id="263.Play"/>
      <Property name="PlayMode" id="263.PlayMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="263.PlayMode.enum">
          <Entry value="0" text="Sequence"/>
          <Entry value="1" text="Real Time"/>
          <Entry value="2" text="Snap To TimeSteps"/>
        </Domain>
      </Property>
      <Property name="StartTime" id="263.StartTime" number_of_elements="1">
        <Element index="0" value="0"/>
      </Property>
      <Property name="Stop" id="263.Stop"/>
      <Property name="TimeKeeper" id="263.TimeKeeper" number_of_elements="1">
        <Proxy value="259"/>
      </Property>
      <Property name="ViewModules" id="263.ViewModules" number_of_elements="2">
        <Proxy value="1934"/>
        <Proxy value="1934"/>
        <Domain name="groups" id="263.ViewModules.groups"/>
      </Property>
    </Proxy>
    <Proxy group="animation" type="TimeAnimationCue" id="265" servers="16">
      <Property name="AnimatedDomainName" id="265.AnimatedDomainName" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="AnimatedElement" id="265.AnimatedElement" number_of_elements="1">
        <Element index="0" value="0"/>
      </Property>
      <Property name="AnimatedPropertyName" id="265.AnimatedPropertyName" number_of_elements="1">
        <Element index="0" value="Time"/>
      </Property>
      <Property name="AnimatedProxy" id="265.AnimatedProxy" number_of_elements="1">
        <Proxy value="259"/>
        <Domain name="groups" id="265.AnimatedProxy.groups"/>
      </Property>
      <Property name="Enabled" id="265.Enabled" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="265.Enabled.bool"/>
      </Property>
      <Property name="EndTime" id="265.EndTime" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="KeyFrames" id="265.KeyFrames">
        <Domain name="groups" id="265.KeyFrames.groups"/>
      </Property>
      <Property name="LastAddedKeyFrameIndex" id="265.LastAddedKeyFrameIndex"/>
      <Property name="StartTime" id="265.StartTime" number_of_elements="1">
        <Element index="0" value="0"/>
      </Property>
      <Property name="TimeMode" id="265.TimeMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="265.TimeMode.enum">
          <Entry value="0" text="Normalized"/>
          <Entry value="1" text="Relative"/>
        </Domain>
      </Property>
      <Property name="UseAnimationTime" id="265.UseAnimationTime" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="265.UseAnimationTime.bool"/>
      </Property>
    </Proxy>
    <Proxy group="misc" type="ViewLayout" id="1906" servers="16">
      <Layout number_of_elements="1">
        <Item direction="0" fraction="0.5" view="1934"/>
      </Layout>
    </Proxy>
    <Proxy group="lookup_tables" type="PVLookupTable" id="3980" servers="21">
      <Property name="AboveRangeColor" id="3980.AboveRangeColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
      </Property>
      <Property name="ActiveAnnotatedValues" id="3980.ActiveAnnotatedValues"/>
      <Property name="AllowDuplicateScalars" id="3980.AllowDuplicateScalars" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3980.AllowDuplicateScalars.bool"/>
      </Property>
      <Property name="Annotations" id="3980.Annotations"/>
      <Property name="BelowRangeColor" id="3980.BelowRangeColor" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="Build" id="3980.Build"/>
      <Property name="ColorSpace" id="3980.ColorSpace" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3980.ColorSpace.enum">
          <Entry value="0" text="RGB"/>
          <Entry value="1" text="HSV"/>
          <Entry value="2" text="Lab"/>
          <Entry value="3" text="Diverging"/>
        </Domain>
      </Property>
      <Property name="Discretize" id="3980.Discretize" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3980.Discretize.bool"/>
      </Property>
      <Property name="EnableOpacityMapping" id="3980.EnableOpacityMapping" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.EnableOpacityMapping.bool"/>
      </Property>
      <Property name="HSVWrap" id="3980.HSVWrap" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.HSVWrap.bool"/>
      </Property>
      <Property name="IndexedColors" id="3980.IndexedColors"/>
      <Property name="IndexedLookup" id="3980.IndexedLookup" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.IndexedLookup.bool"/>
      </Property>
      <Property name="LockScalarRange" id="3980.LockScalarRange" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.LockScalarRange.bool"/>
      </Property>
      <Property name="NanColor" id="3980.NanColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="NumberOfTableValues" id="3980.NumberOfTableValues" number_of_elements="1">
        <Element index="0" value="256"/>
        <Domain name="range" id="3980.NumberOfTableValues.range"/>
      </Property>
      <Property name="RGBPoints" id="3980.RGBPoints" number_of_elements="32">
        <Element index="0" value="37.3531036376953"/>
        <Element index="1" value="0.278431"/>
        <Element index="2" value="0.278431"/>
        <Element index="3" value="0.858824"/>
        <Element index="4" value="71.5981320648193"/>
        <Element index="5" value="0"/>
        <Element index="6" value="0"/>
        <Element index="7" value="0.360784"/>
        <Element index="8" value="105.603684768677"/>
        <Element index="9" value="0"/>
        <Element index="10" value="1"/>
        <Element index="11" value="1"/>
        <Element index="12" value="140.088188919067"/>
        <Element index="13" value="0"/>
        <Element index="14" value="0.501961"/>
        <Element index="15" value="0"/>
        <Element index="16" value="174.093741622925"/>
        <Element index="17" value="1"/>
        <Element index="18" value="1"/>
        <Element index="19" value="0"/>
        <Element index="20" value="208.338770050049"/>
        <Element index="21" value="1"/>
        <Element index="22" value="0.380392"/>
        <Element index="23" value="0"/>
        <Element index="24" value="242.583798477173"/>
        <Element index="25" value="0.419608"/>
        <Element index="26" value="0"/>
        <Element index="27" value="0"/>
        <Element index="28" value="276.828826904297"/>
        <Element index="29" value="0.878431"/>
        <Element index="30" value="0.301961"/>
        <Element index="31" value="0.301961"/>
      </Property>
      <Property name="RescaleOnVisibilityChange" id="3980.RescaleOnVisibilityChange" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.RescaleOnVisibilityChange.bool"/>
      </Property>
      <Property name="ScalarOpacityFunction" id="3980.ScalarOpacityFunction" number_of_elements="1">
        <Proxy value="3979"/>
      </Property>
      <Property name="ScalarRangeInitialized" id="3980.ScalarRangeInitialized" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3980.ScalarRangeInitialized.bool"/>
      </Property>
      <Property name="ShowIndexedColorActiveValues" id="3980.ShowIndexedColorActiveValues" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.ShowIndexedColorActiveValues.bool"/>
      </Property>
      <Property name="UseAboveRangeColor" id="3980.UseAboveRangeColor" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.UseAboveRangeColor.bool"/>
      </Property>
      <Property name="UseBelowRangeColor" id="3980.UseBelowRangeColor" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.UseBelowRangeColor.bool"/>
      </Property>
      <Property name="UseLogScale" id="3980.UseLogScale" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3980.UseLogScale.bool"/>
      </Property>
      <Property name="VectorComponent" id="3980.VectorComponent" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3980.VectorComponent.range"/>
      </Property>
      <Property name="VectorMode" id="3980.VectorMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3980.VectorMode.enum">
          <Entry value="0" text="Magnitude"/>
          <Entry value="1" text="Component"/>
        </Domain>
      </Property>
    </Proxy>
    <Proxy group="lookup_tables" type="PVLookupTable" id="3988" servers="21">
      <Property name="AboveRangeColor" id="3988.AboveRangeColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
      </Property>
      <Property name="ActiveAnnotatedValues" id="3988.ActiveAnnotatedValues"/>
      <Property name="AllowDuplicateScalars" id="3988.AllowDuplicateScalars" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3988.AllowDuplicateScalars.bool"/>
      </Property>
      <Property name="Annotations" id="3988.Annotations"/>
      <Property name="BelowRangeColor" id="3988.BelowRangeColor" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="Build" id="3988.Build"/>
      <Property name="ColorSpace" id="3988.ColorSpace" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3988.ColorSpace.enum">
          <Entry value="0" text="RGB"/>
          <Entry value="1" text="HSV"/>
          <Entry value="2" text="Lab"/>
          <Entry value="3" text="Diverging"/>
        </Domain>
      </Property>
      <Property name="Discretize" id="3988.Discretize" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3988.Discretize.bool"/>
      </Property>
      <Property name="EnableOpacityMapping" id="3988.EnableOpacityMapping" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.EnableOpacityMapping.bool"/>
      </Property>
      <Property name="HSVWrap" id="3988.HSVWrap" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.HSVWrap.bool"/>
      </Property>
      <Property name="IndexedColors" id="3988.IndexedColors"/>
      <Property name="IndexedLookup" id="3988.IndexedLookup" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.IndexedLookup.bool"/>
      </Property>
      <Property name="LockScalarRange" id="3988.LockScalarRange" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.LockScalarRange.bool"/>
      </Property>
      <Property name="NanColor" id="3988.NanColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="NumberOfTableValues" id="3988.NumberOfTableValues" number_of_elements="1">
        <Element index="0" value="256"/>
        <Domain name="range" id="3988.NumberOfTableValues.range"/>
      </Property>
      <Property name="RGBPoints" id="3988.RGBPoints" number_of_elements="32">
        <Element index="0" value="0"/>
        <Element index="1" value="0.278431"/>
        <Element index="2" value="0.278431"/>
        <Element index="3" value="0.858824"/>
        <Element index="4" value="0.0659861151362922"/>
        <Element index="5" value="0"/>
        <Element index="6" value="0"/>
        <Element index="7" value="0.360784"/>
        <Element index="8" value="0.131510788907995"/>
        <Element index="9" value="0"/>
        <Element index="10" value="1"/>
        <Element index="11" value="1"/>
        <Element index="12" value="0.197958345408877"/>
        <Element index="13" value="0"/>
        <Element index="14" value="0.501961"/>
        <Element index="15" value="0"/>
        <Element index="16" value="0.263483019180579"/>
        <Element index="17" value="1"/>
        <Element index="18" value="1"/>
        <Element index="19" value="0"/>
        <Element index="20" value="0.329469134316871"/>
        <Element index="21" value="1"/>
        <Element index="22" value="0.380392"/>
        <Element index="23" value="0"/>
        <Element index="24" value="0.395455249453164"/>
        <Element index="25" value="0.419608"/>
        <Element index="26" value="0"/>
        <Element index="27" value="0"/>
        <Element index="28" value="0.461441364589456"/>
        <Element index="29" value="0.878431"/>
        <Element index="30" value="0.301961"/>
        <Element index="31" value="0.301961"/>
      </Property>
      <Property name="RescaleOnVisibilityChange" id="3988.RescaleOnVisibilityChange" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.RescaleOnVisibilityChange.bool"/>
      </Property>
      <Property name="ScalarOpacityFunction" id="3988.ScalarOpacityFunction" number_of_elements="1">
        <Proxy value="3987"/>
      </Property>
      <Property name="ScalarRangeInitialized" id="3988.ScalarRangeInitialized" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3988.ScalarRangeInitialized.bool"/>
      </Property>
      <Property name="ShowIndexedColorActiveValues" id="3988.ShowIndexedColorActiveValues" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.ShowIndexedColorActiveValues.bool"/>
      </Property>
      <Property name="UseAboveRangeColor" id="3988.UseAboveRangeColor" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.UseAboveRangeColor.bool"/>
      </Property>
      <Property name="UseBelowRangeColor" id="3988.UseBelowRangeColor" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.UseBelowRangeColor.bool"/>
      </Property>
      <Property name="UseLogScale" id="3988.UseLogScale" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3988.UseLogScale.bool"/>
      </Property>
      <Property name="VectorComponent" id="3988.VectorComponent" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3988.VectorComponent.range"/>
      </Property>
      <Property name="VectorMode" id="3988.VectorMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3988.VectorMode.enum">
          <Entry value="0" text="Magnitude"/>
          <Entry value="1" text="Component"/>
        </Domain>
      </Property>
    </Proxy>
    <Proxy group="piecewise_functions" type="PiecewiseFunction" id="3979" servers="21">
      <Property name="AllowDuplicateScalars" id="3979.AllowDuplicateScalars" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3979.AllowDuplicateScalars.bool"/>
      </Property>
      <Property name="Points" id="3979.Points" number_of_elements="8">
        <Element index="0" value="37.3531036376953"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0.5"/>
        <Element index="3" value="0"/>
        <Element index="4" value="276.828826904297"/>
        <Element index="5" value="1"/>
        <Element index="6" value="0.5"/>
        <Element index="7" value="0"/>
      </Property>
      <Property name="ScalarRangeInitialized" id="3979.ScalarRangeInitialized" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3979.ScalarRangeInitialized.bool"/>
      </Property>
    </Proxy>
    <Proxy group="piecewise_functions" type="PiecewiseFunction" id="3987" servers="21">
      <Property name="AllowDuplicateScalars" id="3987.AllowDuplicateScalars" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3987.AllowDuplicateScalars.bool"/>
      </Property>
      <Property name="Points" id="3987.Points" number_of_elements="8">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0.5"/>
        <Element index="3" value="0"/>
        <Element index="4" value="0.461441364589456"/>
        <Element index="5" value="1"/>
        <Element index="6" value="0.5"/>
        <Element index="7" value="0"/>
      </Property>
      <Property name="ScalarRangeInitialized" id="3987.ScalarRangeInitialized" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3987.ScalarRangeInitialized.bool"/>
      </Property>
    </Proxy>
    <Proxy group="annotations" type="GridAxes3DActor" id="1932" servers="21">
      <Property name="AxesToLabel" id="1932.AxesToLabel" number_of_elements="1">
        <Element index="0" value="63"/>
        <Domain name="range" id="1932.AxesToLabel.range"/>
      </Property>
      <Property name="DataPosition" id="1932.DataPosition" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="1932.DataPosition.range"/>
      </Property>
      <Property name="DataScale" id="1932.DataScale" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.DataScale.range"/>
      </Property>
      <Property name="FacesToRender" id="1932.FacesToRender" number_of_elements="1">
        <Element index="0" value="63"/>
        <Domain name="range" id="1932.FacesToRender.range"/>
      </Property>
      <Property name="LabelUniqueEdgesOnly" id="1932.LabelUniqueEdgesOnly" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1932.LabelUniqueEdgesOnly.bool"/>
      </Property>
      <Property name="ModelBounds" id="1932.ModelBounds" number_of_elements="6">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Element index="3" value="1"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
      </Property>
      <Property name="ModelTransformMatrix" id="1932.ModelTransformMatrix" number_of_elements="16">
        <Element index="0" value="1"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Element index="3" value="0"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
        <Element index="6" value="0"/>
        <Element index="7" value="0"/>
        <Element index="8" value="0"/>
        <Element index="9" value="0"/>
        <Element index="10" value="1"/>
        <Element index="11" value="0"/>
        <Element index="12" value="0"/>
        <Element index="13" value="0"/>
        <Element index="14" value="0"/>
        <Element index="15" value="1"/>
      </Property>
      <Property name="ShowEdges" id="1932.ShowEdges" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1932.ShowEdges.bool"/>
      </Property>
      <Property name="ShowGrid" id="1932.ShowGrid" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ShowGrid.bool"/>
      </Property>
      <Property name="ShowTicks" id="1932.ShowTicks" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1932.ShowTicks.bool"/>
      </Property>
      <Property name="UseModelTransform" id="1932.UseModelTransform" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="1932.UseModelTransform.range"/>
      </Property>
      <Property name="Visibility" id="1932.Visibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.Visibility.bool"/>
      </Property>
      <Property name="XAxisLabels" id="1932.XAxisLabels">
        <Domain name="scalar_range" id="1932.XAxisLabels.scalar_range"/>
      </Property>
      <Property name="XAxisNotation" id="1932.XAxisNotation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.XAxisNotation.enum">
          <Entry value="0" text="Mixed"/>
          <Entry value="1" text="Scientific"/>
          <Entry value="2" text="Fixed"/>
        </Domain>
      </Property>
      <Property name="XAxisPrecision" id="1932.XAxisPrecision" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="1932.XAxisPrecision.range"/>
      </Property>
      <Property name="XAxisUseCustomLabels" id="1932.XAxisUseCustomLabels" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XAxisUseCustomLabels.bool"/>
      </Property>
      <Property name="XTitle" id="1932.XTitle" number_of_elements="1">
        <Element index="0" value="X Axis"/>
      </Property>
      <Property name="YAxisLabels" id="1932.YAxisLabels">
        <Domain name="scalar_range" id="1932.YAxisLabels.scalar_range"/>
      </Property>
      <Property name="YAxisNotation" id="1932.YAxisNotation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.YAxisNotation.enum">
          <Entry value="0" text="Mixed"/>
          <Entry value="1" text="Scientific"/>
          <Entry value="2" text="Fixed"/>
        </Domain>
      </Property>
      <Property name="YAxisPrecision" id="1932.YAxisPrecision" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="1932.YAxisPrecision.range"/>
      </Property>
      <Property name="YAxisUseCustomLabels" id="1932.YAxisUseCustomLabels" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YAxisUseCustomLabels.bool"/>
      </Property>
      <Property name="YTitle" id="1932.YTitle" number_of_elements="1">
        <Element index="0" value="Y Axis"/>
      </Property>
      <Property name="ZAxisLabels" id="1932.ZAxisLabels">
        <Domain name="scalar_range" id="1932.ZAxisLabels.scalar_range"/>
      </Property>
      <Property name="ZAxisNotation" id="1932.ZAxisNotation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.ZAxisNotation.enum">
          <Entry value="0" text="Mixed"/>
          <Entry value="1" text="Scientific"/>
          <Entry value="2" text="Fixed"/>
        </Domain>
      </Property>
      <Property name="ZAxisPrecision" id="1932.ZAxisPrecision" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="1932.ZAxisPrecision.range"/>
      </Property>
      <Property name="ZAxisUseCustomLabels" id="1932.ZAxisUseCustomLabels" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZAxisUseCustomLabels.bool"/>
      </Property>
      <Property name="ZTitle" id="1932.ZTitle" number_of_elements="1">
        <Element index="0" value="Z Axis"/>
      </Property>
      <Property name="CullBackface" id="1932.CullBackface" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.CullBackface.bool"/>
      </Property>
      <Property name="CullFrontface" id="1932.CullFrontface" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1932.CullFrontface.bool"/>
      </Property>
      <Property name="GridColor" id="1932.GridColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.GridColor.range"/>
      </Property>
      <Property name="XLabelBold" id="1932.XLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XLabelBold.bool"/>
      </Property>
      <Property name="XLabelColor" id="1932.XLabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.XLabelColor.range"/>
      </Property>
      <Property name="XLabelFontFamily" id="1932.XLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.XLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="XLabelFontSize" id="1932.XLabelFontSize" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="1932.XLabelFontSize.range"/>
      </Property>
      <Property name="XLabelItalic" id="1932.XLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XLabelItalic.bool"/>
      </Property>
      <Property name="XLabelOpacity" id="1932.XLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1932.XLabelOpacity.range"/>
      </Property>
      <Property name="XLabelShadow" id="1932.XLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XLabelShadow.bool"/>
      </Property>
      <Property name="XTitleBold" id="1932.XTitleBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XTitleBold.bool"/>
      </Property>
      <Property name="XTitleColor" id="1932.XTitleColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.XTitleColor.range"/>
      </Property>
      <Property name="XTitleFontFamily" id="1932.XTitleFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.XTitleFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="XTitleFontSize" id="1932.XTitleFontSize" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="1932.XTitleFontSize.range"/>
      </Property>
      <Property name="XTitleItalic" id="1932.XTitleItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XTitleItalic.bool"/>
      </Property>
      <Property name="XTitleOpacity" id="1932.XTitleOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1932.XTitleOpacity.range"/>
      </Property>
      <Property name="XTitleShadow" id="1932.XTitleShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.XTitleShadow.bool"/>
      </Property>
      <Property name="YLabelBold" id="1932.YLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YLabelBold.bool"/>
      </Property>
      <Property name="YLabelColor" id="1932.YLabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.YLabelColor.range"/>
      </Property>
      <Property name="YLabelFontFamily" id="1932.YLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.YLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="YLabelFontSize" id="1932.YLabelFontSize" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="1932.YLabelFontSize.range"/>
      </Property>
      <Property name="YLabelItalic" id="1932.YLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YLabelItalic.bool"/>
      </Property>
      <Property name="YLabelOpacity" id="1932.YLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1932.YLabelOpacity.range"/>
      </Property>
      <Property name="YLabelShadow" id="1932.YLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YLabelShadow.bool"/>
      </Property>
      <Property name="YTitleBold" id="1932.YTitleBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YTitleBold.bool"/>
      </Property>
      <Property name="YTitleColor" id="1932.YTitleColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.YTitleColor.range"/>
      </Property>
      <Property name="YTitleFontFamily" id="1932.YTitleFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.YTitleFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="YTitleFontSize" id="1932.YTitleFontSize" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="1932.YTitleFontSize.range"/>
      </Property>
      <Property name="YTitleItalic" id="1932.YTitleItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YTitleItalic.bool"/>
      </Property>
      <Property name="YTitleOpacity" id="1932.YTitleOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1932.YTitleOpacity.range"/>
      </Property>
      <Property name="YTitleShadow" id="1932.YTitleShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.YTitleShadow.bool"/>
      </Property>
      <Property name="ZLabelBold" id="1932.ZLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZLabelBold.bool"/>
      </Property>
      <Property name="ZLabelColor" id="1932.ZLabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.ZLabelColor.range"/>
      </Property>
      <Property name="ZLabelFontFamily" id="1932.ZLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.ZLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="ZLabelFontSize" id="1932.ZLabelFontSize" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="1932.ZLabelFontSize.range"/>
      </Property>
      <Property name="ZLabelItalic" id="1932.ZLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZLabelItalic.bool"/>
      </Property>
      <Property name="ZLabelOpacity" id="1932.ZLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1932.ZLabelOpacity.range"/>
      </Property>
      <Property name="ZLabelShadow" id="1932.ZLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZLabelShadow.bool"/>
      </Property>
      <Property name="ZTitleBold" id="1932.ZTitleBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZTitleBold.bool"/>
      </Property>
      <Property name="ZTitleColor" id="1932.ZTitleColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1932.ZTitleColor.range"/>
      </Property>
      <Property name="ZTitleFontFamily" id="1932.ZTitleFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1932.ZTitleFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="ZTitleFontSize" id="1932.ZTitleFontSize" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="1932.ZTitleFontSize.range"/>
      </Property>
      <Property name="ZTitleItalic" id="1932.ZTitleItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZTitleItalic.bool"/>
      </Property>
      <Property name="ZTitleOpacity" id="1932.ZTitleOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1932.ZTitleOpacity.range"/>
      </Property>
      <Property name="ZTitleShadow" id="1932.ZTitleShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1932.ZTitleShadow.bool"/>
      </Property>
    </Proxy>
    <Proxy group="misc" type="RepresentationAnimationHelper" id="3724" servers="16">
      <Property name="Source" id="3724.Source" number_of_elements="1">
        <Proxy value="3712"/>
      </Property>
    </Proxy>
    <Proxy group="misc" type="RepresentationAnimationHelper" id="3879" servers="16">
      <Property name="Source" id="3879.Source" number_of_elements="1">
        <Proxy value="3868"/>
      </Property>
    </Proxy>
    <Proxy group="representations" type="UniformGridRepresentation" id="3857" servers="21">
      <Property name="CubeAxesVisibility" id="3857.CubeAxesVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.CubeAxesVisibility.bool"/>
      </Property>
      <Property name="Input" id="3857.Input" number_of_elements="1">
        <Proxy value="3712" output_port="0"/>
        <Domain name="input_array_cell" id="3857.Input.input_array_cell"/>
        <Domain name="input_array_point" id="3857.Input.input_array_point"/>
        <Domain name="input_type" id="3857.Input.input_type"/>
      </Property>
      <Property name="Representation" id="3857.Representation" number_of_elements="1">
        <Element index="0" value="Outline"/>
        <Domain name="list" id="3857.Representation.list">
          <String text="3D Glyphs"/>
          <String text="Outline"/>
          <String text="Points"/>
          <String text="Slice"/>
          <String text="Surface"/>
          <String text="Surface With Edges"/>
          <String text="Volume"/>
          <String text="Wireframe"/>
        </Domain>
      </Property>
      <Property name="RepresentationTypesInfo" id="3857.RepresentationTypesInfo" number_of_elements="8">
        <Element index="0" value="3D Glyphs"/>
        <Element index="1" value="Outline"/>
        <Element index="2" value="Points"/>
        <Element index="3" value="Slice"/>
        <Element index="4" value="Surface"/>
        <Element index="5" value="Surface With Edges"/>
        <Element index="6" value="Volume"/>
        <Element index="7" value="Wireframe"/>
      </Property>
      <Property name="SelectionCellFieldDataArrayName" id="3857.SelectionCellFieldDataArrayName" number_of_elements="1">
        <Element index="0" value="vtkOriginalCellIds"/>
        <Domain name="array_list" id="3857.SelectionCellFieldDataArrayName.array_list"/>
      </Property>
      <Property name="SelectionPointFieldDataArrayName" id="3857.SelectionPointFieldDataArrayName" number_of_elements="1">
        <Element index="0" value="RTData"/>
        <Domain name="array_list" id="3857.SelectionPointFieldDataArrayName.array_list">
          <String text="RTData"/>
        </Domain>
      </Property>
      <Property name="SelectionVisibility" id="3857.SelectionVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.SelectionVisibility.bool"/>
      </Property>
      <Property name="Visibility" id="3857.Visibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.Visibility.bool"/>
      </Property>
      <Property name="Ambient" id="3857.Ambient" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3857.Ambient.range"/>
      </Property>
      <Property name="AmbientColor" id="3857.AmbientColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.AmbientColor.range"/>
      </Property>
      <Property name="AxesOrigin" id="3857.AxesOrigin" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3857.AxesOrigin.range"/>
      </Property>
      <Property name="BackfaceAmbientColor" id="3857.BackfaceAmbientColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.BackfaceAmbientColor.range"/>
      </Property>
      <Property name="BackfaceDiffuseColor" id="3857.BackfaceDiffuseColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.BackfaceDiffuseColor.range"/>
      </Property>
      <Property name="BackfaceOpacity" id="3857.BackfaceOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.BackfaceOpacity.range"/>
      </Property>
      <Property name="BackfaceRepresentation" id="3857.BackfaceRepresentation" number_of_elements="1">
        <Element index="0" value="400"/>
        <Domain name="enum" id="3857.BackfaceRepresentation.enum">
          <Entry value="400" text="Follow Frontface"/>
          <Entry value="401" text="Cull Backface"/>
          <Entry value="402" text="Cull Frontface"/>
          <Entry value="0" text="Points"/>
          <Entry value="1" text="Wireframe"/>
          <Entry value="2" text="Surface"/>
          <Entry value="3" text="Surface With Edges"/>
        </Domain>
      </Property>
      <Property name="BlockColor" id="3857.BlockColor"/>
      <Property name="BlockColorsDistinctValues" id="3857.BlockColorsDistinctValues" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="3857.BlockColorsDistinctValues.range"/>
      </Property>
      <Property name="BlockOpacity" id="3857.BlockOpacity"/>
      <Property name="BlockVisibility" id="3857.BlockVisibility"/>
      <Property name="CenterStickyAxes" id="3857.CenterStickyAxes" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.CenterStickyAxes.bool"/>
      </Property>
      <Property name="ColorArrayName" id="3857.ColorArrayName" number_of_elements="5">
        <Element index="0" value=""/>
        <Element index="1" value=""/>
        <Element index="2" value=""/>
        <Element index="3" value="0"/>
        <Element index="4" value=""/>
        <Domain name="array_list" id="3857.ColorArrayName.array_list">
          <String text="RTData"/>
        </Domain>
        <Domain name="field_list" id="3857.ColorArrayName.field_list">
          <Entry value="0" text="Point Data"/>
          <Entry value="1" text="Cell Data"/>
          <Entry value="2" text="Field Data"/>
          <Entry value="4" text="Vertex Data"/>
          <Entry value="5" text="Edge Data"/>
          <Entry value="6" text="Row Data"/>
        </Domain>
      </Property>
      <Property name="CubeAxesColor" id="3857.CubeAxesColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.CubeAxesColor.range"/>
      </Property>
      <Property name="CubeAxesCornerOffset" id="3857.CubeAxesCornerOffset" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3857.CubeAxesCornerOffset.range"/>
      </Property>
      <Property name="CubeAxesFlyMode" id="3857.CubeAxesFlyMode" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3857.CubeAxesFlyMode.enum">
          <Entry value="0" text="Outer Edges"/>
          <Entry value="1" text="Closest Triad"/>
          <Entry value="2" text="Furthest Triad"/>
          <Entry value="3" text="Static Triad"/>
          <Entry value="4" text="Static Edges"/>
        </Domain>
      </Property>
      <Property name="CubeAxesGridLineLocation" id="3857.CubeAxesGridLineLocation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.CubeAxesGridLineLocation.enum">
          <Entry value="0" text="All Faces"/>
          <Entry value="1" text="Closest Faces"/>
          <Entry value="2" text="Furthest Faces"/>
        </Domain>
      </Property>
      <Property name="CubeAxesInertia" id="3857.CubeAxesInertia" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.CubeAxesInertia.range"/>
      </Property>
      <Property name="CubeAxesTickLocation" id="3857.CubeAxesTickLocation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.CubeAxesTickLocation.enum">
          <Entry value="0" text="Inside"/>
          <Entry value="1" text="Outside"/>
          <Entry value="2" text="Both"/>
        </Domain>
      </Property>
      <Property name="CubeAxesUseDefaultXTitle" id="3857.CubeAxesUseDefaultXTitle" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesUseDefaultXTitle.bool"/>
      </Property>
      <Property name="CubeAxesUseDefaultYTitle" id="3857.CubeAxesUseDefaultYTitle" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesUseDefaultYTitle.bool"/>
      </Property>
      <Property name="CubeAxesUseDefaultZTitle" id="3857.CubeAxesUseDefaultZTitle" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesUseDefaultZTitle.bool"/>
      </Property>
      <Property name="CubeAxesXAxisMinorTickVisibility" id="3857.CubeAxesXAxisMinorTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesXAxisMinorTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesXAxisTickVisibility" id="3857.CubeAxesXAxisTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesXAxisTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesXAxisVisibility" id="3857.CubeAxesXAxisVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesXAxisVisibility.bool"/>
      </Property>
      <Property name="CubeAxesXGridLines" id="3857.CubeAxesXGridLines" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.CubeAxesXGridLines.bool"/>
      </Property>
      <Property name="CubeAxesXLabelFormat" id="3857.CubeAxesXLabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="CubeAxesXTitle" id="3857.CubeAxesXTitle" number_of_elements="1">
        <Element index="0" value="X-Axis"/>
      </Property>
      <Property name="CubeAxesYAxisMinorTickVisibility" id="3857.CubeAxesYAxisMinorTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesYAxisMinorTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesYAxisTickVisibility" id="3857.CubeAxesYAxisTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesYAxisTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesYAxisVisibility" id="3857.CubeAxesYAxisVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesYAxisVisibility.bool"/>
      </Property>
      <Property name="CubeAxesYGridLines" id="3857.CubeAxesYGridLines" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.CubeAxesYGridLines.bool"/>
      </Property>
      <Property name="CubeAxesYLabelFormat" id="3857.CubeAxesYLabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="CubeAxesYTitle" id="3857.CubeAxesYTitle" number_of_elements="1">
        <Element index="0" value="Y-Axis"/>
      </Property>
      <Property name="CubeAxesZAxisMinorTickVisibility" id="3857.CubeAxesZAxisMinorTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesZAxisMinorTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesZAxisTickVisibility" id="3857.CubeAxesZAxisTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesZAxisTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesZAxisVisibility" id="3857.CubeAxesZAxisVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.CubeAxesZAxisVisibility.bool"/>
      </Property>
      <Property name="CubeAxesZGridLines" id="3857.CubeAxesZGridLines" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.CubeAxesZGridLines.bool"/>
      </Property>
      <Property name="CubeAxesZLabelFormat" id="3857.CubeAxesZLabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="CubeAxesZTitle" id="3857.CubeAxesZTitle" number_of_elements="1">
        <Element index="0" value="Z-Axis"/>
      </Property>
      <Property name="CustomBounds" id="3857.CustomBounds" number_of_elements="6">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Element index="3" value="1"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
      </Property>
      <Property name="CustomBoundsActive" id="3857.CustomBoundsActive" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="CustomRange" id="3857.CustomRange" number_of_elements="6">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Element index="3" value="1"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
      </Property>
      <Property name="CustomRangeActive" id="3857.CustomRangeActive" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="DataBounds" id="3857.DataBounds" number_of_elements="6">
        <Element index="0" value="2.11986296490753e-314"/>
        <Element index="1" value="2.11986296490753e-314"/>
        <Element index="2" value="2.11986296490753e-314"/>
        <Element index="3" value="2.11986296490753e-314"/>
        <Element index="4" value="2.11986296490753e-314"/>
        <Element index="5" value="2.11986296490753e-314"/>
      </Property>
      <Property name="Diffuse" id="3857.Diffuse" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.Diffuse.range"/>
      </Property>
      <Property name="DiffuseColor" id="3857.DiffuseColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.DiffuseColor.range"/>
      </Property>
      <Property name="EdgeColor" id="3857.EdgeColor" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0.5"/>
        <Domain name="range" id="3857.EdgeColor.range"/>
      </Property>
      <Property name="InterpolateScalarsBeforeMapping" id="3857.InterpolateScalarsBeforeMapping" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.InterpolateScalarsBeforeMapping.bool"/>
      </Property>
      <Property name="Interpolation" id="3857.Interpolation" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3857.Interpolation.enum">
          <Entry value="0" text="Flat"/>
          <Entry value="1" text="Gouraud"/>
        </Domain>
      </Property>
      <Property name="InterpolationType" id="3857.InterpolationType" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="enum" id="3857.InterpolationType.enum">
          <Entry value="0" text="Nearest"/>
          <Entry value="1" text="Linear"/>
          <Entry value="2" text="Cubic"/>
        </Domain>
      </Property>
      <Property name="LineWidth" id="3857.LineWidth" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.LineWidth.range"/>
      </Property>
      <Property name="LookupTable" id="3857.LookupTable">
        <Domain name="groups" id="3857.LookupTable.groups"/>
      </Property>
      <Property name="MapScalars" id="3857.MapScalars" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.MapScalars.bool"/>
      </Property>
      <Property name="Masking" id="3857.Masking" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.Masking.bool"/>
      </Property>
      <Property name="MeshVisibility" id="3857.MeshVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.MeshVisibility.bool"/>
      </Property>
      <Property name="NonlinearSubdivisionLevel" id="3857.NonlinearSubdivisionLevel" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.NonlinearSubdivisionLevel.range"/>
      </Property>
      <Property name="Opacity" id="3857.Opacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.Opacity.range"/>
      </Property>
      <Property name="Orient" id="3857.Orient" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.Orient.bool"/>
      </Property>
      <Property name="Orientation" id="3857.Orientation" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3857.Orientation.range"/>
      </Property>
      <Property name="OrientationMode" id="3857.OrientationMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.OrientationMode.enum">
          <Entry value="0" text="Direction"/>
          <Entry value="1" text="Rotation"/>
        </Domain>
      </Property>
      <Property name="Origin" id="3857.Origin" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3857.Origin.range"/>
      </Property>
      <Property name="OriginalBoundsRangeActive" id="3857.OriginalBoundsRangeActive" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="Pickable" id="3857.Pickable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3857.Pickable.bool"/>
      </Property>
      <Property name="PointSize" id="3857.PointSize" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="3857.PointSize.range"/>
      </Property>
      <Property name="Position" id="3857.Position" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3857.Position.range"/>
      </Property>
      <Property name="ScalarOpacityFunction" id="3857.ScalarOpacityFunction">
        <Domain name="groups" id="3857.ScalarOpacityFunction.groups"/>
      </Property>
      <Property name="ScalarOpacityUnitDistance" id="3857.ScalarOpacityUnitDistance" number_of_elements="1">
        <Element index="0" value="1.73205080756888"/>
        <Domain name="bounds" id="3857.ScalarOpacityUnitDistance.bounds"/>
      </Property>
      <Property name="Scale" id="3857.Scale" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.Scale.range"/>
      </Property>
      <Property name="ScaleFactor" id="3857.ScaleFactor" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="bounds" id="3857.ScaleFactor.bounds"/>
        <Domain name="scalar_range" id="3857.ScaleFactor.scalar_range"/>
        <Domain name="vector_range" id="3857.ScaleFactor.vector_range"/>
      </Property>
      <Property name="ScaleMode" id="3857.ScaleMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.ScaleMode.enum">
          <Entry value="0" text="No Data Scaling Off"/>
          <Entry value="1" text="Magnitude"/>
          <Entry value="2" text="Vector Components"/>
        </Domain>
      </Property>
      <Property name="Scaling" id="3857.Scaling" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.Scaling.bool"/>
      </Property>
      <Property name="SelectMaskArray" id="3857.SelectMaskArray" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectOrientationVectors" id="3857.SelectOrientationVectors" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectScaleArray" id="3857.SelectScaleArray" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectionCellLabelBold" id="3857.SelectionCellLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionCellLabelBold.bool"/>
      </Property>
      <Property name="SelectionCellLabelColor" id="3857.SelectionCellLabelColor" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3857.SelectionCellLabelColor.range"/>
      </Property>
      <Property name="SelectionCellLabelFontFamily" id="3857.SelectionCellLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.SelectionCellLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="SelectionCellLabelFontSize" id="3857.SelectionCellLabelFontSize" number_of_elements="1">
        <Element index="0" value="18"/>
        <Domain name="range" id="3857.SelectionCellLabelFontSize.range"/>
      </Property>
      <Property name="SelectionCellLabelFormat" id="3857.SelectionCellLabelFormat" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectionCellLabelItalic" id="3857.SelectionCellLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionCellLabelItalic.bool"/>
      </Property>
      <Property name="SelectionCellLabelJustification" id="3857.SelectionCellLabelJustification" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.SelectionCellLabelJustification.enum">
          <Entry value="0" text="Left"/>
          <Entry value="1" text="Center"/>
          <Entry value="2" text="Right"/>
        </Domain>
      </Property>
      <Property name="SelectionCellLabelOpacity" id="3857.SelectionCellLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.SelectionCellLabelOpacity.range"/>
      </Property>
      <Property name="SelectionCellLabelShadow" id="3857.SelectionCellLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionCellLabelShadow.bool"/>
      </Property>
      <Property name="SelectionCellLabelVisibility" id="3857.SelectionCellLabelVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionCellLabelVisibility.bool"/>
      </Property>
      <Property name="SelectionColor" id="3857.SelectionColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="0"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.SelectionColor.range"/>
      </Property>
      <Property name="SelectionLineWidth" id="3857.SelectionLineWidth" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="3857.SelectionLineWidth.range"/>
      </Property>
      <Property name="SelectionOpacity" id="3857.SelectionOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.SelectionOpacity.range"/>
      </Property>
      <Property name="SelectionPointLabelBold" id="3857.SelectionPointLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionPointLabelBold.bool"/>
      </Property>
      <Property name="SelectionPointLabelColor" id="3857.SelectionPointLabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3857.SelectionPointLabelColor.range"/>
      </Property>
      <Property name="SelectionPointLabelFontFamily" id="3857.SelectionPointLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.SelectionPointLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="SelectionPointLabelFontSize" id="3857.SelectionPointLabelFontSize" number_of_elements="1">
        <Element index="0" value="18"/>
        <Domain name="range" id="3857.SelectionPointLabelFontSize.range"/>
      </Property>
      <Property name="SelectionPointLabelFormat" id="3857.SelectionPointLabelFormat" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectionPointLabelItalic" id="3857.SelectionPointLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionPointLabelItalic.bool"/>
      </Property>
      <Property name="SelectionPointLabelJustification" id="3857.SelectionPointLabelJustification" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.SelectionPointLabelJustification.enum">
          <Entry value="0" text="Left"/>
          <Entry value="1" text="Center"/>
          <Entry value="2" text="Right"/>
        </Domain>
      </Property>
      <Property name="SelectionPointLabelOpacity" id="3857.SelectionPointLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3857.SelectionPointLabelOpacity.range"/>
      </Property>
      <Property name="SelectionPointLabelShadow" id="3857.SelectionPointLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionPointLabelShadow.bool"/>
      </Property>
      <Property name="SelectionPointLabelVisibility" id="3857.SelectionPointLabelVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionPointLabelVisibility.bool"/>
      </Property>
      <Property name="SelectionPointSize" id="3857.SelectionPointSize" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="range" id="3857.SelectionPointSize.range"/>
      </Property>
      <Property name="SelectionRepresentation" id="3857.SelectionRepresentation" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3857.SelectionRepresentation.enum">
          <Entry value="0" text="Points"/>
          <Entry value="1" text="Wireframe"/>
          <Entry value="2" text="Surface"/>
        </Domain>
      </Property>
      <Property name="SelectionUseOutline" id="3857.SelectionUseOutline" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SelectionUseOutline.bool"/>
      </Property>
      <Property name="Shade" id="3857.Shade" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.Shade.bool"/>
      </Property>
      <Property name="Slice" id="3857.Slice" number_of_elements="1">
        <Element index="0" value="10"/>
        <Domain name="dims" id="3857.Slice.dims"/>
      </Property>
      <Property name="SliceMode" id="3857.SliceMode" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="enum" id="3857.SliceMode.enum">
          <Entry value="5" text="XY Plane"/>
          <Entry value="6" text="YZ Plane"/>
          <Entry value="7" text="XZ Plane"/>
        </Domain>
      </Property>
      <Property name="Source" id="3857.Source">
        <Domain name="input_type" id="3857.Source.input_type"/>
      </Property>
      <Property name="Specular" id="3857.Specular" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3857.Specular.range"/>
      </Property>
      <Property name="SpecularColor" id="3857.SpecularColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3857.SpecularColor.range"/>
      </Property>
      <Property name="SpecularPower" id="3857.SpecularPower" number_of_elements="1">
        <Element index="0" value="100"/>
        <Domain name="range" id="3857.SpecularPower.range"/>
      </Property>
      <Property name="StaticMode" id="3857.StaticMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.StaticMode.bool"/>
      </Property>
      <Property name="StickyAxes" id="3857.StickyAxes" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.StickyAxes.bool"/>
      </Property>
      <Property name="SuppressLOD" id="3857.SuppressLOD" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.SuppressLOD.bool"/>
      </Property>
      <Property name="Texture" id="3857.Texture">
        <Domain name="groups" id="3857.Texture.groups"/>
      </Property>
      <Property name="Triangulate" id="3857.Triangulate" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.Triangulate.bool"/>
      </Property>
      <Property name="UseAxesOrigin" id="3857.UseAxesOrigin" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3857.UseAxesOrigin.bool"/>
      </Property>
      <Property name="UserTransform" id="3857.UserTransform" number_of_elements="16">
        <Element index="0" value="1"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Element index="3" value="0"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
        <Element index="6" value="0"/>
        <Element index="7" value="0"/>
        <Element index="8" value="0"/>
        <Element index="9" value="0"/>
        <Element index="10" value="1"/>
        <Element index="11" value="0"/>
        <Element index="12" value="0"/>
        <Element index="13" value="0"/>
        <Element index="14" value="0"/>
        <Element index="15" value="1"/>
      </Property>
      <Property name="VolumeRenderingMode" id="3857.VolumeRenderingMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3857.VolumeRenderingMode.enum">
          <Entry value="0" text="Smart"/>
          <Entry value="1" text="Ray Cast and Texture Mapping"/>
          <Entry value="2" text="Ray Cast Only"/>
          <Entry value="3" text="Texture Mapping Only"/>
          <Entry value="4" text="GPU Based"/>
        </Domain>
      </Property>
    </Proxy>
    <Proxy group="representations" type="UniformGridRepresentation" id="3968" servers="21">
      <Property name="CubeAxesVisibility" id="3968.CubeAxesVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.CubeAxesVisibility.bool"/>
      </Property>
      <Property name="Input" id="3968.Input" number_of_elements="1">
        <Proxy value="3868" output_port="0"/>
        <Domain name="input_array_cell" id="3968.Input.input_array_cell"/>
        <Domain name="input_array_point" id="3968.Input.input_array_point"/>
        <Domain name="input_type" id="3968.Input.input_type"/>
      </Property>
      <Property name="Representation" id="3968.Representation" number_of_elements="1">
        <Element index="0" value="Surface"/>
        <Domain name="list" id="3968.Representation.list">
          <String text="3D Glyphs"/>
          <String text="Outline"/>
          <String text="Points"/>
          <String text="Slice"/>
          <String text="Surface"/>
          <String text="Surface With Edges"/>
          <String text="Volume"/>
          <String text="Wireframe"/>
        </Domain>
      </Property>
      <Property name="RepresentationTypesInfo" id="3968.RepresentationTypesInfo" number_of_elements="8">
        <Element index="0" value="3D Glyphs"/>
        <Element index="1" value="Outline"/>
        <Element index="2" value="Points"/>
        <Element index="3" value="Slice"/>
        <Element index="4" value="Surface"/>
        <Element index="5" value="Surface With Edges"/>
        <Element index="6" value="Volume"/>
        <Element index="7" value="Wireframe"/>
      </Property>
      <Property name="SelectionCellFieldDataArrayName" id="3968.SelectionCellFieldDataArrayName" number_of_elements="1">
        <Element index="0" value="vtkOriginalCellIds"/>
        <Domain name="array_list" id="3968.SelectionCellFieldDataArrayName.array_list"/>
      </Property>
      <Property name="SelectionPointFieldDataArrayName" id="3968.SelectionPointFieldDataArrayName" number_of_elements="1">
        <Element index="0" value="RTData"/>
        <Domain name="array_list" id="3968.SelectionPointFieldDataArrayName.array_list">
          <String text="RTData"/>
          <String text="result"/>
        </Domain>
      </Property>
      <Property name="SelectionVisibility" id="3968.SelectionVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.SelectionVisibility.bool"/>
      </Property>
      <Property name="Visibility" id="3968.Visibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.Visibility.bool"/>
      </Property>
      <Property name="Ambient" id="3968.Ambient" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3968.Ambient.range"/>
      </Property>
      <Property name="AmbientColor" id="3968.AmbientColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.AmbientColor.range"/>
      </Property>
      <Property name="AxesOrigin" id="3968.AxesOrigin" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3968.AxesOrigin.range"/>
      </Property>
      <Property name="BackfaceAmbientColor" id="3968.BackfaceAmbientColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.BackfaceAmbientColor.range"/>
      </Property>
      <Property name="BackfaceDiffuseColor" id="3968.BackfaceDiffuseColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.BackfaceDiffuseColor.range"/>
      </Property>
      <Property name="BackfaceOpacity" id="3968.BackfaceOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.BackfaceOpacity.range"/>
      </Property>
      <Property name="BackfaceRepresentation" id="3968.BackfaceRepresentation" number_of_elements="1">
        <Element index="0" value="400"/>
        <Domain name="enum" id="3968.BackfaceRepresentation.enum">
          <Entry value="400" text="Follow Frontface"/>
          <Entry value="401" text="Cull Backface"/>
          <Entry value="402" text="Cull Frontface"/>
          <Entry value="0" text="Points"/>
          <Entry value="1" text="Wireframe"/>
          <Entry value="2" text="Surface"/>
          <Entry value="3" text="Surface With Edges"/>
        </Domain>
      </Property>
      <Property name="BlockColor" id="3968.BlockColor"/>
      <Property name="BlockColorsDistinctValues" id="3968.BlockColorsDistinctValues" number_of_elements="1">
        <Element index="0" value="12"/>
        <Domain name="range" id="3968.BlockColorsDistinctValues.range"/>
      </Property>
      <Property name="BlockOpacity" id="3968.BlockOpacity"/>
      <Property name="BlockVisibility" id="3968.BlockVisibility"/>
      <Property name="CenterStickyAxes" id="3968.CenterStickyAxes" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.CenterStickyAxes.bool"/>
      </Property>
      <Property name="ColorArrayName" id="3968.ColorArrayName" number_of_elements="5">
        <Element index="0" value=""/>
        <Element index="1" value=""/>
        <Element index="2" value=""/>
        <Element index="3" value="0"/>
        <Element index="4" value="result"/>
        <Domain name="array_list" id="3968.ColorArrayName.array_list">
          <String text="RTData"/>
          <String text="result"/>
          <String text="cellNormals"/>
        </Domain>
        <Domain name="field_list" id="3968.ColorArrayName.field_list">
          <Entry value="0" text="Point Data"/>
          <Entry value="1" text="Cell Data"/>
          <Entry value="2" text="Field Data"/>
          <Entry value="4" text="Vertex Data"/>
          <Entry value="5" text="Edge Data"/>
          <Entry value="6" text="Row Data"/>
        </Domain>
      </Property>
      <Property name="CubeAxesColor" id="3968.CubeAxesColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.CubeAxesColor.range"/>
      </Property>
      <Property name="CubeAxesCornerOffset" id="3968.CubeAxesCornerOffset" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3968.CubeAxesCornerOffset.range"/>
      </Property>
      <Property name="CubeAxesFlyMode" id="3968.CubeAxesFlyMode" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3968.CubeAxesFlyMode.enum">
          <Entry value="0" text="Outer Edges"/>
          <Entry value="1" text="Closest Triad"/>
          <Entry value="2" text="Furthest Triad"/>
          <Entry value="3" text="Static Triad"/>
          <Entry value="4" text="Static Edges"/>
        </Domain>
      </Property>
      <Property name="CubeAxesGridLineLocation" id="3968.CubeAxesGridLineLocation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.CubeAxesGridLineLocation.enum">
          <Entry value="0" text="All Faces"/>
          <Entry value="1" text="Closest Faces"/>
          <Entry value="2" text="Furthest Faces"/>
        </Domain>
      </Property>
      <Property name="CubeAxesInertia" id="3968.CubeAxesInertia" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.CubeAxesInertia.range"/>
      </Property>
      <Property name="CubeAxesTickLocation" id="3968.CubeAxesTickLocation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.CubeAxesTickLocation.enum">
          <Entry value="0" text="Inside"/>
          <Entry value="1" text="Outside"/>
          <Entry value="2" text="Both"/>
        </Domain>
      </Property>
      <Property name="CubeAxesUseDefaultXTitle" id="3968.CubeAxesUseDefaultXTitle" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesUseDefaultXTitle.bool"/>
      </Property>
      <Property name="CubeAxesUseDefaultYTitle" id="3968.CubeAxesUseDefaultYTitle" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesUseDefaultYTitle.bool"/>
      </Property>
      <Property name="CubeAxesUseDefaultZTitle" id="3968.CubeAxesUseDefaultZTitle" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesUseDefaultZTitle.bool"/>
      </Property>
      <Property name="CubeAxesXAxisMinorTickVisibility" id="3968.CubeAxesXAxisMinorTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesXAxisMinorTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesXAxisTickVisibility" id="3968.CubeAxesXAxisTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesXAxisTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesXAxisVisibility" id="3968.CubeAxesXAxisVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesXAxisVisibility.bool"/>
      </Property>
      <Property name="CubeAxesXGridLines" id="3968.CubeAxesXGridLines" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.CubeAxesXGridLines.bool"/>
      </Property>
      <Property name="CubeAxesXLabelFormat" id="3968.CubeAxesXLabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="CubeAxesXTitle" id="3968.CubeAxesXTitle" number_of_elements="1">
        <Element index="0" value="X-Axis"/>
      </Property>
      <Property name="CubeAxesYAxisMinorTickVisibility" id="3968.CubeAxesYAxisMinorTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesYAxisMinorTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesYAxisTickVisibility" id="3968.CubeAxesYAxisTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesYAxisTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesYAxisVisibility" id="3968.CubeAxesYAxisVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesYAxisVisibility.bool"/>
      </Property>
      <Property name="CubeAxesYGridLines" id="3968.CubeAxesYGridLines" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.CubeAxesYGridLines.bool"/>
      </Property>
      <Property name="CubeAxesYLabelFormat" id="3968.CubeAxesYLabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="CubeAxesYTitle" id="3968.CubeAxesYTitle" number_of_elements="1">
        <Element index="0" value="Y-Axis"/>
      </Property>
      <Property name="CubeAxesZAxisMinorTickVisibility" id="3968.CubeAxesZAxisMinorTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesZAxisMinorTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesZAxisTickVisibility" id="3968.CubeAxesZAxisTickVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesZAxisTickVisibility.bool"/>
      </Property>
      <Property name="CubeAxesZAxisVisibility" id="3968.CubeAxesZAxisVisibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.CubeAxesZAxisVisibility.bool"/>
      </Property>
      <Property name="CubeAxesZGridLines" id="3968.CubeAxesZGridLines" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.CubeAxesZGridLines.bool"/>
      </Property>
      <Property name="CubeAxesZLabelFormat" id="3968.CubeAxesZLabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="CubeAxesZTitle" id="3968.CubeAxesZTitle" number_of_elements="1">
        <Element index="0" value="Z-Axis"/>
      </Property>
      <Property name="CustomBounds" id="3968.CustomBounds" number_of_elements="6">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Element index="3" value="1"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
      </Property>
      <Property name="CustomBoundsActive" id="3968.CustomBoundsActive" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="CustomRange" id="3968.CustomRange" number_of_elements="6">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Element index="3" value="1"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
      </Property>
      <Property name="CustomRangeActive" id="3968.CustomRangeActive" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="DataBounds" id="3968.DataBounds" number_of_elements="6">
        <Element index="0" value="-0.306065797805786"/>
        <Element index="1" value="-13.5903062820435"/>
        <Element index="2" value="6.00657858365892e-316"/>
        <Element index="3" value="8.48798316386109e-314"/>
        <Element index="4" value="-0.0683879852294922"/>
        <Element index="5" value="-5.61658406257629"/>
      </Property>
      <Property name="Diffuse" id="3968.Diffuse" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.Diffuse.range"/>
      </Property>
      <Property name="DiffuseColor" id="3968.DiffuseColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.DiffuseColor.range"/>
      </Property>
      <Property name="EdgeColor" id="3968.EdgeColor" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0.5"/>
        <Domain name="range" id="3968.EdgeColor.range"/>
      </Property>
      <Property name="InterpolateScalarsBeforeMapping" id="3968.InterpolateScalarsBeforeMapping" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.InterpolateScalarsBeforeMapping.bool"/>
      </Property>
      <Property name="Interpolation" id="3968.Interpolation" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3968.Interpolation.enum">
          <Entry value="0" text="Flat"/>
          <Entry value="1" text="Gouraud"/>
        </Domain>
      </Property>
      <Property name="InterpolationType" id="3968.InterpolationType" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="enum" id="3968.InterpolationType.enum">
          <Entry value="0" text="Nearest"/>
          <Entry value="1" text="Linear"/>
          <Entry value="2" text="Cubic"/>
        </Domain>
      </Property>
      <Property name="LineWidth" id="3968.LineWidth" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.LineWidth.range"/>
      </Property>
      <Property name="LookupTable" id="3968.LookupTable" number_of_elements="1">
        <Proxy value="3988"/>
        <Domain name="groups" id="3968.LookupTable.groups"/>
      </Property>
      <Property name="MapScalars" id="3968.MapScalars" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.MapScalars.bool"/>
      </Property>
      <Property name="Masking" id="3968.Masking" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.Masking.bool"/>
      </Property>
      <Property name="MeshVisibility" id="3968.MeshVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.MeshVisibility.bool"/>
      </Property>
      <Property name="NonlinearSubdivisionLevel" id="3968.NonlinearSubdivisionLevel" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.NonlinearSubdivisionLevel.range"/>
      </Property>
      <Property name="Opacity" id="3968.Opacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.Opacity.range"/>
      </Property>
      <Property name="Orient" id="3968.Orient" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.Orient.bool"/>
      </Property>
      <Property name="Orientation" id="3968.Orientation" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3968.Orientation.range"/>
      </Property>
      <Property name="OrientationMode" id="3968.OrientationMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.OrientationMode.enum">
          <Entry value="0" text="Direction"/>
          <Entry value="1" text="Rotation"/>
        </Domain>
      </Property>
      <Property name="Origin" id="3968.Origin" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3968.Origin.range"/>
      </Property>
      <Property name="OriginalBoundsRangeActive" id="3968.OriginalBoundsRangeActive" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="Pickable" id="3968.Pickable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3968.Pickable.bool"/>
      </Property>
      <Property name="PointSize" id="3968.PointSize" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="3968.PointSize.range"/>
      </Property>
      <Property name="Position" id="3968.Position" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3968.Position.range"/>
      </Property>
      <Property name="ScalarOpacityFunction" id="3968.ScalarOpacityFunction" number_of_elements="1">
        <Proxy value="3987"/>
        <Domain name="groups" id="3968.ScalarOpacityFunction.groups"/>
      </Property>
      <Property name="ScalarOpacityUnitDistance" id="3968.ScalarOpacityUnitDistance" number_of_elements="1">
        <Element index="0" value="1.73205080756888"/>
        <Domain name="bounds" id="3968.ScalarOpacityUnitDistance.bounds"/>
      </Property>
      <Property name="Scale" id="3968.Scale" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.Scale.range"/>
      </Property>
      <Property name="ScaleFactor" id="3968.ScaleFactor" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="bounds" id="3968.ScaleFactor.bounds"/>
        <Domain name="scalar_range" id="3968.ScaleFactor.scalar_range"/>
        <Domain name="vector_range" id="3968.ScaleFactor.vector_range"/>
      </Property>
      <Property name="ScaleMode" id="3968.ScaleMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.ScaleMode.enum">
          <Entry value="0" text="No Data Scaling Off"/>
          <Entry value="1" text="Magnitude"/>
          <Entry value="2" text="Vector Components"/>
        </Domain>
      </Property>
      <Property name="Scaling" id="3968.Scaling" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.Scaling.bool"/>
      </Property>
      <Property name="SelectMaskArray" id="3968.SelectMaskArray" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectOrientationVectors" id="3968.SelectOrientationVectors" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectScaleArray" id="3968.SelectScaleArray" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectionCellLabelBold" id="3968.SelectionCellLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionCellLabelBold.bool"/>
      </Property>
      <Property name="SelectionCellLabelColor" id="3968.SelectionCellLabelColor" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3968.SelectionCellLabelColor.range"/>
      </Property>
      <Property name="SelectionCellLabelFontFamily" id="3968.SelectionCellLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.SelectionCellLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="SelectionCellLabelFontSize" id="3968.SelectionCellLabelFontSize" number_of_elements="1">
        <Element index="0" value="18"/>
        <Domain name="range" id="3968.SelectionCellLabelFontSize.range"/>
      </Property>
      <Property name="SelectionCellLabelFormat" id="3968.SelectionCellLabelFormat" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectionCellLabelItalic" id="3968.SelectionCellLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionCellLabelItalic.bool"/>
      </Property>
      <Property name="SelectionCellLabelJustification" id="3968.SelectionCellLabelJustification" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.SelectionCellLabelJustification.enum">
          <Entry value="0" text="Left"/>
          <Entry value="1" text="Center"/>
          <Entry value="2" text="Right"/>
        </Domain>
      </Property>
      <Property name="SelectionCellLabelOpacity" id="3968.SelectionCellLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.SelectionCellLabelOpacity.range"/>
      </Property>
      <Property name="SelectionCellLabelShadow" id="3968.SelectionCellLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionCellLabelShadow.bool"/>
      </Property>
      <Property name="SelectionCellLabelVisibility" id="3968.SelectionCellLabelVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionCellLabelVisibility.bool"/>
      </Property>
      <Property name="SelectionColor" id="3968.SelectionColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="0"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.SelectionColor.range"/>
      </Property>
      <Property name="SelectionLineWidth" id="3968.SelectionLineWidth" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="3968.SelectionLineWidth.range"/>
      </Property>
      <Property name="SelectionOpacity" id="3968.SelectionOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.SelectionOpacity.range"/>
      </Property>
      <Property name="SelectionPointLabelBold" id="3968.SelectionPointLabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionPointLabelBold.bool"/>
      </Property>
      <Property name="SelectionPointLabelColor" id="3968.SelectionPointLabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3968.SelectionPointLabelColor.range"/>
      </Property>
      <Property name="SelectionPointLabelFontFamily" id="3968.SelectionPointLabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.SelectionPointLabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="SelectionPointLabelFontSize" id="3968.SelectionPointLabelFontSize" number_of_elements="1">
        <Element index="0" value="18"/>
        <Domain name="range" id="3968.SelectionPointLabelFontSize.range"/>
      </Property>
      <Property name="SelectionPointLabelFormat" id="3968.SelectionPointLabelFormat" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="SelectionPointLabelItalic" id="3968.SelectionPointLabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionPointLabelItalic.bool"/>
      </Property>
      <Property name="SelectionPointLabelJustification" id="3968.SelectionPointLabelJustification" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.SelectionPointLabelJustification.enum">
          <Entry value="0" text="Left"/>
          <Entry value="1" text="Center"/>
          <Entry value="2" text="Right"/>
        </Domain>
      </Property>
      <Property name="SelectionPointLabelOpacity" id="3968.SelectionPointLabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3968.SelectionPointLabelOpacity.range"/>
      </Property>
      <Property name="SelectionPointLabelShadow" id="3968.SelectionPointLabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionPointLabelShadow.bool"/>
      </Property>
      <Property name="SelectionPointLabelVisibility" id="3968.SelectionPointLabelVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionPointLabelVisibility.bool"/>
      </Property>
      <Property name="SelectionPointSize" id="3968.SelectionPointSize" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="range" id="3968.SelectionPointSize.range"/>
      </Property>
      <Property name="SelectionRepresentation" id="3968.SelectionRepresentation" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3968.SelectionRepresentation.enum">
          <Entry value="0" text="Points"/>
          <Entry value="1" text="Wireframe"/>
          <Entry value="2" text="Surface"/>
        </Domain>
      </Property>
      <Property name="SelectionUseOutline" id="3968.SelectionUseOutline" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SelectionUseOutline.bool"/>
      </Property>
      <Property name="Shade" id="3968.Shade" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.Shade.bool"/>
      </Property>
      <Property name="Slice" id="3968.Slice" number_of_elements="1">
        <Element index="0" value="10"/>
        <Domain name="dims" id="3968.Slice.dims"/>
      </Property>
      <Property name="SliceMode" id="3968.SliceMode" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="enum" id="3968.SliceMode.enum">
          <Entry value="5" text="XY Plane"/>
          <Entry value="6" text="YZ Plane"/>
          <Entry value="7" text="XZ Plane"/>
        </Domain>
      </Property>
      <Property name="Source" id="3968.Source">
        <Domain name="input_type" id="3968.Source.input_type"/>
      </Property>
      <Property name="Specular" id="3968.Specular" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="3968.Specular.range"/>
      </Property>
      <Property name="SpecularColor" id="3968.SpecularColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3968.SpecularColor.range"/>
      </Property>
      <Property name="SpecularPower" id="3968.SpecularPower" number_of_elements="1">
        <Element index="0" value="100"/>
        <Domain name="range" id="3968.SpecularPower.range"/>
      </Property>
      <Property name="StaticMode" id="3968.StaticMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.StaticMode.bool"/>
      </Property>
      <Property name="StickyAxes" id="3968.StickyAxes" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.StickyAxes.bool"/>
      </Property>
      <Property name="SuppressLOD" id="3968.SuppressLOD" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.SuppressLOD.bool"/>
      </Property>
      <Property name="Texture" id="3968.Texture">
        <Domain name="groups" id="3968.Texture.groups"/>
      </Property>
      <Property name="Triangulate" id="3968.Triangulate" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.Triangulate.bool"/>
      </Property>
      <Property name="UseAxesOrigin" id="3968.UseAxesOrigin" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3968.UseAxesOrigin.bool"/>
      </Property>
      <Property name="UserTransform" id="3968.UserTransform" number_of_elements="16">
        <Element index="0" value="1"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Element index="3" value="0"/>
        <Element index="4" value="0"/>
        <Element index="5" value="1"/>
        <Element index="6" value="0"/>
        <Element index="7" value="0"/>
        <Element index="8" value="0"/>
        <Element index="9" value="0"/>
        <Element index="10" value="1"/>
        <Element index="11" value="0"/>
        <Element index="12" value="0"/>
        <Element index="13" value="0"/>
        <Element index="14" value="0"/>
        <Element index="15" value="1"/>
      </Property>
      <Property name="VolumeRenderingMode" id="3968.VolumeRenderingMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3968.VolumeRenderingMode.enum">
          <Entry value="0" text="Smart"/>
          <Entry value="1" text="Ray Cast and Texture Mapping"/>
          <Entry value="2" text="Ray Cast Only"/>
          <Entry value="3" text="Texture Mapping Only"/>
          <Entry value="4" text="GPU Based"/>
        </Domain>
      </Property>
    </Proxy>
    <Proxy group="representations" type="ScalarBarWidgetRepresentation" id="3986" servers="21">
      <Property name="Enabled" id="3986.Enabled" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.Enabled.bool"/>
      </Property>
      <Property name="LockPosition" id="3986.LockPosition" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.LockPosition.bool"/>
      </Property>
      <Property name="UseNonCompositedRenderer" id="3986.UseNonCompositedRenderer" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="AddRangeAnnotations" id="3986.AddRangeAnnotations" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.AddRangeAnnotations.bool"/>
      </Property>
      <Property name="AddRangeLabels" id="3986.AddRangeLabels" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.AddRangeLabels.bool"/>
      </Property>
      <Property name="AspectRatio" id="3986.AspectRatio" number_of_elements="1">
        <Element index="0" value="20"/>
        <Domain name="range" id="3986.AspectRatio.range"/>
      </Property>
      <Property name="AutoOrient" id="3986.AutoOrient" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.AutoOrient.bool"/>
      </Property>
      <Property name="AutoOrientInfo" id="3986.AutoOrientInfo" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.AutoOrientInfo.bool"/>
      </Property>
      <Property name="AutomaticAnnotations" id="3986.AutomaticAnnotations" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.AutomaticAnnotations.bool"/>
      </Property>
      <Property name="AutomaticLabelFormat" id="3986.AutomaticLabelFormat" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.AutomaticLabelFormat.bool"/>
      </Property>
      <Property name="ComponentTitle" id="3986.ComponentTitle" number_of_elements="1">
        <Element index="0" value=""/>
      </Property>
      <Property name="DrawAnnotations" id="3986.DrawAnnotations" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.DrawAnnotations.bool"/>
      </Property>
      <Property name="DrawNanAnnotation" id="3986.DrawNanAnnotation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.DrawNanAnnotation.bool"/>
      </Property>
      <Property name="DrawSubTickMarks" id="3986.DrawSubTickMarks" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.DrawSubTickMarks.bool"/>
      </Property>
      <Property name="DrawTickLabels" id="3986.DrawTickLabels" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.DrawTickLabels.bool"/>
      </Property>
      <Property name="DrawTickMarks" id="3986.DrawTickMarks" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.DrawTickMarks.bool"/>
      </Property>
      <Property name="LabelBold" id="3986.LabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.LabelBold.bool"/>
      </Property>
      <Property name="LabelColor" id="3986.LabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3986.LabelColor.range"/>
      </Property>
      <Property name="LabelFontFamily" id="3986.LabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3986.LabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="LabelFontSize" id="3986.LabelFontSize" number_of_elements="1">
        <Element index="0" value="7"/>
        <Domain name="range" id="3986.LabelFontSize.range"/>
      </Property>
      <Property name="LabelFormat" id="3986.LabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="LabelItalic" id="3986.LabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.LabelItalic.bool"/>
      </Property>
      <Property name="LabelOpacity" id="3986.LabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3986.LabelOpacity.range"/>
      </Property>
      <Property name="LabelShadow" id="3986.LabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.LabelShadow.bool"/>
      </Property>
      <Property name="LookupTable" id="3986.LookupTable" number_of_elements="1">
        <Proxy value="3980"/>
        <Domain name="groups" id="3986.LookupTable.groups"/>
      </Property>
      <Property name="NanAnnotation" id="3986.NanAnnotation" number_of_elements="1">
        <Element index="0" value="NaN"/>
      </Property>
      <Property name="NumberOfLabels" id="3986.NumberOfLabels" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="range" id="3986.NumberOfLabels.range"/>
      </Property>
      <Property name="Orientation" id="3986.Orientation" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3986.Orientation.enum">
          <Entry value="0" text="Horizontal"/>
          <Entry value="1" text="Vertical"/>
        </Domain>
      </Property>
      <Property name="OrientationInfo" id="3986.OrientationInfo" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="Position" id="3986.Position" number_of_elements="2">
        <Element index="0" value="0.85"/>
        <Element index="1" value="0.05"/>
        <Domain name="range" id="3986.Position.range"/>
      </Property>
      <Property name="Position2" id="3986.Position2" number_of_elements="2">
        <Element index="0" value="0.12"/>
        <Element index="1" value="0.43"/>
        <Domain name="range" id="3986.Position2.range"/>
      </Property>
      <Property name="Position2Info" id="3986.Position2Info" number_of_elements="2">
        <Element index="0" value="0.12"/>
        <Element index="1" value="0.43"/>
      </Property>
      <Property name="PositionInfo" id="3986.PositionInfo" number_of_elements="2">
        <Element index="0" value="0.85"/>
        <Element index="1" value="0.05"/>
      </Property>
      <Property name="RangeLabelFormat" id="3986.RangeLabelFormat" number_of_elements="1">
        <Element index="0" value="%.5g"/>
      </Property>
      <Property name="Repositionable" id="3986.Repositionable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.Repositionable.bool"/>
      </Property>
      <Property name="Resizable" id="3986.Resizable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3986.Resizable.bool"/>
      </Property>
      <Property name="Selectable" id="3986.Selectable" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.Selectable.bool"/>
      </Property>
      <Property name="TextPosition" id="3986.TextPosition" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3986.TextPosition.enum">
          <Entry value="1" text="Ticks right/top, annotations left/bottom"/>
          <Entry value="0" text="Ticks left/bottom, annotations right/top"/>
        </Domain>
      </Property>
      <Property name="Title" id="3986.Title" number_of_elements="1">
        <Element index="0" value="RTData"/>
      </Property>
      <Property name="TitleBold" id="3986.TitleBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.TitleBold.bool"/>
      </Property>
      <Property name="TitleColor" id="3986.TitleColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3986.TitleColor.range"/>
      </Property>
      <Property name="TitleFontFamily" id="3986.TitleFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3986.TitleFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="TitleFontSize" id="3986.TitleFontSize" number_of_elements="1">
        <Element index="0" value="7"/>
        <Domain name="range" id="3986.TitleFontSize.range"/>
      </Property>
      <Property name="TitleItalic" id="3986.TitleItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.TitleItalic.bool"/>
      </Property>
      <Property name="TitleJustification" id="3986.TitleJustification" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3986.TitleJustification.enum">
          <Entry value="0" text="Left"/>
          <Entry value="1" text="Centered"/>
          <Entry value="2" text="Right"/>
        </Domain>
      </Property>
      <Property name="TitleOpacity" id="3986.TitleOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3986.TitleOpacity.range"/>
      </Property>
      <Property name="TitleShadow" id="3986.TitleShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.TitleShadow.bool"/>
      </Property>
      <Property name="Visibility" id="3986.Visibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3986.Visibility.bool"/>
      </Property>
    </Proxy>
    <Proxy group="representations" type="ScalarBarWidgetRepresentation" id="3994" servers="21">
      <Property name="Enabled" id="3994.Enabled" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.Enabled.bool"/>
      </Property>
      <Property name="LockPosition" id="3994.LockPosition" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.LockPosition.bool"/>
      </Property>
      <Property name="UseNonCompositedRenderer" id="3994.UseNonCompositedRenderer" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="AddRangeAnnotations" id="3994.AddRangeAnnotations" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.AddRangeAnnotations.bool"/>
      </Property>
      <Property name="AddRangeLabels" id="3994.AddRangeLabels" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.AddRangeLabels.bool"/>
      </Property>
      <Property name="AspectRatio" id="3994.AspectRatio" number_of_elements="1">
        <Element index="0" value="20"/>
        <Domain name="range" id="3994.AspectRatio.range"/>
      </Property>
      <Property name="AutoOrient" id="3994.AutoOrient" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.AutoOrient.bool"/>
      </Property>
      <Property name="AutoOrientInfo" id="3994.AutoOrientInfo" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.AutoOrientInfo.bool"/>
      </Property>
      <Property name="AutomaticAnnotations" id="3994.AutomaticAnnotations" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.AutomaticAnnotations.bool"/>
      </Property>
      <Property name="AutomaticLabelFormat" id="3994.AutomaticLabelFormat" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.AutomaticLabelFormat.bool"/>
      </Property>
      <Property name="ComponentTitle" id="3994.ComponentTitle" number_of_elements="1">
        <Element index="0" value="Magnitude"/>
      </Property>
      <Property name="DrawAnnotations" id="3994.DrawAnnotations" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.DrawAnnotations.bool"/>
      </Property>
      <Property name="DrawNanAnnotation" id="3994.DrawNanAnnotation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.DrawNanAnnotation.bool"/>
      </Property>
      <Property name="DrawSubTickMarks" id="3994.DrawSubTickMarks" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.DrawSubTickMarks.bool"/>
      </Property>
      <Property name="DrawTickLabels" id="3994.DrawTickLabels" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.DrawTickLabels.bool"/>
      </Property>
      <Property name="DrawTickMarks" id="3994.DrawTickMarks" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.DrawTickMarks.bool"/>
      </Property>
      <Property name="LabelBold" id="3994.LabelBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.LabelBold.bool"/>
      </Property>
      <Property name="LabelColor" id="3994.LabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3994.LabelColor.range"/>
      </Property>
      <Property name="LabelFontFamily" id="3994.LabelFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3994.LabelFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="LabelFontSize" id="3994.LabelFontSize" number_of_elements="1">
        <Element index="0" value="7"/>
        <Domain name="range" id="3994.LabelFontSize.range"/>
      </Property>
      <Property name="LabelFormat" id="3994.LabelFormat" number_of_elements="1">
        <Element index="0" value="%-#6.3g"/>
      </Property>
      <Property name="LabelItalic" id="3994.LabelItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.LabelItalic.bool"/>
      </Property>
      <Property name="LabelOpacity" id="3994.LabelOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3994.LabelOpacity.range"/>
      </Property>
      <Property name="LabelShadow" id="3994.LabelShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.LabelShadow.bool"/>
      </Property>
      <Property name="LookupTable" id="3994.LookupTable" number_of_elements="1">
        <Proxy value="3988"/>
        <Domain name="groups" id="3994.LookupTable.groups"/>
      </Property>
      <Property name="NanAnnotation" id="3994.NanAnnotation" number_of_elements="1">
        <Element index="0" value="NaN"/>
      </Property>
      <Property name="NumberOfLabels" id="3994.NumberOfLabels" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="range" id="3994.NumberOfLabels.range"/>
      </Property>
      <Property name="Orientation" id="3994.Orientation" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3994.Orientation.enum">
          <Entry value="0" text="Horizontal"/>
          <Entry value="1" text="Vertical"/>
        </Domain>
      </Property>
      <Property name="OrientationInfo" id="3994.OrientationInfo" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="Position" id="3994.Position" number_of_elements="2">
        <Element index="0" value="0.85"/>
        <Element index="1" value="0.05"/>
        <Domain name="range" id="3994.Position.range"/>
      </Property>
      <Property name="Position2" id="3994.Position2" number_of_elements="2">
        <Element index="0" value="0.12"/>
        <Element index="1" value="0.43"/>
        <Domain name="range" id="3994.Position2.range"/>
      </Property>
      <Property name="Position2Info" id="3994.Position2Info" number_of_elements="2">
        <Element index="0" value="0.12"/>
        <Element index="1" value="0.43"/>
      </Property>
      <Property name="PositionInfo" id="3994.PositionInfo" number_of_elements="2">
        <Element index="0" value="0.85"/>
        <Element index="1" value="0.05"/>
      </Property>
      <Property name="RangeLabelFormat" id="3994.RangeLabelFormat" number_of_elements="1">
        <Element index="0" value="%.5g"/>
      </Property>
      <Property name="Repositionable" id="3994.Repositionable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.Repositionable.bool"/>
      </Property>
      <Property name="Resizable" id="3994.Resizable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.Resizable.bool"/>
      </Property>
      <Property name="Selectable" id="3994.Selectable" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.Selectable.bool"/>
      </Property>
      <Property name="TextPosition" id="3994.TextPosition" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3994.TextPosition.enum">
          <Entry value="1" text="Ticks right/top, annotations left/bottom"/>
          <Entry value="0" text="Ticks left/bottom, annotations right/top"/>
        </Domain>
      </Property>
      <Property name="Title" id="3994.Title" number_of_elements="1">
        <Element index="0" value="result"/>
      </Property>
      <Property name="TitleBold" id="3994.TitleBold" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.TitleBold.bool"/>
      </Property>
      <Property name="TitleColor" id="3994.TitleColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="3994.TitleColor.range"/>
      </Property>
      <Property name="TitleFontFamily" id="3994.TitleFontFamily" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3994.TitleFontFamily.enum">
          <Entry value="0" text="Arial"/>
          <Entry value="1" text="Courier"/>
          <Entry value="2" text="Times"/>
        </Domain>
      </Property>
      <Property name="TitleFontSize" id="3994.TitleFontSize" number_of_elements="1">
        <Element index="0" value="7"/>
        <Domain name="range" id="3994.TitleFontSize.range"/>
      </Property>
      <Property name="TitleItalic" id="3994.TitleItalic" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.TitleItalic.bool"/>
      </Property>
      <Property name="TitleJustification" id="3994.TitleJustification" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="3994.TitleJustification.enum">
          <Entry value="0" text="Left"/>
          <Entry value="1" text="Centered"/>
          <Entry value="2" text="Right"/>
        </Domain>
      </Property>
      <Property name="TitleOpacity" id="3994.TitleOpacity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3994.TitleOpacity.range"/>
      </Property>
      <Property name="TitleShadow" id="3994.TitleShadow" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="3994.TitleShadow.bool"/>
      </Property>
      <Property name="Visibility" id="3994.Visibility" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3994.Visibility.bool"/>
      </Property>
    </Proxy>
    <Proxy group="filters" type="PythonCalculator" id="3868" servers="1">
      <Property name="ArrayAssociation" id="3868.ArrayAssociation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="3868.ArrayAssociation.enum">
          <Entry value="0" text="Point Data"/>
          <Entry value="1" text="Cell Data"/>
        </Domain>
      </Property>
      <Property name="ArrayName" id="3868.ArrayName" number_of_elements="1">
        <Element index="0" value="result"/>
      </Property>
      <Property name="CopyArrays" id="3868.CopyArrays" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="3868.CopyArrays.bool"/>
      </Property>
      <Property name="Expression" id="3868.Expression" number_of_elements="1">
        <Element index="0" value="curl(gradient(RTData))"/>
      </Property>
      <Property name="Input" id="3868.Input" number_of_elements="1">
        <Proxy value="3712" output_port="0"/>
        <Domain name="groups" id="3868.Input.groups"/>
        <Domain name="input_type" id="3868.Input.input_type"/>
      </Property>
    </Proxy>
    <Proxy group="sources" type="RTAnalyticSource" id="3712" servers="1">
      <Property name="Center" id="3712.Center" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
        <Domain name="range" id="3712.Center.range"/>
      </Property>
      <Property name="Maximum" id="3712.Maximum" number_of_elements="1">
        <Element index="0" value="255"/>
        <Domain name="range" id="3712.Maximum.range"/>
      </Property>
      <Property name="StandardDeviation" id="3712.StandardDeviation" number_of_elements="1">
        <Element index="0" value="0.5"/>
        <Domain name="range" id="3712.StandardDeviation.range"/>
      </Property>
      <Property name="SubsampleRate" id="3712.SubsampleRate" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="3712.SubsampleRate.range"/>
      </Property>
      <Property name="WholeExtent" id="3712.WholeExtent" number_of_elements="6">
        <Element index="0" value="-10"/>
        <Element index="1" value="10"/>
        <Element index="2" value="-10"/>
        <Element index="3" value="10"/>
        <Element index="4" value="-10"/>
        <Element index="5" value="10"/>
        <Domain name="range" id="3712.WholeExtent.range"/>
      </Property>
      <Property name="XFreq" id="3712.XFreq" number_of_elements="1">
        <Element index="0" value="60"/>
        <Domain name="range" id="3712.XFreq.range"/>
      </Property>
      <Property name="XMag" id="3712.XMag" number_of_elements="1">
        <Element index="0" value="10"/>
        <Domain name="range" id="3712.XMag.range"/>
      </Property>
      <Property name="YFreq" id="3712.YFreq" number_of_elements="1">
        <Element index="0" value="30"/>
        <Domain name="range" id="3712.YFreq.range"/>
      </Property>
      <Property name="YMag" id="3712.YMag" number_of_elements="1">
        <Element index="0" value="18"/>
        <Domain name="range" id="3712.YMag.range"/>
      </Property>
      <Property name="ZFreq" id="3712.ZFreq" number_of_elements="1">
        <Element index="0" value="40"/>
        <Domain name="range" id="3712.ZFreq.range"/>
      </Property>
      <Property name="ZMag" id="3712.ZMag" number_of_elements="1">
        <Element index="0" value="5"/>
        <Domain name="range" id="3712.ZMag.range"/>
      </Property>
    </Proxy>
    <Proxy group="misc" type="TimeKeeper" id="259" servers="16">
      <Property name="SuppressedTimeSources" id="259.SuppressedTimeSources"/>
      <Property name="Time" id="259.Time" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="259.Time.range"/>
      </Property>
      <Property name="TimeLabel" id="259.TimeLabel" number_of_elements="1">
        <Element index="0" value="Time"/>
      </Property>
      <Property name="TimeRange" id="259.TimeRange" number_of_elements="2">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
      </Property>
      <Property name="TimeSources" id="259.TimeSources" number_of_elements="2">
        <Proxy value="3712"/>
        <Proxy value="3868"/>
      </Property>
      <Property name="TimestepValues" id="259.TimestepValues"/>
      <Property name="Views" id="259.Views" number_of_elements="1">
        <Proxy value="1934"/>
      </Property>
    </Proxy>
    <Proxy group="views" type="RenderView" id="1934" servers="21">
      <Property name="AlphaBitPlanes" id="1934.AlphaBitPlanes" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1934.AlphaBitPlanes.bool"/>
      </Property>
      <Property name="AxesGrid" id="1934.AxesGrid" number_of_elements="1">
        <Proxy value="1932"/>
        <Domain name="proxy_list" id="1934.AxesGrid.proxy_list">
          <Proxy value="1932"/>
        </Domain>
      </Property>
      <Property name="BackLightAzimuth" id="1934.BackLightAzimuth" number_of_elements="1">
        <Element index="0" value="110"/>
        <Domain name="range" id="1934.BackLightAzimuth.range"/>
      </Property>
      <Property name="BackLightElevation" id="1934.BackLightElevation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="1934.BackLightElevation.range"/>
      </Property>
      <Property name="BackLightK:B Ratio" id="1934.BackLightK:B Ratio" number_of_elements="1">
        <Element index="0" value="3.5"/>
        <Domain name="range" id="1934.BackLightK:B Ratio.range"/>
      </Property>
      <Property name="BackLightWarmth" id="1934.BackLightWarmth" number_of_elements="1">
        <Element index="0" value="0.5"/>
        <Domain name="range" id="1934.BackLightWarmth.range"/>
      </Property>
      <Property name="Background" id="1934.Background" number_of_elements="3">
        <Element index="0" value="0.32"/>
        <Element index="1" value="0.34"/>
        <Element index="2" value="0.43"/>
        <Domain name="range" id="1934.Background.range"/>
      </Property>
      <Property name="Background2" id="1934.Background2" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0.165"/>
        <Domain name="range" id="1934.Background2.range"/>
      </Property>
      <Property name="BackgroundTexture" id="1934.BackgroundTexture">
        <Domain name="groups" id="1934.BackgroundTexture.groups"/>
      </Property>
      <Property name="CacheKey" id="1934.CacheKey" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="1934.CacheKey.range"/>
      </Property>
      <Property name="Camera2DManipulators" id="1934.Camera2DManipulators" number_of_elements="9">
        <Element index="0" value="1"/>
        <Element index="1" value="3"/>
        <Element index="2" value="2"/>
        <Element index="3" value="2"/>
        <Element index="4" value="2"/>
        <Element index="5" value="2"/>
        <Element index="6" value="3"/>
        <Element index="7" value="1"/>
        <Element index="8" value="4"/>
        <Domain name="enum" id="1934.Camera2DManipulators.enum">
          <Entry value="0" text="None"/>
          <Entry value="1" text="Pan"/>
          <Entry value="2" text="Zoom"/>
          <Entry value="3" text="Roll"/>
          <Entry value="4" text="Rotate"/>
        </Domain>
      </Property>
      <Property name="Camera3DManipulators" id="1934.Camera3DManipulators" number_of_elements="9">
        <Element index="0" value="4"/>
        <Element index="1" value="1"/>
        <Element index="2" value="2"/>
        <Element index="3" value="3"/>
        <Element index="4" value="4"/>
        <Element index="5" value="1"/>
        <Element index="6" value="2"/>
        <Element index="7" value="4"/>
        <Element index="8" value="2"/>
        <Domain name="enum" id="1934.Camera3DManipulators.enum">
          <Entry value="0" text="None"/>
          <Entry value="1" text="Pan"/>
          <Entry value="2" text="Zoom"/>
          <Entry value="3" text="Roll"/>
          <Entry value="4" text="Rotate"/>
          <Entry value="5" text="Multi-Rotate"/>
        </Domain>
      </Property>
      <Property name="CenterAxesVisibility" id="1934.CenterAxesVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.CenterAxesVisibility.bool"/>
      </Property>
      <Property name="CenterOfRotation" id="1934.CenterOfRotation" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="CollectGeometryThreshold" id="1934.CollectGeometryThreshold" number_of_elements="1">
        <Element index="0" value="100"/>
      </Property>
      <Property name="CompressorConfig" id="1934.CompressorConfig" number_of_elements="1">
        <Element index="0" value="vtkSquirtCompressor 0 3"/>
      </Property>
      <Property name="DepthPeeling" id="1934.DepthPeeling" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1934.DepthPeeling.bool"/>
      </Property>
      <Property name="EnableRenderOnInteraction" id="1934.EnableRenderOnInteraction" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1934.EnableRenderOnInteraction.bool"/>
      </Property>
      <Property name="FillLightAzimuth" id="1934.FillLightAzimuth" number_of_elements="1">
        <Element index="0" value="-10"/>
        <Domain name="range" id="1934.FillLightAzimuth.range"/>
      </Property>
      <Property name="FillLightElevation" id="1934.FillLightElevation" number_of_elements="1">
        <Element index="0" value="-75"/>
        <Domain name="range" id="1934.FillLightElevation.range"/>
      </Property>
      <Property name="FillLightK:F Ratio" id="1934.FillLightK:F Ratio" number_of_elements="1">
        <Element index="0" value="3"/>
        <Domain name="range" id="1934.FillLightK:F Ratio.range"/>
      </Property>
      <Property name="FillLightWarmth" id="1934.FillLightWarmth" number_of_elements="1">
        <Element index="0" value="0.4"/>
        <Domain name="range" id="1934.FillLightWarmth.range"/>
      </Property>
      <Property name="HeadLightK:H Ratio" id="1934.HeadLightK:H Ratio" number_of_elements="1">
        <Element index="0" value="3"/>
        <Domain name="range" id="1934.HeadLightK:H Ratio.range"/>
      </Property>
      <Property name="HeadLightWarmth" id="1934.HeadLightWarmth" number_of_elements="1">
        <Element index="0" value="0.5"/>
        <Domain name="range" id="1934.HeadLightWarmth.range"/>
      </Property>
      <Property name="ImageReductionFactor" id="1934.ImageReductionFactor" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="1934.ImageReductionFactor.range"/>
      </Property>
      <Property name="InteractionMode" id="1934.InteractionMode" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1934.InteractionMode.enum">
          <Entry value="0" text="3D"/>
          <Entry value="1" text="2D"/>
          <Entry value="2" text="Selection"/>
        </Domain>
      </Property>
      <Property name="KeyLightAzimuth" id="1934.KeyLightAzimuth" number_of_elements="1">
        <Element index="0" value="10"/>
        <Domain name="range" id="1934.KeyLightAzimuth.range"/>
      </Property>
      <Property name="KeyLightElevation" id="1934.KeyLightElevation" number_of_elements="1">
        <Element index="0" value="50"/>
        <Domain name="range" id="1934.KeyLightElevation.range"/>
      </Property>
      <Property name="KeyLightIntensity" id="1934.KeyLightIntensity" number_of_elements="1">
        <Element index="0" value="0.75"/>
        <Domain name="range" id="1934.KeyLightIntensity.range"/>
      </Property>
      <Property name="KeyLightWarmth" id="1934.KeyLightWarmth" number_of_elements="1">
        <Element index="0" value="0.6"/>
        <Domain name="range" id="1934.KeyLightWarmth.range"/>
      </Property>
      <Property name="LODResolution" id="1934.LODResolution" number_of_elements="1">
        <Element index="0" value="0.5"/>
        <Domain name="range" id="1934.LODResolution.range"/>
      </Property>
      <Property name="LODThreshold" id="1934.LODThreshold" number_of_elements="1">
        <Element index="0" value="20"/>
        <Domain name="range" id="1934.LODThreshold.range"/>
      </Property>
      <Property name="LightAmbientColor" id="1934.LightAmbientColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1934.LightAmbientColor.range"/>
      </Property>
      <Property name="LightDiffuseColor" id="1934.LightDiffuseColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1934.LightDiffuseColor.range"/>
      </Property>
      <Property name="LightIntensity" id="1934.LightIntensity" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1934.LightIntensity.range"/>
      </Property>
      <Property name="LightSpecularColor" id="1934.LightSpecularColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
        <Domain name="range" id="1934.LightSpecularColor.range"/>
      </Property>
      <Property name="LightSwitch" id="1934.LightSwitch" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.LightSwitch.bool"/>
      </Property>
      <Property name="LightType" id="1934.LightType" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="enum" id="1934.LightType.enum">
          <Entry value="1" text="HeadLight"/>
          <Entry value="2" text="CameraLight"/>
          <Entry value="3" text="SceneLight"/>
        </Domain>
      </Property>
      <Property name="MaintainLuminance" id="1934.MaintainLuminance" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.MaintainLuminance.bool"/>
      </Property>
      <Property name="MaximumNumberOfPeels" id="1934.MaximumNumberOfPeels" number_of_elements="1">
        <Element index="0" value="4"/>
        <Domain name="range" id="1934.MaximumNumberOfPeels.range"/>
      </Property>
      <Property name="MultiSamples" id="1934.MultiSamples" number_of_elements="1">
        <Element index="0" value="0"/>
      </Property>
      <Property name="NonInteractiveRenderDelay" id="1934.NonInteractiveRenderDelay" number_of_elements="1">
        <Element index="0" value="0"/>
      </Property>
      <Property name="OrientationAxesInteractivity" id="1934.OrientationAxesInteractivity" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.OrientationAxesInteractivity.bool"/>
      </Property>
      <Property name="OrientationAxesLabelColor" id="1934.OrientationAxesLabelColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
      </Property>
      <Property name="OrientationAxesOutlineColor" id="1934.OrientationAxesOutlineColor" number_of_elements="3">
        <Element index="0" value="1"/>
        <Element index="1" value="1"/>
        <Element index="2" value="1"/>
      </Property>
      <Property name="OrientationAxesVisibility" id="1934.OrientationAxesVisibility" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.OrientationAxesVisibility.bool"/>
      </Property>
      <Property name="RemoteRenderThreshold" id="1934.RemoteRenderThreshold" number_of_elements="1">
        <Element index="0" value="20"/>
        <Domain name="range" id="1934.RemoteRenderThreshold.range"/>
      </Property>
      <Property name="Representations" id="1934.Representations" number_of_elements="4">
        <Proxy value="3857"/>
        <Proxy value="3968"/>
        <Proxy value="3986"/>
        <Proxy value="3994"/>
      </Property>
      <Property name="RotationFactor" id="1934.RotationFactor" number_of_elements="1">
        <Element index="0" value="1"/>
      </Property>
      <Property name="ServerStereoType" id="1934.ServerStereoType" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1934.ServerStereoType.enum">
          <Entry value="0" text="Same As Client"/>
          <Entry value="1" text="Crystal Eyes"/>
          <Entry value="2" text="Red-Blue"/>
          <Entry value="3" text="Interlaced"/>
          <Entry value="4" text="Left"/>
          <Entry value="5" text="Right"/>
          <Entry value="6" text="Dresden"/>
          <Entry value="7" text="Anaglyph"/>
          <Entry value="8" text="Checkerboard"/>
          <Entry value="9" text="SplitViewportHorizontal"/>
          <Entry value="10" text="None"/>
        </Domain>
      </Property>
      <Property name="ShowAnnotation" id="1934.ShowAnnotation" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.ShowAnnotation.bool"/>
      </Property>
      <Property name="StencilCapable" id="1934.StencilCapable" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1934.StencilCapable.bool"/>
      </Property>
      <Property name="StereoRender" id="1934.StereoRender" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.StereoRender.bool"/>
      </Property>
      <Property name="StereoType" id="1934.StereoType" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="enum" id="1934.StereoType.enum">
          <Entry value="1" text="Crystal Eyes"/>
          <Entry value="2" text="Red-Blue"/>
          <Entry value="3" text="Interlaced"/>
          <Entry value="4" text="Left"/>
          <Entry value="5" text="Right"/>
          <Entry value="6" text="Dresden"/>
          <Entry value="7" text="Anaglyph"/>
          <Entry value="8" text="Checkerboard"/>
          <Entry value="9" text="SplitViewportHorizontal"/>
          <Entry value="10" text="None"/>
        </Domain>
      </Property>
      <Property name="StillRenderImageReductionFactor" id="1934.StillRenderImageReductionFactor" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="range" id="1934.StillRenderImageReductionFactor.range"/>
      </Property>
      <Property name="UseCache" id="1934.UseCache" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseCache.bool"/>
      </Property>
      <Property name="UseGradientBackground" id="1934.UseGradientBackground" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseGradientBackground.bool"/>
      </Property>
      <Property name="UseInteractiveRenderingForScreenshots" id="1934.UseInteractiveRenderingForScreenshots" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseInteractiveRenderingForScreenshots.bool"/>
      </Property>
      <Property name="UseLight" id="1934.UseLight" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1934.UseLight.bool"/>
      </Property>
      <Property name="UseOffscreenRendering" id="1934.UseOffscreenRendering" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseOffscreenRendering.bool"/>
      </Property>
      <Property name="UseOffscreenRenderingForScreenshots" id="1934.UseOffscreenRenderingForScreenshots" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseOffscreenRenderingForScreenshots.bool"/>
      </Property>
      <Property name="UseOutlineForLODRendering" id="1934.UseOutlineForLODRendering" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseOutlineForLODRendering.bool"/>
      </Property>
      <Property name="UseTexturedBackground" id="1934.UseTexturedBackground" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="bool" id="1934.UseTexturedBackground.bool"/>
      </Property>
      <Property name="ViewSize" id="1934.ViewSize" number_of_elements="2">
        <Element index="0" value="1514"/>
        <Element index="1" value="959"/>
      </Property>
      <Property name="ViewTime" id="1934.ViewTime" number_of_elements="1">
        <Element index="0" value="0"/>
        <Domain name="range" id="1934.ViewTime.range"/>
      </Property>
      <Property name="CameraClippingRange" id="1934.CameraClippingRange" number_of_elements="2">
        <Element index="0" value="33.2647547356279"/>
        <Element index="1" value="109.449384156785"/>
      </Property>
      <Property name="CameraClippingRangeInfo" id="1934.CameraClippingRangeInfo" number_of_elements="2">
        <Element index="0" value="33.2647547356279"/>
        <Element index="1" value="109.449384156785"/>
      </Property>
      <Property name="CameraFocalPoint" id="1934.CameraFocalPoint" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="CameraFocalPointInfo" id="1934.CameraFocalPointInfo" number_of_elements="3">
        <Element index="0" value="0"/>
        <Element index="1" value="0"/>
        <Element index="2" value="0"/>
      </Property>
      <Property name="CameraParallelProjection" id="1934.CameraParallelProjection" number_of_elements="1">
        <Element index="0" value="1"/>
        <Domain name="bool" id="1934.CameraParallelProjection.bool"/>
      </Property>
      <Property name="CameraParallelScale" id="1934.CameraParallelScale" number_of_elements="1">
        <Element index="0" value="17.3205080756888"/>
      </Property>
      <Property name="CameraParallelScaleInfo" id="1934.CameraParallelScaleInfo" number_of_elements="1">
        <Element index="0" value="17.3205080756888"/>
      </Property>
      <Property name="CameraPosition" id="1934.CameraPosition" number_of_elements="3">
        <Element index="0" value="-31.7635566791051"/>
        <Element index="1" value="26.6291099715089"/>
        <Element index="2" value="52.5397748215693"/>
      </Property>
      <Property name="CameraPositionInfo" id="1934.CameraPositionInfo" number_of_elements="3">
        <Element index="0" value="-31.7635566791051"/>
        <Element index="1" value="26.6291099715089"/>
        <Element index="2" value="52.5397748215693"/>
      </Property>
      <Property name="CameraViewAngle" id="1934.CameraViewAngle" number_of_elements="1">
        <Element index="0" value="30"/>
      </Property>
      <Property name="CameraViewUp" id="1934.CameraViewUp" number_of_elements="3">
        <Element index="0" value="0.0182491352800144"/>
        <Element index="1" value="0.896231657811688"/>
        <Element index="2" value="-0.443210767691452"/>
      </Property>
      <Property name="CameraViewUpInfo" id="1934.CameraViewUpInfo" number_of_elements="3">
        <Element index="0" value="0.0182491352800144"/>
        <Element index="1" value="0.896231657811688"/>
        <Element index="2" value="-0.443210767691452"/>
      </Property>
      <Property name="EyeAngle" id="1934.EyeAngle" number_of_elements="1">
        <Element index="0" value="2"/>
        <Domain name="range" id="1934.EyeAngle.range"/>
      </Property>
    </Proxy>
    <ProxyCollection name="animation">
      <Item id="263" name="AnimationScene1"/>
      <Item id="265" name="TimeAnimationCue1"/>
    </ProxyCollection>
    <ProxyCollection name="layouts">
      <Item id="1906" name="ViewLayout1"/>
    </ProxyCollection>
    <ProxyCollection name="lookup_tables">
      <Item id="3980" name="RTData.PVLookupTable"/>
      <Item id="3988" name="result.PVLookupTable"/>
    </ProxyCollection>
    <ProxyCollection name="piecewise_functions">
      <Item id="3979" name="RTData.PiecewiseFunction"/>
      <Item id="3987" name="result.PiecewiseFunction"/>
    </ProxyCollection>
    <ProxyCollection name="pq_helper_proxies.1934">
      <Item id="1932" name="AxesGrid"/>
    </ProxyCollection>
    <ProxyCollection name="pq_helper_proxies.3712">
      <Item id="3724" name="RepresentationAnimationHelper"/>
    </ProxyCollection>
    <ProxyCollection name="pq_helper_proxies.3868">
      <Item id="3879" name="RepresentationAnimationHelper"/>
    </ProxyCollection>
    <ProxyCollection name="representations">
      <Item id="3857" name="UniformGridRepresentation1"/>
      <Item id="3968" name="UniformGridRepresentation2"/>
    </ProxyCollection>
    <ProxyCollection name="scalar_bars">
      <Item id="3986" name="ScalarBarWidgetRepresentation1"/>
      <Item id="3994" name="ScalarBarWidgetRepresentation2"/>
    </ProxyCollection>
    <ProxyCollection name="sources">
      <Item id="3868" name="PythonCalculator1"/>
      <Item id="3712" name="Wavelet1"/>
    </ProxyCollection>
    <ProxyCollection name="timekeeper">
      <Item id="259" name="TimeKeeper1"/>
    </ProxyCollection>
    <ProxyCollection name="views">
      <Item id="1934" name="RenderView1"/>
    </ProxyCollection>
    <CustomProxyDefinitions/>
    <Links>
      <GlobalPropertyLink global_name="BackgroundColor" proxy="1934" property="Background"/>
      <GlobalPropertyLink global_name="EdgeColor" proxy="3857" property="EdgeColor"/>
      <GlobalPropertyLink global_name="EdgeColor" proxy="3968" property="EdgeColor"/>
      <GlobalPropertyLink global_name="ForegroundColor" proxy="1932" property="GridColor"/>
      <GlobalPropertyLink global_name="ForegroundColor" proxy="1934" property="OrientationAxesOutlineColor"/>
      <GlobalPropertyLink global_name="ForegroundColor" proxy="3857" property="AmbientColor"/>
      <GlobalPropertyLink global_name="ForegroundColor" proxy="3857" property="CubeAxesColor"/>
      <GlobalPropertyLink global_name="ForegroundColor" proxy="3968" property="AmbientColor"/>
      <GlobalPropertyLink global_name="ForegroundColor" proxy="3968" property="CubeAxesColor"/>
      <GlobalPropertyLink global_name="SelectionColor" proxy="3857" property="SelectionColor"/>
      <GlobalPropertyLink global_name="SelectionColor" proxy="3968" property="SelectionColor"/>
      <GlobalPropertyLink global_name="SurfaceColor" proxy="3857" property="BackfaceDiffuseColor"/>
      <GlobalPropertyLink global_name="SurfaceColor" proxy="3857" property="DiffuseColor"/>
      <GlobalPropertyLink global_name="SurfaceColor" proxy="3968" property="BackfaceDiffuseColor"/>
      <GlobalPropertyLink global_name="SurfaceColor" proxy="3968" property="DiffuseColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1932" property="XLabelColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1932" property="XTitleColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1932" property="YLabelColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1932" property="YTitleColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1932" property="ZLabelColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1932" property="ZTitleColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="1934" property="OrientationAxesLabelColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="3986" property="LabelColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="3986" property="TitleColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="3994" property="LabelColor"/>
      <GlobalPropertyLink global_name="TextAnnotationColor" proxy="3994" property="TitleColor"/>
      <GlobalPropertyLink global_name="UseGradientBackground" proxy="1934" property="UseGradientBackground"/>
    </Links>
  </ServerManagerState>
</ParaView>


More information about the ParaView mailing list