tidy_json 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +3 -1
- data/Gemfile +2 -0
- data/LICENSE +1 -1
- data/README.md +105 -47
- data/Rakefile +2 -0
- data/bin/jtidy +128 -0
- data/bin/jtidy_info.rb +34 -0
- data/lib/tidy_json.rb +85 -343
- data/lib/tidy_json/dedication.rb +18 -8
- data/lib/tidy_json/formatter.rb +238 -0
- data/lib/tidy_json/serializer.rb +118 -0
- data/lib/tidy_json/version.rb +3 -1
- data/test/JsonableObject.json +1 -0
- data/test/codecov_runner.rb +16 -0
- data/test/test_tidy_json.rb +121 -33
- data/tidy_json.gemspec +13 -5
- metadata +65 -20
    
        data/lib/tidy_json/dedication.rb
    CHANGED
    
    | @@ -1,10 +1,20 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 1 3 | 
             
            module TidyJson # :nodoc:
         | 
| 2 | 
            -
              DEDICATION = "\n#{'.' *  | 
| 3 | 
            -
                           "#{'.' *  | 
| 4 | 
            -
                           "#{'.' *  | 
| 5 | 
            -
                           "#{'.' *  | 
| 6 | 
            -
                           "#{'.' *  | 
| 7 | 
            -
                           "#{'.' *  | 
| 8 | 
            -
                           "#{'.' *  | 
| 9 | 
            -
                           "#{'.' *  | 
| 4 | 
            +
              DEDICATION = "\n#{'.' * 52}\n" \
         | 
| 5 | 
            +
                           "#{'.' * 14} This gem is dedicated " \
         | 
| 6 | 
            +
                           "#{'.' * 15}\n" \
         | 
| 7 | 
            +
                           "#{'.' * 17} to the memory of #{'.' * 17}\n#{'.' * 52}\n" \
         | 
| 8 | 
            +
                           "#{'.' * 17} MICHAEL DI PARDO #{'.' * 17}\n#{'.' * 52}\n" \
         | 
| 9 | 
            +
                           "#{'.' * 12} Please consider supporting #{'.' * 12}\n" \
         | 
| 10 | 
            +
                           "#{'.' * 11} multiple sclerosis research: #{'.' * 11}\n" \
         | 
| 11 | 
            +
                           "#{'.' * 52}\n" \
         | 
| 12 | 
            +
                           "#{'.' * 23} (US) #{'.' * 23}\n" \
         | 
| 13 | 
            +
                           "#{'.' * 5} https://www.nationalmssociety.org/Donate " \
         | 
| 14 | 
            +
                           "#{'.' * 5}\n" \
         | 
| 15 | 
            +
                           "#{'.' * 21} (Canada) #{'.' * 21}\n" \
         | 
| 16 | 
            +
                           "#{'.' * 8} https://mssociety.ca/get-involved #{'.' * 9}\n" \
         | 
| 17 | 
            +
                           "#{'.' * 23} (UK) #{'.' * 23}\n" \
         | 
| 18 | 
            +
                           "#{'.' * 4} https://www.mssociety.org.uk/get-involved "\
         | 
| 19 | 
            +
                           "#{'.' * 5}\n#{'.' * 52}\n\n"
         | 
| 10 20 | 
             
            end
         | 
| @@ -0,0 +1,238 @@ | |
| 1 | 
            +
            # frozen_string_literal: false
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module TidyJson
         | 
| 4 | 
            +
              ##
         | 
| 5 | 
            +
              # A purpose-built JSON formatter.
         | 
| 6 | 
            +
              #
         | 
| 7 | 
            +
              # @api private
         | 
| 8 | 
            +
              class Formatter
         | 
| 9 | 
            +
                # @return [Hash] the JSON format options specified by this +Formatter+
         | 
| 10 | 
            +
                #   instance.
         | 
| 11 | 
            +
                attr_reader :format
         | 
| 12 | 
            +
             | 
| 13 | 
            +
                ##
         | 
| 14 | 
            +
                # Returns a new instance of +Formatter+.
         | 
| 15 | 
            +
                #
         | 
| 16 | 
            +
                # @param opts [Hash] Formatting options.
         | 
| 17 | 
            +
                # @option opts [[2,4,6,8,10,12]] :indent (2) The number of spaces to indent
         | 
| 18 | 
            +
                #   each object member.
         | 
| 19 | 
            +
                # @option opts [[1..8]] :space_before (0) The number of spaces to put after
         | 
| 20 | 
            +
                #   property names.
         | 
| 21 | 
            +
                # @option opts [[1..8]] :space (1) The number of spaces to put before
         | 
| 22 | 
            +
                #   property values.
         | 
| 23 | 
            +
                # @option opts [String] :object_nl ("\n") A string of whitespace to delimit
         | 
| 24 | 
            +
                #   object members.
         | 
| 25 | 
            +
                # @option opts [String] :array_nl ("\n") A string of whitespace to delimit
         | 
| 26 | 
            +
                #   array elements.
         | 
| 27 | 
            +
                # @option opts [Numeric] :max_nesting (100) The maximum level of data
         | 
| 28 | 
            +
                #   structure nesting in the generated JSON. Disable depth checking by
         | 
| 29 | 
            +
                #   passing +max_nesting: 0+.
         | 
| 30 | 
            +
                # @option opts [Boolean] :escape_slash (false) Whether or not a forward
         | 
| 31 | 
            +
                #   slash (/) should be escaped.
         | 
| 32 | 
            +
                # @option opts [Boolean] :ascii_only (false) Whether or not only ASCII
         | 
| 33 | 
            +
                #   characters should be generated.
         | 
| 34 | 
            +
                # @option opts [Boolean] :allow_nan (false) Whether or not to allow +NaN+,
         | 
| 35 | 
            +
                #   +Infinity+ and +-Infinity+. If +false+, an exception is thrown if one
         | 
| 36 | 
            +
                #   of these values is encountered.
         | 
| 37 | 
            +
                # @option opts [Boolean] :sort (false) Whether or not object members should
         | 
| 38 | 
            +
                #   be sorted by property name.
         | 
| 39 | 
            +
                # @see https://github.com/flori/json/blob/b8c1c640cd375f2e2ccca1b18bf943f80ad04816/lib/json/pure/generator.rb#L111 JSON::Pure::Generator
         | 
| 40 | 
            +
                def initialize(opts = {})
         | 
| 41 | 
            +
                  # The number of times to reduce the left indent of a nested array's
         | 
| 42 | 
            +
                  # opening bracket
         | 
| 43 | 
            +
                  @left_bracket_offset = 0
         | 
| 44 | 
            +
             | 
| 45 | 
            +
                  # True if printing a nested array
         | 
| 46 | 
            +
                  @need_offset = false
         | 
| 47 | 
            +
             | 
| 48 | 
            +
                  valid_indent = (2..12).step(2).include?(opts[:indent])
         | 
| 49 | 
            +
                  valid_space_before = (1..8).include?(opts[:space_before])
         | 
| 50 | 
            +
                  valid_space_after = (1..8).include?(opts[:space])
         | 
| 51 | 
            +
                  # don't test for the more explicit :integer? method because it's defined
         | 
| 52 | 
            +
                  # for floating point numbers also
         | 
| 53 | 
            +
                  valid_depth = opts[:max_nesting] >= 0 \
         | 
| 54 | 
            +
                                if opts[:max_nesting].respond_to?(:times)
         | 
| 55 | 
            +
                  valid_newline = ->(str) { str.respond_to?(:strip) && str.strip.empty? }
         | 
| 56 | 
            +
                  @format = {
         | 
| 57 | 
            +
                    indent: "\s" * (valid_indent ? opts[:indent] : 2),
         | 
| 58 | 
            +
                    space_before: "\s" * (valid_space_before ? opts[:space_before] : 0),
         | 
| 59 | 
            +
                    space: "\s" * (valid_space_after ? opts[:space] : 1),
         | 
| 60 | 
            +
                    object_nl: (valid_newline.call(opts[:object_nl]) ? opts[:object_nl] : "\n"),
         | 
| 61 | 
            +
                    array_nl: (valid_newline.call(opts[:array_nl]) ? opts[:array_nl] : "\n"),
         | 
| 62 | 
            +
                    max_nesting: valid_depth ? opts[:max_nesting] : 100,
         | 
| 63 | 
            +
                    escape_slash: opts[:escape_slash] || false,
         | 
| 64 | 
            +
                    ascii_only: opts[:ascii_only] || false,
         | 
| 65 | 
            +
                    allow_nan: opts[:allow_nan] || false,
         | 
| 66 | 
            +
                    sorted: opts[:sort] || false
         | 
| 67 | 
            +
                  }
         | 
| 68 | 
            +
                end
         | 
| 69 | 
            +
                # ~Formatter#initialize
         | 
| 70 | 
            +
             | 
| 71 | 
            +
                ##
         | 
| 72 | 
            +
                # Returns the given +node+ as pretty-printed JSON.
         | 
| 73 | 
            +
                #
         | 
| 74 | 
            +
                # @param node [#to_s] A visible attribute of +obj+.
         | 
| 75 | 
            +
                # @param obj [{Object => #to_s}, <#to_s>] The enumerable object
         | 
| 76 | 
            +
                #   containing +node+.
         | 
| 77 | 
            +
                # @return [String] A formatted string representation of +node+.
         | 
| 78 | 
            +
                def format_node(node, obj)
         | 
| 79 | 
            +
                  str = ''
         | 
| 80 | 
            +
                  indent = @format[:indent]
         | 
| 81 | 
            +
             | 
| 82 | 
            +
                  is_last = (obj.length <= 1) ||
         | 
| 83 | 
            +
                            (obj.length > 1 &&
         | 
| 84 | 
            +
                              (obj.instance_of?(Array) &&
         | 
| 85 | 
            +
                                !(node === obj.first) &&
         | 
| 86 | 
            +
                                  (obj.size.pred == obj.rindex(node))))
         | 
| 87 | 
            +
             | 
| 88 | 
            +
                  if node.instance_of?(Array)
         | 
| 89 | 
            +
                    str << '['
         | 
| 90 | 
            +
                    str << "\n" unless node.empty?
         | 
| 91 | 
            +
             | 
| 92 | 
            +
                    # format array elements
         | 
| 93 | 
            +
                    node.each do |elem|
         | 
| 94 | 
            +
                      if elem.instance_of?(Hash)
         | 
| 95 | 
            +
                        str << "#{indent * 2}{"
         | 
| 96 | 
            +
                        str << "\n" unless elem.empty?
         | 
| 97 | 
            +
             | 
| 98 | 
            +
                        elem.each_with_index do |inner_h, h_idx|
         | 
| 99 | 
            +
                          str << "#{indent * 3}\"#{inner_h.first}\": "
         | 
| 100 | 
            +
                          str << node_to_str(inner_h.last, 4)
         | 
| 101 | 
            +
                          str << ',' unless h_idx == elem.to_a.length.pred
         | 
| 102 | 
            +
                          str << "\n"
         | 
| 103 | 
            +
                        end
         | 
| 104 | 
            +
             | 
| 105 | 
            +
                        str << (indent * 2).to_s unless elem.empty?
         | 
| 106 | 
            +
                        str << '}'
         | 
| 107 | 
            +
             | 
| 108 | 
            +
                      # element a scalar, or a nested array
         | 
| 109 | 
            +
                      else
         | 
| 110 | 
            +
                        is_nested_array = elem.instance_of?(Array) &&
         | 
| 111 | 
            +
                                          elem.any? { |e| e.instance_of?(Array) }
         | 
| 112 | 
            +
                        if is_nested_array
         | 
| 113 | 
            +
                          @left_bracket_offset = \
         | 
| 114 | 
            +
                            elem.take_while { |e| e.instance_of?(Array) }.size
         | 
| 115 | 
            +
                        end
         | 
| 116 | 
            +
             | 
| 117 | 
            +
                        str << (indent * 2) << node_to_str(elem)
         | 
| 118 | 
            +
                      end
         | 
| 119 | 
            +
             | 
| 120 | 
            +
                      str << ",\n" unless node.index(elem) == node.length.pred
         | 
| 121 | 
            +
                    end
         | 
| 122 | 
            +
             | 
| 123 | 
            +
                    str << "\n#{indent}" unless node.empty?
         | 
| 124 | 
            +
                    str << ']'
         | 
| 125 | 
            +
                    str << ",\n" unless is_last
         | 
| 126 | 
            +
             | 
| 127 | 
            +
                  elsif node.instance_of?(Hash)
         | 
| 128 | 
            +
                    str << '{'
         | 
| 129 | 
            +
                    str << "\n" unless node.empty?
         | 
| 130 | 
            +
             | 
| 131 | 
            +
                    # format elements as key-value pairs
         | 
| 132 | 
            +
                    node.each_with_index do |h, idx|
         | 
| 133 | 
            +
                      # format values which are hashes themselves
         | 
| 134 | 
            +
                      if h.last.instance_of?(Hash)
         | 
| 135 | 
            +
                        key = if h.first.eql? ''
         | 
| 136 | 
            +
                                "#{indent * 2}\"<##{h.last.class.name.downcase}>\": "
         | 
| 137 | 
            +
                              else
         | 
| 138 | 
            +
                                "#{indent * 2}\"#{h.first}\": "
         | 
| 139 | 
            +
                              end
         | 
| 140 | 
            +
             | 
| 141 | 
            +
                        str << key << '{'
         | 
| 142 | 
            +
                        str << "\n" unless h.last.empty?
         | 
| 143 | 
            +
             | 
| 144 | 
            +
                        h.last.each_with_index do |inner_h, inner_h_idx|
         | 
| 145 | 
            +
                          str << "#{indent * 3}\"#{inner_h.first}\": "
         | 
| 146 | 
            +
                          str << node_to_str(inner_h.last, 4)
         | 
| 147 | 
            +
                          str << ",\n" unless inner_h_idx == h.last.to_a.length.pred
         | 
| 148 | 
            +
                        end
         | 
| 149 | 
            +
             | 
| 150 | 
            +
                        str << "\n#{indent * 2}" unless h.last.empty?
         | 
| 151 | 
            +
                        str << '}'
         | 
| 152 | 
            +
             | 
| 153 | 
            +
                      # format scalar values
         | 
| 154 | 
            +
                      else
         | 
| 155 | 
            +
                        str << "#{indent * 2}\"#{h.first}\": " << node_to_str(h.last)
         | 
| 156 | 
            +
                      end
         | 
| 157 | 
            +
             | 
| 158 | 
            +
                      str << ",\n" unless idx == node.to_a.length.pred
         | 
| 159 | 
            +
                    end
         | 
| 160 | 
            +
             | 
| 161 | 
            +
                    str << "\n#{indent}" unless node.empty?
         | 
| 162 | 
            +
                    str << '}'
         | 
| 163 | 
            +
                    str << ',' unless is_last
         | 
| 164 | 
            +
                    str << "\n"
         | 
| 165 | 
            +
             | 
| 166 | 
            +
                  # scalars
         | 
| 167 | 
            +
                  else
         | 
| 168 | 
            +
                    str << node_to_str(node)
         | 
| 169 | 
            +
                    str << ',' unless is_last
         | 
| 170 | 
            +
                    str << "\n"
         | 
| 171 | 
            +
                  end
         | 
| 172 | 
            +
             | 
| 173 | 
            +
                  trim str.gsub(/(#{indent})+[\n\r]+/, '')
         | 
| 174 | 
            +
                          .gsub(/\}\,+/, '},')
         | 
| 175 | 
            +
                          .gsub(/\]\,+/, '],')
         | 
| 176 | 
            +
                end
         | 
| 177 | 
            +
                # ~Formatter#format_node
         | 
| 178 | 
            +
             | 
| 179 | 
            +
                ##
         | 
| 180 | 
            +
                # Returns a JSON-appropriate string representation of +node+.
         | 
| 181 | 
            +
                #
         | 
| 182 | 
            +
                # @param node [#to_s] A visible attribute of a Ruby object.
         | 
| 183 | 
            +
                # @param tabs [Integer] Tab width at which to start printing this node.
         | 
| 184 | 
            +
                # @return [String] A formatted string representation of +node+.
         | 
| 185 | 
            +
                def node_to_str(node, tabs = 0)
         | 
| 186 | 
            +
                  graft = ''
         | 
| 187 | 
            +
                  tabs += 2 if tabs.zero?
         | 
| 188 | 
            +
             | 
| 189 | 
            +
                  if @need_offset
         | 
| 190 | 
            +
                    tabs -= 1
         | 
| 191 | 
            +
                    @left_bracket_offset -= 1
         | 
| 192 | 
            +
                  end
         | 
| 193 | 
            +
             | 
| 194 | 
            +
                  indent = @format[:indent] * (tabs / 2)
         | 
| 195 | 
            +
             | 
| 196 | 
            +
                  if node.nil? then graft << 'null'
         | 
| 197 | 
            +
             | 
| 198 | 
            +
                  elsif node.instance_of?(Hash)
         | 
| 199 | 
            +
             | 
| 200 | 
            +
                    format_node(node, node).scan(/.*$/) do |n|
         | 
| 201 | 
            +
                      graft << "\n" << indent << n
         | 
| 202 | 
            +
                    end
         | 
| 203 | 
            +
             | 
| 204 | 
            +
                  elsif node.instance_of?(Array)
         | 
| 205 | 
            +
                    @need_offset = @left_bracket_offset.positive?
         | 
| 206 | 
            +
             | 
| 207 | 
            +
                    format_node(node, {}).scan(/.*$/) do |n|
         | 
| 208 | 
            +
                      graft << "\n" << indent << n
         | 
| 209 | 
            +
                    end
         | 
| 210 | 
            +
             | 
| 211 | 
            +
                  elsif !node.instance_of?(String) then graft << node.to_s
         | 
| 212 | 
            +
             | 
| 213 | 
            +
                  else graft << "\"#{node.gsub(/\"/, '\\"')}\""
         | 
| 214 | 
            +
                  end
         | 
| 215 | 
            +
             | 
| 216 | 
            +
                  graft.strip
         | 
| 217 | 
            +
                end
         | 
| 218 | 
            +
                # ~Formatter#node_to_str
         | 
| 219 | 
            +
             | 
| 220 | 
            +
                ##
         | 
| 221 | 
            +
                # Removes any trailing comma from serialized object members.
         | 
| 222 | 
            +
                #
         | 
| 223 | 
            +
                # @param node [String] A serialized object member.
         | 
| 224 | 
            +
                # @return [String] A copy of +node+ without a trailing comma.
         | 
| 225 | 
            +
                def trim(node)
         | 
| 226 | 
            +
                  if (extra_comma = /(?<trail>,\s*[\]\}]\s*)$/.match(node))
         | 
| 227 | 
            +
                    node.sub(extra_comma[:trail],
         | 
| 228 | 
            +
                             extra_comma[:trail]
         | 
| 229 | 
            +
                             .slice(1, node.length.pred)
         | 
| 230 | 
            +
                             .sub(/^\s/, "\n"))
         | 
| 231 | 
            +
                  else node
         | 
| 232 | 
            +
                  end
         | 
| 233 | 
            +
                end
         | 
| 234 | 
            +
                # ~Formatter#trim
         | 
| 235 | 
            +
              end
         | 
| 236 | 
            +
             | 
| 237 | 
            +
              private_constant :Formatter
         | 
| 238 | 
            +
            end
         | 
| @@ -0,0 +1,118 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            module TidyJson
         | 
| 4 | 
            +
              ##
         | 
| 5 | 
            +
              # A purpose-built JSON generator.
         | 
| 6 | 
            +
              #
         | 
| 7 | 
            +
              # @api private
         | 
| 8 | 
            +
              class Serializer
         | 
| 9 | 
            +
                ##
         | 
| 10 | 
            +
                # Searches +obj+ to a maximum depth of 2 for readable attributes, storing
         | 
| 11 | 
            +
                # them as key-value pairs in +json_hash+.
         | 
| 12 | 
            +
                #
         | 
| 13 | 
            +
                # @param obj [Object] A Ruby object that can be parsed as JSON.
         | 
| 14 | 
            +
                # @param json_hash [{String,Symbol => #to_s}] Accumulator.
         | 
| 15 | 
            +
                # @return [{String => #to_s}] A hash mapping of +obj+'s visible attributes.
         | 
| 16 | 
            +
                def self.serialize(obj, json_hash)
         | 
| 17 | 
            +
                  obj.instance_variables.each do |m|
         | 
| 18 | 
            +
                    key = m.to_s[/[^\@]\w*/].to_sym
         | 
| 19 | 
            +
             | 
| 20 | 
            +
                    next unless key && !key.eql?('')
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                    begin
         | 
| 23 | 
            +
                      val = obj.send(key) # assuming readable attributes . . .
         | 
| 24 | 
            +
                    rescue NoMethodError # . . . which may not be always be the case !
         | 
| 25 | 
            +
                      json_hash[key] = nil
         | 
| 26 | 
            +
                    end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
                    begin
         | 
| 29 | 
            +
                      # process class members of Hash type
         | 
| 30 | 
            +
                      if val.instance_of?(Hash)
         | 
| 31 | 
            +
                        nested_key = ''
         | 
| 32 | 
            +
                        nested = nil
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                        val.each.any? do |k, v|
         | 
| 35 | 
            +
                          unless v.instance_variables.empty?
         | 
| 36 | 
            +
                            nested_key = k
         | 
| 37 | 
            +
                            nested = v
         | 
| 38 | 
            +
                          end
         | 
| 39 | 
            +
                        end
         | 
| 40 | 
            +
             | 
| 41 | 
            +
                        json_hash[key] = val
         | 
| 42 | 
            +
             | 
| 43 | 
            +
                        if nested
         | 
| 44 | 
            +
                          pos = val.keys.select { |k| k === nested_key }.first.to_sym
         | 
| 45 | 
            +
                          nested.instance_variables.each do
         | 
| 46 | 
            +
                            json_hash[key][pos] = serialize(nested,
         | 
| 47 | 
            +
                                                            class: nested.class.name)
         | 
| 48 | 
            +
                          end
         | 
| 49 | 
            +
                        end
         | 
| 50 | 
            +
             | 
| 51 | 
            +
                      # process class members of Array type
         | 
| 52 | 
            +
                      elsif val.instance_of?(Array)
         | 
| 53 | 
            +
                        json_hash[key] = []
         | 
| 54 | 
            +
             | 
| 55 | 
            +
                        val.each do |elem|
         | 
| 56 | 
            +
                          i = val.index(elem)
         | 
| 57 | 
            +
             | 
| 58 | 
            +
                          # member is a multi-dimensional collection
         | 
| 59 | 
            +
                          if elem.respond_to?(:each)
         | 
| 60 | 
            +
                            nested = []
         | 
| 61 | 
            +
                            elem.each do |e|
         | 
| 62 | 
            +
                              j = if elem.respond_to?(:key)
         | 
| 63 | 
            +
                                    elem.key(e)
         | 
| 64 | 
            +
                                  else elem.index(e)
         | 
| 65 | 
            +
                                  end
         | 
| 66 | 
            +
             | 
| 67 | 
            +
                              # nested element is a class object
         | 
| 68 | 
            +
                              if !e.instance_variables.empty?
         | 
| 69 | 
            +
                                json_hash[key][j] = { class: e.class.name }
         | 
| 70 | 
            +
             | 
| 71 | 
            +
                                # recur over the contained object
         | 
| 72 | 
            +
                                serialize(e, json_hash[key][j])
         | 
| 73 | 
            +
             | 
| 74 | 
            +
                              # some kind of collection?
         | 
| 75 | 
            +
                              elsif e.respond_to?(:each)
         | 
| 76 | 
            +
                                temp = []
         | 
| 77 | 
            +
                                e.each do |el|
         | 
| 78 | 
            +
                                  temp << if el.instance_variables.empty? then el
         | 
| 79 | 
            +
                                          else JSON.parse(el.stringify)
         | 
| 80 | 
            +
                                          end
         | 
| 81 | 
            +
                                end
         | 
| 82 | 
            +
             | 
| 83 | 
            +
                                nested << temp
         | 
| 84 | 
            +
             | 
| 85 | 
            +
                              # scalar type
         | 
| 86 | 
            +
                              else nested << e
         | 
| 87 | 
            +
                              end
         | 
| 88 | 
            +
                            end
         | 
| 89 | 
            +
                            # ~iteration of nested array elements
         | 
| 90 | 
            +
             | 
| 91 | 
            +
                            json_hash[key] << nested
         | 
| 92 | 
            +
             | 
| 93 | 
            +
                          # member is a flat array
         | 
| 94 | 
            +
                          elsif !elem.instance_variables.empty? # class object?
         | 
| 95 | 
            +
                            json_hash[key] << { class: elem.class.name }
         | 
| 96 | 
            +
                            serialize(elem, json_hash[key][i])
         | 
| 97 | 
            +
             | 
| 98 | 
            +
                          # scalar type
         | 
| 99 | 
            +
                          else json_hash[key] << elem
         | 
| 100 | 
            +
                          end
         | 
| 101 | 
            +
                        end
         | 
| 102 | 
            +
                        # ~iteration of top-level array elements
         | 
| 103 | 
            +
             | 
| 104 | 
            +
                      end
         | 
| 105 | 
            +
                    rescue NoMethodError
         | 
| 106 | 
            +
                      # we expected an array to behave like a hash, or vice-versa
         | 
| 107 | 
            +
                      json_hash.store(key, val) # a shallow copy is better than nothing
         | 
| 108 | 
            +
                    end
         | 
| 109 | 
            +
                  end
         | 
| 110 | 
            +
                  # ~iteration of instance variables
         | 
| 111 | 
            +
             | 
| 112 | 
            +
                  json_hash
         | 
| 113 | 
            +
                end
         | 
| 114 | 
            +
                # ~Serializer.serialize
         | 
| 115 | 
            +
              end
         | 
| 116 | 
            +
             | 
| 117 | 
            +
              private_constant :Serializer
         | 
| 118 | 
            +
            end
         | 
    
        data/lib/tidy_json/version.rb
    CHANGED
    
    
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            {"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]],"cinque":{"ichi":"一","ni":"二","san":"三","yon":"四"},"sei":{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]],"five":{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}}],"f":{}}},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}}},"a":[{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]],"five":{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},{"class":"JsonableObject","h":{"one":"uno","two":"dos","three":["eine","zwei","drei"],"cuatro":["I","II","III",["i.","ii.","iii.","iv."]]},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}}],"f":{}}},"a":["k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}},[13,14,15,5.6],"k","l",["M","N","O","P"],"q","r","s",[10,456,["<abbr title=\"Reel 2, Dialog Track 2\">R2D2</abbr>","R",2,"D",["two"]]],"u","v","x","y",["Z","AB"]],"b":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"c":[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]},[[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}],[{"class":"Nested","a":[[],[[5,6,7]],[1,2,[["three",3],["four",[5,6]]],[4]],[["inner",1]]],"b":{"a":[5],"b":[1,2,3,[4]],"c":[5],"d":{"inner":1},"e":[6]},"c":[[1,2,3,[4]],[["inner",1]],[]],"d":[[],[],[1,2,3,[4]],[["inner",1]],[]],"e":[[1,2,3,[4]],[["inner",1]],[]]}]]],"d":[],"f":{}}
         | 
| @@ -0,0 +1,16 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            if ENV['COVERAGE']
         | 
| 4 | 
            +
              begin
         | 
| 5 | 
            +
                require 'simplecov'
         | 
| 6 | 
            +
                SimpleCov.start
         | 
| 7 | 
            +
                SimpleCov.command_name 'Unit Tests'
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                if ENV['CI']
         | 
| 10 | 
            +
                  require 'codecov'
         | 
| 11 | 
            +
                  SimpleCov.formatter = SimpleCov::Formatter::Codecov
         | 
| 12 | 
            +
                end
         | 
| 13 | 
            +
              rescue LoadError
         | 
| 14 | 
            +
                warn "Can't locate coverage drivers! Try running: `bundle install` first."
         | 
| 15 | 
            +
              end
         | 
| 16 | 
            +
            end
         | 
    
        data/test/test_tidy_json.rb
    CHANGED
    
    | @@ -1,68 +1,156 @@ | |
| 1 | 
            -
             | 
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            require_relative 'codecov_runner'
         | 
| 4 | 
            +
            require 'test/unit'
         | 
| 2 5 | 
             
            require 'tidy_json'
         | 
| 3 6 |  | 
| 4 7 | 
             
            ##
         | 
| 5 8 | 
             
            # Tests.
         | 
| 6 9 | 
             
            #
         | 
| 10 | 
            +
            class Nested
         | 
| 11 | 
            +
              attr_accessor :a, :b, :c, :d, :e
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              def initialize
         | 
| 14 | 
            +
                @a = [[], [[5, 6, 7]], [1, 2, { 'three': 3, 'four': [5, 6] }, [4]], { 'inner': 1 }]
         | 
| 15 | 
            +
                @b = { 'a': [5], 'b': [1, 2, 3, [4]], 'c': [5], 'd': { 'inner': 1 }, 'e': [6] }
         | 
| 16 | 
            +
                @c = [[1, 2, 3, [4]], { 'inner': 1 }, {}]
         | 
| 17 | 
            +
                @d = [{}, [], [1, 2, 3, [4]], { 'inner': 1 }, []]
         | 
| 18 | 
            +
                @e = [[1, 2, 3, [4]], { 'inner': 1 }, {}]
         | 
| 19 | 
            +
              end
         | 
| 20 | 
            +
            end
         | 
| 21 | 
            +
             | 
| 7 22 | 
             
            class JsonableObject
         | 
| 8 | 
            -
              attr_reader | 
| 23 | 
            +
              attr_reader :a, :b, :c, :d, :e, :f, :h
         | 
| 9 24 |  | 
| 10 25 | 
             
              def initialize
         | 
| 11 26 | 
             
                @h = { one: 'uno', two: 'dos', three: %w[eine zwei drei], cuatro: ['I', 'II', 'III', ['i.', 'ii.', 'iii.', 'iv.']] }
         | 
| 12 27 | 
             
                @a = ['k', 'l', %w[M N O P], 'q', 'r', 's', [10, 456, ['<abbr title="Reel 2, Dialog Track 2">R2D2</abbr>', 'R', 2, 'D', ['two']]], 'u', 'v', 'x', 'y', %w[Z AB]]
         | 
| 28 | 
            +
                @b = [{ 'uno': Nested.new }, [Nested.new, [Nested.new, Nested.new], [Nested.new]]]
         | 
| 29 | 
            +
                @c = [[Nested.new, [Nested.new], [Nested.new]]]
         | 
| 30 | 
            +
                @d = []
         | 
| 31 | 
            +
                @f = {}
         | 
| 13 32 | 
             
              end
         | 
| 14 33 | 
             
            end
         | 
| 15 34 |  | 
| 16 | 
            -
            class TidyJsonTest <  | 
| 17 | 
            -
               | 
| 18 | 
            -
             | 
| 19 | 
            -
             | 
| 20 | 
            -
             | 
| 21 | 
            -
             | 
| 22 | 
            -
             | 
| 23 | 
            -
             | 
| 35 | 
            +
            class TidyJsonTest < Test::Unit::TestCase
         | 
| 36 | 
            +
              def setup
         | 
| 37 | 
            +
                @t = JsonableObject.new
         | 
| 38 | 
            +
                t2 = JsonableObject.new
         | 
| 39 | 
            +
                t3 = JsonableObject.new
         | 
| 40 | 
            +
             | 
| 41 | 
            +
                30.times { |_| t3.d << JsonableObject.new }
         | 
| 42 | 
            +
                t2.h[:five] = t3
         | 
| 43 | 
            +
             | 
| 44 | 
            +
                @t.h[:cinque] = { 'ichi' => "\u{4e00}", 'ni' => "\u{4e8c}", 'san' => "\u{4e09}", 'yon' => "\u{56db}" }
         | 
| 45 | 
            +
                @t.h[:sei] = t2
         | 
| 46 | 
            +
                @t.a.unshift([t2, 13, 14, 15, 5.6])
         | 
| 47 | 
            +
              end
         | 
| 24 48 |  | 
| 25 49 | 
             
              def test_version_number
         | 
| 26 50 | 
             
                refute_nil ::TidyJson::VERSION
         | 
| 27 51 | 
             
              end
         | 
| 28 52 |  | 
| 29 53 | 
             
              def test_tidy_static
         | 
| 30 | 
            -
                assert_equal( | 
| 31 | 
            -
             | 
| 54 | 
            +
                assert_equal("{\n  \"a\": \"one\",\n  \"A\": \"ONE\",\n  \"b\": null\n}\n",
         | 
| 55 | 
            +
                             TidyJson.tidy(a: 'one', A: 'ONE', b: nil))
         | 
| 56 | 
            +
                assert_equal(3, TidyJson.tidy({}).length)
         | 
| 57 | 
            +
              end
         | 
| 58 | 
            +
             | 
| 59 | 
            +
              def test_sort_keys_static
         | 
| 60 | 
            +
                hash = { c: 3, d: { i: '34', ii: '35', f: 56, a: 9 }, a: 1, b: 2 }
         | 
| 61 | 
            +
                hash_array = [{ c: 3, d: { i: '34', ii: '35', f: 56, a: 9 } }, { a: 1 }, { b: 2 }]
         | 
| 62 | 
            +
                assert_equal({ a: 1, b: 2, c: 3, d: { a: 9, f: 56, i: '34', ii: '35' } },
         | 
| 63 | 
            +
                             TidyJson.sort_keys(hash))
         | 
| 64 | 
            +
                assert_equal([{ a: 1 }, { b: 2 }, { c: 3, d: { a: 9, f: 56, i: '34', ii: '35' } }],
         | 
| 65 | 
            +
                             TidyJson.sort_keys(hash_array))
         | 
| 66 | 
            +
                assert_equal({ a: 'one', b: 'two', c: 3 },
         | 
| 67 | 
            +
                             TidyJson.sort_keys('b': 'two', 'c': 3, 'a': 'one'))
         | 
| 68 | 
            +
                assert_equal([], TidyJson.sort_keys([]), 'return empty arrays unchanged')
         | 
| 69 | 
            +
                assert_equal({}, TidyJson.sort_keys({}), 'return empty hashes unchanged')
         | 
| 70 | 
            +
                assert_equal([3, 2, 1], TidyJson.sort_keys([3, 2, 1]),
         | 
| 71 | 
            +
                             'return arrays of keyless objects unchanged')
         | 
| 72 | 
            +
                assert_equal([{ b: 'two' }, 'one'],
         | 
| 73 | 
            +
                             TidyJson.sort_keys([{ 'b': 'two' }, 'one']),
         | 
| 74 | 
            +
                             'arrays with any keyless objects should be returned unchanged')
         | 
| 75 | 
            +
              end
         | 
| 76 | 
            +
             | 
| 77 | 
            +
              def test_sort_keys_instance
         | 
| 78 | 
            +
                flat_hash_array = [{ c: 3 }, { a: 1 }, { b: 2 }]
         | 
| 79 | 
            +
                nested_hash_array = [{ c: 3, d: { i: '34', ii: '35', f: 56, a: 9 } }, { a: 1 }, { b: 2 }]
         | 
| 80 | 
            +
                assert_equal("[\n  {\n    \"a\": 1\n  },\n  {\n    \"b\": 2\n  },\n  {\n    \"c\": 3\n  }\n]\n",
         | 
| 81 | 
            +
                             flat_hash_array.to_tidy_json(sort: true))
         | 
| 82 | 
            +
                assert_equal("[\n        {\n                \"a\": 1\n        },\n        {\n                \"b\": 2\n        },\n        {\n                \"c\": 3,\n                \"d\": {\n                        \"a\": 9,\n                        \"f\": 56,\n                        \"i\": \"34\",\n                        \"ii\": \"35\"\n                }\n        }\n]\n",
         | 
| 83 | 
            +
                             nested_hash_array.to_tidy_json(indent: 8, sort: true))
         | 
| 84 | 
            +
                assert_equal("{\n      \"a\": \"one\",\n      \"b\": \"two\",\n      \"c\": 3\n}\n",
         | 
| 85 | 
            +
                             { 'b': 'two', 'c': 3, 'a': 'one' }.to_tidy_json(indent: 6, sort: true))
         | 
| 86 | 
            +
                assert_equal("[]\n", [].to_tidy_json(sort: true))
         | 
| 87 | 
            +
                assert_equal("{}\n", {}.to_tidy_json(sort: true))
         | 
| 88 | 
            +
                assert_equal("[\n        3,\n        2,\n        1\n]\n",
         | 
| 89 | 
            +
                             [3, 2, 1].to_tidy_json(indent: 8, sort: true))
         | 
| 90 | 
            +
                assert_equal("[\n    {\n        \"b\": \"two\"\n    },\n    \"one\"\n]\n",
         | 
| 91 | 
            +
                             [{ 'b': 'two' }, 'one'].to_tidy_json(indent: 4, sort: true))
         | 
| 32 92 | 
             
              end
         | 
| 33 93 |  | 
| 34 94 | 
             
              def test_tidy_instance
         | 
| 35 | 
            -
                assert_equal({}.to_tidy_json, "{ | 
| 36 | 
            -
                assert_equal([].to_tidy_json, "[ | 
| 37 | 
            -
                assert_equal( | 
| 38 | 
            -
                assert_equal(JsonableObject.new.to_tidy_json.length,  | 
| 95 | 
            +
                assert_equal({}.to_tidy_json, "{}\n")
         | 
| 96 | 
            +
                assert_equal([].to_tidy_json, "[]\n")
         | 
| 97 | 
            +
                assert_equal(String.new.to_tidy_json, "\"\"\n")
         | 
| 98 | 
            +
                assert_equal(JsonableObject.new.to_tidy_json.length, 13_410)
         | 
| 39 99 | 
             
              end
         | 
| 40 100 |  | 
| 41 101 | 
             
              def test_stringify_instance
         | 
| 42 | 
            -
                 | 
| 102 | 
            +
                File.open("#{__dir__}/JsonableObject.json", 'r') do |json|
         | 
| 103 | 
            +
                  assert_equal(@t.stringify, json.read.strip)
         | 
| 104 | 
            +
                end
         | 
| 105 | 
            +
              rescue Errno::ENOENT, Errno::EACCES, IOError => e
         | 
| 106 | 
            +
                flunk "#{__FILE__}.#{__LINE__}: #{e.message}"
         | 
| 43 107 | 
             
              end
         | 
| 44 108 |  | 
| 45 109 | 
             
              def test_writers
         | 
| 46 | 
            -
                 | 
| 110 | 
            +
                json_array = []
         | 
| 111 | 
            +
                assert_nothing_thrown '#stringify returns valid JSON' do
         | 
| 112 | 
            +
                  3.times { |_| json_array << JSON.parse(@t.stringify) }
         | 
| 113 | 
            +
                end
         | 
| 114 | 
            +
             | 
| 115 | 
            +
                output = json_array.write_json
         | 
| 47 116 | 
             
                assert(File.exist?(output))
         | 
| 48 | 
            -
                 | 
| 117 | 
            +
                assert_nothing_thrown 'Raw JSON should be valid' do
         | 
| 118 | 
            +
                  File.open(output, 'r') { |f| JSON.parse(f.read) }
         | 
| 119 | 
            +
                end
         | 
| 120 | 
            +
             | 
| 121 | 
            +
                pretty_output = \
         | 
| 122 | 
            +
                  json_array.write_json('prettified', tidy: true, sort: true, indent: 4)
         | 
| 123 | 
            +
             | 
| 49 124 | 
             
                assert(File.exist?(pretty_output))
         | 
| 125 | 
            +
             | 
| 126 | 
            +
                assert_nothing_thrown 'Formatted JSON should be valid' do
         | 
| 127 | 
            +
                  File.open(pretty_output, 'r') { |f| JSON.parse(f.read) }
         | 
| 128 | 
            +
                end
         | 
| 129 | 
            +
             | 
| 130 | 
            +
                assert_nil json_array.write_json('/invalid/file/name/')
         | 
| 50 131 | 
             
              end
         | 
| 51 132 |  | 
| 52 133 | 
             
              def test_indent_bounds_checking
         | 
| 53 | 
            -
                assert_equal( | 
| 54 | 
            -
             | 
| 55 | 
            -
             | 
| 56 | 
            -
                assert_equal( | 
| 57 | 
            -
             | 
| 58 | 
            -
                assert_equal( | 
| 59 | 
            -
                assert_equal( | 
| 60 | 
            -
             | 
| 61 | 
            -
                assert_equal( | 
| 62 | 
            -
             | 
| 63 | 
            -
                 | 
| 64 | 
            -
             | 
| 65 | 
            -
             | 
| 66 | 
            -
             | 
| 134 | 
            +
                assert_equal("{\n  \"a\": \"one\",\n  \"b\": \"two\",\n  \"c\": 3\n}\n",
         | 
| 135 | 
            +
                             { 'b': 'two', 'c': 3, 'a': 'one' }.to_tidy_json(indent: 5, sort: true),
         | 
| 136 | 
            +
                             'odd values should fall back to default of 2')
         | 
| 137 | 
            +
                assert_equal([].to_tidy_json(indent: '16'), "[]\n",
         | 
| 138 | 
            +
                             'values > 12 should fall back to default of 2')
         | 
| 139 | 
            +
                assert_equal('Object'.to_tidy_json(indent: []), "\"Object\"\n")
         | 
| 140 | 
            +
                assert_equal(0.to_tidy_json(indent: -89), "0\n")
         | 
| 141 | 
            +
                assert_equal(3.1425.to_tidy_json(indent: 3.1425), "3.1425\n")
         | 
| 142 | 
            +
                assert_equal(''.to_tidy_json(indent: +0), "\"\"\n")
         | 
| 143 | 
            +
                assert_equal([].to_tidy_json(indent: -8.00009), "[]\n")
         | 
| 144 | 
            +
                assert_nothing_thrown '#stringify should return valid JSON even when ' \
         | 
| 145 | 
            +
                  'format options are invalid' do
         | 
| 146 | 
            +
                  assert_equal(JSON.parse(Object.new.stringify).to_tidy_json(indent: nil),
         | 
| 147 | 
            +
                               "{\n  \"class\": \"Object\"\n}\n")
         | 
| 148 | 
            +
                  assert_equal(JSON.parse(''.stringify).to_tidy_json(indent: -16.009),
         | 
| 149 | 
            +
                               "{\n  \"class\": \"String\"\n}\n")
         | 
| 150 | 
            +
                  assert_equal(JSON.parse({}.stringify).to_tidy_json(indent: '8'),
         | 
| 151 | 
            +
                               "{\n  \"class\": \"Hash\"\n}\n")
         | 
| 152 | 
            +
                  assert_equal(JSON.parse(%w[k l m].stringify).to_tidy_json(indent: '<<'),
         | 
| 153 | 
            +
                               "{\n  \"class\": \"Array\"\n}\n")
         | 
| 154 | 
            +
                end
         | 
| 67 155 | 
             
              end
         | 
| 68 156 | 
             
            end
         |