Projet

Général

Profil

0013-overhaul-of-query-to-table-transformation-38067.patch

Benjamin Dauvergne, 03 décembre 2019 13:53

Télécharger (304 ko)

Voir les différences:

Subject: [PATCH 13/13] overhaul of query to table transformation (#38067)

* during query obtain dimension id and label if a different projection
is defined
* use object to materialize query results : Cells, DimensionCell,
MeasureCell
* handle stringification in the *Cell classes
* never ignore NULL dimension's values (it's detected in
Visualization.data() and added to the list of dimension members)
* sum of columns is only computed if there are more than one column
* sum of rows is only computed if there are more than one row
* full sum is only computed if there are more thant one column and more
than one row
* 1 dimension table are computed in the same maner as 2 dimensions
tables, no more discrepancies
* JSON web-service now use the same base methods table_2d() and table_1d()
as the native rendering in bijoe
* EngineDimension.members is specialized for bool dimensions (as it's
always True/False)
 bijoe/engine.py                    |  116 +-
 bijoe/visualization/utils.py       |  239 +-
 bijoe/visualization/views.py       |   55 +-
 tests/fixtures/schema2/tables.json | 7208 +++++++++++++++++++++++-----
 tests/test_schema1.py              |   23 +-
 5 files changed, 6257 insertions(+), 1384 deletions(-)
bijoe/engine.py
14 14
# You should have received a copy of the GNU Affero General Public License
15 15
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 16

  
17
import collections
17 18
import contextlib
18 19
import logging
19 20
import itertools
20 21
import hashlib
21 22

  
22
import collections
23 23
import psycopg2
24 24

  
25 25
from django.core.cache import cache
......
31 31
psycopg2.extensions.register_type(psycopg2.extensions.UNICODEARRAY)
32 32

  
33 33

  
34
class DimensionCell(collections.namedtuple('_Cell', ['dimension', 'value', 'value_label'])):
35
    @property
36
    def label(self):
37
        if self.value_label:
38
            return self.value_label
39
        if self.value is None:
40
            return self.dimension.absent_label
41
        elif self.dimension.type == 'bool':
42
            return _('Yes') if self.value else _('No')
43
        else:
44
            return unicode(self.value)
45

  
46
    def __unicode__(self):
47
        return unicode(self.label)
48

  
49

  
50
class MeasureCell(collections.namedtuple('_Cell', ['measure', 'value'])):
51
    @property
52
    def label(self):
53
        value = self.value
54

  
55
        if self.measure.type == 'percent':
56
            if value is None:
57
                return _('N/A')
58
            else:
59
                try:
60
                    return (u'%4.2f' % float(value)).replace('.', ',') + u' %'
61
                except TypeError:
62
                    return _('N/A')
63
        elif self.measure.type == 'duration':
64
            if value is None:
65
                return u'0'
66
            else:
67
                s = u''
68
                if value.days:
69
                    s += u'%d jour(s)' % value.days
70
                if value.seconds / 3600:
71
                    s += u' %d heure(s)' % (value.seconds / 3600)
72
                if not s:
73
                    s = u'moins d\'1 heure'
74
                return s
75
        elif self.measure.type == 'bool':
76
            if value is None:
77
                return _('N/A')
78
            else:
79
                return _('Yes') if value else _('No')
80
        elif self.measure.type == 'integer':
81
            if value is None:
82
                return '0'
83
            else:
84
                return unicode(value)
85
        else:
86
            raise NotImplementedError('unknown type %s' % self.measure.type)
87

  
88
    def __unicode__(self):
89
        return unicode(self.label)
90

  
91

  
92
class Cells(collections.namedtuple('Cells', ['dimensions', 'measures'])):
93
    def __new__(cls, dimensions=[], measures=[]):
94
        dimensions = list(dimensions)
95
        measures = list(measures)
96
        return super(Cells, cls).__new__(cls, dimensions, measures)
97

  
98

  
34 99
def quote(s):
35 100
    return '"%s"' % s.replace('"', '\\"')
36 101

  
......
72 137
    def members(self):
73 138
        assert self.type != 'date'
74 139

  
140
        if self.type == 'bool':
141
            return [Member(id=True, label=_('Yes')), Member(id=False, label=_('No'))]
142

  
75 143
        members = cache.get(self.cache_key)
76 144
        if members is not None:
77 145
            return members
......
110 178
            for row in cursor.fetchall():
111 179
                if row[0] is None:
112 180
                    continue
113
                members.append(Member(*row))
181
                members.append(Member(id=row[0], label=unicode(row[1])))
114 182
        cache.set(self.cache_key, members, 600)
115 183
        return members
116 184

  
......
295 363
                else:
296 364
                    where.append(condition)
297 365

  
298
            for dimension_name in drilldown:
299
                dimension = self.dimensions[dimension_name]
366
            for dimension in drilldown:
300 367
                joins.update(dimension.join or [])
301
                projections.append('%s AS %s' % (dimension.value_label or dimension.value,
302
                                                 dimension.name))
368
                projections.append('%s AS %s' % (dimension.value, dimension.name + '_value'))
369
                if dimension.value_label:
370
                    projections.append('%s AS %s' % (dimension.value_label, dimension.name + '_label'))
303 371
                group_by.append(dimension.group_by or dimension.value)
304 372
                order_by.extend(dimension.order_by or [dimension.value])
305 373

  
......
307 375
                if order_value not in group_by:
308 376
                    group_by.append(order_value)
309 377

  
310
            for measure_name in measures:
311
                measure = self.get_measure(measure_name)
378
            for measure in measures:
312 379
                if measure.expression not in projections:
313 380
                    projections.append(measure.expression + ' AS ' + measure.name)
314 381
            sql = 'SELECT ' + ', '.join(projections)
......
334 401
        self.engine.log.debug('%s.%s query filters=%s drilldown=%s measures=%s',
335 402
                              self.engine.warehouse.name, self.cube.name, filters, drilldown,
336 403
                              measures)
337
        cells = []
338
        for dimension_name in drilldown:
339
            cells.append(self.dimensions[dimension_name])
340
        for measure_name in measures:
341
            cells.append(self.measures[measure_name])
342 404
        with self.engine.get_cursor() as cursor:
343 405
            sql = self.sql_query(filters=filters, drilldown=drilldown, measures=measures, **kwargs)
344 406
            self.engine.log.debug('SQL: %s', sql)
345 407
            cursor.execute(sql)
346 408
            for row in cursor.fetchall():
347
                yield [{
348
                    'name': cell.name,
349
                    'label': cell.label,
350
                    'type': cell.type,
351
                    'value': value,
352
                    'kind': 'dimension' if isinstance(cell, EngineDimension) else 'measure',
353
                } for cell, value in zip(cells, row)]
409
                cells = Cells()
410
                j = 0
411
                for dimension in drilldown:
412
                    value = row[j]
413
                    if not dimension.value_label:
414
                        value_label = None
415
                        j += 1
416
                    else:
417
                        value_label = row[j + 1]
418
                        j += 2
419
                    cells.dimensions.append(DimensionCell(
420
                        dimension=dimension,
421
                        value=value,
422
                        value_label=value_label,
423
                    ))
424
                for i, measure in enumerate(measures):
425
                    cells.measures.append(MeasureCell(
426
                        measure=measure,
427
                        value=row[j + i],
428
                    ))
429
                yield cells
354 430

  
355 431
    def build_table_expression(self, joins, table_name, other_conditions=None):
356 432
        '''Recursively build the table expression from the join tree,
bijoe/visualization/utils.py
20 20
import datetime
21 21
import decimal
22 22
import copy
23
import collections
23 24

  
25
from django.core.cache import cache
24 26
from django.utils.safestring import mark_safe
25 27
from django.utils.translation import ugettext_lazy as _
26 28
from django.utils import six
27
from django.core.cache import cache
28 29
from django.http import Http404
29 30
from django.conf import settings
30 31

  
31 32
from ..utils import get_warehouses
32
from ..engine import Engine
33
from ..engine import Engine, Member, MeasureCell
33 34
from .ods import Workbook
34 35

  
35 36

  
......
146 147
        key = '$'.join(v.encode('utf8') for v in keys)
147 148
        return hashlib.md5(key).hexdigest()
148 149

  
149
    def stringified(self):
150
        data = self.cached()
151
        for row in data:
152
            for cell in row:
153
                value = cell['value']
154
                if cell['type'] == 'percent':
155
                    try:
156
                        value = ('%4.2f' % float(value)).replace('.', ',') + u' %'
157
                    except:
158
                        value = _('Not applicable')
159
                elif value is not None and cell['type'] == 'duration':
160
                    s = ''
161
                    if value.days:
162
                        s += '%d jour(s)' % value.days
163
                    if value.seconds / 3600:
164
                        s += ' %d heure(s)' % (value.seconds / 3600)
165
                    if not s:
166
                        s = 'moins d\'1 heure'
167
                    value = s
168
                elif value is not None and cell['type'] == 'bool':
169
                    value = _('Yes') if value else _('No')
170
                elif value is None and cell['type'] in ('duration', 'integer') and cell['kind'] == 'measure':
171
                    value = 0
172
                elif value is None:
173
                    value = _('None')
174
                cell['value'] = value
175
        return data
176

  
177 150
    def data(self):
178
        return self.cube.query(self.filters.items(),
179
                               [dim.name for dim in self.drilldown],
180
                               [self.measure.name])
151
        '''Execute aggregation query, list members and check None values in
152
           dimensions.
153
        '''
154
        rows = list(self.cube.query(self.filters.items(),
155
                                    self.drilldown,
156
                                    [self.measure]))
157
        self.members = {dimension: list(dimension.members) for dimension in self.drilldown}
158
        seen_none = set()
159
        for cells in rows:
160
            for cell in cells.dimensions:
161
                if cell.value is None:
162
                    if cell.dimension not in seen_none:
163
                        self.members[cell.dimension].append(Member(None, cell.dimension.absent_label))
164
                        seen_none.add(cell.dimension)
165
        return rows
181 166

  
182 167
    def cached(self):
183 168
        key = self.key
......
188 173
                cache.set(key, data)
189 174
        return data
190 175

  
176
    def default_cell(self):
177
        return MeasureCell(measure=self.measure, value=None)
178

  
179
    def table_2d(self):
180
        '''Layout data into 2d tables'''
181
        assert len(self.drilldown) == 2
182

  
183
        data = self.data()
184

  
185
        x_axis = self.members[self.drilldown_x]
186
        y_axis = self.members[self.drilldown_y]
187

  
188
        grid = collections.defaultdict(self.default_cell)
189

  
190
        for cells in data:
191
            x_id = cells.dimensions[0].value
192
            y_id = cells.dimensions[1].value
193
            grid[(x_id, y_id)] = cells.measures[0]
194

  
195
        return (x_axis, y_axis), grid
196

  
197
    def table_1d(self):
198
        assert len(self.drilldown) == 1
199

  
200
        data = self.data()
201
        if self.drilldown_x:
202
            axis = self.members[self.drilldown_x]
203
        else:
204
            axis = self.members[self.drilldown_y]
205

  
206
        grid = collections.defaultdict(self.default_cell)
207
        for cells in data:
208
            grid[cells.dimensions[0].value] = cells.measures[0]
209
        return axis, grid
210

  
191 211
    def table(self):
192 212
        table = []
213

  
193 214
        if len(self.drilldown) == 2:
194
            if self.measure.type == 'integer':
195
                default = 0
196
            elif self.measure.type == 'duration':
197
                default = '0 s'
198
            elif self.measure.type == 'percent':
199
                default = '0 %'
200
            else:
201
                raise NotImplementedError(self.measure.type)
202

  
203
            x_labels = [x.label for x in self.drilldown_x.members]
204
            y_labels = [y.label for y in self.drilldown_y.members]
205
            used_x_label = set()
206
            used_y_label = set()
207

  
208
            grid = {(x, y): default for x in x_labels for y in y_labels}
209

  
210
            for row in self.stringified():
211
                x_label = unicode(row[0]['value'])
212
                y_label = unicode(row[1]['value'])
213
                used_x_label.add(x_label)
214
                used_y_label.add(y_label)
215
                grid[(x_label, y_label)] = row[2]['value']
216

  
217
            table.append([''] + [x for x in x_labels if x in used_x_label])
218
            for y in y_labels:
219
                if y not in used_y_label:
220
                    continue
221
                table.append([y] + [grid[(x, y)] for x in x_labels if x in used_x_label])
222
            if self.measure.expression.lower().startswith('count('):
223
                # ajout des totaux horizontaux
224
                table[0].append(_('Total'))
225
                for row in table[1:]:
226
                    row.append(sum(v or 0 for v in row[1:]))
227
                table.append([_('Total')])
228
                for i in range(1, len(table[0])):
229
                    table[-1].append(sum([
230
                        row[i] or 0 for row in table[1:-1]]))
231
            return table
215
            (x_axis, y_axis), grid = self.table_2d()
216

  
217
            # Only compute sum of cells for count() measures
218
            compute_sums = self.measure.expression.lower().startswith('count(')
219
            compute_lines_sums = compute_sums and len(x_axis) > 1
220
            compute_columns_sums = compute_sums and len(y_axis) > 1
221
            compute_global_sum = compute_lines_sums and compute_columns_sums
222
            sums_columns = collections.defaultdict(lambda: 0)
223
            sums_lines = collections.defaultdict(lambda: 0)
224
            sum_table = 0
225

  
226
            for coord in grid:
227
                value = grid[coord].value
228
                if value is not None:
229
                    if compute_columns_sums:
230
                        sums_columns[coord[0]] += value
231
                    if compute_lines_sums:
232
                        sums_lines[coord[1]] += value
233
                    if compute_global_sum:
234
                        sum_table += value
235

  
236
            table.append([''] + [x.label for x in x_axis])
237
            # line sums header
238
            if compute_lines_sums:
239
                table[-1].append(_('Total'))
240
            for y in y_axis:
241
                table.append([y.label])
242
                table[-1].extend(unicode(grid[(x.id, y.id)]) for x in x_axis)
243
                # line sums
244
                if compute_lines_sums:
245
                    table[-1].append(sums_lines[y.id])
246
            # columns sums
247
            if compute_columns_sums:
248
                table.append([_('Total')] + [sums_columns[x.id] for x in x_axis])
249
            if compute_global_sum:
250
                table[-1].append(sum_table)
232 251
        elif self.drilldown_x:
252
            x_axis, grid = self.table_1d()
233 253
            table.append([self.drilldown_x.label])
234 254
            table.append([self.measure.label])
235
            for row in self.stringified():
236
                table[0].append(row[0]['value'])
237
                table[1].append(row[1]['value'])
255
            for x in x_axis:
256
                table[0].append(x.label)
257
                table[1].append(unicode(grid[x.id])),
238 258
        elif self.drilldown_y:
259
            y_axis, grid = self.table_1d()
239 260
            table.append([self.drilldown_y.label, self.measure.label])
240
            for row in self.stringified():
261
            for y in y_axis:
241 262
                table.append([
242
                    row[0]['value'],
243
                    row[1]['value']
263
                    y.label,
264
                    unicode(grid[y.id]),
244 265
                ])
245 266
        else:
246
            value = self.stringified()[0][0]['value']
247
            table.append([self.measure.label, value])
267
            table.append([self.measure.label, unicode(self.data()[0].measures[0])])
268

  
269
        for row in table:
270
            for cell in row:
271
                assert cell != 's'
248 272
        return table
249 273

  
250 274
    def javascript(self):
......
257 281

  
258 282
    def json_data(self):
259 283
        json_data = []
260
        for row in self.data():
261
            coords = []
262
            for cell in row[:len(self.drilldown)]:
263
                coords.append(cell)
264
            measures = []
265
            for cell in row[len(self.drilldown):]:
266
                if isinstance(cell['value'], decimal.Decimal):
267
                    cell['value'] = float(cell['value'])
268
                if isinstance(cell['value'], datetime.timedelta):
269
                    cell['value'] = cell['value'].days + cell['value'].seconds / 86400.
270
                measures.append(cell)
271
            json_data.append({'coords': coords, 'measures': measures})
284

  
285
        def cell_value(cell):
286
            value = cell.value
287
            if isinstance(value, decimal.Decimal):
288
                value = float(value)
289
            if isinstance(value, datetime.timedelta):
290
                value = value.days + value.seconds / 86400.
291
            return value
292

  
293
        if len(self.drilldown) == 2:
294
            (x_axis, y_axis), grid = self.table_2d()
295
            cells = (([x.label, y.label], cell_value(grid[(x.id, y.id)])) for x in x_axis for y in y_axis)
296
        elif len(self.drilldown) == 1:
297
            axis, grid = self.table_1d()
298
            cells = (([x.label], cell_value(grid[x.id])) for x in axis)
299
        else:
300
            raise NotImplementedError
301

  
302
        for coords, value in cells:
303
            json_data.append({
304
                'coords': [{'value': coord} for coord in coords],
305
                'measures': [{'value': value}],
306
            })
307

  
272 308
        return json_data
273 309

  
274 310
    def ods(self):
275 311
        workbook = Workbook()
276 312

  
277
        full_title = self.title()
278

  
279
        for table in self:
280
            sheet_name = re.sub('[^a-zA-Z ]', '', table.table_title)
313
        for visualization in self:
314
            sheet_name = re.sub('[^a-zA-Z ]', '', visualization.table_title)
281 315
            sheet = workbook.add_sheet(sheet_name)
316
            sheet.write(0, 0, self.title())
282 317

  
283
            sheet.write(0, 0, full_title)
284
            for j, row in enumerate(table.table()):
318
            for j, row in enumerate(visualization.table()):
285 319
                for i, value in enumerate(row):
320
                    if self.measure.type == 'integer':
321
                        try:
322
                            value = int(value)
323
                        except ValueError:
324
                            pass
286 325
                    sheet.write(j + 1, i, 0 if value is None else value)
287 326
        return workbook
288 327

  
......
301 340
    def __iter__(self):
302 341
        if self.loop:
303 342
            members = list(self.loop.members)
304
            d = list(self.cube.query(self.filters.items(), [self.loop.name],
305
                                     [self.measure.name]))
306
            names = [unicode(x[0]['value']) for x in d]
307
            members = [m for m in members if unicode(m.label) in names]
308 343
            for member in members:
309 344
                table = self.copy()
310 345
                table.loop = None
311 346
                table.filters[self.loop.name] = [member.id]
312
                table.table_title = unicode(member.label)
347
                table.table_title = member.label
313 348
                yield table
314 349
        else:
315 350
            self.table_title = self.title()
bijoe/visualization/views.py
256 256
        visualization.measure = visualization.cube.measures['geolocation']
257 257
        drilldown = visualization.drilldown
258 258
        geojson = []
259

  
259 260
        for row in visualization.data():
260 261
            properties = {}
261
            for dim in row[:len(drilldown)]:
262
                properties[dim['label']] = dim['value']
262
            for cell in row[:len(drilldown)]:
263
                properties[cell.label] = unicode(cell)
263 264
            geojson.append({
264 265
                'type': 'Feature',
265 266
                'geometry': {
266 267
                    'type': 'MultiPoint',
267
                    'coordinates': row[len(drilldown)]['value'] or [],
268
                    'coordinates': [unicode(cell) for cell in row[len(drilldown)]]
268 269
                },
269 270
                'properties': properties,
270 271
            })
......
275 276
    permission_classes = ()
276 277
    queryset = models.Visualization.objects.all()
277 278

  
278

  
279 279
    def get(self, request, pk, format=None):
280

  
281 280
        def cell_value(cell):
282
            if cell['type'] == 'duration' and cell['value'] is not None:
283
                return cell['value'].total_seconds()
284
            return cell['value']
281
            if cell.measure.type == 'duration' and cell.value is not None:
282
                return cell.value.total_seconds()
283
            return cell.value
284

  
285
        def labels(axis):
286
            return [x.label.strip() for x in axis]
285 287

  
286 288
        instance = self.get_object()
287 289
        loop = []
......
289 291
        for visualization in all_visualizations:
290 292
            drilldowns = visualization.drilldown
291 293
            if len(drilldowns) == 2:
292
                x_labels = [x.label for x in visualization.drilldown_x.members]
293
                y_labels = [y.label for y in visualization.drilldown_y.members]
294
                used_x_labels = OrderedDict()
295
                used_y_labels = OrderedDict()
296
                default = 0
297
                grid = {(x, y): default for x in x_labels for y in y_labels}
298

  
299
                for row in visualization.data():
300
                    x_label = unicode(row[0]['value'])
301
                    y_label = unicode(row[1]['value'])
302
                    used_x_labels[x_label] = True
303
                    used_y_labels[y_label] = True
304
                    grid[(x_label, y_label)] = cell_value(row[2])
305

  
306
                data = []
307
                for y in used_y_labels.keys():
308
                    data.append([grid[(x, y)] for x in used_x_labels.keys()])
294
                (x_axis, y_axis), grid = visualization.table_2d()
309 295
                axis = {
310
                    'x_labels': [x.strip() for x in used_x_labels.keys()],
311
                    'y_labels': [x.strip() for x in used_y_labels.keys()]
296
                    'x_labels': labels(x_axis),
297
                    'y_labels': labels(y_axis),
312 298
                }
299

  
300
                data = []
301
                for y in y_axis:
302
                    data.append([cell_value(grid[(x.id, y.id)]) for x in x_axis])
313 303
            elif len(drilldowns) == 1:
314
                table = list(visualization.data())
315
                axis_data = [force_text(x[0]['value'] or '').strip() for x in table]
316
                data = [cell_value(x[1]) for x in table]
304
                x_axis, grid = visualization.table_1d()
317 305
                if visualization.drilldown_x:
318
                    axis = {'x_labels': axis_data}
306
                    axis = {'x_labels': labels(x_axis)}
319 307
                else:
320
                    axis = {'y_labels': axis_data}
308
                    axis = {'y_labels': labels(x_axis)}
309
                data = [cell_value(grid[x.id]) for x in x_axis]
321 310
            elif len(drilldowns) == 0:
322
                data = cell_value(list(list(visualization.data())[0])[0])
311
                data = cell_value(visualization.data()[0][0])
323 312
                axis = {}
324 313
            loop.append({
325 314
                'data': data,
tests/fixtures/schema2/tables.json
58532 58532
            "0", 
58533 58533
            "0"
58534 58534
        ], 
58535
        [
58536
            "Total", 
58537
            "0", 
58538
            "0", 
58539
            "0", 
58540
            "0", 
58541
            "0", 
58542
            "0", 
58543
            "0", 
58544
            "0", 
58545
            "0", 
58546
            "0", 
58547
            "0", 
58548
            "0", 
58549
            "0"
58550
        ], 
58551 58535
        [
58552 58536
            "", 
58553 58537
            "janvier", 
......
58580 58564
            "0", 
58581 58565
            "3"
58582 58566
        ], 
58583
        [
58584
            "Total", 
58585
            "0", 
58586
            "0", 
58587
            "0", 
58588
            "0", 
58589
            "1", 
58590
            "0", 
58591
            "0", 
58592
            "1", 
58593
            "1", 
58594
            "0", 
58595
            "0", 
58596
            "0", 
58597
            "3"
58598
        ], 
58599 58567
        [
58600 58568
            "", 
58601 58569
            "janvier", 
......
58628 58596
            "0", 
58629 58597
            "5"
58630 58598
        ], 
58631
        [
58632
            "Total", 
58633
            "0", 
58634
            "0", 
58635
            "0", 
58636
            "1", 
58637
            "0", 
58638
            "0", 
58639
            "0", 
58640
            "1", 
58641
            "3", 
58642
            "0", 
58643
            "0", 
58644
            "0", 
58645
            "5"
58646
        ], 
58647 58599
        [
58648 58600
            "", 
58649 58601
            "janvier", 
......
58676 58628
            "0", 
58677 58629
            "3"
58678 58630
        ], 
58679
        [
58680
            "Total", 
58681
            "0", 
58682
            "0", 
58683
            "0", 
58684
            "0", 
58685
            "2", 
58686
            "1", 
58687
            "0", 
58688
            "0", 
58689
            "0", 
58690
            "0", 
58691
            "0", 
58692
            "0", 
58693
            "3"
58694
        ], 
58695 58631
        [
58696 58632
            "", 
58697 58633
            "janvier", 
......
58724 58660
            "0", 
58725 58661
            "0"
58726 58662
        ], 
58727
        [
58728
            "Total", 
58729
            "0", 
58730
            "0", 
58731
            "0", 
58732
            "0", 
58733
            "0", 
58734
            "0", 
58735
            "0", 
58736
            "0", 
58737
            "0", 
58738
            "0", 
58739
            "0", 
58740
            "0", 
58741
            "0"
58742
        ], 
58743 58663
        [
58744 58664
            "", 
58745 58665
            "janvier", 
......
58771 58691
            "0", 
58772 58692
            "0", 
58773 58693
            "0"
58774
        ], 
58775
        [
58776
            "Total", 
58777
            "0", 
58778
            "0", 
58779
            "0", 
58780
            "0", 
58781
            "0", 
58782
            "0", 
58783
            "0", 
58784
            "0", 
58785
            "0", 
58786
            "0", 
58787
            "0", 
58788
            "0", 
58789
            "0"
58790 58694
        ]
58791 58695
    ], 
58792 58696
    "Renseignement D\u00e9chets - Demandes par Origine et par mois": [
......
61968 61872
            "0", 
61969 61873
            "3"
61970 61874
        ], 
61875
        [
61876
            "La redevance sp\u00e9ciale", 
61877
            "0", 
61878
            "0", 
61879
            "0", 
61880
            "0", 
61881
            "0", 
61882
            "0", 
61883
            "0", 
61884
            "0", 
61885
            "0", 
61886
            "0", 
61887
            "0", 
61888
            "0", 
61889
            "0"
61890
        ], 
61971 61891
        [
61972 61892
            "Une visite du centre de tri", 
61973 61893
            "0", 
......
61984 61904
            "0", 
61985 61905
            "1"
61986 61906
        ], 
61907
        [
61908
            "La location de bacs pour \u00e9v\u00e9nements", 
61909
            "0", 
61910
            "0", 
61911
            "0", 
61912
            "0", 
61913
            "0", 
61914
            "0", 
61915
            "0", 
61916
            "0", 
61917
            "0", 
61918
            "0", 
61919
            "0", 
61920
            "0", 
61921
            "0"
61922
        ], 
61923
        [
61924
            "Un permis de construire", 
61925
            "0", 
61926
            "0", 
61927
            "0", 
61928
            "0", 
61929
            "0", 
61930
            "0", 
61931
            "0", 
61932
            "0", 
61933
            "0", 
61934
            "0", 
61935
            "0", 
61936
            "0", 
61937
            "0"
61938
        ], 
61987 61939
        [
61988 61940
            "Horaires d\u00e9ch\u00e8teries", 
61989 61941
            "41", 
......
62624 62576
            "2", 
62625 62577
            "7"
62626 62578
        ], 
62579
        [
62580
            "La redevance sp\u00e9ciale", 
62581
            "0", 
62582
            "0", 
62583
            "0", 
62584
            "0", 
62585
            "0", 
62586
            "0", 
62587
            "0", 
62588
            "0", 
62589
            "0", 
62590
            "0", 
62591
            "0", 
62592
            "0", 
62593
            "0"
62594
        ], 
62595
        [
62596
            "Une visite du centre de tri", 
62597
            "0", 
62598
            "0", 
62599
            "0", 
62600
            "0", 
62601
            "0", 
62602
            "0", 
62603
            "0", 
62604
            "0", 
62605
            "0", 
62606
            "0", 
62607
            "0", 
62608
            "0", 
62609
            "0"
62610
        ], 
62627 62611
        [
62628 62612
            "La location de bacs pour \u00e9v\u00e9nements", 
62629 62613
            "0", 
......
62640 62624
            "0", 
62641 62625
            "2"
62642 62626
        ], 
62627
        [
62628
            "Un permis de construire", 
62629
            "0", 
62630
            "0", 
62631
            "0", 
62632
            "0", 
62633
            "0", 
62634
            "0", 
62635
            "0", 
62636
            "0", 
62637
            "0", 
62638
            "0", 
62639
            "0", 
62640
            "0", 
62641
            "0"
62642
        ], 
62643 62643
        [
62644 62644
            "Horaires d\u00e9ch\u00e8teries", 
62645 62645
            "18", 
......
63024 63024
            "0", 
63025 63025
            "2"
63026 63026
        ], 
63027
        [
63028
            "Zones industrielles / Zones d\u2019activit\u00e9s", 
63029
            "0", 
63030
            "0", 
63031
            "0", 
63032
            "0", 
63033
            "0", 
63034
            "0", 
63035
            "0", 
63036
            "0", 
63037
            "0", 
63038
            "0", 
63039
            "0", 
63040
            "0", 
63041
            "0"
63042
        ], 
63027 63043
        [
63028 63044
            "Total", 
63029 63045
            "184", 
......
63280 63296
            "0", 
63281 63297
            "1"
63282 63298
        ], 
63299
        [
63300
            "Une visite du centre de tri", 
63301
            "0", 
63302
            "0", 
63303
            "0", 
63304
            "0", 
63305
            "0", 
63306
            "0", 
63307
            "0", 
63308
            "0", 
63309
            "0", 
63310
            "0", 
63311
            "0", 
63312
            "0", 
63313
            "0"
63314
        ], 
63283 63315
        [
63284 63316
            "La location de bacs pour \u00e9v\u00e9nements", 
63285 63317
            "0", 
......
63536 63568
            "0", 
63537 63569
            "22"
63538 63570
        ], 
63571
        [
63572
            "Redevance sp\u00e9ciale", 
63573
            "0", 
63574
            "0", 
63575
            "0", 
63576
            "0", 
63577
            "0", 
63578
            "0", 
63579
            "0", 
63580
            "0", 
63581
            "0", 
63582
            "0", 
63583
            "0", 
63584
            "0", 
63585
            "0"
63586
        ], 
63539 63587
        [
63540 63588
            "Permis de construire", 
63541 63589
            "0", 
......
63680 63728
            "0", 
63681 63729
            "2"
63682 63730
        ], 
63731
        [
63732
            "Zones industrielles / Zones d\u2019activit\u00e9s", 
63733
            "0", 
63734
            "0", 
63735
            "0", 
63736
            "0", 
63737
            "0", 
63738
            "0", 
63739
            "0", 
63740
            "0", 
63741
            "0", 
63742
            "0", 
63743
            "0", 
63744
            "0", 
63745
            "0"
63746
        ], 
63683 63747
        [
63684 63748
            "Total", 
63685 63749
            "139", 
......
63952 64016
            "0", 
63953 64017
            "1"
63954 64018
        ], 
64019
        [
64020
            "La location de bacs pour \u00e9v\u00e9nements", 
64021
            "0", 
64022
            "0", 
64023
            "0", 
64024
            "0", 
64025
            "0", 
64026
            "0", 
64027
            "0", 
64028
            "0", 
64029
            "0", 
64030
            "0", 
64031
            "0", 
64032
            "0", 
64033
            "0"
64034
        ], 
63955 64035
        [
63956 64036
            "Un permis de construire", 
63957 64037
            "0", 
......
64160 64240
            "0", 
64161 64241
            "3"
64162 64242
        ], 
64243
        [
64244
            "Location de bacs pour \u00e9v\u00e9nements", 
64245
            "0", 
64246
            "0", 
64247
            "0", 
64248
            "0", 
64249
            "0", 
64250
            "0", 
64251
            "0", 
64252
            "0", 
64253
            "0", 
64254
            "0", 
64255
            "0", 
64256
            "0", 
64257
            "0"
64258
        ], 
64163 64259
        [
64164 64260
            "Localisation point d\u2019apport volontaire", 
64165 64261
            "0", 
......
64192 64288
            "0", 
64193 64289
            "5"
64194 64290
        ], 
64291
        [
64292
            "Permis de construire", 
64293
            "0", 
64294
            "0", 
64295
            "0", 
64296
            "0", 
64297
            "0", 
64298
            "0", 
64299
            "0", 
64300
            "0", 
64301
            "0", 
64302
            "0", 
64303
            "0", 
64304
            "0", 
64305
            "0"
64306
        ], 
64195 64307
        [
64196 64308
            "Visite du centre de tri", 
64197 64309
            "0", 
......
64320 64432
            "0", 
64321 64433
            "6"
64322 64434
        ], 
64435
        [
64436
            "Zones industrielles / Zones d\u2019activit\u00e9s", 
64437
            "0", 
64438
            "0", 
64439
            "0", 
64440
            "0", 
64441
            "0", 
64442
            "0", 
64443
            "0", 
64444
            "0", 
64445
            "0", 
64446
            "0", 
64447
            "0", 
64448
            "0", 
64449
            "0"
64450
        ], 
64323 64451
        [
64324 64452
            "Total", 
64325 64453
            "185", 
......
64537 64665
            "0", 
64538 64666
            "0"
64539 64667
        ], 
64540
        [
64541
            "Total", 
64542
            "0", 
64543
            "0", 
64544
            "0", 
64545
            "0", 
64546
            "0", 
64547
            "0", 
64548
            "0", 
64549
            "0", 
64550
            "0", 
64551
            "0", 
64552
            "0", 
64553
            "0", 
64554
            "0"
64555
        ], 
64556 64668
        [
64557 64669
            "", 
64558 64670
            "janvier", 
......
64585 64697
            "0", 
64586 64698
            "0"
64587 64699
        ], 
64588
        [
64589
            "Total", 
64590
            "0", 
64591
            "0", 
64592
            "0", 
64593
            "0", 
64594
            "0", 
64595
            "0", 
64596
            "0", 
64597
            "0", 
64598
            "0", 
64599
            "0", 
64600
            "0", 
64601
            "0", 
64602
            "0"
64603
        ], 
64604 64700
        [
64605 64701
            "", 
64606 64702
            "janvier", 
......
64633 64729
            "0", 
64634 64730
            "0"
64635 64731
        ], 
64636
        [
64637
            "Total", 
64638
            "0", 
64639
            "0", 
64640
            "0", 
64641
            "0", 
64642
            "0", 
64643
            "0", 
64644
            "0", 
64645
            "0", 
64646
            "0", 
64647
            "0", 
64648
            "0", 
64649
            "0", 
64650
            "0"
64651
        ], 
64652 64732
        [
64653 64733
            "", 
64654 64734
            "janvier", 
......
64680 64760
            "0", 
64681 64761
            "0", 
64682 64762
            "0"
64683
        ], 
64684
        [
64685
            "Total", 
64686
            "0", 
64687
            "0", 
64688
            "0", 
64689
            "0", 
64690
            "0", 
64691
            "0", 
64692
            "0", 
64693
            "0", 
64694
            "0", 
64695
            "0", 
64696
            "0", 
64697
            "0", 
64698
            "0"
64699 64763
        ]
64700 64764
    ], 
64701 64765
    "Renseignement Voirie - Demandes par Origine et par mois": [
......
87336 87400
            "0", 
87337 87401
            "1"
87338 87402
        ], 
87339
        [
87340
            "Total", 
87341
            "0", 
87342
            "0", 
87343
            "0", 
87344
            "0", 
87345
            "0", 
87346
            "0", 
87347
            "0", 
87348
            "1", 
87349
            "0", 
87350
            "0", 
87351
            "0", 
87352
            "0", 
87353
            "1"
87354
        ], 
87355 87403
        [
87356 87404
            "", 
87357 87405
            "janvier", 
......
87384 87432
            "0", 
87385 87433
            "3"
87386 87434
        ], 
87387
        [
87388
            "Total", 
87389
            "0", 
87390
            "0", 
87391
            "0", 
87392
            "0", 
87393
            "1", 
87394
            "2", 
87395
            "0", 
87396
            "0", 
87397
            "0", 
87398
            "0", 
87399
            "0", 
87400
            "0", 
87401
            "3"
87402
        ], 
87403 87435
        [
87404 87436
            "", 
87405 87437
            "janvier", 
......
87432 87464
            "0", 
87433 87465
            "2"
87434 87466
        ], 
87435
        [
87436
            "Total", 
87437
            "0", 
87438
            "0", 
87439
            "0", 
87440
            "0", 
87441
            "0", 
87442
            "1", 
87443
            "0", 
87444
            "0", 
87445
            "0", 
87446
            "1", 
87447
            "0", 
87448
            "0", 
87449
            "2"
87450
        ], 
87451 87467
        [
87452 87468
            "", 
87453 87469
            "janvier", 
......
87480 87496
            "0", 
87481 87497
            "0"
87482 87498
        ], 
87483
        [
87484
            "Total", 
87485
            "0", 
87486
            "0", 
87487
            "0", 
87488
            "0", 
87489
            "0", 
87490
            "0", 
87491
            "0", 
87492
            "0", 
87493
            "0", 
87494
            "0", 
87495
            "0", 
87496
            "0", 
87497
            "0"
87498
        ], 
87499 87499
        [
87500 87500
            "", 
87501 87501
            "janvier", 
......
87527 87527
            "0", 
87528 87528
            "0", 
87529 87529
            "0"
87530
        ], 
87531
        [
87532
            "Total", 
87533
            "0", 
87534
            "0", 
87535
            "0", 
87536
            "0", 
87537
            "0", 
87538
            "0", 
87539
            "0", 
87540
            "0", 
87541
            "0", 
87542
            "0", 
87543
            "0", 
87544
            "0", 
87545
            "0"
87546 87530
        ]
87547 87531
    ], 
87548 87532
    "Signalement D\u00e9chets - Demandes par Commune et par mois": [
......
89622 89606
            "0", 
89623 89607
            "10"
89624 89608
        ], 
89609
        [
89610
            "Gardiennage", 
89611
            "0", 
89612
            "0", 
89613
            "0", 
89614
            "0", 
89615
            "0", 
89616
            "0", 
89617
            "0", 
89618
            "0", 
89619
            "0", 
89620
            "0", 
89621
            "0", 
89622
            "0", 
89623
            "0"
89624
        ], 
89625 89625
        [
89626 89626
            "Erreur de tri", 
89627 89627
            "0", 
......
89702 89702
            "0", 
89703 89703
            "57"
89704 89704
        ], 
89705
        [
89706
            "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", 
89707
            "0", 
89708
            "0", 
89709
            "0", 
89710
            "0", 
89711
            "0", 
89712
            "0", 
89713
            "0", 
89714
            "0", 
89715
            "0", 
89716
            "0", 
89717
            "0", 
89718
            "0", 
89719
            "0"
89720
        ], 
89705 89721
        [
89706 89722
            "Total", 
89707 89723
            "71", 
......
89990 90006
            "0", 
89991 90007
            "36"
89992 90008
        ], 
90009
        [
90010
            "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", 
90011
            "0", 
90012
            "0", 
90013
            "0", 
90014
            "0", 
90015
            "0", 
90016
            "0", 
90017
            "0", 
90018
            "0", 
90019
            "0", 
90020
            "0", 
90021
            "0", 
90022
            "0", 
90023
            "0"
90024
        ], 
89993 90025
        [
89994 90026
            "Total", 
89995 90027
            "73", 
......
90054 90086
            "18", 
90055 90087
            "957"
90056 90088
        ], 
90089
        [
90090
            "Bac incendi\u00e9", 
90091
            "0", 
90092
            "0", 
90093
            "0", 
90094
            "0", 
90095
            "0", 
90096
            "0", 
90097
            "0", 
90098
            "0", 
90099
            "0", 
90100
            "0", 
90101
            "0", 
90102
            "0", 
90103
            "0"
90104
        ], 
90057 90105
        [
90058 90106
            "D\u00e9bordement PAV", 
90059 90107
            "0", 
......
90166 90214
            "0", 
90167 90215
            "10"
90168 90216
        ], 
90217
        [
90218
            "Gardiennage", 
90219
            "0", 
90220
            "0", 
90221
            "0", 
90222
            "0", 
90223
            "0", 
90224
            "0", 
90225
            "0", 
90226
            "0", 
90227
            "0", 
90228
            "0", 
90229
            "0", 
90230
            "0", 
90231
            "0"
90232
        ], 
90169 90233
        [
90170 90234
            "Erreur de tri", 
90171 90235
            "0", 
......
90454 90518
            "0", 
90455 90519
            "1"
90456 90520
        ], 
90521
        [
90522
            "Gardiennage", 
90523
            "0", 
90524
            "0", 
90525
            "0", 
90526
            "0", 
90527
            "0", 
90528
            "0", 
90529
            "0", 
90530
            "0", 
90531
            "0", 
90532
            "0", 
90533
            "0", 
90534
            "0", 
90535
            "0"
90536
        ], 
90457 90537
        [
90458 90538
            "Erreur de tri", 
90459 90539
            "1", 
......
90534 90614
            "0", 
90535 90615
            "45"
90536 90616
        ], 
90617
        [
90618
            "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", 
90619
            "0", 
90620
            "0", 
90621
            "0", 
90622
            "0", 
90623
            "0", 
90624
            "0", 
90625
            "0", 
90626
            "0", 
90627
            "0", 
90628
            "0", 
90629
            "0", 
90630
            "0", 
90631
            "0"
90632
        ], 
90537 90633
        [
90538 90634
            "Total", 
90539 90635
            "59", 
......
90552 90648
        ], 
90553 90649
        [
90554 90650
            "", 
90651
            "janvier", 
90652
            "f\u00e9vrier", 
90653
            "mars", 
90654
            "avril", 
90655
            "mai", 
90656
            "juin", 
90657
            "juillet", 
90658
            "ao\u00fbt", 
90659
            "septembre", 
90555 90660
            "octobre", 
90556 90661
            "novembre", 
90662
            "d\u00e9cembre", 
90557 90663
            "Total"
90558 90664
        ], 
90559 90665
        [
90560 90666
            "Autre dysfonctionnement", 
90561 90667
            "0", 
90668
            "0", 
90669
            "0", 
90670
            "0", 
90671
            "0", 
90672
            "0", 
90673
            "0", 
90674
            "0", 
90675
            "0", 
90676
            "0", 
90562 90677
            "1", 
90678
            "0", 
90563 90679
            "1"
90564 90680
        ], 
90565 90681
        [
90566 90682
            "Bac non collect\u00e9", 
90683
            "0", 
90684
            "0", 
90685
            "0", 
90686
            "0", 
90687
            "0", 
90688
            "0", 
90689
            "0", 
90690
            "0", 
90691
            "0", 
90567 90692
            "1", 
90568 90693
            "11", 
90694
            "0", 
90569 90695
            "12"
90570 90696
        ], 
90697
        [
90698
            "Bac incendi\u00e9", 
90699
            "0", 
90700
            "0", 
90701
            "0", 
90702
            "0", 
90703
            "0", 
90704
            "0", 
90705
            "0", 
90706
            "0", 
90707
            "0", 
90708
            "0", 
90709
            "0", 
90710
            "0", 
90711
            "0"
90712
        ], 
90713
        [
90714
            "D\u00e9bordement PAV", 
90715
            "0", 
90716
            "0", 
90717
            "0", 
90718
            "0", 
90719
            "0", 
90720
            "0", 
90721
            "0", 
90722
            "0", 
90723
            "0", 
90724
            "0", 
90725
            "0", 
90726
            "0", 
90727
            "0"
90728
        ], 
90729
        [
90730
            "Entretien logette", 
90731
            "0", 
90732
            "0", 
90733
            "0", 
90734
            "0", 
90735
            "0", 
90736
            "0", 
90737
            "0", 
90738
            "0", 
90739
            "0", 
90740
            "0", 
90741
            "0", 
90742
            "0", 
90743
            "0"
90744
        ], 
90745
        [
90746
            "Attitude des ripeurs", 
90747
            "0", 
90748
            "0", 
90749
            "0", 
90750
            "0", 
90751
            "0", 
90752
            "0", 
90753
            "0", 
90754
            "0", 
90755
            "0", 
90756
            "0", 
90757
            "0", 
90758
            "0", 
90759
            "0"
90760
        ], 
90761
        [
90762
            "Bac cass\u00e9", 
90763
            "0", 
90764
            "0", 
90765
            "0", 
90766
            "0", 
90767
            "0", 
90768
            "0", 
90769
            "0", 
90770
            "0", 
90771
            "0", 
90772
            "0", 
90773
            "0", 
90774
            "0", 
90775
            "0"
90776
        ], 
90777
        [
90778
            "D\u00e9p\u00f4t sauvage", 
90779
            "0", 
90780
            "0", 
90781
            "0", 
90782
            "0", 
90783
            "0", 
90784
            "0", 
90785
            "0", 
90786
            "0", 
90787
            "0", 
90788
            "0", 
90789
            "0", 
90790
            "0", 
90791
            "0"
90792
        ], 
90793
        [
90794
            "Fr\u00e9quences de collecte", 
90795
            "0", 
90796
            "0", 
90797
            "0", 
90798
            "0", 
90799
            "0", 
90800
            "0", 
90801
            "0", 
90802
            "0", 
90803
            "0", 
90804
            "0", 
90805
            "0", 
90806
            "0", 
90807
            "0"
90808
        ], 
90809
        [
90810
            "Fermeture d\u00e9ch\u00e8terie", 
90811
            "0", 
90812
            "0", 
90813
            "0", 
90814
            "0", 
90815
            "0", 
90816
            "0", 
90817
            "0", 
90818
            "0", 
90819
            "0", 
90820
            "0", 
90821
            "0", 
90822
            "0", 
90823
            "0"
90824
        ], 
90825
        [
90826
            "Gardiennage", 
90827
            "0", 
90828
            "0", 
90829
            "0", 
90830
            "0", 
90831
            "0", 
90832
            "0", 
90833
            "0", 
90834
            "0", 
90835
            "0", 
90836
            "0", 
90837
            "0", 
90838
            "0", 
90839
            "0"
90840
        ], 
90841
        [
90842
            "Erreur de tri", 
90843
            "0", 
90844
            "0", 
90845
            "0", 
90846
            "0", 
90847
            "0", 
90848
            "0", 
90849
            "0", 
90850
            "0", 
90851
            "0", 
90852
            "0", 
90853
            "0", 
90854
            "0", 
90855
            "0"
90856
        ], 
90857
        [
90858
            "Bac vol\u00e9", 
90859
            "0", 
90860
            "0", 
90861
            "0", 
90862
            "0", 
90863
            "0", 
90864
            "0", 
90865
            "0", 
90866
            "0", 
90867
            "0", 
90868
            "0", 
90869
            "0", 
90870
            "0", 
90871
            "0"
90872
        ], 
90873
        [
90874
            "Nuisances sonores", 
90875
            "0", 
90876
            "0", 
90877
            "0", 
90878
            "0", 
90879
            "0", 
90880
            "0", 
90881
            "0", 
90882
            "0", 
90883
            "0", 
90884
            "0", 
90885
            "0", 
90886
            "0", 
90887
            "0"
90888
        ], 
90889
        [
90890
            "Attitude des gardiens", 
90891
            "0", 
90892
            "0", 
90893
            "0", 
90894
            "0", 
90895
            "0", 
90896
            "0", 
90897
            "0", 
90898
            "0", 
90899
            "0", 
90900
            "0", 
90901
            "0", 
90902
            "0", 
90903
            "0"
90904
        ], 
90905
        [
90906
            "D\u00e9bordement de point d\u2019apport volontaire", 
90907
            "0", 
90908
            "0", 
90909
            "0", 
90910
            "0", 
90911
            "0", 
90912
            "0", 
90913
            "0", 
90914
            "0", 
90915
            "0", 
90916
            "0", 
90917
            "0", 
90918
            "0", 
90919
            "0"
90920
        ], 
90921
        [
90922
            "Probl\u00e8me li\u00e9 au traitement des d\u00e9chets (Athanor, incin\u00e9rateur, Centre de Murianette)", 
90923
            "0", 
90924
            "0", 
90925
            "0", 
90926
            "0", 
90927
            "0", 
90928
            "0", 
90929
            "0", 
90930
            "0", 
90931
            "0", 
90932
            "0", 
90933
            "0", 
90934
            "0", 
90935
            "0"
90936
        ], 
90571 90937
        [
90572 90938
            "Total", 
90939
            "0", 
90940
            "0", 
90941
            "0", 
90942
            "0", 
90943
            "0", 
90944
            "0", 
90945
            "0", 
90946
            "0", 
90947
            "0", 
90573 90948
            "1", 
90574 90949
            "12", 
90950
            "0", 
90575 90951
            "13"
90576 90952
        ]
90577 90953
    ], 
......
90730 91106
            "0", 
90731 91107
            "135"
90732 91108
        ], 
90733
        [
90734
            "Total", 
90735
            "0", 
90736
            "0", 
90737
            "0", 
90738
            "0", 
90739
            "0", 
90740
            "5", 
90741
            "44", 
90742
            "35", 
90743
            "43", 
90744
            "8", 
90745
            "0", 
90746
            "0", 
90747
            "135"
90748
        ], 
90749 91109
        [
90750 91110
            "", 
90751 91111
            "janvier", 
......
90778 91138
            "0", 
90779 91139
            "56"
90780 91140
        ], 
90781
        [
90782
            "Total", 
90783
            "0", 
90784
            "0", 
90785
            "0", 
90786
            "0", 
90787
            "0", 
90788
            "0", 
90789
            "27", 
90790
            "16", 
90791
            "13", 
90792
            "0", 
90793
            "0", 
90794
            "0", 
90795
            "56"
90796
        ], 
90797 91141
        [
90798 91142
            "", 
90799 91143
            "janvier", 
......
90826 91170
            "0", 
90827 91171
            "163"
90828 91172
        ], 
90829
        [
90830
            "Total", 
90831
            "0", 
90832
            "0", 
90833
            "0", 
90834
            "0", 
90835
            "0", 
90836
            "2", 
90837
            "27", 
90838
            "46", 
90839
            "77", 
90840
            "11", 
90841
            "0", 
90842
            "0", 
90843
            "163"
90844
        ], 
90845 91173
        [
90846 91174
            "", 
90847 91175
            "janvier", 
......
90874 91202
            "0", 
90875 91203
            "0"
90876 91204
        ], 
90877
        [
90878
            "Total", 
90879
            "0", 
90880
            "0", 
90881
            "0", 
90882
            "0", 
90883
            "0", 
90884
            "0", 
90885
            "0", 
90886
            "0", 
90887
            "0", 
90888
            "0", 
90889
            "0", 
90890
            "0", 
90891
            "0"
90892
        ], 
90893 91205
        [
90894 91206
            "", 
90895 91207
            "janvier", 
......
90922 91234
            "0", 
90923 91235
            "0"
90924 91236
        ], 
90925
        [
90926
            "Total", 
90927
            "0", 
90928
            "0", 
90929
            "0", 
90930
            "0", 
90931
            "0", 
90932
            "0", 
90933
            "0", 
90934
            "0", 
90935
            "0", 
90936
            "0", 
90937
            "0", 
90938
            "0", 
90939
            "0"
90940
        ], 
90941 91237
        [
90942 91238
            "", 
90943 91239
            "janvier", 
......
90970 91266
            "0", 
90971 91267
            "0"
90972 91268
        ], 
90973
        [
90974
            "Total", 
90975
            "0", 
90976
            "0", 
90977
            "0", 
90978
            "0", 
90979
            "0", 
90980
            "0", 
90981
            "0", 
90982
            "0", 
90983
            "0", 
90984
            "0", 
90985
            "0", 
90986
            "0", 
90987
            "0"
90988
        ], 
90989 91269
        [
90990 91270
            "", 
90991 91271
            "janvier", 
......
91017 91297
            "0", 
91018 91298
            "0", 
91019 91299
            "0"
91020
        ], 
91021
        [
91022
            "Total", 
91023
            "0", 
91024
            "0", 
91025
            "0", 
91026
            "0", 
91027
            "0", 
91028
            "0", 
91029
            "0", 
91030
            "0", 
91031
            "0", 
91032
            "0", 
91033
            "0", 
91034
            "0", 
91035
            "0"
91036 91300
        ]
91037 91301
    ], 
91038 91302
    "Signalement Voirie - Demandes par Commune et par mois": [
......
92612 92876
            "10", 
92613 92877
            "579"
92614 92878
        ], 
92879
        [
92880
            "Aucun(e)", 
92881
            "0", 
92882
            "0", 
92883
            "0", 
92884
            "0", 
92885
            "0", 
92886
            "0", 
92887
            "0", 
92888
            "0", 
92889
            "0", 
92890
            "0", 
92891
            "2", 
92892
            "2", 
92893
            "4"
92894
        ], 
92615 92895
        [
92616 92896
            "Total", 
92617 92897
            "0", 
......
92624 92904
            "398", 
92625 92905
            "473", 
92626 92906
            "433", 
92627
            "493", 
92628
            "87", 
92629
            "3437"
92907
            "495", 
92908
            "89", 
92909
            "3441"
92630 92910
        ]
92631 92911
    ], 
92632 92912
    "Signalement Voirie - Demandes par type intervention GRU et par mois": [
......
95792 96072
            "0", 
95793 96073
            "4"
95794 96074
        ], 
96075
        [
96076
            "Aucun(e)", 
96077
            "1037", 
96078
            "745", 
96079
            "1215", 
96080
            "1655", 
96081
            "2239", 
96082
            "1940", 
96083
            "1450", 
96084
            "1297", 
96085
            "1703", 
96086
            "3231", 
96087
            "1627", 
96088
            "268", 
96089
            "18407"
96090
        ], 
95795 96091
        [
95796 96092
            "Total", 
95797
            "0", 
95798
            "0", 
95799
            "0", 
95800
            "0", 
95801
            "0", 
95802
            "15", 
95803
            "563", 
95804
            "739", 
95805
            "681", 
95806
            "1198", 
95807
            "1208", 
95808
            "156", 
95809
            "4560"
96093
            "1037", 
96094
            "745", 
96095
            "1215", 
96096
            "1655", 
96097
            "2239", 
96098
            "1955", 
96099
            "2013", 
96100
            "2036", 
96101
            "2384", 
96102
            "4429", 
96103
            "2835", 
96104
            "424", 
96105
            "22967"
95810 96106
        ]
95811 96107
    ], 
95812 96108
    "Tronche (La) - Signalement D\u00e9ch\u00eats par qualification": [
......
112536 112832
            "", 
112537 112833
            "GAM", 
112538 112834
            "Hors GAM", 
112835
            "Aucun(e)", 
112539 112836
            "Total"
112540 112837
        ], 
112541 112838
        [
112542 112839
            "Grenoble", 
112543 112840
            "2624", 
112544 112841
            "0", 
112842
            "0", 
112545 112843
            "2624"
112546 112844
        ], 
112547 112845
        [
112548 112846
            "Meylan", 
112549 112847
            "1075", 
112550 112848
            "0", 
112849
            "0", 
112551 112850
            "1075"
112552 112851
        ], 
112553 112852
        [
112554 112853
            "Saint-\u00c9gr\u00e8ve", 
112555 112854
            "897", 
112556 112855
            "0", 
112856
            "0", 
112557 112857
            "897"
112558 112858
        ], 
112559 112859
        [
112560 112860
            "Claix", 
112561 112861
            "541", 
112562 112862
            "0", 
112863
            "0", 
112563 112864
            "541"
112564 112865
        ], 
112565 112866
        [
112566 112867
            "Saint-Martin-d'H\u00e8res", 
112567 112868
            "876", 
112568 112869
            "0", 
112870
            "0", 
112569 112871
            "876"
112570 112872
        ], 
112571 112873
        [
112572 112874
            "Le Sappey-en-Chartreuse", 
112573 112875
            "26", 
112574 112876
            "0", 
112877
            "0", 
112575 112878
            "26"
112576 112879
        ], 
112577 112880
        [
112578 112881
            "Vif", 
112579 112882
            "330", 
112580 112883
            "0", 
112884
            "0", 
112581 112885
            "330"
112582 112886
        ], 
112583 112887
        [
112584 112888
            "Fontaine", 
112585 112889
            "1107", 
112586 112890
            "0", 
112891
            "0", 
112587 112892
            "1107"
112588 112893
        ], 
112589 112894
        [
112590 112895
            "Le Gua", 
112591 112896
            "46", 
112592 112897
            "0", 
112898
            "0", 
112593 112899
            "46"
112594 112900
        ], 
112595 112901
        [
112596 112902
            "La Tronche", 
112597 112903
            "337", 
112598 112904
            "0", 
112905
            "0", 
112599 112906
            "337"
112600 112907
        ], 
112601 112908
        [
112602 112909
            "Varces-Alli\u00e8res-et-Risset", 
112603 112910
            "200", 
112604 112911
            "0", 
112912
            "0", 
112605 112913
            "200"
112606 112914
        ], 
112607 112915
        [
112608 112916
            "Gi\u00e8res", 
112609 112917
            "208", 
112610 112918
            "0", 
112919
            "0", 
112611 112920
            "208"
112612 112921
        ], 
112613 112922
        [
112614 112923
            "Fontanil-Cornillon", 
112615 112924
            "75", 
112616 112925
            "0", 
112926
            "0", 
112617 112927
            "75"
112618 112928
        ], 
112619 112929
        [
112620 112930
            "\u00c9chirolles", 
112621 112931
            "1022", 
112622 112932
            "0", 
112933
            "0", 
112623 112934
            "1022"
112624 112935
        ], 
112625 112936
        [
112626 112937
            "Champ-sur-Drac", 
112627 112938
            "127", 
112628 112939
            "0", 
112940
            "0", 
112629 112941
            "127"
112630 112942
        ], 
112631 112943
        [
112632 112944
            "Seyssinet-Pariset", 
112633 112945
            "231", 
112634 112946
            "0", 
112947
            "0", 
112635 112948
            "231"
112636 112949
        ], 
112637 112950
        [
112638 112951
            "Sassenage", 
112639 112952
            "464", 
112640 112953
            "0", 
112954
            "0", 
112641 112955
            "464"
112642 112956
        ], 
112643 112957
        [
112644 112958
            "Dom\u00e8ne", 
112645 112959
            "208", 
112646 112960
            "0", 
112961
            "0", 
112647 112962
            "208"
112648 112963
        ], 
112649 112964
        [
112650 112965
            "Vizille", 
112651 112966
            "280", 
112652 112967
            "0", 
112968
            "0", 
112653 112969
            "280"
112654 112970
        ], 
112655 112971
        [
112656 112972
            "Seyssins", 
112657 112973
            "403", 
112658 112974
            "0", 
112975
            "0", 
112659 112976
            "403"
112660 112977
        ], 
112661 112978
        [
112662 112979
            "Herbeys", 
112663 112980
            "88", 
112664 112981
            "0", 
112982
            "0", 
112665 112983
            "88"
112666 112984
        ], 
112667 112985
        [
112668 112986
            "Bri\u00e9-et-Angonnes", 
112669 112987
            "101", 
112670 112988
            "0", 
112989
            "0", 
112671 112990
            "101"
112672 112991
        ], 
112673 112992
        [
112674 112993
            "Eybens", 
112675 112994
            "363", 
112676 112995
            "0", 
112996
            "0", 
112677 112997
            "363"
112678 112998
        ], 
112679 112999
        [
112680 113000
            "Veurey-Voroize", 
112681 113001
            "87", 
112682 113002
            "0", 
113003
            "0", 
112683 113004
            "87"
112684 113005
        ], 
112685 113006
        [
112686 113007
            "Saint-Martin-le-Vinoux", 
112687 113008
            "129", 
112688 113009
            "0", 
113010
            "0", 
112689 113011
            "129"
112690 113012
        ], 
112691 113013
        [
112692 113014
            "Le Pont-de-Claix", 
112693 113015
            "218", 
112694 113016
            "0", 
113017
            "0", 
112695 113018
            "218"
112696 113019
        ], 
112697 113020
        [
112698 113021
            "Vaulnaveys-le-Haut", 
112699 113022
            "223", 
112700 113023
            "0", 
113024
            "0", 
112701 113025
            "223"
112702 113026
        ], 
112703 113027
        [
112704 113028
            "Corenc", 
112705 113029
            "230", 
112706 113030
            "0", 
113031
            "0", 
112707 113032
            "230"
112708 113033
        ], 
112709 113034
        [
112710 113035
            "S\u00e9chilienne", 
112711 113036
            "25", 
112712 113037
            "0", 
113038
            "0", 
112713 113039
            "25"
112714 113040
        ], 
112715 113041
        [
112716 113042
            "Saint-Paul-de-Varces", 
112717 113043
            "77", 
112718 113044
            "0", 
113045
            "0", 
112719 113046
            "77"
112720 113047
        ], 
112721 113048
        [
112722 113049
            "Jarrie", 
112723 113050
            "153", 
112724 113051
            "0", 
113052
            "0", 
112725 113053
            "153"
112726 113054
        ], 
112727 113055
        [
112728 113056
            "Hors GAM", 
112729 113057
            "0", 
112730 113058
            "110", 
113059
            "0", 
112731 113060
            "110"
112732 113061
        ], 
112733 113062
        [
112734 113063
            "Noyarey", 
112735 113064
            "60", 
112736 113065
            "0", 
113066
            "0", 
112737 113067
            "60"
112738 113068
        ], 
112739 113069
        [
112740 113070
            "Bresson", 
112741 113071
            "58", 
112742 113072
            "0", 
113073
            "0", 
112743 113074
            "58"
112744 113075
        ], 
112745 113076
        [
112746 113077
            "Vaulnaveys-le-Bas", 
112747 113078
            "84", 
112748 113079
            "0", 
113080
            "0", 
112749 113081
            "84"
112750 113082
        ], 
112751 113083
        [
112752 113084
            "Poisat", 
112753 113085
            "65", 
112754 113086
            "0", 
113087
            "0", 
112755 113088
            "65"
112756 113089
        ], 
112757 113090
        [
112758 113091
            "Champagnier", 
112759 113092
            "62", 
112760 113093
            "0", 
113094
            "0", 
112761 113095
            "62"
112762 113096
        ], 
112763 113097
        [
112764 113098
            "Proveysieux", 
112765 113099
            "5", 
112766 113100
            "0", 
113101
            "0", 
112767 113102
            "5"
112768 113103
        ], 
112769 113104
        [
112770 113105
            "Notre-Dame-de-M\u00e9sage", 
112771 113106
            "38", 
112772 113107
            "0", 
113108
            "0", 
112773 113109
            "38"
112774 113110
        ], 
112775 113111
        [
112776 113112
            "Venon", 
112777 113113
            "10", 
112778 113114
            "0", 
113115
            "0", 
112779 113116
            "10"
112780 113117
        ], 
112781 113118
        [
112782 113119
            "Saint-Georges-de-Commiers", 
112783 113120
            "36", 
112784 113121
            "0", 
113122
            "0", 
112785 113123
            "36"
112786 113124
        ], 
112787 113125
        [
112788 113126
            "Notre-Dame-de-Commiers", 
112789 113127
            "18", 
112790 113128
            "0", 
113129
            "0", 
112791 113130
            "18"
112792 113131
        ], 
112793 113132
        [
112794 113133
            "Murianette", 
112795 113134
            "19", 
112796 113135
            "0", 
113136
            "0", 
112797 113137
            "19"
112798 113138
        ], 
112799 113139
        [
112800 113140
            "Saint-Pierre-de-M\u00e9sage", 
112801 113141
            "14", 
112802 113142
            "0", 
113143
            "0", 
112803 113144
            "14"
112804 113145
        ], 
112805 113146
        [
112806 113147
            "Miribel-Lanch\u00e2tre", 
112807 113148
            "4", 
112808 113149
            "0", 
113150
            "0", 
112809 113151
            "4"
112810 113152
        ], 
112811 113153
        [
112812 113154
            "Mont-Saint-Martin", 
112813 113155
            "4", 
112814 113156
            "0", 
113157
            "0", 
112815 113158
            "4"
112816 113159
        ], 
112817 113160
        [
112818 113161
            "Montchaboud", 
112819 113162
            "10", 
112820 113163
            "0", 
113164
            "0", 
112821 113165
            "10"
112822 113166
        ], 
112823 113167
        [
112824 113168
            "Quaix-en-Chartreuse", 
112825 113169
            "6", 
112826 113170
            "0", 
113171
            "0", 
112827 113172
            "6"
112828 113173
        ], 
112829 113174
        [
112830 113175
            "Saint-Barth\u00e9l\u00e9my-de-S\u00e9chilienne", 
112831 113176
            "6", 
112832 113177
            "0", 
113178
            "0", 
112833 113179
            "6"
112834 113180
        ], 
112835 113181
        [
112836 113182
            "Sarcenas", 
112837 113183
            "3", 
112838 113184
            "0", 
113185
            "0", 
112839 113186
            "3"
112840 113187
        ], 
112841 113188
        [
112842 113189
            "Pont-de-Claix (Le)", 
112843 113190
            "1", 
112844 113191
            "0", 
113192
            "0", 
112845 113193
            "1"
112846 113194
        ], 
112847 113195
        [
112848 113196
            "Sappey-en-Chartreuse (Le)", 
112849 113197
            "0", 
112850 113198
            "0", 
113199
            "0", 
112851 113200
            "0"
112852 113201
        ], 
113202
        [
113203
            "Aucun(e)", 
113204
            "0", 
113205
            "0", 
113206
            "793", 
113207
            "793"
113208
        ], 
112853 113209
        [
112854 113210
            "Total", 
112855 113211
            "13274", 
112856 113212
            "110", 
112857
            "13384"
113213
            "793", 
113214
            "14177"
112858 113215
        ]
112859 113216
    ], 
112860 113217
    "zz _ Signalements d\u00e9chets - Guichet commune": [
......
113627 113984
            "Nord-Est", 
113628 113985
            "Grand-Sud", 
113629 113986
            "inconnu", 
113987
            "Aucun(e)", 
113630 113988
            "Total"
113631 113989
        ], 
113632 113990
        [
......
113636 113994
            "47", 
113637 113995
            "12", 
113638 113996
            "1", 
113997
            "0", 
113639 113998
            "109"
113640 113999
        ], 
113641 114000
        [
......
113645 114004
            "547", 
113646 114005
            "131", 
113647 114006
            "12", 
114007
            "0", 
113648 114008
            "1230"
113649 114009
        ], 
113650 114010
        [
......
113654 114014
            "0", 
113655 114015
            "4", 
113656 114016
            "0", 
114017
            "0", 
113657 114018
            "8"
113658 114019
        ], 
113659 114020
        [
......
113663 114024
            "3", 
113664 114025
            "7", 
113665 114026
            "0", 
114027
            "0", 
113666 114028
            "26"
113667 114029
        ], 
113668 114030
        [
......
113672 114034
            "3", 
113673 114035
            "0", 
113674 114036
            "0", 
114037
            "0", 
113675 114038
            "15"
113676 114039
        ], 
113677 114040
        [
......
113681 114044
            "1", 
113682 114045
            "7", 
113683 114046
            "0", 
114047
            "0", 
113684 114048
            "8"
113685 114049
        ], 
113686 114050
        [
......
113690 114054
            "7", 
113691 114055
            "6", 
113692 114056
            "0", 
114057
            "0", 
113693 114058
            "28"
113694 114059
        ], 
113695 114060
        [
......
113699 114064
            "1", 
113700 114065
            "4", 
113701 114066
            "0", 
114067
            "0", 
113702 114068
            "12"
113703 114069
        ], 
113704 114070
        [
......
113708 114074
            "2", 
113709 114075
            "0", 
113710 114076
            "0", 
114077
            "0", 
113711 114078
            "4"
113712 114079
        ], 
113713 114080
        [
......
113717 114084
            "9", 
113718 114085
            "2", 
113719 114086
            "0", 
114087
            "0", 
113720 114088
            "26"
113721 114089
        ], 
113722 114090
        [
......
113726 114094
            "2", 
113727 114095
            "0", 
113728 114096
            "0", 
114097
            "0", 
113729 114098
            "9"
113730 114099
        ], 
113731 114100
        [
......
113735 114104
            "0", 
113736 114105
            "0", 
113737 114106
            "0", 
114107
            "0", 
113738 114108
            "1"
113739 114109
        ], 
113740 114110
        [
......
113744 114114
            "0", 
113745 114115
            "0", 
113746 114116
            "0", 
114117
            "0", 
113747 114118
            "2"
113748 114119
        ], 
113749 114120
        [
......
113753 114124
            "2", 
113754 114125
            "1", 
113755 114126
            "0", 
114127
            "0", 
113756 114128
            "3"
113757 114129
        ], 
113758 114130
        [
......
113762 114134
            "4", 
113763 114135
            "0", 
113764 114136
            "0", 
114137
            "0", 
113765 114138
            "4"
113766 114139
        ], 
113767 114140
        [
......
113771 114144
            "76", 
113772 114145
            "23", 
113773 114146
            "0", 
114147
            "0", 
113774 114148
            "200"
113775 114149
        ], 
113776 114150
        [
......
113780 114154
            "410", 
113781 114155
            "241", 
113782 114156
            "0", 
114157
            "0", 
113783 114158
            "1494"
113784 114159
        ], 
113785 114160
        [
......
113789 114164
            "2", 
113790 114165
            "2", 
113791 114166
            "0", 
114167
            "0", 
113792 114168
            "16"
113793 114169
        ], 
113794 114170
        [
......
113798 114174
            "7", 
113799 114175
            "2", 
113800 114176
            "0", 
114177
            "0", 
113801 114178
            "23"
113802 114179
        ], 
113803 114180
        [
......
113807 114184
            "2", 
113808 114185
            "4", 
113809 114186
            "0", 
114187
            "0", 
113810 114188
            "20"
113811 114189
        ], 
113812 114190
        [
......
113816 114194
            "18", 
113817 114195
            "11", 
113818 114196
            "0", 
114197
            "0", 
113819 114198
            "61"
113820 114199
        ], 
113821 114200
        [
......
113825 114204
            "10", 
113826 114205
            "7", 
113827 114206
            "0", 
114207
            "0", 
113828 114208
            "32"
113829 114209
        ], 
113830 114210
        [
......
113834 114214
            "48", 
113835 114215
            "45", 
113836 114216
            "0", 
114217
            "0", 
113837 114218
            "186"
113838 114219
        ], 
113839 114220
        [
......
113843 114224
            "6", 
113844 114225
            "0", 
113845 114226
            "0", 
114227
            "0", 
113846 114228
            "28"
113847 114229
        ], 
113848 114230
        [
......
113852 114234
            "8", 
113853 114235
            "1", 
113854 114236
            "0", 
114237
            "0", 
113855 114238
            "21"
113856 114239
        ], 
113857 114240
        [
......
113861 114244
            "3", 
113862 114245
            "1", 
113863 114246
            "0", 
114247
            "0", 
113864 114248
            "18"
113865 114249
        ], 
113866 114250
        [
......
113870 114254
            "3", 
113871 114255
            "3", 
113872 114256
            "0", 
114257
            "0", 
113873 114258
            "17"
113874 114259
        ], 
113875 114260
        [
......
113879 114264
            "8", 
113880 114265
            "4", 
113881 114266
            "0", 
114267
            "0", 
113882 114268
            "25"
113883 114269
        ], 
113884 114270
        [
......
113888 114274
            "5", 
113889 114275
            "1", 
113890 114276
            "0", 
114277
            "0", 
113891 114278
            "18"
113892 114279
        ], 
113893 114280
        [
......
113897 114284
            "0", 
113898 114285
            "4", 
113899 114286
            "0", 
114287
            "0", 
113900 114288
            "8"
113901 114289
        ], 
113902 114290
        [
......
113906 114294
            "1", 
113907 114295
            "0", 
113908 114296
            "0", 
114297
            "0", 
114298
            "1"
114299
        ], 
114300
        [
114301
            "Aucun(e)", 
114302
            "0", 
114303
            "0", 
114304
            "0", 
114305
            "0", 
114306
            "0", 
114307
            "1", 
113909 114308
            "1"
113910 114309
        ], 
113911 114310
        [
......
113915 114314
            "1235", 
113916 114315
            "523", 
113917 114316
            "13", 
113918
            "3653"
114317
            "1", 
114318
            "3654"
113919 114319
        ]
113920 114320
    ], 
113921 114321
    "zz_old_Dysfonctionnement D\u00e9chets - Demandes par qualification - ann\u00e9e en cours": [
......
130650 131050
            "Nord-Est", 
130651 131051
            "Grand-Sud", 
130652 131052
            "inconnu", 
131053
            "Aucun(e)", 
130653 131054
            "Total"
130654 131055
        ], 
130655 131056
        [
......
130659 131060
            "132", 
130660 131061
            "35", 
130661 131062
            "1", 
131063
            "0", 
130662 131064
            "352"
130663 131065
        ], 
130664 131066
        [
......
130668 131070
            "957", 
130669 131071
            "372", 
130670 131072
            "12", 
131073
            "0", 
130671 131074
            "2724"
130672 131075
        ], 
130673 131076
        [
......
130677 131080
            "0", 
130678 131081
            "8", 
130679 131082
            "0", 
131083
            "0", 
130680 131084
            "16"
130681 131085
        ], 
130682 131086
        [
......
130686 131090
            "3", 
130687 131091
            "7", 
130688 131092
            "0", 
131093
            "0", 
130689 131094
            "26"
130690 131095
        ], 
130691 131096
        [
......
130695 131100
            "4", 
130696 131101
            "10", 
130697 131102
            "0", 
131103
            "0", 
130698 131104
            "25"
130699 131105
        ], 
130700 131106
        [
......
130704 131110
            "25", 
130705 131111
            "17", 
130706 131112
            "0", 
131113
            "0", 
130707 131114
            "89"
130708 131115
        ], 
130709 131116
        [
......
130713 131120
            "11", 
130714 131121
            "11", 
130715 131122
            "0", 
131123
            "0", 
130716 131124
            "44"
130717 131125
        ], 
130718 131126
        [
......
130722 131130
            "7", 
130723 131131
            "1", 
130724 131132
            "0", 
131133
            "0", 
130725 131134
            "22"
130726 131135
        ], 
130727 131136
        [
......
130731 131140
            "11", 
130732 131141
            "6", 
130733 131142
            "0", 
131143
            "0", 
130734 131144
            "46"
130735 131145
        ], 
130736 131146
        [
......
130740 131150
            "10", 
130741 131151
            "1", 
130742 131152
            "0", 
131153
            "0", 
130743 131154
            "30"
130744 131155
        ], 
130745 131156
        [
......
130749 131160
            "0", 
130750 131161
            "0", 
130751 131162
            "0", 
131163
            "0", 
130752 131164
            "1"
130753 131165
        ], 
130754 131166
        [
......
130758 131170
            "8", 
130759 131171
            "4", 
130760 131172
            "0", 
131173
            "0", 
130761 131174
            "27"
130762 131175
        ], 
130763 131176
        [
......
130767 131180
            "5", 
130768 131181
            "2", 
130769 131182
            "0", 
131183
            "0", 
130770 131184
            "21"
130771 131185
        ], 
130772 131186
        [
......
130776 131190
            "11", 
130777 131191
            "2", 
130778 131192
            "0", 
131193
            "0", 
130779 131194
            "27"
130780 131195
        ], 
130781 131196
        [
......
130785 131200
            "2", 
130786 131201
            "2", 
130787 131202
            "0", 
131203
            "0", 
130788 131204
            "16"
130789 131205
        ], 
130790 131206
        [
......
130794 131210
            "48", 
130795 131211
            "45", 
130796 131212
            "0", 
131213
            "0", 
130797 131214
            "186"
130798 131215
        ], 
130799 131216
        [
......
130803 131220
            "1", 
130804 131221
            "0", 
130805 131222
            "0", 
131223
            "0", 
130806 131224
            "1"
130807 131225
        ], 
130808 131226
        [
......
130812 131230
            "1235", 
130813 131231
            "523", 
130814 131232
            "13", 
131233
            "0", 
130815 131234
            "3653"
130816 131235
        ]
130817 131236
    ], 
......
130823 131242
            "Nord-Est", 
130824 131243
            "Grand-Sud", 
130825 131244
            "inconnu", 
131245
            "Aucun(e)", 
130826 131246
            "Total"
130827 131247
        ], 
130828 131248
        [
......
130832 131252
            "132", 
130833 131253
            "35", 
130834 131254
            "1", 
131255
            "0", 
130835 131256
            "352"
130836 131257
        ], 
130837 131258
        [
......
130841 131262
            "957", 
130842 131263
            "372", 
130843 131264
            "12", 
131265
            "0", 
130844 131266
            "2724"
130845 131267
        ], 
130846 131268
        [
......
130850 131272
            "0", 
130851 131273
            "8", 
130852 131274
            "0", 
131275
            "0", 
130853 131276
            "16"
130854 131277
        ], 
130855 131278
        [
......
130859 131282
            "3", 
130860 131283
            "7", 
130861 131284
            "0", 
131285
            "0", 
130862 131286
            "26"
130863 131287
        ], 
130864 131288
        [
......
130868 131292
            "4", 
130869 131293
            "10", 
130870 131294
            "0", 
131295
            "0", 
130871 131296
            "25"
130872 131297
        ], 
130873 131298
        [
......
130877 131302
            "25", 
130878 131303
            "17", 
130879 131304
            "0", 
131305
            "0", 
130880 131306
            "89"
130881 131307
        ], 
130882 131308
        [
......
130886 131312
            "11", 
130887 131313
            "11", 
130888 131314
            "0", 
131315
            "0", 
130889 131316
            "44"
130890 131317
        ], 
130891 131318
        [
......
130895 131322
            "7", 
130896 131323
            "1", 
130897 131324
            "0", 
131325
            "0", 
130898 131326
            "22"
130899 131327
        ], 
130900 131328
        [
......
130904 131332
            "11", 
130905 131333
            "6", 
130906 131334
            "0", 
131335
            "0", 
130907 131336
            "46"
130908 131337
        ], 
130909 131338
        [
......
130913 131342
            "10", 
130914 131343
            "1", 
130915 131344
            "0", 
131345
            "0", 
130916 131346
            "30"
130917 131347
        ], 
130918 131348
        [
......
130922 131352
            "0", 
130923 131353
            "0", 
130924 131354
            "0", 
131355
            "0", 
130925 131356
            "1"
130926 131357
        ], 
130927 131358
        [
......
130931 131362
            "8", 
130932 131363
            "4", 
130933 131364
            "0", 
131365
            "0", 
130934 131366
            "27"
130935 131367
        ], 
130936 131368
        [
......
130940 131372
            "5", 
130941 131373
            "2", 
130942 131374
            "0", 
131375
            "0", 
130943 131376
            "21"
130944 131377
        ], 
130945 131378
        [
......
130949 131382
            "11", 
130950 131383
            "2", 
130951 131384
            "0", 
131385
            "0", 
130952 131386
            "27"
130953 131387
        ], 
130954 131388
        [
......
130958 131392
            "2", 
130959 131393
            "2", 
130960 131394
            "0", 
131395
            "0", 
130961 131396
            "16"
130962 131397
        ], 
130963 131398
        [
......
130967 131402
            "48", 
130968 131403
            "45", 
130969 131404
            "0", 
131405
            "0", 
130970 131406
            "186"
130971 131407
        ], 
130972 131408
        [
......
130976 131412
            "1", 
130977 131413
            "0", 
130978 131414
            "0", 
131415
            "0", 
130979 131416
            "1"
130980 131417
        ], 
130981 131418
        [
......
130985 131422
            "1235", 
130986 131423
            "523", 
130987 131424
            "13", 
131425
            "0", 
130988 131426
            "3653"
130989 131427
        ]
130990 131428
    ], 
......
130996 131434
            "Nord-Est", 
130997 131435
            "Grand-Sud", 
130998 131436
            "inconnu", 
131437
            "Aucun(e)", 
130999 131438
            "Total"
131000 131439
        ], 
131001 131440
        [
......
131005 131444
            "64", 
131006 131445
            "59", 
131007 131446
            "0", 
131447
            "0", 
131008 131448
            "267"
131009 131449
        ], 
131010 131450
        [
......
131014 131454
            "39", 
131015 131455
            "21", 
131016 131456
            "0", 
131457
            "0", 
131017 131458
            "149"
131018 131459
        ], 
131019 131460
        [
......
131023 131464
            "56", 
131024 131465
            "28", 
131025 131466
            "0", 
131467
            "0", 
131026 131468
            "176"
131027 131469
        ], 
131028 131470
        [
......
131032 131474
            "46", 
131033 131475
            "25", 
131034 131476
            "0", 
131477
            "0", 
131035 131478
            "186"
131036 131479
        ], 
131037 131480
        [
......
131041 131484
            "74", 
131042 131485
            "38", 
131043 131486
            "0", 
131487
            "0", 
131044 131488
            "250"
131045 131489
        ], 
131046 131490
        [
......
131050 131494
            "71", 
131051 131495
            "30", 
131052 131496
            "0", 
131497
            "0", 
131053 131498
            "212"
131054 131499
        ], 
131055 131500
        [
......
131059 131504
            "79", 
131060 131505
            "64", 
131061 131506
            "0", 
131507
            "0", 
131062 131508
            "327"
131063 131509
        ], 
131064 131510
        [
......
131068 131514
            "106", 
131069 131515
            "44", 
131070 131516
            "0", 
131517
            "0", 
131071 131518
            "341"
131072 131519
        ], 
131073 131520
        [
......
131077 131524
            "58", 
131078 131525
            "37", 
131079 131526
            "0", 
131527
            "0", 
131080 131528
            "208"
131081 131529
        ], 
131082 131530
        [
......
131086 131534
            "345", 
131087 131535
            "48", 
131088 131536
            "1", 
131537
            "0", 
131089 131538
            "759"
131090 131539
        ], 
131091 131540
        [
......
131095 131544
            "275", 
131096 131545
            "118", 
131097 131546
            "12", 
131547
            "0", 
131098 131548
            "713"
131099 131549
        ], 
131100 131550
        [
......
131104 131554
            "22", 
131105 131555
            "11", 
131106 131556
            "0", 
131107
            "65"
131557
            "1", 
131558
            "66"
131108 131559
        ], 
131109 131560
        [
131110 131561
            "Total", 
......
131113 131564
            "1235", 
131114 131565
            "523", 
131115 131566
            "13", 
131116
            "3653"
131567
            "1", 
131568
            "3654"
131117 131569
        ]
131118 131570
    ], 
131119 131571
    "zz_old_Dysfonctionnement D\u00e9chets - Demandes par statut d\u00e9taill\u00e9 - ann\u00e9e en cours": [
......
131149 131601
            "0", 
131150 131602
            "2"
131151 131603
        ], 
131604
        [
131605
            "Calcul du code Insee", 
131606
            "0", 
131607
            "0", 
131608
            "0", 
131609
            "0", 
131610
            "0", 
131611
            "0", 
131612
            "0", 
131613
            "0", 
131614
            "0", 
131615
            "0", 
131616
            "0", 
131617
            "0", 
131618
            "0"
131619
        ], 
131620
        [
131621
            "Calcul du nom de la commune", 
131622
            "0", 
131623
            "0", 
131624
            "0", 
131625
            "0", 
131626
            "0", 
131627
            "0", 
131628
            "0", 
131629
            "0", 
131630
            "0", 
131631
            "0", 
131632
            "0", 
131633
            "0", 
131634
            "0"
131635
        ], 
131152 131636
        [
131153 131637
            "Qualification manuelle de la commune", 
131154 131638
            "0", 
......
131197 131681
            "0", 
131198 131682
            "0"
131199 131683
        ], 
131684
        [
131685
            "D\u00e9finition automatique du secteur hors Grenoble", 
131686
            "0", 
131687
            "0", 
131688
            "0", 
131689
            "0", 
131690
            "0", 
131691
            "0", 
131692
            "0", 
131693
            "0", 
131694
            "0", 
131695
            "0", 
131696
            "0", 
131697
            "0", 
131698
            "0"
131699
        ], 
131700
        [
131701
            "D\u00e9finition automatique du secteur dans Grenoble", 
131702
            "0", 
131703
            "0", 
131704
            "0", 
131705
            "0", 
131706
            "0", 
131707
            "0", 
131708
            "0", 
131709
            "0", 
131710
            "0", 
131711
            "0", 
131712
            "0", 
131713
            "0", 
131714
            "0"
131715
        ], 
131200 131716
        [
131201 131717
            "Qualification manuelle du secteur", 
131202 131718
            "0", 
......
131245 131761
            "0", 
131246 131762
            "0"
131247 131763
        ], 
131764
        [
131765
            "Aiguillage apr\u00e8s guichet", 
131766
            "0", 
131767
            "0", 
131768
            "0", 
131769
            "0", 
131770
            "0", 
131771
            "0", 
131772
            "0", 
131773
            "0", 
131774
            "0", 
131775
            "0", 
131776
            "0", 
131777
            "0", 
131778
            "0"
131779
        ], 
131248 131780
        [
131249 131781
            "Demande transmise pour traitement aux services", 
131250 131782
            "0", 
......
131261 131793
            "13", 
131262 131794
            "23"
131263 131795
        ], 
131796
        [
131797
            "Traitement par le service", 
131798
            "0", 
131799
            "0", 
131800
            "0", 
131801
            "0", 
131802
            "0", 
131803
            "0", 
131804
            "0", 
131805
            "0", 
131806
            "0", 
131807
            "0", 
131808
            "0", 
131809
            "0", 
131810
            "0"
131811
        ], 
131264 131812
        [
131265 131813
            "Commentaire interne service", 
131266 131814
            "0", 
......
131277 131825
            "0", 
131278 131826
            "0"
131279 131827
        ], 
131828
        [
131829
            "Dispatch manuel", 
131830
            "0", 
131831
            "0", 
131832
            "0", 
131833
            "0", 
131834
            "0", 
131835
            "0", 
131836
            "0", 
131837
            "0", 
131838
            "0", 
131839
            "0", 
131840
            "0", 
131841
            "0", 
131842
            "0"
131843
        ], 
131280 131844
        [
131281 131845
            "Orientation apr\u00e8s dispatch", 
131282 131846
            "0", 
......
131309 131873
            "0", 
131310 131874
            "0"
131311 131875
        ], 
131876
        [
131877
            "Pi\u00e8ces jointes r\u00e9ponse", 
131878
            "0", 
131879
            "0", 
131880
            "0", 
131881
            "0", 
131882
            "0", 
131883
            "0", 
131884
            "0", 
131885
            "0", 
131886
            "0", 
131887
            "0", 
131888
            "0", 
131889
            "0", 
131890
            "0"
131891
        ], 
131312 131892
        [
131313 131893
            "Communication de la r\u00e9ponse", 
131314 131894
            "0", 
......
131357 131937
            "0", 
131358 131938
            "0"
131359 131939
        ], 
131940
        [
131941
            "Informations sur l'appel", 
131942
            "0", 
131943
            "0", 
131944
            "0", 
131945
            "0", 
131946
            "0", 
131947
            "0", 
131948
            "0", 
131949
            "0", 
131950
            "0", 
131951
            "0", 
131952
            "0", 
131953
            "0", 
131954
            "0"
131955
        ], 
131956
        [
131957
            "R\u00e9ponse par t\u00e9l\u00e9phone", 
131958
            "0", 
131959
            "0", 
131960
            "0", 
131961
            "0", 
131962
            "0", 
131963
            "0", 
131964
            "0", 
131965
            "0", 
131966
            "0", 
131967
            "0", 
131968
            "0", 
131969
            "0", 
131970
            "0"
131971
        ], 
131972
        [
131973
            "Courrier \u00e0 transmettre", 
131974
            "0", 
131975
            "0", 
131976
            "0", 
131977
            "0", 
131978
            "0", 
131979
            "0", 
131980
            "0", 
131981
            "0", 
131982
            "0", 
131983
            "0", 
131984
            "0", 
131985
            "0", 
131986
            "0"
131987
        ], 
131988
        [
131989
            "R\u00e9ponse par courrier", 
131990
            "0", 
131991
            "0", 
131992
            "0", 
131993
            "0", 
131994
            "0", 
131995
            "0", 
131996
            "0", 
131997
            "0", 
131998
            "0", 
131999
            "0", 
132000
            "0", 
132001
            "0", 
132002
            "0"
132003
        ], 
132004
        [
132005
            "Demande termin\u00e9e", 
132006
            "0", 
132007
            "0", 
132008
            "0", 
132009
            "0", 
132010
            "0", 
132011
            "0", 
132012
            "0", 
132013
            "0", 
132014
            "0", 
132015
            "0", 
132016
            "0", 
132017
            "0", 
132018
            "0"
132019
        ], 
132020
        [
132021
            "R\u00e9diger une question \u00e0 destination de l'usager", 
132022
            "0", 
132023
            "0", 
132024
            "0", 
132025
            "0", 
132026
            "0", 
132027
            "0", 
132028
            "0", 
132029
            "0", 
132030
            "0", 
132031
            "0", 
132032
            "0", 
132033
            "0", 
132034
            "0"
132035
        ], 
132036
        [
132037
            "Demande d'information compl\u00e9mentaire", 
132038
            "0", 
132039
            "0", 
132040
            "0", 
132041
            "0", 
132042
            "0", 
132043
            "0", 
132044
            "0", 
132045
            "0", 
132046
            "0", 
132047
            "0", 
132048
            "0", 
132049
            "0", 
132050
            "0"
132051
        ], 
132052
        [
132053
            "Annuler et prendre en charge la demande", 
132054
            "0", 
132055
            "0", 
132056
            "0", 
132057
            "0", 
132058
            "0", 
132059
            "0", 
132060
            "0", 
132061
            "0", 
132062
            "0", 
132063
            "0", 
132064
            "0", 
132065
            "0", 
132066
            "0"
132067
        ], 
132068
        [
132069
            "R\u00e9ponse d\u00e9pos\u00e9e par l'usager", 
132070
            "0", 
132071
            "0", 
132072
            "0", 
132073
            "0", 
132074
            "0", 
132075
            "0", 
132076
            "0", 
132077
            "0", 
132078
            "0", 
132079
            "0", 
132080
            "0", 
132081
            "0", 
132082
            "0"
132083
        ], 
132084
        [
132085
            "Anonymiser", 
132086
            "0", 
132087
            "0", 
132088
            "0", 
132089
            "0", 
132090
            "0", 
132091
            "0", 
132092
            "0", 
132093
            "0", 
132094
            "0", 
132095
            "0", 
132096
            "0", 
132097
            "0", 
132098
            "0"
132099
        ], 
132100
        [
132101
            "Repasser en priorit\u00e9 normale", 
132102
            "0", 
132103
            "0", 
132104
            "0", 
132105
            "0", 
132106
            "0", 
132107
            "0", 
132108
            "0", 
132109
            "0", 
132110
            "0", 
132111
            "0", 
132112
            "0", 
132113
            "0", 
132114
            "0"
132115
        ], 
132116
        [
132117
            "Marquer comme VIP", 
132118
            "0", 
132119
            "0", 
132120
            "0", 
132121
            "0", 
132122
            "0", 
132123
            "0", 
132124
            "0", 
132125
            "0", 
132126
            "0", 
132127
            "0", 
132128
            "0", 
132129
            "0", 
132130
            "0"
132131
        ], 
132132
        [
132133
            "Reset", 
132134
            "0", 
132135
            "0", 
132136
            "0", 
132137
            "0", 
132138
            "0", 
132139
            "0", 
132140
            "0", 
132141
            "0", 
132142
            "0", 
132143
            "0", 
132144
            "0", 
132145
            "0", 
132146
            "0"
132147
        ], 
131360 132148
        [
131361 132149
            "Total", 
131362 132150
            "0", 
......
132245 133033
            "11", 
132246 133034
            "174"
132247 133035
        ], 
133036
        [
133037
            "Une d\u00e9ch\u00e8terie", 
133038
            "0", 
133039
            "0", 
133040
            "0", 
133041
            "0", 
133042
            "0", 
133043
            "0", 
133044
            "0", 
133045
            "0", 
133046
            "0", 
133047
            "0", 
133048
            "0", 
133049
            "0", 
133050
            "0"
133051
        ], 
132248 133052
        [
132249 133053
            "R\u00e9clamation sur la collecte des ordures m\u00e9nag\u00e8res", 
132250 133054
            "59", 
......
132295 133099
        ], 
132296 133100
        [
132297 133101
            "", 
133102
            "janvier", 
133103
            "f\u00e9vrier", 
133104
            "mars", 
133105
            "avril", 
133106
            "mai", 
133107
            "juin", 
133108
            "juillet", 
133109
            "ao\u00fbt", 
133110
            "septembre", 
132298 133111
            "octobre", 
132299 133112
            "novembre", 
133113
            "d\u00e9cembre", 
132300 133114
            "Total"
132301 133115
        ], 
132302 133116
        [
132303 133117
            "La collecte des ordures m\u00e9nag\u00e8res", 
133118
            "0", 
133119
            "0", 
133120
            "0", 
133121
            "0", 
133122
            "0", 
133123
            "0", 
133124
            "0", 
133125
            "0", 
133126
            "0", 
132304 133127
            "1", 
132305 133128
            "12", 
133129
            "0", 
132306 133130
            "13"
132307 133131
        ], 
133132
        [
133133
            "Une d\u00e9ch\u00e8terie", 
133134
            "0", 
133135
            "0", 
133136
            "0", 
133137
            "0", 
133138
            "0", 
133139
            "0", 
133140
            "0", 
133141
            "0", 
133142
            "0", 
133143
            "0", 
133144
            "0", 
133145
            "0", 
133146
            "0"
133147
        ], 
133148
        [
133149
            "R\u00e9clamation sur la collecte des ordures m\u00e9nag\u00e8res", 
133150
            "0", 
133151
            "0", 
133152
            "0", 
133153
            "0", 
133154
            "0", 
133155
            "0", 
133156
            "0", 
133157
            "0", 
133158
            "0", 
133159
            "0", 
133160
            "0", 
133161
            "0", 
133162
            "0"
133163
        ], 
133164
        [
133165
            "Signaler un probl\u00e8me survenu dans une d\u00e9ch\u00e8terie", 
133166
            "0", 
133167
            "0", 
133168
            "0", 
133169
            "0", 
133170
            "0", 
133171
            "0", 
133172
            "0", 
133173
            "0", 
133174
            "0", 
133175
            "0", 
133176
            "0", 
133177
            "0", 
133178
            "0"
133179
        ], 
132308 133180
        [
132309 133181
            "Total", 
133182
            "0", 
133183
            "0", 
133184
            "0", 
133185
            "0", 
133186
            "0", 
133187
            "0", 
133188
            "0", 
133189
            "0", 
133190
            "0", 
132310 133191
            "1", 
132311 133192
            "12", 
133193
            "0", 
132312 133194
            "13"
132313 133195
        ]
132314 133196
    ], 
......
132317 133199
            "", 
132318 133200
            "Email envoy\u00e9", 
132319 133201
            "Non", 
133202
            "Aucun(e)", 
132320 133203
            "Total"
132321 133204
        ], 
132322 133205
        [
132323 133206
            "janvier", 
132324 133207
            "51", 
132325 133208
            "216", 
133209
            "0", 
132326 133210
            "267"
132327 133211
        ], 
132328 133212
        [
132329 133213
            "f\u00e9vrier", 
132330 133214
            "50", 
132331 133215
            "99", 
133216
            "0", 
132332 133217
            "149"
132333 133218
        ], 
132334 133219
        [
132335 133220
            "mars", 
132336 133221
            "35", 
132337 133222
            "141", 
133223
            "0", 
132338 133224
            "176"
132339 133225
        ], 
132340 133226
        [
132341 133227
            "avril", 
132342 133228
            "67", 
132343 133229
            "119", 
133230
            "0", 
132344 133231
            "186"
132345 133232
        ], 
132346 133233
        [
132347 133234
            "mai", 
132348 133235
            "82", 
132349 133236
            "168", 
133237
            "0", 
132350 133238
            "250"
132351 133239
        ], 
132352 133240
        [
132353 133241
            "juin", 
132354 133242
            "80", 
132355 133243
            "132", 
133244
            "0", 
132356 133245
            "212"
132357 133246
        ], 
132358 133247
        [
132359 133248
            "juillet", 
132360 133249
            "94", 
132361 133250
            "233", 
133251
            "0", 
132362 133252
            "327"
132363 133253
        ], 
132364 133254
        [
132365 133255
            "ao\u00fbt", 
132366 133256
            "73", 
132367 133257
            "268", 
133258
            "0", 
132368 133259
            "341"
132369 133260
        ], 
132370 133261
        [
132371 133262
            "septembre", 
132372 133263
            "72", 
132373 133264
            "136", 
133265
            "0", 
132374 133266
            "208"
132375 133267
        ], 
132376 133268
        [
132377 133269
            "octobre", 
132378 133270
            "249", 
132379 133271
            "510", 
133272
            "0", 
132380 133273
            "759"
132381 133274
        ], 
132382 133275
        [
132383 133276
            "novembre", 
132384 133277
            "207", 
132385 133278
            "506", 
133279
            "0", 
132386 133280
            "713"
132387 133281
        ], 
132388 133282
        [
132389 133283
            "d\u00e9cembre", 
132390 133284
            "15", 
132391 133285
            "50", 
132392
            "65"
133286
            "1", 
133287
            "66"
132393 133288
        ], 
132394 133289
        [
132395 133290
            "Total", 
132396 133291
            "1075", 
132397 133292
            "2578", 
132398
            "3653"
133293
            "1", 
133294
            "3654"
132399 133295
        ]
132400 133296
    ], 
132401 133297
    "zz_old_Dysfonctionnement D\u00e9chets - Signalements par d\u00e9ch\u00e9teries et par mois - ann\u00e9e en cours": [
......
133801 134697
            "Nord-Ouest", 
133802 134698
            "Grand-Sud", 
133803 134699
            "Sud", 
134700
            "Aucun(e)", 
133804 134701
            "Total"
133805 134702
        ], 
133806 134703
        [
......
133809 134706
            "32", 
133810 134707
            "5", 
133811 134708
            "20", 
134709
            "0", 
133812 134710
            "87"
133813 134711
        ], 
133814 134712
        [
......
133817 134715
            "416", 
133818 134716
            "187", 
133819 134717
            "236", 
134718
            "0", 
133820 134719
            "1414"
133821 134720
        ], 
133822 134721
        [
......
133825 134724
            "361", 
133826 134725
            "183", 
133827 134726
            "220", 
134727
            "0", 
133828 134728
            "1093"
133829 134729
        ], 
133830 134730
        [
......
133833 134733
            "65", 
133834 134734
            "41", 
133835 134735
            "21", 
134736
            "0", 
133836 134737
            "171"
133837 134738
        ], 
133838 134739
        [
......
133841 134742
            "14", 
133842 134743
            "1", 
133843 134744
            "13", 
134745
            "0", 
133844 134746
            "38"
133845 134747
        ], 
133846 134748
        [
......
133849 134751
            "35", 
133850 134752
            "28", 
133851 134753
            "22", 
134754
            "0", 
133852 134755
            "130"
133853 134756
        ], 
133854 134757
        [
......
133857 134760
            "21", 
133858 134761
            "15", 
133859 134762
            "32", 
134763
            "0", 
133860 134764
            "108"
133861 134765
        ], 
133862 134766
        [
......
133865 134769
            "46", 
133866 134770
            "17", 
133867 134771
            "30", 
134772
            "0", 
133868 134773
            "134"
133869 134774
        ], 
133870 134775
        [
......
133873 134778
            "4", 
133874 134779
            "2", 
133875 134780
            "11", 
134781
            "0", 
133876 134782
            "23"
133877 134783
        ], 
133878 134784
        [
......
133881 134787
            "44", 
133882 134788
            "30", 
133883 134789
            "20", 
134790
            "0", 
133884 134791
            "152"
133885 134792
        ], 
133886 134793
        [
......
133889 134796
            "6", 
133890 134797
            "2", 
133891 134798
            "1", 
134799
            "0", 
133892 134800
            "17"
133893 134801
        ], 
133894 134802
        [
......
133897 134805
            "117", 
133898 134806
            "110", 
133899 134807
            "34", 
134808
            "0", 
133900 134809
            "395"
133901 134810
        ], 
133902 134811
        [
......
133905 134814
            "7", 
133906 134815
            "3", 
133907 134816
            "2", 
134817
            "0", 
133908 134818
            "15"
133909 134819
        ], 
133910 134820
        [
......
133913 134823
            "0", 
133914 134824
            "1", 
133915 134825
            "2", 
134826
            "0", 
133916 134827
            "3"
133917 134828
        ], 
133918 134829
        [
......
133921 134832
            "0", 
133922 134833
            "0", 
133923 134834
            "1", 
134835
            "0", 
133924 134836
            "2"
133925 134837
        ], 
133926 134838
        [
......
133929 134841
            "2", 
133930 134842
            "1", 
133931 134843
            "0", 
134844
            "0", 
133932 134845
            "3"
133933 134846
        ], 
133934 134847
        [
......
133937 134850
            "0", 
133938 134851
            "1", 
133939 134852
            "1", 
134853
            "0", 
133940 134854
            "2"
133941 134855
        ], 
133942 134856
        [
......
133945 134859
            "563", 
133946 134860
            "436", 
133947 134861
            "262", 
134862
            "0", 
133948 134863
            "1744"
133949 134864
        ], 
133950 134865
        [
......
133953 134868
            "390", 
133954 134869
            "237", 
133955 134870
            "272", 
134871
            "0", 
133956 134872
            "1270"
133957 134873
        ], 
133958 134874
        [
......
133961 134877
            "261", 
133962 134878
            "153", 
133963 134879
            "213", 
134880
            "0", 
133964 134881
            "909"
133965 134882
        ], 
133966 134883
        [
......
133969 134886
            "84", 
133970 134887
            "76", 
133971 134888
            "45", 
134889
            "0", 
133972 134890
            "287"
133973 134891
        ], 
133974 134892
        [
......
133977 134895
            "236", 
133978 134896
            "170", 
133979 134897
            "129", 
134898
            "0", 
133980 134899
            "756"
133981 134900
        ], 
133982 134901
        [
......
133985 134904
            "30", 
133986 134905
            "9", 
133987 134906
            "11", 
134907
            "0", 
133988 134908
            "70"
133989 134909
        ], 
133990 134910
        [
......
133993 134913
            "221", 
133994 134914
            "72", 
133995 134915
            "153", 
134916
            "0", 
133996 134917
            "659"
133997 134918
        ], 
133998 134919
        [
......
134001 134922
            "112", 
134002 134923
            "66", 
134003 134924
            "68", 
134925
            "0", 
134004 134926
            "371"
134005 134927
        ], 
134006 134928
        [
......
134009 134931
            "267", 
134010 134932
            "192", 
134011 134933
            "299", 
134934
            "0", 
134012 134935
            "1105"
134013 134936
        ], 
134014 134937
        [
......
134017 134940
            "26", 
134018 134941
            "11", 
134019 134942
            "22", 
134943
            "0", 
134020 134944
            "83"
134021 134945
        ], 
134022 134946
        [
......
134025 134949
            "35", 
134026 134950
            "6", 
134027 134951
            "22", 
134952
            "0", 
134028 134953
            "93"
134029 134954
        ], 
134030 134955
        [
......
134033 134958
            "5", 
134034 134959
            "3", 
134035 134960
            "3", 
134961
            "0", 
134036 134962
            "12"
134037 134963
        ], 
134038 134964
        [
......
134041 134967
            "6", 
134042 134968
            "5", 
134043 134969
            "0", 
134970
            "0", 
134044 134971
            "15"
134045 134972
        ], 
134046 134973
        [
......
134049 134976
            "20", 
134050 134977
            "22", 
134051 134978
            "10", 
134979
            "0", 
134052 134980
            "84"
134053 134981
        ], 
134054 134982
        [
......
134057 134985
            "7", 
134058 134986
            "0", 
134059 134987
            "5", 
134988
            "0", 
134060 134989
            "20"
134061 134990
        ], 
134062 134991
        [
......
134065 134994
            "4", 
134066 134995
            "2", 
134067 134996
            "0", 
134997
            "0", 
134068 134998
            "8"
134069 134999
        ], 
134070 135000
        [
......
134073 135003
            "5", 
134074 135004
            "3", 
134075 135005
            "3", 
135006
            "0", 
134076 135007
            "20"
134077 135008
        ], 
134078 135009
        [
......
134081 135012
            "574", 
134082 135013
            "419", 
134083 135014
            "508", 
135015
            "0", 
134084 135016
            "2025"
134085 135017
        ], 
134086 135018
        [
......
134089 135021
            "209", 
134090 135022
            "107", 
134091 135023
            "109", 
135024
            "0", 
134092 135025
            "629"
134093 135026
        ], 
134094 135027
        [
......
134097 135030
            "15", 
134098 135031
            "11", 
134099 135032
            "8", 
135033
            "0", 
134100 135034
            "45"
134101 135035
        ], 
134102 135036
        [
......
134105 135039
            "8", 
134106 135040
            "2", 
134107 135041
            "3", 
135042
            "0", 
134108 135043
            "15"
134109 135044
        ], 
134110 135045
        [
......
134113 135048
            "10", 
134114 135049
            "1", 
134115 135050
            "6", 
135051
            "0", 
134116 135052
            "20"
134117 135053
        ], 
134118 135054
        [
......
134121 135057
            "4", 
134122 135058
            "3", 
134123 135059
            "2", 
135060
            "0", 
134124 135061
            "17"
134125 135062
        ], 
134126 135063
        [
......
134129 135066
            "2", 
134130 135067
            "2", 
134131 135068
            "6", 
135069
            "0", 
134132 135070
            "15"
134133 135071
        ], 
134134 135072
        [
......
134137 135075
            "0", 
134138 135076
            "0", 
134139 135077
            "0", 
135078
            "0", 
134140 135079
            "2"
134141 135080
        ], 
134142 135081
        [
......
134145 135084
            "4264", 
134146 135085
            "2635", 
134147 135086
            "2825", 
135087
            "0", 
134148 135088
            "14061"
134149 135089
        ]
134150 135090
    ], 
......
134181 135121
            "0", 
134182 135122
            "0"
134183 135123
        ], 
135124
        [
135125
            "V\u00e9rification commune de la M\u00e9tro", 
135126
            "0", 
135127
            "0", 
135128
            "0", 
135129
            "0", 
135130
            "0", 
135131
            "0", 
135132
            "0", 
135133
            "0", 
135134
            "0", 
135135
            "0", 
135136
            "0", 
135137
            "0", 
135138
            "0"
135139
        ], 
135140
        [
135141
            "D\u00e9finition du secteur dans Grenoble", 
135142
            "0", 
135143
            "0", 
135144
            "0", 
135145
            "0", 
135146
            "0", 
135147
            "0", 
135148
            "0", 
135149
            "0", 
135150
            "0", 
135151
            "0", 
135152
            "0", 
135153
            "0", 
135154
            "0"
135155
        ], 
135156
        [
135157
            "D\u00e9finition du secteur dans la M\u00e9tro", 
135158
            "0", 
135159
            "0", 
135160
            "0", 
135161
            "0", 
135162
            "0", 
135163
            "0", 
135164
            "0", 
135165
            "0", 
135166
            "0", 
135167
            "0", 
135168
            "0", 
135169
            "0", 
135170
            "0"
135171
        ], 
134184 135172
        [
134185 135173
            "Qualification manuelle du secteur", 
134186 135174
            "0", 
......
134229 135217
            "0", 
134230 135218
            "0"
134231 135219
        ], 
135220
        [
135221
            "Aiguillage apr\u00e8s guichet", 
135222
            "0", 
135223
            "0", 
135224
            "0", 
135225
            "0", 
135226
            "0", 
135227
            "0", 
135228
            "0", 
135229
            "0", 
135230
            "0", 
135231
            "0", 
135232
            "0", 
135233
            "0", 
135234
            "0"
135235
        ], 
135236
        [
135237
            "Demande transmise pour traitement aux services", 
135238
            "0", 
135239
            "0", 
135240
            "0", 
135241
            "0", 
135242
            "0", 
135243
            "0", 
135244
            "0", 
135245
            "0", 
135246
            "0", 
135247
            "0", 
135248
            "0", 
135249
            "0", 
135250
            "0"
135251
        ], 
134232 135252
        [
134233 135253
            "Traitement par le service", 
134234 135254
            "0", 
......
134261 135281
            "0", 
134262 135282
            "0"
134263 135283
        ], 
135284
        [
135285
            "Dispatch manuel", 
135286
            "0", 
135287
            "0", 
135288
            "0", 
135289
            "0", 
135290
            "0", 
135291
            "0", 
135292
            "0", 
135293
            "0", 
135294
            "0", 
135295
            "0", 
135296
            "0", 
135297
            "0", 
135298
            "0"
135299
        ], 
135300
        [
135301
            "Orientation apr\u00e8s dispatch", 
135302
            "0", 
135303
            "0", 
135304
            "0", 
135305
            "0", 
135306
            "0", 
135307
            "0", 
135308
            "0", 
135309
            "0", 
135310
            "0", 
135311
            "0", 
135312
            "0", 
135313
            "0", 
135314
            "0"
135315
        ], 
134264 135316
        [
134265 135317
            "R\u00e9daction de la r\u00e9ponse", 
134266 135318
            "0", 
......
134293 135345
            "0", 
134294 135346
            "0"
134295 135347
        ], 
135348
        [
135349
            "Aiguillage apr\u00e8s r\u00e9ponse", 
135350
            "0", 
135351
            "0", 
135352
            "0", 
135353
            "0", 
135354
            "0", 
135355
            "0", 
135356
            "0", 
135357
            "0", 
135358
            "0", 
135359
            "0", 
135360
            "0", 
135361
            "0", 
135362
            "0"
135363
        ], 
134296 135364
        [
134297 135365
            "R\u00e9ponse par mail", 
134298 135366
            "0", 
......
134325 135393
            "0", 
134326 135394
            "0"
134327 135395
        ], 
135396
        [
135397
            "R\u00e9ponse par t\u00e9l\u00e9phone", 
135398
            "0", 
135399
            "0", 
135400
            "0", 
135401
            "0", 
135402
            "0", 
135403
            "0", 
135404
            "0", 
135405
            "0", 
135406
            "0", 
135407
            "0", 
135408
            "0", 
135409
            "0", 
135410
            "0"
135411
        ], 
134328 135412
        [
134329 135413
            "Courrier \u00e0 transmettre", 
134330 135414
            "0", 
......
134373 135457
            "194", 
134374 135458
            "13989"
134375 135459
        ], 
135460
        [
135461
            "Anonymiser", 
135462
            "0", 
135463
            "0", 
135464
            "0", 
135465
            "0", 
135466
            "0", 
135467
            "0", 
135468
            "0", 
135469
            "0", 
135470
            "0", 
135471
            "0", 
135472
            "0", 
135473
            "0", 
135474
            "0"
135475
        ], 
135476
        [
135477
            "R\u00e9diger une question \u00e0 destination de l'usager", 
135478
            "0", 
135479
            "0", 
135480
            "0", 
135481
            "0", 
135482
            "0", 
135483
            "0", 
135484
            "0", 
135485
            "0", 
135486
            "0", 
135487
            "0", 
135488
            "0", 
135489
            "0", 
135490
            "0"
135491
        ], 
135492
        [
135493
            "Demande d'information compl\u00e9mentaire", 
135494
            "0", 
135495
            "0", 
135496
            "0", 
135497
            "0", 
135498
            "0", 
135499
            "0", 
135500
            "0", 
135501
            "0", 
135502
            "0", 
135503
            "0", 
135504
            "0", 
135505
            "0", 
135506
            "0"
135507
        ], 
135508
        [
135509
            "Annuler et prendre en charge la demande", 
135510
            "0", 
135511
            "0", 
135512
            "0", 
135513
            "0", 
135514
            "0", 
135515
            "0", 
135516
            "0", 
135517
            "0", 
135518
            "0", 
135519
            "0", 
135520
            "0", 
135521
            "0", 
135522
            "0"
135523
        ], 
135524
        [
135525
            "R\u00e9ponse d\u00e9pos\u00e9e par l'usager", 
135526
            "0", 
135527
            "0", 
135528
            "0", 
135529
            "0", 
135530
            "0", 
135531
            "0", 
135532
            "0", 
135533
            "0", 
135534
            "0", 
135535
            "0", 
135536
            "0", 
135537
            "0", 
135538
            "0"
135539
        ], 
135540
        [
135541
            "Reset", 
135542
            "0", 
135543
            "0", 
135544
            "0", 
135545
            "0", 
135546
            "0", 
135547
            "0", 
135548
            "0", 
135549
            "0", 
135550
            "0", 
135551
            "0", 
135552
            "0", 
135553
            "0", 
135554
            "0"
135555
        ], 
134376 135556
        [
134377 135557
            "Total", 
134378 135558
            "770", 
......
134393 135573
    "zz_old_Renseignement D\u00e9chets - Demandes par type de retard - Ann\u00e9e en cours": [
134394 135574
        [
134395 135575
            "", 
134396
            "Total"
135576
            "Aucun(e)"
134397 135577
        ], 
134398 135578
        [
134399 135579
            "janvier", 
134400
            "0"
135580
            "770"
134401 135581
        ], 
134402 135582
        [
134403 135583
            "f\u00e9vrier", 
134404
            "0"
135584
            "596"
134405 135585
        ], 
134406 135586
        [
134407 135587
            "mars", 
134408
            "0"
135588
            "1039"
134409 135589
        ], 
134410 135590
        [
134411 135591
            "avril", 
134412
            "0"
135592
            "1151"
134413 135593
        ], 
134414 135594
        [
134415 135595
            "mai", 
134416
            "0"
135596
            "1399"
134417 135597
        ], 
134418 135598
        [
134419 135599
            "juin", 
134420
            "0"
135600
            "997"
134421 135601
        ], 
134422 135602
        [
134423 135603
            "juillet", 
134424
            "0"
135604
            "1047"
134425 135605
        ], 
134426 135606
        [
134427 135607
            "ao\u00fbt", 
134428
            "0"
135608
            "1085"
134429 135609
        ], 
134430 135610
        [
134431 135611
            "septembre", 
134432
            "0"
135612
            "1498"
134433 135613
        ], 
134434 135614
        [
134435 135615
            "octobre", 
134436
            "0"
135616
            "2934"
134437 135617
        ], 
134438 135618
        [
134439 135619
            "novembre", 
134440
            "0"
135620
            "1337"
134441 135621
        ], 
134442 135622
        [
134443 135623
            "d\u00e9cembre", 
134444
            "0"
135624
            "208"
134445 135625
        ], 
134446 135626
        [
134447 135627
            "Total", 
134448
            "0"
135628
            "14061"
134449 135629
        ]
134450 135630
    ], 
134451 135631
    "zz_old_Renseignement D\u00e9chets - Demandes par type et par commune": [
......
135376 136556
            "104", 
135377 136557
            "2825"
135378 136558
        ], 
136559
        [
136560
            "Aucun(e)", 
136561
            "0", 
136562
            "0", 
136563
            "0", 
136564
            "0", 
136565
            "0", 
136566
            "0", 
136567
            "0", 
136568
            "0", 
136569
            "0", 
136570
            "0"
136571
        ], 
135379 136572
        [
135380 136573
            "Total", 
135381 136574
            "175", 
......
135525 136718
            "Formulaire Elu", 
135526 136719
            "Formulaire Portail citoyen", 
135527 136720
            "Observation terrain", 
136721
            "Aucun(e)", 
135528 136722
            "Total"
135529 136723
        ], 
135530 136724
        [
......
135540 136734
            "0", 
135541 136735
            "0", 
135542 136736
            "0", 
136737
            "0", 
135543 136738
            "0"
135544 136739
        ], 
135545 136740
        [
......
135555 136750
            "0", 
135556 136751
            "3", 
135557 136752
            "0", 
136753
            "0", 
135558 136754
            "3"
135559 136755
        ], 
135560 136756
        [
......
135570 136766
            "0", 
135571 136767
            "0", 
135572 136768
            "0", 
136769
            "0", 
135573 136770
            "0"
135574 136771
        ], 
135575 136772
        [
......
135585 136782
            "0", 
135586 136783
            "1", 
135587 136784
            "0", 
136785
            "0", 
135588 136786
            "4"
135589 136787
        ], 
135590 136788
        [
......
135600 136798
            "0", 
135601 136799
            "2", 
135602 136800
            "0", 
136801
            "0", 
135603 136802
            "2"
135604 136803
        ], 
135605 136804
        [
......
135615 136814
            "0", 
135616 136815
            "1", 
135617 136816
            "0", 
136817
            "0", 
135618 136818
            "13"
135619 136819
        ], 
135620 136820
        [
......
135630 136830
            "0", 
135631 136831
            "1", 
135632 136832
            "0", 
136833
            "0", 
135633 136834
            "25"
135634 136835
        ], 
135635 136836
        [
......
135645 136846
            "0", 
135646 136847
            "3", 
135647 136848
            "0", 
136849
            "0", 
135648 136850
            "9"
135649 136851
        ], 
135650 136852
        [
......
135660 136862
            "0", 
135661 136863
            "0", 
135662 136864
            "0", 
136865
            "0", 
135663 136866
            "0"
135664 136867
        ], 
135665 136868
        [
......
135675 136878
            "0", 
135676 136879
            "0", 
135677 136880
            "0", 
136881
            "0", 
135678 136882
            "10"
135679 136883
        ], 
135680 136884
        [
......
135690 136894
            "0", 
135691 136895
            "0", 
135692 136896
            "0", 
136897
            "0", 
135693 136898
            "0"
135694 136899
        ], 
135695 136900
        [
......
135705 136910
            "0", 
135706 136911
            "0", 
135707 136912
            "0", 
136913
            "0", 
135708 136914
            "0"
135709 136915
        ], 
135710 136916
        [
......
135720 136926
            "0", 
135721 136927
            "4", 
135722 136928
            "0", 
136929
            "0", 
135723 136930
            "40"
135724 136931
        ], 
135725 136932
        [
......
135735 136942
            "0", 
135736 136943
            "3", 
135737 136944
            "0", 
136945
            "0", 
135738 136946
            "18"
135739 136947
        ], 
135740 136948
        [
......
135750 136958
            "0", 
135751 136959
            "2", 
135752 136960
            "0", 
136961
            "0", 
135753 136962
            "33"
135754 136963
        ], 
135755 136964
        [
......
135765 136974
            "0", 
135766 136975
            "0", 
135767 136976
            "0", 
136977
            "0", 
135768 136978
            "2"
135769 136979
        ], 
135770 136980
        [
......
135780 136990
            "0", 
135781 136991
            "1", 
135782 136992
            "0", 
136993
            "0", 
135783 136994
            "14"
135784 136995
        ], 
135785 136996
        [
......
135795 137006
            "0", 
135796 137007
            "22", 
135797 137008
            "0", 
137009
            "0", 
135798 137010
            "189"
135799 137011
        ], 
135800 137012
        [
......
135810 137022
            "0", 
135811 137023
            "0", 
135812 137024
            "0", 
137025
            "0", 
135813 137026
            "2"
135814 137027
        ], 
135815 137028
        [
......
135825 137038
            "0", 
135826 137039
            "32", 
135827 137040
            "0", 
137041
            "0", 
135828 137042
            "445"
135829 137043
        ], 
135830 137044
        [
......
135840 137054
            "0", 
135841 137055
            "1", 
135842 137056
            "0", 
137057
            "0", 
135843 137058
            "9"
135844 137059
        ], 
135845 137060
        [
......
135855 137070
            "0", 
135856 137071
            "0", 
135857 137072
            "0", 
137073
            "0", 
135858 137074
            "7"
135859 137075
        ], 
135860 137076
        [
......
135870 137086
            "0", 
135871 137087
            "0", 
135872 137088
            "0", 
137089
            "0", 
135873 137090
            "0"
135874 137091
        ], 
135875 137092
        [
......
135885 137102
            "0", 
135886 137103
            "0", 
135887 137104
            "0", 
137105
            "0", 
135888 137106
            "2"
135889 137107
        ], 
135890 137108
        [
......
135900 137118
            "0", 
135901 137119
            "0", 
135902 137120
            "0", 
137121
            "0", 
135903 137122
            "12"
135904 137123
        ], 
135905 137124
        [
......
135915 137134
            "0", 
135916 137135
            "0", 
135917 137136
            "0", 
137137
            "0", 
135918 137138
            "0"
135919 137139
        ], 
135920 137140
        [
......
135930 137150
            "0", 
135931 137151
            "6", 
135932 137152
            "0", 
137153
            "0", 
135933 137154
            "22"
135934 137155
        ], 
135935 137156
        [
......
135945 137166
            "0", 
135946 137167
            "0", 
135947 137168
            "0", 
137169
            "0", 
135948 137170
            "0"
135949 137171
        ], 
135950 137172
        [
......
135960 137182
            "0", 
135961 137183
            "0", 
135962 137184
            "0", 
137185
            "0", 
135963 137186
            "1"
135964 137187
        ], 
135965 137188
        [
......
135975 137198
            "0", 
135976 137199
            "0", 
135977 137200
            "0", 
137201
            "0", 
135978 137202
            "1"
135979 137203
        ], 
135980 137204
        [
......
135990 137214
            "0", 
135991 137215
            "0", 
135992 137216
            "0", 
137217
            "0", 
135993 137218
            "0"
135994 137219
        ], 
135995 137220
        [
......
136005 137230
            "0", 
136006 137231
            "0", 
136007 137232
            "0", 
137233
            "0", 
136008 137234
            "2"
136009 137235
        ], 
136010 137236
        [
......
136020 137246
            "0", 
136021 137247
            "0", 
136022 137248
            "0", 
137249
            "0", 
136023 137250
            "2"
136024 137251
        ], 
136025 137252
        [
......
136035 137262
            "0", 
136036 137263
            "1", 
136037 137264
            "0", 
137265
            "0", 
136038 137266
            "3"
136039 137267
        ], 
136040 137268
        [
......
136050 137278
            "0", 
136051 137279
            "1", 
136052 137280
            "0", 
137281
            "0", 
136053 137282
            "7"
136054 137283
        ], 
136055 137284
        [
......
136065 137294
            "0", 
136066 137295
            "0", 
136067 137296
            "0", 
137297
            "0", 
136068 137298
            "0"
136069 137299
        ], 
136070 137300
        [
......
136080 137310
            "0", 
136081 137311
            "0", 
136082 137312
            "0", 
137313
            "0", 
136083 137314
            "0"
136084 137315
        ], 
136085 137316
        [
......
136095 137326
            "0", 
136096 137327
            "0", 
136097 137328
            "0", 
137329
            "0", 
136098 137330
            "0"
136099 137331
        ], 
136100 137332
        [
......
136110 137342
            "0", 
136111 137343
            "0", 
136112 137344
            "0", 
137345
            "0", 
136113 137346
            "0"
136114 137347
        ], 
136115 137348
        [
......
136125 137358
            "0", 
136126 137359
            "0", 
136127 137360
            "0", 
137361
            "0", 
136128 137362
            "0"
136129 137363
        ], 
136130 137364
        [
......
136140 137374
            "0", 
136141 137375
            "1", 
136142 137376
            "0", 
137377
            "0", 
136143 137378
            "7"
136144 137379
        ], 
136145 137380
        [
......
136155 137390
            "0", 
136156 137391
            "0", 
136157 137392
            "0", 
137393
            "0", 
136158 137394
            "2"
136159 137395
        ], 
136160 137396
        [
......
136170 137406
            "0", 
136171 137407
            "0", 
136172 137408
            "0", 
137409
            "0", 
136173 137410
            "0"
136174 137411
        ], 
136175 137412
        [
......
136185 137422
            "0", 
136186 137423
            "2", 
136187 137424
            "0", 
137425
            "0", 
136188 137426
            "35"
136189 137427
        ], 
136190 137428
        [
......
136200 137438
            "0", 
136201 137439
            "0", 
136202 137440
            "0", 
137441
            "0", 
136203 137442
            "11"
136204 137443
        ], 
136205 137444
        [
......
136215 137454
            "0", 
136216 137455
            "0", 
136217 137456
            "0", 
137457
            "0", 
136218 137458
            "4"
136219 137459
        ], 
136220 137460
        [
......
136230 137470
            "0", 
136231 137471
            "0", 
136232 137472
            "0", 
137473
            "0", 
136233 137474
            "0"
136234 137475
        ], 
136235 137476
        [
......
136245 137486
            "0", 
136246 137487
            "0", 
136247 137488
            "0", 
137489
            "0", 
136248 137490
            "0"
136249 137491
        ], 
136250 137492
        [
......
136260 137502
            "0", 
136261 137503
            "0", 
136262 137504
            "0", 
137505
            "0", 
136263 137506
            "1"
136264 137507
        ], 
136265 137508
        [
......
136275 137518
            "0", 
136276 137519
            "0", 
136277 137520
            "0", 
137521
            "0", 
136278 137522
            "10"
136279 137523
        ], 
136280 137524
        [
......
136290 137534
            "0", 
136291 137535
            "0", 
136292 137536
            "0", 
137537
            "0", 
136293 137538
            "0"
136294 137539
        ], 
136295 137540
        [
......
136305 137550
            "0", 
136306 137551
            "0", 
136307 137552
            "0", 
137553
            "0", 
136308 137554
            "6"
136309 137555
        ], 
136310 137556
        [
......
136320 137566
            "0", 
136321 137567
            "0", 
136322 137568
            "0", 
137569
            "0", 
136323 137570
            "0"
136324 137571
        ], 
136325 137572
        [
......
136335 137582
            "0", 
136336 137583
            "4", 
136337 137584
            "0", 
137585
            "0", 
136338 137586
            "28"
136339 137587
        ], 
136340 137588
        [
......
136350 137598
            "0", 
136351 137599
            "1", 
136352 137600
            "0", 
137601
            "0", 
136353 137602
            "1"
136354 137603
        ], 
136355 137604
        [
......
136365 137614
            "0", 
136366 137615
            "2", 
136367 137616
            "0", 
137617
            "0", 
136368 137618
            "13"
136369 137619
        ], 
136370 137620
        [
......
136380 137630
            "0", 
136381 137631
            "0", 
136382 137632
            "0", 
137633
            "0", 
136383 137634
            "3"
136384 137635
        ], 
136385 137636
        [
......
136395 137646
            "0", 
136396 137647
            "1", 
136397 137648
            "0", 
137649
            "0", 
136398 137650
            "5"
136399 137651
        ], 
136400 137652
        [
......
136410 137662
            "0", 
136411 137663
            "0", 
136412 137664
            "0", 
137665
            "0", 
136413 137666
            "0"
136414 137667
        ], 
136415 137668
        [
......
136425 137678
            "0", 
136426 137679
            "0", 
136427 137680
            "0", 
137681
            "0", 
136428 137682
            "1"
136429 137683
        ], 
136430 137684
        [
......
136440 137694
            "0", 
136441 137695
            "1", 
136442 137696
            "0", 
137697
            "0", 
136443 137698
            "13"
136444 137699
        ], 
136445 137700
        [
......
136455 137710
            "0", 
136456 137711
            "1", 
136457 137712
            "0", 
137713
            "0", 
136458 137714
            "20"
136459 137715
        ], 
137716
        [
137717
            "Aucun(e)", 
137718
            "0", 
137719
            "0", 
137720
            "0", 
137721
            "0", 
137722
            "0", 
137723
            "0", 
137724
            "0", 
137725
            "0", 
137726
            "0", 
137727
            "0", 
137728
            "0", 
137729
            "0", 
137730
            "0"
137731
        ], 
136460 137732
        [
136461 137733
            "Total", 
136462 137734
            "1", 
......
136470 137742
            "0", 
136471 137743
            "97", 
136472 137744
            "0", 
137745
            "0", 
136473 137746
            "1037"
136474 137747
        ], 
136475 137748
        [
......
136485 137758
            "Formulaire Elu", 
136486 137759
            "Formulaire Portail citoyen", 
136487 137760
            "Observation terrain", 
137761
            "Aucun(e)", 
136488 137762
            "Total"
136489 137763
        ], 
136490 137764
        [
......
136500 137774
            "0", 
136501 137775
            "0", 
136502 137776
            "0", 
137777
            "0", 
136503 137778
            "0"
136504 137779
        ], 
136505 137780
        [
......
136515 137790
            "0", 
136516 137791
            "2", 
136517 137792
            "0", 
137793
            "0", 
136518 137794
            "6"
136519 137795
        ], 
136520 137796
        [
......
136530 137806
            "0", 
136531 137807
            "0", 
136532 137808
            "0", 
137809
            "0", 
136533 137810
            "0"
136534 137811
        ], 
136535 137812
        [
......
136545 137822
            "0", 
136546 137823
            "0", 
136547 137824
            "0", 
137825
            "0", 
136548 137826
            "0"
136549 137827
        ], 
136550 137828
        [
......
136560 137838
            "0", 
136561 137839
            "0", 
136562 137840
            "0", 
137841
            "0", 
136563 137842
            "0"
136564 137843
        ], 
136565 137844
        [
......
136575 137854
            "0", 
136576 137855
            "0", 
136577 137856
            "0", 
137857
            "0", 
136578 137858
            "2"
136579 137859
        ], 
136580 137860
        [
......
136590 137870
            "0", 
136591 137871
            "1", 
136592 137872
            "0", 
137873
            "0", 
136593 137874
            "2"
136594 137875
        ], 
136595 137876
        [
......
136605 137886
            "0", 
136606 137887
            "0", 
136607 137888
            "0", 
137889
            "0", 
136608 137890
            "2"
136609 137891
        ], 
136610 137892
        [
......
136620 137902
            "0", 
136621 137903
            "0", 
136622 137904
            "0", 
137905
            "0", 
136623 137906
            "0"
136624 137907
        ], 
136625 137908
        [
......
136635 137918
            "0", 
136636 137919
            "0", 
136637 137920
            "0", 
137921
            "0", 
136638 137922
            "1"
136639 137923
        ], 
136640 137924
        [
......
136650 137934
            "0", 
136651 137935
            "0", 
136652 137936
            "0", 
137937
            "0", 
136653 137938
            "0"
136654 137939
        ], 
136655 137940
        [
......
136665 137950
            "0", 
136666 137951
            "0", 
136667 137952
            "0", 
137953
            "0", 
136668 137954
            "0"
136669 137955
        ], 
136670 137956
        [
......
136680 137966
            "0", 
136681 137967
            "6", 
136682 137968
            "0", 
137969
            "0", 
136683 137970
            "21"
136684 137971
        ], 
136685 137972
        [
......
136695 137982
            "0", 
136696 137983
            "0", 
136697 137984
            "0", 
137985
            "0", 
136698 137986
            "0"
136699 137987
        ], 
136700 137988
        [
......
136710 137998
            "0", 
136711 137999
            "1", 
136712 138000
            "0", 
138001
            "0", 
136713 138002
            "3"
136714 138003
        ], 
136715 138004
        [
......
136725 138014
            "0", 
136726 138015
            "0", 
136727 138016
            "0", 
138017
            "0", 
136728 138018
            "0"
136729 138019
        ], 
136730 138020
        [
......
136740 138030
            "0", 
136741 138031
            "1", 
136742 138032
            "0", 
138033
            "0", 
136743 138034
            "1"
136744 138035
        ], 
136745 138036
        [
......
136755 138046
            "0", 
136756 138047
            "5", 
136757 138048
            "0", 
138049
            "0", 
136758 138050
            "59"
136759 138051
        ], 
136760 138052
        [
......
136770 138062
            "0", 
136771 138063
            "0", 
136772 138064
            "0", 
138065
            "0", 
136773 138066
            "1"
136774 138067
        ], 
136775 138068
        [
......
136785 138078
            "0", 
136786 138079
            "0", 
136787 138080
            "0", 
138081
            "0", 
136788 138082
            "596"
136789 138083
        ], 
136790 138084
        [
......
136800 138094
            "0", 
136801 138095
            "0", 
136802 138096
            "0", 
138097
            "0", 
136803 138098
            "2"
136804 138099
        ], 
136805 138100
        [
......
136815 138110
            "0", 
136816 138111
            "0", 
136817 138112
            "0", 
138113
            "0", 
136818 138114
            "0"
136819 138115
        ], 
136820 138116
        [
......
136830 138126
            "0", 
136831 138127
            "0", 
136832 138128
            "0", 
138129
            "0", 
136833 138130
            "0"
136834 138131
        ], 
136835 138132
        [
......
136845 138142
            "0", 
136846 138143
            "0", 
136847 138144
            "0", 
138145
            "0", 
136848 138146
            "0"
136849 138147
        ], 
136850 138148
        [
......
136860 138158
            "0", 
136861 138159
            "0", 
136862 138160
            "0", 
138161
            "0", 
136863 138162
            "0"
136864 138163
        ], 
136865 138164
        [
......
136875 138174
            "0", 
136876 138175
            "2", 
136877 138176
            "0", 
138177
            "0", 
136878 138178
            "3"
136879 138179
        ], 
136880 138180
        [
......
136890 138190
            "0", 
136891 138191
            "0", 
136892 138192
            "0", 
138193
            "0", 
136893 138194
            "0"
136894 138195
        ], 
136895 138196
        [
......
136905 138206
            "0", 
136906 138207
            "0", 
136907 138208
            "0", 
138209
            "0", 
136908 138210
            "0"
136909 138211
        ], 
136910 138212
        [
......
136920 138222
            "0", 
136921 138223
            "0", 
136922 138224
            "0", 
138225
            "0", 
136923 138226
            "0"
136924 138227
        ], 
136925 138228
        [
......
136935 138238
            "0", 
136936 138239
            "0", 
136937 138240
            "0", 
138241
            "0", 
136938 138242
            "0"
136939 138243
        ], 
136940 138244
        [
......
136950 138254
            "0", 
136951 138255
            "0", 
136952 138256
            "0", 
138257
            "0", 
136953 138258
            "0"
136954 138259
        ], 
136955 138260
        [
......
136965 138270
            "0", 
136966 138271
            "0", 
136967 138272
            "0", 
138273
            "0", 
136968 138274
            "0"
136969 138275
        ], 
136970 138276
        [
......
136980 138286
            "0", 
136981 138287
            "0", 
136982 138288
            "0", 
138289
            "0", 
136983 138290
            "1"
136984 138291
        ], 
136985 138292
        [
......
136995 138302
            "0", 
136996 138303
            "0", 
136997 138304
            "0", 
138305
            "0", 
136998 138306
            "1"
136999 138307
        ], 
137000 138308
        [
......
137010 138318
            "0", 
137011 138319
            "0", 
137012 138320
            "0", 
138321
            "0", 
137013 138322
            "0"
137014 138323
        ], 
137015 138324
        [
......
137025 138334
            "0", 
137026 138335
            "0", 
137027 138336
            "0", 
138337
            "0", 
137028 138338
            "0"
137029 138339
        ], 
137030 138340
        [
......
137040 138350
            "0", 
137041 138351
            "0", 
137042 138352
            "0", 
138353
            "0", 
137043 138354
            "1"
137044 138355
        ], 
137045 138356
        [
......
137055 138366
            "0", 
137056 138367
            "0", 
137057 138368
            "0", 
138369
            "0", 
137058 138370
            "0"
137059 138371
        ], 
137060 138372
        [
......
137070 138382
            "0", 
137071 138383
            "0", 
137072 138384
            "0", 
138385
            "0", 
137073 138386
            "0"
137074 138387
        ], 
137075 138388
        [
......
137085 138398
            "0", 
137086 138399
            "0", 
137087 138400
            "0", 
138401
            "0", 
137088 138402
            "0"
137089 138403
        ], 
137090 138404
        [
......
137100 138414
            "0", 
137101 138415
            "1", 
137102 138416
            "0", 
138417
            "0", 
137103 138418
            "6"
137104 138419
        ], 
137105 138420
        [
......
137115 138430
            "0", 
137116 138431
            "0", 
137117 138432
            "0", 
138433
            "0", 
137118 138434
            "1"
137119 138435
        ], 
137120 138436
        [
......
137130 138446
            "0", 
137131 138447
            "0", 
137132 138448
            "0", 
138449
            "0", 
137133 138450
            "0"
137134 138451
        ], 
137135 138452
        [
......
137145 138462
            "0", 
137146 138463
            "0", 
137147 138464
            "0", 
138465
            "0", 
137148 138466
            "8"
137149 138467
        ], 
137150 138468
        [
......
137160 138478
            "0", 
137161 138479
            "0", 
137162 138480
            "0", 
138481
            "0", 
137163 138482
            "7"
137164 138483
        ], 
137165 138484
        [
......
137175 138494
            "0", 
137176 138495
            "0", 
137177 138496
            "0", 
138497
            "0", 
137178 138498
            "0"
137179 138499
        ], 
137180 138500
        [
......
137190 138510
            "0", 
137191 138511
            "0", 
137192 138512
            "0", 
138513
            "0", 
137193 138514
            "0"
137194 138515
        ], 
137195 138516
        [
......
137205 138526
            "0", 
137206 138527
            "0", 
137207 138528
            "0", 
138529
            "0", 
137208 138530
            "0"
137209 138531
        ], 
137210 138532
        [
......
137220 138542
            "0", 
137221 138543
            "0", 
137222 138544
            "0", 
138545
            "0", 
137223 138546
            "1"
137224 138547
        ], 
137225 138548
        [
......
137235 138558
            "0", 
137236 138559
            "0", 
137237 138560
            "0", 
138561
            "0", 
137238 138562
            "4"
137239 138563
        ], 
137240 138564
        [
......
137250 138574
            "0", 
137251 138575
            "0", 
137252 138576
            "0", 
138577
            "0", 
137253 138578
            "0"
137254 138579
        ], 
137255 138580
        [
......
137265 138590
            "0", 
137266 138591
            "0", 
137267 138592
            "0", 
138593
            "0", 
137268 138594
            "1"
137269 138595
        ], 
137270 138596
        [
......
137280 138606
            "0", 
137281 138607
            "0", 
137282 138608
            "0", 
138609
            "0", 
137283 138610
            "0"
137284 138611
        ], 
137285 138612
        [
......
137295 138622
            "0", 
137296 138623
            "0", 
137297 138624
            "0", 
138625
            "0", 
137298 138626
            "1"
137299 138627
        ], 
137300 138628
        [
......
137310 138638
            "0", 
137311 138639
            "0", 
137312 138640
            "0", 
138641
            "0", 
137313 138642
            "0"
137314 138643
        ], 
137315 138644
        [
......
137325 138654
            "0", 
137326 138655
            "0", 
137327 138656
            "0", 
138657
            "0", 
137328 138658
            "3"
137329 138659
        ], 
137330 138660
        [
......
137340 138670
            "0", 
137341 138671
            "0", 
137342 138672
            "0", 
138673
            "0", 
137343 138674
            "0"
137344 138675
        ], 
137345 138676
        [
......
137355 138686
            "0", 
137356 138687
            "0", 
137357 138688
            "0", 
138689
            "0", 
137358 138690
            "0"
137359 138691
        ], 
137360 138692
        [
......
137370 138702
            "0", 
137371 138703
            "0", 
137372 138704
            "0", 
138705
            "0", 
137373 138706
            "0"
137374 138707
        ], 
137375 138708
        [
......
137385 138718
            "0", 
137386 138719
            "0", 
137387 138720
            "0", 
138721
            "0", 
137388 138722
            "1"
137389 138723
        ], 
137390 138724
        [
......
137400 138734
            "0", 
137401 138735
            "2", 
137402 138736
            "0", 
138737
            "0", 
137403 138738
            "6"
137404 138739
        ], 
137405 138740
        [
......
137415 138750
            "0", 
137416 138751
            "1", 
137417 138752
            "0", 
138753
            "0", 
137418 138754
            "4"
137419 138755
        ], 
138756
        [
138757
            "Aucun(e)", 
138758
            "0", 
138759
            "0", 
138760
            "0", 
138761
            "0", 
138762
            "0", 
138763
            "0", 
138764
            "0", 
138765
            "0", 
138766
            "0", 
138767
            "0", 
138768
            "0", 
138769
            "0", 
138770
            "0"
138771
        ], 
137420 138772
        [
137421 138773
            "Total", 
137422 138774
            "0", 
......
137430 138782
            "0", 
137431 138783
            "22", 
137432 138784
            "0", 
138785
            "0", 
137433 138786
            "745"
137434 138787
        ], 
137435 138788
        [
......
137445 138798
            "Formulaire Elu", 
137446 138799
            "Formulaire Portail citoyen", 
137447 138800
            "Observation terrain", 
138801
            "Aucun(e)", 
137448 138802
            "Total"
137449 138803
        ], 
137450 138804
        [
......
137460 138814
            "0", 
137461 138815
            "0", 
137462 138816
            "0", 
138817
            "0", 
137463 138818
            "0"
137464 138819
        ], 
137465 138820
        [
......
137475 138830
            "0", 
137476 138831
            "0", 
137477 138832
            "0", 
138833
            "0", 
137478 138834
            "0"
137479 138835
        ], 
137480 138836
        [
......
137490 138846
            "0", 
137491 138847
            "0", 
137492 138848
            "0", 
138849
            "0", 
137493 138850
            "0"
137494 138851
        ], 
137495 138852
        [
......
137505 138862
            "0", 
137506 138863
            "0", 
137507 138864
            "0", 
138865
            "0", 
137508 138866
            "0"
137509 138867
        ], 
137510 138868
        [
......
137520 138878
            "0", 
137521 138879
            "0", 
137522 138880
            "0", 
138881
            "0", 
137523 138882
            "1"
137524 138883
        ], 
137525 138884
        [
......
137535 138894
            "0", 
137536 138895
            "0", 
137537 138896
            "0", 
138897
            "0", 
137538 138898
            "0"
137539 138899
        ], 
137540 138900
        [
......
137550 138910
            "0", 
137551 138911
            "1", 
137552 138912
            "0", 
138913
            "0", 
137553 138914
            "8"
137554 138915
        ], 
137555 138916
        [
......
137565 138926
            "0", 
137566 138927
            "0", 
137567 138928
            "0", 
138929
            "0", 
137568 138930
            "4"
137569 138931
        ], 
137570 138932
        [
......
137580 138942
            "0", 
137581 138943
            "0", 
137582 138944
            "0", 
138945
            "0", 
137583 138946
            "0"
137584 138947
        ], 
137585 138948
        [
......
137595 138958
            "0", 
137596 138959
            "0", 
137597 138960
            "0", 
138961
            "0", 
137598 138962
            "0"
137599 138963
        ], 
137600 138964
        [
......
137610 138974
            "0", 
137611 138975
            "0", 
137612 138976
            "0", 
138977
            "0", 
137613 138978
            "0"
137614 138979
        ], 
137615 138980
        [
......
137625 138990
            "0", 
137626 138991
            "0", 
137627 138992
            "0", 
138993
            "0", 
137628 138994
            "0"
137629 138995
        ], 
137630 138996
        [
......
137640 139006
            "0", 
137641 139007
            "4", 
137642 139008
            "0", 
139009
            "0", 
137643 139010
            "25"
137644 139011
        ], 
137645 139012
        [
......
137655 139022
            "0", 
137656 139023
            "1", 
137657 139024
            "0", 
139025
            "0", 
137658 139026
            "5"
137659 139027
        ], 
137660 139028
        [
......
137670 139038
            "0", 
137671 139039
            "0", 
137672 139040
            "0", 
139041
            "0", 
137673 139042
            "5"
137674 139043
        ], 
137675 139044
        [
......
137685 139054
            "0", 
137686 139055
            "0", 
137687 139056
            "0", 
139057
            "0", 
137688 139058
            "0"
137689 139059
        ], 
137690 139060
        [
......
137700 139070
            "0", 
137701 139071
            "1", 
137702 139072
            "0", 
139073
            "0", 
137703 139074
            "3"
137704 139075
        ], 
137705 139076
        [
......
137715 139086
            "0", 
137716 139087
            "9", 
137717 139088
            "0", 
139089
            "0", 
137718 139090
            "56"
137719 139091
        ], 
137720 139092
        [
......
137730 139102
            "0", 
137731 139103
            "0", 
137732 139104
            "0", 
139105
            "0", 
137733 139106
            "0"
137734 139107
        ], 
137735 139108
        [
......
137745 139118
            "0", 
137746 139119
            "0", 
137747 139120
            "0", 
139121
            "0", 
137748 139122
            "1035"
137749 139123
        ], 
137750 139124
        [
......
137760 139134
            "0", 
137761 139135
            "0", 
137762 139136
            "0", 
139137
            "0", 
137763 139138
            "3"
137764 139139
        ], 
137765 139140
        [
......
137775 139150
            "0", 
137776 139151
            "1", 
137777 139152
            "0", 
139153
            "0", 
137778 139154
            "1"
137779 139155
        ], 
137780 139156
        [
......
137790 139166
            "0", 
137791 139167
            "0", 
137792 139168
            "0", 
139169
            "0", 
137793 139170
            "0"
137794 139171
        ], 
137795 139172
        [
......
137805 139182
            "0", 
137806 139183
            "0", 
137807 139184
            "0", 
139185
            "0", 
137808 139186
            "2"
137809 139187
        ], 
137810 139188
        [
......
137820 139198
            "0", 
137821 139199
            "0", 
137822 139200
            "0", 
139201
            "0", 
137823 139202
            "0"
137824 139203
        ], 
137825 139204
        [
......
137835 139214
            "0", 
137836 139215
            "0", 
137837 139216
            "0", 
139217
            "0", 
137838 139218
            "3"
137839 139219
        ], 
137840 139220
        [
......
137850 139230
            "0", 
137851 139231
            "2", 
137852 139232
            "0", 
139233
            "0", 
137853 139234
            "8"
137854 139235
        ], 
137855 139236
        [
......
137865 139246
            "0", 
137866 139247
            "0", 
137867 139248
            "0", 
139249
            "0", 
137868 139250
            "0"
137869 139251
        ], 
137870 139252
        [
......
137880 139262
            "0", 
137881 139263
            "0", 
137882 139264
            "0", 
139265
            "0", 
137883 139266
            "1"
137884 139267
        ], 
137885 139268
        [
......
137895 139278
            "0", 
137896 139279
            "0", 
137897 139280
            "0", 
139281
            "0", 
137898 139282
            "0"
137899 139283
        ], 
137900 139284
        [
......
137910 139294
            "0", 
137911 139295
            "0", 
137912 139296
            "0", 
139297
            "0", 
137913 139298
            "0"
137914 139299
        ], 
137915 139300
        [
......
137925 139310
            "0", 
137926 139311
            "0", 
137927 139312
            "0", 
139313
            "0", 
137928 139314
            "0"
137929 139315
        ], 
137930 139316
        [
......
137940 139326
            "0", 
137941 139327
            "0", 
137942 139328
            "0", 
139329
            "0", 
137943 139330
            "0"
137944 139331
        ], 
137945 139332
        [
......
137955 139342
            "0", 
137956 139343
            "0", 
137957 139344
            "0", 
139345
            "0", 
137958 139346
            "0"
137959 139347
        ], 
137960 139348
        [
......
137970 139358
            "0", 
137971 139359
            "0", 
137972 139360
            "0", 
139361
            "0", 
137973 139362
            "0"
137974 139363
        ], 
137975 139364
        [
......
137985 139374
            "0", 
137986 139375
            "0", 
137987 139376
            "0", 
139377
            "0", 
137988 139378
            "0"
137989 139379
        ], 
137990 139380
        [
......
138000 139390
            "0", 
138001 139391
            "0", 
138002 139392
            "0", 
139393
            "0", 
138003 139394
            "0"
138004 139395
        ], 
138005 139396
        [
......
138015 139406
            "0", 
138016 139407
            "0", 
138017 139408
            "0", 
139409
            "0", 
138018 139410
            "0"
138019 139411
        ], 
138020 139412
        [
......
138030 139422
            "0", 
138031 139423
            "0", 
138032 139424
            "0", 
139425
            "0", 
138033 139426
            "0"
138034 139427
        ], 
138035 139428
        [
......
138045 139438
            "0", 
138046 139439
            "0", 
138047 139440
            "0", 
139441
            "0", 
138048 139442
            "0"
138049 139443
        ], 
138050 139444
        [
......
138060 139454
            "0", 
138061 139455
            "0", 
138062 139456
            "0", 
139457
            "0", 
138063 139458
            "8"
138064 139459
        ], 
138065 139460
        [
......
138075 139470
            "0", 
138076 139471
            "1", 
138077 139472
            "0", 
139473
            "0", 
138078 139474
            "2"
138079 139475
        ], 
138080 139476
        [
......
138090 139486
            "0", 
138091 139487
            "0", 
138092 139488
            "0", 
139489
            "0", 
138093 139490
            "0"
138094 139491
        ], 
138095 139492
        [
......
138105 139502
            "0", 
138106 139503
            "2", 
138107 139504
            "0", 
139505
            "0", 
138108 139506
            "15"
138109 139507
        ], 
138110 139508
        [
......
138120 139518
            "0", 
138121 139519
            "1", 
138122 139520
            "0", 
139521
            "0", 
138123 139522
            "5"
138124 139523
        ], 
138125 139524
        [
......
138135 139534
            "0", 
138136 139535
            "0", 
138137 139536
            "0", 
139537
            "0", 
138138 139538
            "1"
138139 139539
        ], 
138140 139540
        [
......
138150 139550
            "0", 
138151 139551
            "0", 
138152 139552
            "0", 
139553
            "0", 
138153 139554
            "0"
138154 139555
        ], 
138155 139556
        [
......
138165 139566
            "0", 
138166 139567
            "0", 
138167 139568
            "0", 
139569
            "0", 
138168 139570
            "0"
138169 139571
        ], 
138170 139572
        [
......
138180 139582
            "0", 
138181 139583
            "0", 
138182 139584
            "0", 
139585
            "0", 
138183 139586
            "0"
138184 139587
        ], 
138185 139588
        [
......
138195 139598
            "0", 
138196 139599
            "0", 
138197 139600
            "0", 
139601
            "0", 
138198 139602
            "4"
138199 139603
        ], 
138200 139604
        [
......
138210 139614
            "0", 
138211 139615
            "0", 
138212 139616
            "0", 
139617
            "0", 
138213 139618
            "1"
138214 139619
        ], 
138215 139620
        [
......
138225 139630
            "0", 
138226 139631
            "0", 
138227 139632
            "0", 
139633
            "0", 
138228 139634
            "3"
138229 139635
        ], 
138230 139636
        [
......
138240 139646
            "0", 
138241 139647
            "0", 
138242 139648
            "0", 
139649
            "0", 
138243 139650
            "0"
138244 139651
        ], 
138245 139652
        [
......
138255 139662
            "0", 
138256 139663
            "1", 
138257 139664
            "0", 
139665
            "0", 
138258 139666
            "7"
138259 139667
        ], 
138260 139668
        [
......
138270 139678
            "0", 
138271 139679
            "0", 
138272 139680
            "0", 
139681
            "0", 
138273 139682
            "0"
138274 139683
        ], 
138275 139684
        [
......
138285 139694
            "0", 
138286 139695
            "0", 
138287 139696
            "0", 
139697
            "0", 
138288 139698
            "3"
138289 139699
        ], 
138290 139700
        [
......
138300 139710
            "0", 
138301 139711
            "0", 
138302 139712
            "0", 
139713
            "0", 
138303 139714
            "0"
138304 139715
        ], 
138305 139716
        [
......
138315 139726
            "0", 
138316 139727
            "0", 
138317 139728
            "0", 
139729
            "0", 
138318 139730
            "0"
138319 139731
        ], 
138320 139732
        [
......
138330 139742
            "0", 
138331 139743
            "0", 
138332 139744
            "0", 
139745
            "0", 
138333 139746
            "0"
138334 139747
        ], 
138335 139748
        [
......
138345 139758
            "0", 
138346 139759
            "0", 
138347 139760
            "0", 
139761
            "0", 
138348 139762
            "0"
138349 139763
        ], 
138350 139764
        [
......
138360 139774
            "0", 
138361 139775
            "0", 
138362 139776
            "0", 
139777
            "0", 
138363 139778
            "1"
138364 139779
        ], 
138365 139780
        [
......
138375 139790
            "0", 
138376 139791
            "0", 
138377 139792
            "0", 
139793
            "0", 
138378 139794
            "5"
138379 139795
        ], 
139796
        [
139797
            "Aucun(e)", 
139798
            "0", 
139799
            "0", 
139800
            "0", 
139801
            "0", 
139802
            "0", 
139803
            "0", 
139804
            "0", 
139805
            "0", 
139806
            "0", 
139807
            "0", 
139808
            "0", 
139809
            "0", 
139810
            "0"
139811
        ], 
138380 139812
        [
138381 139813
            "Total", 
138382 139814
            "0", 
......
138390 139822
            "0", 
138391 139823
            "24", 
138392 139824
            "0", 
139825
            "0", 
138393 139826
            "1215"
138394 139827
        ], 
138395 139828
        [
......
138405 139838
            "Formulaire Elu", 
138406 139839
            "Formulaire Portail citoyen", 
138407 139840
            "Observation terrain", 
139841
            "Aucun(e)", 
138408 139842
            "Total"
138409 139843
        ], 
138410 139844
        [
......
138420 139854
            "0", 
138421 139855
            "0", 
138422 139856
            "0", 
139857
            "0", 
138423 139858
            "0"
138424 139859
        ], 
138425 139860
        [
......
138435 139870
            "0", 
138436 139871
            "0", 
138437 139872
            "0", 
139873
            "0", 
138438 139874
            "11"
138439 139875
        ], 
138440 139876
        [
......
138450 139886
            "0", 
138451 139887
            "0", 
138452 139888
            "0", 
139889
            "0", 
138453 139890
            "0"
138454 139891
        ], 
138455 139892
        [
......
138465 139902
            "0", 
138466 139903
            "0", 
138467 139904
            "0", 
139905
            "0", 
138468 139906
            "3"
138469 139907
        ], 
138470 139908
        [
......
138480 139918
            "0", 
138481 139919
            "0", 
138482 139920
            "0", 
139921
            "0", 
138483 139922
            "4"
138484 139923
        ], 
138485 139924
        [
......
138495 139934
            "0", 
138496 139935
            "0", 
138497 139936
            "0", 
139937
            "0", 
138498 139938
            "17"
138499 139939
        ], 
138500 139940
        [
......
138510 139950
            "0", 
138511 139951
            "0", 
138512 139952
            "0", 
139953
            "0", 
138513 139954
            "28"
138514 139955
        ], 
138515 139956
        [
......
138525 139966
            "0", 
138526 139967
            "0", 
138527 139968
            "0", 
139969
            "0", 
138528 139970
            "21"
138529 139971
        ], 
138530 139972
        [
......
138540 139982
            "0", 
138541 139983
            "0", 
138542 139984
            "0", 
139985
            "0", 
138543 139986
            "0"
138544 139987
        ], 
138545 139988
        [
......
138555 139998
            "0", 
138556 139999
            "0", 
138557 140000
            "0", 
140001
            "0", 
138558 140002
            "14"
138559 140003
        ], 
138560 140004
        [
......
138570 140014
            "0", 
138571 140015
            "0", 
138572 140016
            "0", 
140017
            "0", 
138573 140018
            "0"
138574 140019
        ], 
138575 140020
        [
......
138585 140030
            "0", 
138586 140031
            "0", 
138587 140032
            "0", 
140033
            "0", 
138588 140034
            "0"
138589 140035
        ], 
138590 140036
        [
......
138600 140046
            "0", 
138601 140047
            "1", 
138602 140048
            "0", 
140049
            "0", 
138603 140050
            "110"
138604 140051
        ], 
138605 140052
        [
......
138615 140062
            "0", 
138616 140063
            "0", 
138617 140064
            "0", 
140065
            "0", 
138618 140066
            "25"
138619 140067
        ], 
138620 140068
        [
......
138630 140078
            "0", 
138631 140079
            "1", 
138632 140080
            "0", 
140081
            "0", 
138633 140082
            "79"
138634 140083
        ], 
138635 140084
        [
......
138645 140094
            "0", 
138646 140095
            "0", 
138647 140096
            "0", 
140097
            "0", 
138648 140098
            "8"
138649 140099
        ], 
138650 140100
        [
......
138660 140110
            "0", 
138661 140111
            "0", 
138662 140112
            "0", 
140113
            "0", 
138663 140114
            "22"
138664 140115
        ], 
138665 140116
        [
......
138675 140126
            "0", 
138676 140127
            "10", 
138677 140128
            "0", 
140129
            "0", 
138678 140130
            "295"
138679 140131
        ], 
138680 140132
        [
......
138690 140142
            "0", 
138691 140143
            "0", 
138692 140144
            "0", 
140145
            "0", 
138693 140146
            "7"
138694 140147
        ], 
138695 140148
        [
......
138705 140158
            "0", 
138706 140159
            "0", 
138707 140160
            "0", 
140161
            "0", 
138708 140162
            "233"
138709 140163
        ], 
138710 140164
        [
......
138720 140174
            "0", 
138721 140175
            "1", 
138722 140176
            "0", 
140177
            "0", 
138723 140178
            "19"
138724 140179
        ], 
138725 140180
        [
......
138735 140190
            "0", 
138736 140191
            "1", 
138737 140192
            "0", 
140193
            "0", 
138738 140194
            "22"
138739 140195
        ], 
138740 140196
        [
......
138750 140206
            "0", 
138751 140207
            "0", 
138752 140208
            "0", 
140209
            "0", 
138753 140210
            "2"
138754 140211
        ], 
138755 140212
        [
......
138765 140222
            "0", 
138766 140223
            "0", 
138767 140224
            "0", 
140225
            "0", 
138768 140226
            "6"
138769 140227
        ], 
138770 140228
        [
......
138780 140238
            "0", 
138781 140239
            "0", 
138782 140240
            "0", 
140241
            "0", 
138783 140242
            "10"
138784 140243
        ], 
138785 140244
        [
......
138795 140254
            "0", 
138796 140255
            "0", 
138797 140256
            "0", 
140257
            "0", 
138798 140258
            "7"
138799 140259
        ], 
138800 140260
        [
......
138810 140270
            "0", 
138811 140271
            "0", 
138812 140272
            "0", 
140273
            "0", 
138813 140274
            "67"
138814 140275
        ], 
138815 140276
        [
......
138825 140286
            "0", 
138826 140287
            "0", 
138827 140288
            "0", 
140289
            "0", 
138828 140290
            "0"
138829 140291
        ], 
138830 140292
        [
......
138840 140302
            "0", 
138841 140303
            "0", 
138842 140304
            "0", 
140305
            "0", 
138843 140306
            "1"
138844 140307
        ], 
138845 140308
        [
......
138855 140318
            "0", 
138856 140319
            "0", 
138857 140320
            "0", 
140321
            "0", 
138858 140322
            "0"
138859 140323
        ], 
138860 140324
        [
......
138870 140334
            "0", 
138871 140335
            "0", 
138872 140336
            "0", 
140337
            "0", 
138873 140338
            "6"
138874 140339
        ], 
138875 140340
        [
......
138885 140350
            "0", 
138886 140351
            "0", 
138887 140352
            "0", 
140353
            "0", 
138888 140354
            "5"
138889 140355
        ], 
138890 140356
        [
......
138900 140366
            "0", 
138901 140367
            "0", 
138902 140368
            "0", 
140369
            "0", 
138903 140370
            "0"
138904 140371
        ], 
138905 140372
        [
......
138915 140382
            "0", 
138916 140383
            "0", 
138917 140384
            "0", 
140385
            "0", 
138918 140386
            "10"
138919 140387
        ], 
138920 140388
        [
......
138930 140398
            "0", 
138931 140399
            "0", 
138932 140400
            "0", 
140401
            "0", 
138933 140402
            "7"
138934 140403
        ], 
138935 140404
        [
......
138945 140414
            "0", 
138946 140415
            "0", 
138947 140416
            "0", 
140417
            "0", 
138948 140418
            "0"
138949 140419
        ], 
138950 140420
        [
......
138960 140430
            "0", 
138961 140431
            "0", 
138962 140432
            "0", 
140433
            "0", 
138963 140434
            "1"
138964 140435
        ], 
138965 140436
        [
......
138975 140446
            "0", 
138976 140447
            "0", 
138977 140448
            "0", 
140449
            "0", 
138978 140450
            "1"
138979 140451
        ], 
138980 140452
        [
......
138990 140462
            "0", 
138991 140463
            "0", 
138992 140464
            "0", 
140465
            "0", 
138993 140466
            "0"
138994 140467
        ], 
138995 140468
        [
......
139005 140478
            "0", 
139006 140479
            "0", 
139007 140480
            "0", 
140481
            "0", 
139008 140482
            "2"
139009 140483
        ], 
139010 140484
        [
......
139020 140494
            "0", 
139021 140495
            "0", 
139022 140496
            "0", 
140497
            "0", 
139023 140498
            "73"
139024 140499
        ], 
139025 140500
        [
......
139035 140510
            "0", 
139036 140511
            "0", 
139037 140512
            "0", 
140513
            "0", 
139038 140514
            "7"
139039 140515
        ], 
139040 140516
        [
......
139050 140526
            "0", 
139051 140527
            "0", 
139052 140528
            "0", 
140529
            "0", 
139053 140530
            "0"
139054 140531
        ], 
139055 140532
        [
......
139065 140542
            "0", 
139066 140543
            "1", 
139067 140544
            "0", 
140545
            "0", 
139068 140546
            "58"
139069 140547
        ], 
139070 140548
        [
......
139080 140558
            "0", 
139081 140559
            "2", 
139082 140560
            "0", 
140561
            "0", 
139083 140562
            "25"
139084 140563
        ], 
139085 140564
        [
......
139095 140574
            "0", 
139096 140575
            "0", 
139097 140576
            "0", 
140577
            "0", 
139098 140578
            "5"
139099 140579
        ], 
139100 140580
        [
......
139110 140590
            "0", 
139111 140591
            "0", 
139112 140592
            "0", 
140593
            "0", 
139113 140594
            "0"
139114 140595
        ], 
139115 140596
        [
......
139125 140606
            "0", 
139126 140607
            "0", 
139127 140608
            "0", 
140609
            "0", 
139128 140610
            "4"
139129 140611
        ], 
139130 140612
        [
......
139140 140622
            "0", 
139141 140623
            "0", 
139142 140624
            "0", 
140625
            "0", 
139143 140626
            "1"
139144 140627
        ], 
139145 140628
        [
......
139155 140638
            "0", 
139156 140639
            "1", 
139157 140640
            "0", 
140641
            "0", 
139158 140642
            "38"
139159 140643
        ], 
139160 140644
        [
......
139170 140654
            "0", 
139171 140655
            "1", 
139172 140656
            "0", 
140657
            "0", 
139173 140658
            "5"
139174 140659
        ], 
139175 140660
        [
......
139185 140670
            "0", 
139186 140671
            "0", 
139187 140672
            "0", 
140673
            "0", 
139188 140674
            "26"
139189 140675
        ], 
139190 140676
        [
......
139200 140686
            "0", 
139201 140687
            "0", 
139202 140688
            "0", 
140689
            "0", 
139203 140690
            "0"
139204 140691
        ], 
139205 140692
        [
......
139215 140702
            "0", 
139216 140703
            "1", 
139217 140704
            "0", 
140705
            "0", 
139218 140706
            "48"
139219 140707
        ], 
139220 140708
        [
......
139230 140718
            "0", 
139231 140719
            "0", 
139232 140720
            "0", 
140721
            "0", 
139233 140722
            "0"
139234 140723
        ], 
139235 140724
        [
......
139245 140734
            "0", 
139246 140735
            "1", 
139247 140736
            "0", 
140737
            "0", 
139248 140738
            "14"
139249 140739
        ], 
139250 140740
        [
......
139260 140750
            "0", 
139261 140751
            "0", 
139262 140752
            "0", 
140753
            "0", 
139263 140754
            "17"
139264 140755
        ], 
139265 140756
        [
......
139275 140766
            "0", 
139276 140767
            "0", 
139277 140768
            "0", 
140769
            "0", 
139278 140770
            "14"
139279 140771
        ], 
139280 140772
        [
......
139290 140782
            "0", 
139291 140783
            "0", 
139292 140784
            "0", 
140785
            "0", 
139293 140786
            "1"
139294 140787
        ], 
139295 140788
        [
......
139305 140798
            "0", 
139306 140799
            "0", 
139307 140800
            "0", 
140801
            "0", 
139308 140802
            "2"
139309 140803
        ], 
139310 140804
        [
......
139320 140814
            "0", 
139321 140815
            "2", 
139322 140816
            "0", 
140817
            "0", 
139323 140818
            "28"
139324 140819
        ], 
139325 140820
        [
......
139335 140830
            "0", 
139336 140831
            "0", 
139337 140832
            "0", 
140833
            "0", 
139338 140834
            "29"
139339 140835
        ], 
140836
        [
140837
            "Aucun(e)", 
140838
            "0", 
140839
            "0", 
140840
            "0", 
140841
            "0", 
140842
            "0", 
140843
            "0", 
140844
            "0", 
140845
            "0", 
140846
            "0", 
140847
            "0", 
140848
            "0", 
140849
            "217", 
140850
            "217"
140851
        ], 
139340 140852
        [
139341 140853
            "Total", 
139342 140854
            "0", 
......
139350 140862
            "0", 
139351 140863
            "23", 
139352 140864
            "0", 
139353
            "1438"
140865
            "217", 
140866
            "1655"
139354 140867
        ], 
139355 140868
        [
139356 140869
            "", 
......
139365 140878
            "Formulaire Elu", 
139366 140879
            "Formulaire Portail citoyen", 
139367 140880
            "Observation terrain", 
140881
            "Aucun(e)", 
139368 140882
            "Total"
139369 140883
        ], 
139370 140884
        [
......
139380 140894
            "0", 
139381 140895
            "0", 
139382 140896
            "0", 
140897
            "0", 
139383 140898
            "0"
139384 140899
        ], 
139385 140900
        [
......
139395 140910
            "0", 
139396 140911
            "0", 
139397 140912
            "0", 
140913
            "0", 
139398 140914
            "1"
139399 140915
        ], 
139400 140916
        [
......
139410 140926
            "0", 
139411 140927
            "0", 
139412 140928
            "0", 
140929
            "0", 
139413 140930
            "0"
139414 140931
        ], 
139415 140932
        [
......
139425 140942
            "0", 
139426 140943
            "1", 
139427 140944
            "0", 
140945
            "0", 
139428 140946
            "11"
139429 140947
        ], 
139430 140948
        [
......
139440 140958
            "0", 
139441 140959
            "0", 
139442 140960
            "0", 
140961
            "0", 
139443 140962
            "2"
139444 140963
        ], 
139445 140964
        [
......
139455 140974
            "0", 
139456 140975
            "0", 
139457 140976
            "0", 
140977
            "0", 
139458 140978
            "21"
139459 140979
        ], 
139460 140980
        [
......
139470 140990
            "0", 
139471 140991
            "1", 
139472 140992
            "0", 
140993
            "0", 
139473 140994
            "70"
139474 140995
        ], 
139475 140996
        [
......
139485 141006
            "0", 
139486 141007
            "1", 
139487 141008
            "0", 
141009
            "0", 
139488 141010
            "38"
139489 141011
        ], 
139490 141012
        [
......
139500 141022
            "0", 
139501 141023
            "0", 
139502 141024
            "0", 
141025
            "0", 
139503 141026
            "0"
139504 141027
        ], 
139505 141028
        [
......
139515 141038
            "0", 
139516 141039
            "0", 
139517 141040
            "0", 
141041
            "0", 
139518 141042
            "21"
139519 141043
        ], 
139520 141044
        [
......
139530 141054
            "0", 
139531 141055
            "0", 
139532 141056
            "0", 
141057
            "0", 
139533 141058
            "0"
139534 141059
        ], 
139535 141060
        [
......
139545 141070
            "0", 
139546 141071
            "0", 
139547 141072
            "0", 
141073
            "0", 
139548 141074
            "0"
139549 141075
        ], 
139550 141076
        [
......
139560 141086
            "0", 
139561 141087
            "7", 
139562 141088
            "0", 
141089
            "0", 
139563 141090
            "185"
139564 141091
        ], 
139565 141092
        [
......
139575 141102
            "0", 
139576 141103
            "1", 
139577 141104
            "0", 
141105
            "0", 
139578 141106
            "46"
139579 141107
        ], 
139580 141108
        [
......
139590 141118
            "0", 
139591 141119
            "0", 
139592 141120
            "0", 
141121
            "0", 
139593 141122
            "103"
139594 141123
        ], 
139595 141124
        [
......
139605 141134
            "0", 
139606 141135
            "0", 
139607 141136
            "0", 
141137
            "0", 
139608 141138
            "11"
139609 141139
        ], 
139610 141140
        [
......
139620 141150
            "0", 
139621 141151
            "1", 
139622 141152
            "0", 
141153
            "0", 
139623 141154
            "42"
139624 141155
        ], 
139625 141156
        [
......
139635 141166
            "0", 
139636 141167
            "5", 
139637 141168
            "0", 
141169
            "0", 
139638 141170
            "442"
139639 141171
        ], 
139640 141172
        [
......
139650 141182
            "0", 
139651 141183
            "0", 
139652 141184
            "0", 
141185
            "0", 
139653 141186
            "6"
139654 141187
        ], 
139655 141188
        [
......
139665 141198
            "0", 
139666 141199
            "0", 
139667 141200
            "0", 
141201
            "0", 
139668 141202
            "20"
139669 141203
        ], 
139670 141204
        [
......
139680 141214
            "0", 
139681 141215
            "0", 
139682 141216
            "0", 
141217
            "0", 
139683 141218
            "22"
139684 141219
        ], 
139685 141220
        [
......
139695 141230
            "0", 
139696 141231
            "0", 
139697 141232
            "0", 
141233
            "0", 
139698 141234
            "37"
139699 141235
        ], 
139700 141236
        [
......
139710 141246
            "0", 
139711 141247
            "0", 
139712 141248
            "0", 
141249
            "0", 
139713 141250
            "0"
139714 141251
        ], 
139715 141252
        [
......
139725 141262
            "0", 
139726 141263
            "0", 
139727 141264
            "0", 
141265
            "0", 
139728 141266
            "3"
139729 141267
        ], 
139730 141268
        [
......
139740 141278
            "0", 
139741 141279
            "0", 
139742 141280
            "0", 
141281
            "0", 
139743 141282
            "32"
139744 141283
        ], 
139745 141284
        [
......
139755 141294
            "0", 
139756 141295
            "0", 
139757 141296
            "0", 
141297
            "0", 
139758 141298
            "8"
139759 141299
        ], 
139760 141300
        [
......
139770 141310
            "0", 
139771 141311
            "0", 
139772 141312
            "0", 
141313
            "0", 
139773 141314
            "105"
139774 141315
        ], 
139775 141316
        [
......
139785 141326
            "0", 
139786 141327
            "0", 
139787 141328
            "0", 
141329
            "0", 
139788 141330
            "1"
139789 141331
        ], 
139790 141332
        [
......
139800 141342
            "0", 
139801 141343
            "0", 
139802 141344
            "0", 
141345
            "0", 
139803 141346
            "4"
139804 141347
        ], 
139805 141348
        [
......
139815 141358
            "0", 
139816 141359
            "0", 
139817 141360
            "0", 
141361
            "0", 
139818 141362
            "1"
139819 141363
        ], 
139820 141364
        [
......
139830 141374
            "0", 
139831 141375
            "0", 
139832 141376
            "0", 
141377
            "0", 
139833 141378
            "0"
139834 141379
        ], 
139835 141380
        [
......
139845 141390
            "0", 
139846 141391
            "0", 
139847 141392
            "0", 
141393
            "0", 
139848 141394
            "3"
139849 141395
        ], 
139850 141396
        [
......
139860 141406
            "0", 
139861 141407
            "1", 
139862 141408
            "0", 
141409
            "0", 
139863 141410
            "4"
139864 141411
        ], 
139865 141412
        [
......
139875 141422
            "0", 
139876 141423
            "0", 
139877 141424
            "0", 
141425
            "0", 
139878 141426
            "9"
139879 141427
        ], 
139880 141428
        [
......
139890 141438
            "0", 
139891 141439
            "0", 
139892 141440
            "0", 
141441
            "0", 
139893 141442
            "9"
139894 141443
        ], 
139895 141444
        [
......
139905 141454
            "0", 
139906 141455
            "0", 
139907 141456
            "0", 
141457
            "0", 
139908 141458
            "0"
139909 141459
        ], 
139910 141460
        [
......
139920 141470
            "0", 
139921 141471
            "0", 
139922 141472
            "0", 
141473
            "0", 
139923 141474
            "1"
139924 141475
        ], 
139925 141476
        [
......
139935 141486
            "0", 
139936 141487
            "0", 
139937 141488
            "0", 
141489
            "0", 
139938 141490
            "1"
139939 141491
        ], 
139940 141492
        [
......
139950 141502
            "0", 
139951 141503
            "0", 
139952 141504
            "0", 
141505
            "0", 
139953 141506
            "0"
139954 141507
        ], 
139955 141508
        [
......
139965 141518
            "0", 
139966 141519
            "0", 
139967 141520
            "0", 
141521
            "0", 
139968 141522
            "0"
139969 141523
        ], 
139970 141524
        [
......
139980 141534
            "0", 
139981 141535
            "4", 
139982 141536
            "0", 
141537
            "0", 
139983 141538
            "93"
139984 141539
        ], 
139985 141540
        [
......
139995 141550
            "0", 
139996 141551
            "0", 
139997 141552
            "0", 
141553
            "0", 
139998 141554
            "7"
139999 141555
        ], 
140000 141556
        [
......
140010 141566
            "0", 
140011 141567
            "0", 
140012 141568
            "0", 
141569
            "0", 
140013 141570
            "0"
140014 141571
        ], 
140015 141572
        [
......
140025 141582
            "0", 
140026 141583
            "1", 
140027 141584
            "0", 
141585
            "0", 
140028 141586
            "119"
140029 141587
        ], 
140030 141588
        [
......
140040 141598
            "0", 
140041 141599
            "0", 
140042 141600
            "0", 
141601
            "0", 
140043 141602
            "13"
140044 141603
        ], 
140045 141604
        [
......
140055 141614
            "0", 
140056 141615
            "0", 
140057 141616
            "0", 
141617
            "0", 
140058 141618
            "13"
140059 141619
        ], 
140060 141620
        [
......
140070 141630
            "0", 
140071 141631
            "0", 
140072 141632
            "0", 
141633
            "0", 
140073 141634
            "0"
140074 141635
        ], 
140075 141636
        [
......
140085 141646
            "0", 
140086 141647
            "0", 
140087 141648
            "0", 
141649
            "0", 
140088 141650
            "0"
140089 141651
        ], 
140090 141652
        [
......
140100 141662
            "0", 
140101 141663
            "0", 
140102 141664
            "0", 
141665
            "0", 
140103 141666
            "0"
140104 141667
        ], 
140105 141668
        [
......
140115 141678
            "0", 
140116 141679
            "1", 
140117 141680
            "0", 
141681
            "0", 
140118 141682
            "61"
140119 141683
        ], 
140120 141684
        [
......
140130 141694
            "0", 
140131 141695
            "1", 
140132 141696
            "0", 
141697
            "0", 
140133 141698
            "6"
140134 141699
        ], 
140135 141700
        [
......
140145 141710
            "0", 
140146 141711
            "0", 
140147 141712
            "0", 
141713
            "0", 
140148 141714
            "33"
140149 141715
        ], 
140150 141716
        [
......
140160 141726
            "0", 
140161 141727
            "0", 
140162 141728
            "0", 
141729
            "0", 
140163 141730
            "0"
140164 141731
        ], 
140165 141732
        [
......
140175 141742
            "0", 
140176 141743
            "0", 
140177 141744
            "0", 
141745
            "0", 
140178 141746
            "57"
140179 141747
        ], 
140180 141748
        [
......
140190 141758
            "0", 
140191 141759
            "0", 
140192 141760
            "0", 
141761
            "0", 
140193 141762
            "0"
140194 141763
        ], 
140195 141764
        [
......
140205 141774
            "0", 
140206 141775
            "0", 
140207 141776
            "0", 
141777
            "0", 
140208 141778
            "18"
140209 141779
        ], 
140210 141780
        [
......
140220 141790
            "0", 
140221 141791
            "0", 
140222 141792
            "0", 
141793
            "0", 
140223 141794
            "22"
140224 141795
        ], 
140225 141796
        [
......
140235 141806
            "0", 
140236 141807
            "0", 
140237 141808
            "0", 
141809
            "0", 
140238 141810
            "47"
140239 141811
        ], 
140240 141812
        [
......
140250 141822
            "0", 
140251 141823
            "0", 
140252 141824
            "0", 
141825
            "0", 
140253 141826
            "0"
140254 141827
        ], 
140255 141828
        [
......
140265 141838
            "0", 
140266 141839
            "0", 
140267 141840
            "0", 
141841
            "0", 
140268 141842
            "6"
140269 141843
        ], 
140270 141844
        [
......
140280 141854
            "0", 
140281 141855
            "2", 
140282 141856
            "0", 
141857
            "0", 
140283 141858
            "34"
140284 141859
        ], 
140285 141860
        [
......
140295 141870
            "0", 
140296 141871
            "2", 
140297 141872
            "0", 
141873
            "0", 
140298 141874
            "26"
140299 141875
        ], 
141876
        [
141877
            "Aucun(e)", 
141878
            "0", 
141879
            "0", 
141880
            "0", 
141881
            "0", 
141882
            "0", 
141883
            "0", 
141884
            "0", 
141885
            "0", 
141886
            "0", 
141887
            "0", 
141888
            "0", 
141889
            "425", 
141890
            "425"
141891
        ], 
140300 141892
        [
140301 141893
            "Total", 
140302 141894
            "0", 
......
140310 141902
            "0", 
140311 141903
            "29", 
140312 141904
            "0", 
140313
            "1814"
141905
            "425", 
141906
            "2239"
140314 141907
        ], 
140315 141908
        [
140316 141909
            "", 
......
140325 141918
            "Formulaire Elu", 
140326 141919
            "Formulaire Portail citoyen", 
140327 141920
            "Observation terrain", 
141921
            "Aucun(e)", 
140328 141922
            "Total"
140329 141923
        ], 
140330 141924
        [
......
140340 141934
            "0", 
140341 141935
            "0", 
140342 141936
            "0", 
141937
            "0", 
140343 141938
            "0"
140344 141939
        ], 
140345 141940
        [
......
140355 141950
            "0", 
140356 141951
            "0", 
140357 141952
            "0", 
141953
            "0", 
140358 141954
            "3"
140359 141955
        ], 
140360 141956
        [
......
140370 141966
            "0", 
140371 141967
            "0", 
140372 141968
            "0", 
141969
            "0", 
140373 141970
            "0"
140374 141971
        ], 
140375 141972
        [
......
140385 141982
            "0", 
140386 141983
            "0", 
140387 141984
            "0", 
141985
            "0", 
140388 141986
            "9"
140389 141987
        ], 
140390 141988
        [
......
140400 141998
            "0", 
140401 141999
            "0", 
140402 142000
            "0", 
142001
            "0", 
140403 142002
            "4"
140404 142003
        ], 
140405 142004
        [
......
140415 142014
            "0", 
140416 142015
            "1", 
140417 142016
            "0", 
142017
            "0", 
140418 142018
            "16"
140419 142019
        ], 
140420 142020
        [
......
140430 142030
            "0", 
140431 142031
            "1", 
140432 142032
            "0", 
142033
            "0", 
140433 142034
            "42"
140434 142035
        ], 
140435 142036
        [
......
140445 142046
            "0", 
140446 142047
            "0", 
140447 142048
            "0", 
142049
            "0", 
140448 142050
            "14"
140449 142051
        ], 
140450 142052
        [
......
140460 142062
            "0", 
140461 142063
            "0", 
140462 142064
            "0", 
142065
            "0", 
140463 142066
            "0"
140464 142067
        ], 
140465 142068
        [
......
140475 142078
            "0", 
140476 142079
            "1", 
140477 142080
            "0", 
142081
            "0", 
140478 142082
            "24"
140479 142083
        ], 
140480 142084
        [
......
140490 142094
            "0", 
140491 142095
            "0", 
140492 142096
            "0", 
142097
            "0", 
140493 142098
            "0"
140494 142099
        ], 
140495 142100
        [
......
140505 142110
            "0", 
140506 142111
            "0", 
140507 142112
            "0", 
142113
            "0", 
140508 142114
            "0"
140509 142115
        ], 
140510 142116
        [
......
140520 142126
            "0", 
140521 142127
            "9", 
140522 142128
            "0", 
142129
            "0", 
140523 142130
            "153"
140524 142131
        ], 
140525 142132
        [
......
140535 142142
            "0", 
140536 142143
            "2", 
140537 142144
            "0", 
142145
            "0", 
140538 142146
            "50"
140539 142147
        ], 
140540 142148
        [
......
140550 142158
            "0", 
140551 142159
            "0", 
140552 142160
            "0", 
142161
            "0", 
140553 142162
            "78"
140554 142163
        ], 
140555 142164
        [
......
140565 142174
            "0", 
140566 142175
            "0", 
140567 142176
            "0", 
142177
            "0", 
140568 142178
            "12"
140569 142179
        ], 
140570 142180
        [
......
140580 142190
            "0", 
140581 142191
            "0", 
140582 142192
            "0", 
142193
            "0", 
140583 142194
            "25"
140584 142195
        ], 
140585 142196
        [
......
140595 142206
            "0", 
140596 142207
            "16", 
140597 142208
            "0", 
142209
            "0", 
140598 142210
            "443"
140599 142211
        ], 
140600 142212
        [
......
140610 142222
            "0", 
140611 142223
            "0", 
140612 142224
            "0", 
142225
            "0", 
140613 142226
            "14"
140614 142227
        ], 
140615 142228
        [
......
140625 142238
            "0", 
140626 142239
            "0", 
140627 142240
            "0", 
142241
            "0", 
140628 142242
            "22"
140629 142243
        ], 
140630 142244
        [
......
140640 142254
            "0", 
140641 142255
            "0", 
140642 142256
            "0", 
142257
            "0", 
140643 142258
            "13"
140644 142259
        ], 
140645 142260
        [
......
140655 142270
            "0", 
140656 142271
            "0", 
140657 142272
            "0", 
142273
            "0", 
140658 142274
            "31"
140659 142275
        ], 
140660 142276
        [
......
140670 142286
            "0", 
140671 142287
            "0", 
140672 142288
            "0", 
142289
            "0", 
140673 142290
            "1"
140674 142291
        ], 
140675 142292
        [
......
140685 142302
            "0", 
140686 142303
            "2", 
140687 142304
            "0", 
142305
            "0", 
140688 142306
            "8"
140689 142307
        ], 
140690 142308
        [
......
140700 142318
            "0", 
140701 142319
            "0", 
140702 142320
            "0", 
142321
            "0", 
140703 142322
            "22"
140704 142323
        ], 
140705 142324
        [
......
140715 142334
            "0", 
140716 142335
            "0", 
140717 142336
            "0", 
142337
            "0", 
140718 142338
            "3"
140719 142339
        ], 
140720 142340
        [
......
140730 142350
            "0", 
140731 142351
            "2", 
140732 142352
            "0", 
142353
            "0", 
140733 142354
            "68"
140734 142355
        ], 
140735 142356
        [
......
140745 142366
            "0", 
140746 142367
            "0", 
140747 142368
            "0", 
142369
            "0", 
140748 142370
            "2"
140749 142371
        ], 
140750 142372
        [
......
140760 142382
            "0", 
140761 142383
            "0", 
140762 142384
            "0", 
142385
            "0", 
140763 142386
            "2"
140764 142387
        ], 
140765 142388
        [
......
140775 142398
            "0", 
140776 142399
            "0", 
140777 142400
            "0", 
142401
            "0", 
140778 142402
            "1"
140779 142403
        ], 
140780 142404
        [
......
140790 142414
            "0", 
140791 142415
            "0", 
140792 142416
            "0", 
142417
            "0", 
140793 142418
            "1"
140794 142419
        ], 
140795 142420
        [
......
140805 142430
            "0", 
140806 142431
            "0", 
140807 142432
            "0", 
142433
            "0", 
140808 142434
            "4"
140809 142435
        ], 
140810 142436
        [
......
140820 142446
            "0", 
140821 142447
            "0", 
140822 142448
            "0", 
142449
            "0", 
140823 142450
            "3"
140824 142451
        ], 
140825 142452
        [
......
140835 142462
            "0", 
140836 142463
            "0", 
140837 142464
            "0", 
142465
            "0", 
140838 142466
            "4"
140839 142467
        ], 
140840 142468
        [
......
140850 142478
            "0", 
140851 142479
            "0", 
140852 142480
            "0", 
142481
            "0", 
140853 142482
            "11"
140854 142483
        ], 
140855 142484
        [
......
140865 142494
            "0", 
140866 142495
            "0", 
140867 142496
            "0", 
142497
            "0", 
140868 142498
            "0"
140869 142499
        ], 
140870 142500
        [
......
140880 142510
            "0", 
140881 142511
            "0", 
140882 142512
            "0", 
142513
            "0", 
140883 142514
            "0"
140884 142515
        ], 
140885 142516
        [
......
140895 142526
            "0", 
140896 142527
            "0", 
140897 142528
            "0", 
142529
            "0", 
140898 142530
            "1"
140899 142531
        ], 
140900 142532
        [
......
140910 142542
            "0", 
140911 142543
            "0", 
140912 142544
            "0", 
142545
            "0", 
140913 142546
            "0"
140914 142547
        ], 
140915 142548
        [
......
140925 142558
            "0", 
140926 142559
            "0", 
140927 142560
            "0", 
142561
            "0", 
140928 142562
            "1"
140929 142563
        ], 
140930 142564
        [
......
140940 142574
            "0", 
140941 142575
            "3", 
140942 142576
            "0", 
142577
            "0", 
140943 142578
            "73"
140944 142579
        ], 
140945 142580
        [
......
140955 142590
            "0", 
140956 142591
            "0", 
140957 142592
            "0", 
142593
            "0", 
140958 142594
            "2"
140959 142595
        ], 
140960 142596
        [
......
140970 142606
            "0", 
140971 142607
            "0", 
140972 142608
            "0", 
142609
            "0", 
140973 142610
            "0"
140974 142611
        ], 
140975 142612
        [
......
140985 142622
            "0", 
140986 142623
            "0", 
140987 142624
            "0", 
142625
            "0", 
140988 142626
            "65"
140989 142627
        ], 
140990 142628
        [
......
141000 142638
            "0", 
141001 142639
            "1", 
141002 142640
            "0", 
142641
            "0", 
141003 142642
            "22"
141004 142643
        ], 
141005 142644
        [
......
141015 142654
            "0", 
141016 142655
            "0", 
141017 142656
            "0", 
142657
            "0", 
141018 142658
            "8"
141019 142659
        ], 
141020 142660
        [
......
141030 142670
            "0", 
141031 142671
            "0", 
141032 142672
            "0", 
142673
            "0", 
141033 142674
            "0"
141034 142675
        ], 
141035 142676
        [
......
141045 142686
            "0", 
141046 142687
            "0", 
141047 142688
            "0", 
142689
            "0", 
141048 142690
            "0"
141049 142691
        ], 
141050 142692
        [
......
141060 142702
            "0", 
141061 142703
            "0", 
141062 142704
            "0", 
142705
            "0", 
141063 142706
            "1"
141064 142707
        ], 
141065 142708
        [
......
141075 142718
            "0", 
141076 142719
            "0", 
141077 142720
            "0", 
142721
            "0", 
141078 142722
            "40"
141079 142723
        ], 
141080 142724
        [
......
141090 142734
            "0", 
141091 142735
            "0", 
141092 142736
            "0", 
142737
            "0", 
141093 142738
            "3"
141094 142739
        ], 
141095 142740
        [
......
141105 142750
            "0", 
141106 142751
            "0", 
141107 142752
            "0", 
142753
            "0", 
141108 142754
            "24"
141109 142755
        ], 
141110 142756
        [
......
141120 142766
            "0", 
141121 142767
            "0", 
141122 142768
            "0", 
142769
            "0", 
141123 142770
            "0"
141124 142771
        ], 
141125 142772
        [
......
141135 142782
            "0", 
141136 142783
            "2", 
141137 142784
            "0", 
142785
            "0", 
141138 142786
            "33"
141139 142787
        ], 
141140 142788
        [
......
141150 142798
            "0", 
141151 142799
            "0", 
141152 142800
            "0", 
142801
            "0", 
141153 142802
            "0"
141154 142803
        ], 
141155 142804
        [
......
141165 142814
            "0", 
141166 142815
            "1", 
141167 142816
            "0", 
142817
            "0", 
141168 142818
            "16"
141169 142819
        ], 
141170 142820
        [
......
141180 142830
            "0", 
141181 142831
            "0", 
141182 142832
            "0", 
142833
            "0", 
141183 142834
            "2"
141184 142835
        ], 
141185 142836
        [
......
141195 142846
            "0", 
141196 142847
            "0", 
141197 142848
            "0", 
142849
            "0", 
141198 142850
            "20"
141199 142851
        ], 
141200 142852
        [
......
141210 142862
            "0", 
141211 142863
            "0", 
141212 142864
            "0", 
142865
            "0", 
141213 142866
            "1"
141214 142867
        ], 
141215 142868
        [
......
141225 142878
            "0", 
141226 142879
            "0", 
141227 142880
            "0", 
142881
            "0", 
141228 142882
            "16"
141229 142883
        ], 
141230 142884
        [
......
141240 142894
            "0", 
141241 142895
            "2", 
141242 142896
            "0", 
142897
            "0", 
141243 142898
            "32"
141244 142899
        ], 
141245 142900
        [
......
141255 142910
            "0", 
141256 142911
            "2", 
141257 142912
            "0", 
142913
            "0", 
141258 142914
            "37"
141259 142915
        ], 
142916
        [
142917
            "Aucun(e)", 
142918
            "0", 
142919
            "0", 
142920
            "0", 
142921
            "0", 
142922
            "0", 
142923
            "0", 
142924
            "0", 
142925
            "0", 
142926
            "0", 
142927
            "0", 
142928
            "0", 
142929
            "475", 
142930
            "475"
142931
        ], 
141260 142932
        [
141261 142933
            "Total", 
141262 142934
            "0", 
......
141270 142942
            "0", 
141271 142943
            "45", 
141272 142944
            "0", 
141273
            "1480"
142945
            "475", 
142946
            "1955"
141274 142947
        ], 
141275 142948
        [
141276 142949
            "", 
......
141285 142958
            "Formulaire Elu", 
141286 142959
            "Formulaire Portail citoyen", 
141287 142960
            "Observation terrain", 
142961
            "Aucun(e)", 
141288 142962
            "Total"
141289 142963
        ], 
141290 142964
        [
......
141300 142974
            "0", 
141301 142975
            "0", 
141302 142976
            "0", 
142977
            "0", 
141303 142978
            "0"
141304 142979
        ], 
141305 142980
        [
......
141315 142990
            "0", 
141316 142991
            "1", 
141317 142992
            "0", 
142993
            "0", 
141318 142994
            "13"
141319 142995
        ], 
141320 142996
        [
......
141330 143006
            "0", 
141331 143007
            "0", 
141332 143008
            "0", 
143009
            "0", 
141333 143010
            "0"
141334 143011
        ], 
141335 143012
        [
......
141345 143022
            "0", 
141346 143023
            "1", 
141347 143024
            "0", 
143025
            "0", 
141348 143026
            "9"
141349 143027
        ], 
141350 143028
        [
......
141360 143038
            "0", 
141361 143039
            "0", 
141362 143040
            "0", 
143041
            "0", 
141363 143042
            "8"
141364 143043
        ], 
141365 143044
        [
......
141375 143054
            "0", 
141376 143055
            "2", 
141377 143056
            "0", 
143057
            "0", 
141378 143058
            "19"
141379 143059
        ], 
141380 143060
        [
......
141390 143070
            "0", 
141391 143071
            "12", 
141392 143072
            "0", 
143073
            "0", 
141393 143074
            "58"
141394 143075
        ], 
141395 143076
        [
......
141405 143086
            "0", 
141406 143087
            "7", 
141407 143088
            "0", 
143089
            "0", 
141408 143090
            "32"
141409 143091
        ], 
141410 143092
        [
......
141420 143102
            "0", 
141421 143103
            "0", 
141422 143104
            "0", 
143105
            "0", 
141423 143106
            "0"
141424 143107
        ], 
141425 143108
        [
......
141435 143118
            "0", 
141436 143119
            "3", 
141437 143120
            "0", 
143121
            "0", 
141438 143122
            "30"
141439 143123
        ], 
141440 143124
        [
......
141450 143134
            "0", 
141451 143135
            "0", 
141452 143136
            "0", 
143137
            "0", 
141453 143138
            "0"
141454 143139
        ], 
141455 143140
        [
......
141465 143150
            "0", 
141466 143151
            "0", 
141467 143152
            "0", 
143153
            "0", 
141468 143154
            "0"
141469 143155
        ], 
141470 143156
        [
......
141480 143166
            "0", 
141481 143167
            "15", 
141482 143168
            "0", 
143169
            "0", 
141483 143170
            "147"
141484 143171
        ], 
141485 143172
        [
......
141495 143182
            "0", 
141496 143183
            "11", 
141497 143184
            "0", 
143185
            "0", 
141498 143186
            "59"
141499 143187
        ], 
141500 143188
        [
......
141510 143198
            "0", 
141511 143199
            "8", 
141512 143200
            "0", 
143201
            "0", 
141513 143202
            "147"
141514 143203
        ], 
141515 143204
        [
......
141525 143214
            "0", 
141526 143215
            "0", 
141527 143216
            "0", 
143217
            "0", 
141528 143218
            "5"
141529 143219
        ], 
141530 143220
        [
......
141540 143230
            "0", 
141541 143231
            "5", 
141542 143232
            "0", 
143233
            "0", 
141543 143234
            "35"
141544 143235
        ], 
141545 143236
        [
......
141555 143246
            "0", 
141556 143247
            "61", 
141557 143248
            "0", 
143249
            "0", 
141558 143250
            "551"
141559 143251
        ], 
141560 143252
        [
......
141570 143262
            "0", 
141571 143263
            "1", 
141572 143264
            "0", 
143265
            "0", 
141573 143266
            "18"
141574 143267
        ], 
141575 143268
        [
......
141585 143278
            "0", 
141586 143279
            "0", 
141587 143280
            "0", 
143281
            "0", 
141588 143282
            "18"
141589 143283
        ], 
141590 143284
        [
......
141600 143294
            "0", 
141601 143295
            "1", 
141602 143296
            "0", 
143297
            "0", 
141603 143298
            "21"
141604 143299
        ], 
141605 143300
        [
......
141615 143310
            "0", 
141616 143311
            "3", 
141617 143312
            "0", 
143313
            "0", 
141618 143314
            "52"
141619 143315
        ], 
141620 143316
        [
......
141630 143326
            "0", 
141631 143327
            "0", 
141632 143328
            "0", 
143329
            "0", 
141633 143330
            "2"
141634 143331
        ], 
141635 143332
        [
......
141645 143342
            "0", 
141646 143343
            "2", 
141647 143344
            "0", 
143345
            "0", 
141648 143346
            "9"
141649 143347
        ], 
141650 143348
        [
......
141660 143358
            "0", 
141661 143359
            "1", 
141662 143360
            "0", 
143361
            "0", 
141663 143362
            "30"
141664 143363
        ], 
141665 143364
        [
......
141675 143374
            "0", 
141676 143375
            "2", 
141677 143376
            "0", 
143377
            "0", 
141678 143378
            "11"
141679 143379
        ], 
141680 143380
        [
......
141690 143390
            "0", 
141691 143391
            "7", 
141692 143392
            "0", 
143393
            "0", 
141693 143394
            "96"
141694 143395
        ], 
141695 143396
        [
......
141705 143406
            "0", 
141706 143407
            "0", 
141707 143408
            "0", 
143409
            "0", 
141708 143410
            "0"
141709 143411
        ], 
141710 143412
        [
......
141720 143422
            "0", 
141721 143423
            "0", 
141722 143424
            "0", 
143425
            "0", 
141723 143426
            "0"
141724 143427
        ], 
141725 143428
        [
......
141735 143438
            "0", 
141736 143439
            "0", 
141737 143440
            "0", 
143441
            "0", 
141738 143442
            "0"
141739 143443
        ], 
141740 143444
        [
......
141750 143454
            "0", 
141751 143455
            "0", 
141752 143456
            "0", 
143457
            "0", 
141753 143458
            "1"
141754 143459
        ], 
141755 143460
        [
......
141765 143470
            "0", 
141766 143471
            "0", 
141767 143472
            "0", 
143473
            "0", 
141768 143474
            "1"
141769 143475
        ], 
141770 143476
        [
......
141780 143486
            "0", 
141781 143487
            "1", 
141782 143488
            "0", 
143489
            "0", 
141783 143490
            "8"
141784 143491
        ], 
141785 143492
        [
......
141795 143502
            "0", 
141796 143503
            "2", 
141797 143504
            "0", 
143505
            "0", 
141798 143506
            "12"
141799 143507
        ], 
141800 143508
        [
......
141810 143518
            "0", 
141811 143519
            "0", 
141812 143520
            "0", 
143521
            "0", 
141813 143522
            "10"
141814 143523
        ], 
141815 143524
        [
......
141825 143534
            "0", 
141826 143535
            "0", 
141827 143536
            "0", 
143537
            "0", 
141828 143538
            "0"
141829 143539
        ], 
141830 143540
        [
......
141840 143550
            "0", 
141841 143551
            "0", 
141842 143552
            "0", 
143553
            "0", 
141843 143554
            "2"
141844 143555
        ], 
141845 143556
        [
......
141855 143566
            "0", 
141856 143567
            "0", 
141857 143568
            "0", 
143569
            "0", 
141858 143570
            "0"
141859 143571
        ], 
141860 143572
        [
......
141870 143582
            "0", 
141871 143583
            "0", 
141872 143584
            "0", 
143585
            "0", 
141873 143586
            "0"
141874 143587
        ], 
141875 143588
        [
......
141885 143598
            "0", 
141886 143599
            "0", 
141887 143600
            "0", 
143601
            "0", 
141888 143602
            "0"
141889 143603
        ], 
141890 143604
        [
......
141900 143614
            "0", 
141901 143615
            "10", 
141902 143616
            "0", 
143617
            "0", 
141903 143618
            "96"
141904 143619
        ], 
141905 143620
        [
......
141915 143630
            "0", 
141916 143631
            "0", 
141917 143632
            "0", 
143633
            "0", 
141918 143634
            "9"
141919 143635
        ], 
141920 143636
        [
......
141930 143646
            "0", 
141931 143647
            "0", 
141932 143648
            "0", 
143649
            "0", 
141933 143650
            "0"
141934 143651
        ], 
141935 143652
        [
......
141945 143662
            "0", 
141946 143663
            "0", 
141947 143664
            "0", 
143665
            "0", 
141948 143666
            "95"
141949 143667
        ], 
141950 143668
        [
......
141960 143678
            "0", 
141961 143679
            "10", 
141962 143680
            "0", 
143681
            "0", 
141963 143682
            "34"
141964 143683
        ], 
141965 143684
        [
......
141975 143694
            "0", 
141976 143695
            "1", 
141977 143696
            "0", 
143697
            "0", 
141978 143698
            "27"
141979 143699
        ], 
141980 143700
        [
......
141990 143710
            "0", 
141991 143711
            "0", 
141992 143712
            "0", 
143713
            "0", 
141993 143714
            "0"
141994 143715
        ], 
141995 143716
        [
......
142005 143726
            "0", 
142006 143727
            "0", 
142007 143728
            "0", 
143729
            "0", 
142008 143730
            "2"
142009 143731
        ], 
142010 143732
        [
......
142020 143742
            "0", 
142021 143743
            "0", 
142022 143744
            "0", 
143745
            "0", 
142023 143746
            "1"
142024 143747
        ], 
142025 143748
        [
......
142035 143758
            "0", 
142036 143759
            "4", 
142037 143760
            "0", 
143761
            "0", 
142038 143762
            "58"
142039 143763
        ], 
142040 143764
        [
......
142050 143774
            "0", 
142051 143775
            "0", 
142052 143776
            "0", 
143777
            "0", 
142053 143778
            "6"
142054 143779
        ], 
142055 143780
        [
......
142065 143790
            "0", 
142066 143791
            "3", 
142067 143792
            "0", 
143793
            "0", 
142068 143794
            "43"
142069 143795
        ], 
142070 143796
        [
......
142080 143806
            "0", 
142081 143807
            "0", 
142082 143808
            "0", 
143809
            "0", 
142083 143810
            "0"
142084 143811
        ], 
142085 143812
        [
......
142095 143822
            "0", 
142096 143823
            "6", 
142097 143824
            "0", 
143825
            "0", 
142098 143826
            "75"
142099 143827
        ], 
142100 143828
        [
......
142110 143838
            "0", 
142111 143839
            "0", 
142112 143840
            "0", 
143841
            "0", 
142113 143842
            "0"
142114 143843
        ], 
142115 143844
        [
......
142125 143854
            "0", 
142126 143855
            "2", 
142127 143856
            "0", 
143857
            "0", 
142128 143858
            "32"
142129 143859
        ], 
142130 143860
        [
......
142140 143870
            "0", 
142141 143871
            "0", 
142142 143872
            "0", 
143873
            "0", 
142143 143874
            "11"
142144 143875
        ], 
142145 143876
        [
......
142155 143886
            "0", 
142156 143887
            "2", 
142157 143888
            "0", 
143889
            "0", 
142158 143890
            "28"
142159 143891
        ], 
142160 143892
        [
......
142170 143902
            "0", 
142171 143903
            "0", 
142172 143904
            "0", 
143905
            "0", 
142173 143906
            "7"
142174 143907
        ], 
142175 143908
        [
......
142185 143918
            "0", 
142186 143919
            "0", 
142187 143920
            "0", 
143921
            "0", 
142188 143922
            "4"
142189 143923
        ], 
142190 143924
        [
......
142200 143934
            "0", 
142201 143935
            "7", 
142202 143936
            "0", 
143937
            "0", 
142203 143938
            "50"
142204 143939
        ], 
142205 143940
        [
......
142215 143950
            "0", 
142216 143951
            "3", 
142217 143952
            "0", 
143953
            "0", 
142218 143954
            "31"
142219 143955
        ], 
143956
        [
143957
            "Aucun(e)", 
143958
            "0", 
143959
            "0", 
143960
            "0", 
143961
            "0", 
143962
            "0", 
143963
            "0", 
143964
            "0", 
143965
            "0", 
143966
            "0", 
143967
            "0", 
143968
            "0", 
143969
            "0", 
143970
            "0"
143971
        ], 
142220 143972
        [
142221 143973
            "Total", 
142222 143974
            "0", 
......
142230 143982
            "0", 
142231 143983
            "194", 
142232 143984
            "0", 
143985
            "0", 
142233 143986
            "2013"
142234 143987
        ], 
142235 143988
        [
......
142245 143998
            "Formulaire Elu", 
142246 143999
            "Formulaire Portail citoyen", 
142247 144000
            "Observation terrain", 
144001
            "Aucun(e)", 
142248 144002
            "Total"
142249 144003
        ], 
142250 144004
        [
......
142260 144014
            "0", 
142261 144015
            "0", 
142262 144016
            "0", 
144017
            "0", 
142263 144018
            "0"
142264 144019
        ], 
142265 144020
        [
......
142275 144030
            "0", 
142276 144031
            "0", 
142277 144032
            "0", 
144033
            "0", 
142278 144034
            "10"
142279 144035
        ], 
142280 144036
        [
......
142290 144046
            "0", 
142291 144047
            "0", 
142292 144048
            "0", 
144049
            "0", 
142293 144050
            "0"
142294 144051
        ], 
142295 144052
        [
......
142305 144062
            "0", 
142306 144063
            "2", 
142307 144064
            "0", 
144065
            "0", 
142308 144066
            "13"
142309 144067
        ], 
142310 144068
        [
......
142320 144078
            "0", 
142321 144079
            "0", 
142322 144080
            "0", 
144081
            "0", 
142323 144082
            "6"
142324 144083
        ], 
142325 144084
        [
......
142335 144094
            "0", 
142336 144095
            "0", 
142337 144096
            "0", 
144097
            "0", 
142338 144098
            "19"
142339 144099
        ], 
142340 144100
        [
......
142350 144110
            "0", 
142351 144111
            "7", 
142352 144112
            "0", 
144113
            "0", 
142353 144114
            "48"
142354 144115
        ], 
142355 144116
        [
......
142365 144126
            "0", 
142366 144127
            "8", 
142367 144128
            "0", 
144129
            "0", 
142368 144130
            "52"
142369 144131
        ], 
142370 144132
        [
......
142380 144142
            "0", 
142381 144143
            "0", 
142382 144144
            "0", 
144145
            "0", 
142383 144146
            "0"
142384 144147
        ], 
142385 144148
        [
......
142395 144158
            "0", 
142396 144159
            "2", 
142397 144160
            "0", 
144161
            "0", 
142398 144162
            "32"
142399 144163
        ], 
142400 144164
        [
......
142410 144174
            "0", 
142411 144175
            "0", 
142412 144176
            "0", 
144177
            "0", 
142413 144178
            "0"
142414 144179
        ], 
142415 144180
        [
......
142425 144190
            "0", 
142426 144191
            "0", 
142427 144192
            "0", 
144193
            "0", 
142428 144194
            "0"
142429 144195
        ], 
142430 144196
        [
......
142440 144206
            "0", 
142441 144207
            "17", 
142442 144208
            "0", 
144209
            "0", 
142443 144210
            "152"
142444 144211
        ], 
142445 144212
        [
......
142455 144222
            "0", 
142456 144223
            "22", 
142457 144224
            "0", 
144225
            "0", 
142458 144226
            "75"
142459 144227
        ], 
142460 144228
        [
......
142470 144238
            "0", 
142471 144239
            "8", 
142472 144240
            "0", 
144241
            "0", 
142473 144242
            "133"
142474 144243
        ], 
142475 144244
        [
......
142485 144254
            "0", 
142486 144255
            "0", 
142487 144256
            "0", 
144257
            "0", 
142488 144258
            "8"
142489 144259
        ], 
142490 144260
        [
......
142500 144270
            "0", 
142501 144271
            "2", 
142502 144272
            "0", 
144273
            "0", 
142503 144274
            "30"
142504 144275
        ], 
142505 144276
        [
......
142515 144286
            "0", 
142516 144287
            "84", 
142517 144288
            "0", 
144289
            "0", 
142518 144290
            "633"
142519 144291
        ], 
142520 144292
        [
......
142530 144302
            "0", 
142531 144303
            "1", 
142532 144304
            "0", 
144305
            "0", 
142533 144306
            "9"
142534 144307
        ], 
142535 144308
        [
......
142545 144318
            "0", 
142546 144319
            "0", 
142547 144320
            "0", 
144321
            "0", 
142548 144322
            "18"
142549 144323
        ], 
142550 144324
        [
......
142560 144334
            "0", 
142561 144335
            "1", 
142562 144336
            "0", 
144337
            "0", 
142563 144338
            "10"
142564 144339
        ], 
142565 144340
        [
......
142575 144350
            "0", 
142576 144351
            "4", 
142577 144352
            "0", 
144353
            "0", 
142578 144354
            "41"
142579 144355
        ], 
142580 144356
        [
......
142590 144366
            "0", 
142591 144367
            "2", 
142592 144368
            "0", 
144369
            "0", 
142593 144370
            "8"
142594 144371
        ], 
142595 144372
        [
......
142605 144382
            "0", 
142606 144383
            "1", 
142607 144384
            "0", 
144385
            "0", 
142608 144386
            "9"
142609 144387
        ], 
142610 144388
        [
......
142620 144398
            "0", 
142621 144399
            "7", 
142622 144400
            "0", 
144401
            "0", 
142623 144402
            "51"
142624 144403
        ], 
142625 144404
        [
......
142635 144414
            "0", 
142636 144415
            "3", 
142637 144416
            "0", 
144417
            "0", 
142638 144418
            "8"
142639 144419
        ], 
142640 144420
        [
......
142650 144430
            "0", 
142651 144431
            "9", 
142652 144432
            "0", 
144433
            "0", 
142653 144434
            "95"
142654 144435
        ], 
142655 144436
        [
......
142665 144446
            "0", 
142666 144447
            "0", 
142667 144448
            "0", 
144449
            "0", 
142668 144450
            "1"
142669 144451
        ], 
142670 144452
        [
......
142680 144462
            "0", 
142681 144463
            "0", 
142682 144464
            "0", 
144465
            "0", 
142683 144466
            "2"
142684 144467
        ], 
142685 144468
        [
......
142695 144478
            "0", 
142696 144479
            "0", 
142697 144480
            "0", 
144481
            "0", 
142698 144482
            "1"
142699 144483
        ], 
142700 144484
        [
......
142710 144494
            "0", 
142711 144495
            "0", 
142712 144496
            "0", 
144497
            "0", 
142713 144498
            "4"
142714 144499
        ], 
142715 144500
        [
......
142725 144510
            "0", 
142726 144511
            "0", 
142727 144512
            "0", 
144513
            "0", 
142728 144514
            "1"
142729 144515
        ], 
142730 144516
        [
......
142740 144526
            "0", 
142741 144527
            "4", 
142742 144528
            "0", 
144529
            "0", 
142743 144530
            "7"
142744 144531
        ], 
142745 144532
        [
......
142755 144542
            "0", 
142756 144543
            "0", 
142757 144544
            "0", 
144545
            "0", 
142758 144546
            "8"
142759 144547
        ], 
142760 144548
        [
......
142770 144558
            "0", 
142771 144559
            "0", 
142772 144560
            "0", 
144561
            "0", 
142773 144562
            "11"
142774 144563
        ], 
142775 144564
        [
......
142785 144574
            "0", 
142786 144575
            "0", 
142787 144576
            "0", 
144577
            "0", 
142788 144578
            "0"
142789 144579
        ], 
142790 144580
        [
......
142800 144590
            "0", 
142801 144591
            "0", 
142802 144592
            "0", 
144593
            "0", 
142803 144594
            "0"
142804 144595
        ], 
142805 144596
        [
......
142815 144606
            "0", 
142816 144607
            "0", 
142817 144608
            "0", 
144609
            "0", 
142818 144610
            "1"
142819 144611
        ], 
142820 144612
        [
......
142830 144622
            "0", 
142831 144623
            "0", 
142832 144624
            "0", 
144625
            "0", 
142833 144626
            "0"
142834 144627
        ], 
142835 144628
        [
......
142845 144638
            "0", 
142846 144639
            "0", 
142847 144640
            "0", 
144641
            "0", 
142848 144642
            "0"
142849 144643
        ], 
142850 144644
        [
......
142860 144654
            "0", 
142861 144655
            "13", 
142862 144656
            "0", 
144657
            "0", 
142863 144658
            "97"
142864 144659
        ], 
142865 144660
        [
......
142875 144670
            "0", 
142876 144671
            "0", 
142877 144672
            "0", 
144673
            "0", 
142878 144674
            "7"
142879 144675
        ], 
142880 144676
        [
......
142890 144686
            "0", 
142891 144687
            "0", 
142892 144688
            "0", 
144689
            "0", 
142893 144690
            "0"
142894 144691
        ], 
142895 144692
        [
......
142905 144702
            "0", 
142906 144703
            "7", 
142907 144704
            "0", 
144705
            "0", 
142908 144706
            "86"
142909 144707
        ], 
142910 144708
        [
......
142920 144718
            "0", 
142921 144719
            "4", 
142922 144720
            "0", 
144721
            "0", 
142923 144722
            "35"
142924 144723
        ], 
142925 144724
        [
......
142935 144734
            "0", 
142936 144735
            "1", 
142937 144736
            "0", 
144737
            "0", 
142938 144738
            "6"
142939 144739
        ], 
142940 144740
        [
......
142950 144750
            "0", 
142951 144751
            "0", 
142952 144752
            "0", 
144753
            "0", 
142953 144754
            "0"
142954 144755
        ], 
142955 144756
        [
......
142965 144766
            "0", 
142966 144767
            "0", 
142967 144768
            "0", 
144769
            "0", 
142968 144770
            "4"
142969 144771
        ], 
142970 144772
        [
......
142980 144782
            "0", 
142981 144783
            "0", 
142982 144784
            "0", 
144785
            "0", 
142983 144786
            "0"
142984 144787
        ], 
142985 144788
        [
......
142995 144798
            "0", 
142996 144799
            "9", 
142997 144800
            "0", 
144801
            "0", 
142998 144802
            "57"
142999 144803
        ], 
143000 144804
        [
......
143010 144814
            "0", 
143011 144815
            "0", 
143012 144816
            "0", 
144817
            "0", 
143013 144818
            "2"
143014 144819
        ], 
143015 144820
        [
......
143025 144830
            "0", 
143026 144831
            "4", 
143027 144832
            "0", 
144833
            "0", 
143028 144834
            "55"
143029 144835
        ], 
143030 144836
        [
......
143040 144846
            "0", 
143041 144847
            "0", 
143042 144848
            "0", 
144849
            "0", 
143043 144850
            "0"
143044 144851
        ], 
143045 144852
        [
......
143055 144862
            "0", 
143056 144863
            "1", 
143057 144864
            "0", 
144865
            "0", 
143058 144866
            "56"
143059 144867
        ], 
143060 144868
        [
......
143070 144878
            "0", 
143071 144879
            "0", 
143072 144880
            "0", 
144881
            "0", 
143073 144882
            "0"
143074 144883
        ], 
143075 144884
        [
......
143085 144894
            "0", 
143086 144895
            "4", 
143087 144896
            "0", 
144897
            "0", 
143088 144898
            "37"
143089 144899
        ], 
143090 144900
        [
......
143100 144910
            "0", 
143101 144911
            "0", 
143102 144912
            "0", 
144913
            "0", 
143103 144914
            "4"
143104 144915
        ], 
143105 144916
        [
......
143115 144926
            "0", 
143116 144927
            "0", 
143117 144928
            "0", 
144929
            "0", 
143118 144930
            "16"
143119 144931
        ], 
143120 144932
        [
......
143130 144942
            "0", 
143131 144943
            "0", 
143132 144944
            "0", 
144945
            "0", 
143133 144946
            "1"
143134 144947
        ], 
143135 144948
        [
......
143145 144958
            "0", 
143146 144959
            "0", 
143147 144960
            "0", 
144961
            "0", 
143148 144962
            "1"
143149 144963
        ], 
143150 144964
        [
......
143160 144974
            "0", 
143161 144975
            "6", 
143162 144976
            "0", 
144977
            "0", 
143163 144978
            "62"
143164 144979
        ], 
143165 144980
        [
......
143175 144990
            "0", 
143176 144991
            "1", 
143177 144992
            "0", 
144993
            "0", 
143178 144994
            "14"
143179 144995
        ], 
144996
        [
144997
            "Aucun(e)", 
144998
            "0", 
144999
            "0", 
145000
            "0", 
145001
            "0", 
145002
            "0", 
145003
            "0", 
145004
            "0", 
145005
            "0", 
145006
            "0", 
145007
            "0", 
145008
            "0", 
145009
            "0", 
145010
            "0"
145011
        ], 
143180 145012
        [
143181 145013
            "Total", 
143182 145014
            "0", 
......
143190 145022
            "0", 
143191 145023
            "234", 
143192 145024
            "0", 
145025
            "0", 
143193 145026
            "2036"
143194 145027
        ], 
143195 145028
        [
......
143205 145038
            "Formulaire Elu", 
143206 145039
            "Formulaire Portail citoyen", 
143207 145040
            "Observation terrain", 
145041
            "Aucun(e)", 
143208 145042
            "Total"
143209 145043
        ], 
143210 145044
        [
......
143220 145054
            "0", 
143221 145055
            "0", 
143222 145056
            "0", 
145057
            "0", 
143223 145058
            "0"
143224 145059
        ], 
143225 145060
        [
......
143235 145070
            "0", 
143236 145071
            "0", 
143237 145072
            "0", 
145073
            "0", 
143238 145074
            "9"
143239 145075
        ], 
143240 145076
        [
......
143250 145086
            "0", 
143251 145087
            "0", 
143252 145088
            "0", 
145089
            "0", 
143253 145090
            "0"
143254 145091
        ], 
143255 145092
        [
......
143265 145102
            "0", 
143266 145103
            "0", 
143267 145104
            "0", 
145105
            "0", 
143268 145106
            "22"
143269 145107
        ], 
143270 145108
        [
......
143280 145118
            "0", 
143281 145119
            "0", 
143282 145120
            "0", 
145121
            "0", 
143283 145122
            "3"
143284 145123
        ], 
143285 145124
        [
......
143295 145134
            "0", 
143296 145135
            "1", 
143297 145136
            "0", 
145137
            "0", 
143298 145138
            "19"
143299 145139
        ], 
143300 145140
        [
......
143310 145150
            "0", 
143311 145151
            "9", 
143312 145152
            "0", 
145153
            "0", 
143313 145154
            "96"
143314 145155
        ], 
143315 145156
        [
......
143325 145166
            "0", 
143326 145167
            "10", 
143327 145168
            "0", 
145169
            "0", 
143328 145170
            "32"
143329 145171
        ], 
143330 145172
        [
......
143340 145182
            "0", 
143341 145183
            "0", 
143342 145184
            "0", 
145185
            "0", 
143343 145186
            "0"
143344 145187
        ], 
143345 145188
        [
......
143355 145198
            "0", 
143356 145199
            "0", 
143357 145200
            "0", 
145201
            "0", 
143358 145202
            "31"
143359 145203
        ], 
143360 145204
        [
......
143370 145214
            "0", 
143371 145215
            "0", 
143372 145216
            "0", 
145217
            "0", 
143373 145218
            "0"
143374 145219
        ], 
143375 145220
        [
......
143385 145230
            "0", 
143386 145231
            "0", 
143387 145232
            "0", 
145233
            "0", 
143388 145234
            "0"
143389 145235
        ], 
143390 145236
        [
......
143400 145246
            "0", 
143401 145247
            "25", 
143402 145248
            "0", 
145249
            "0", 
143403 145250
            "149"
143404 145251
        ], 
143405 145252
        [
......
143415 145262
            "0", 
143416 145263
            "6", 
143417 145264
            "0", 
145265
            "0", 
143418 145266
            "50"
143419 145267
        ], 
143420 145268
        [
......
143430 145278
            "0", 
143431 145279
            "12", 
143432 145280
            "0", 
145281
            "0", 
143433 145282
            "150"
143434 145283
        ], 
143435 145284
        [
......
143445 145294
            "0", 
143446 145295
            "0", 
143447 145296
            "0", 
145297
            "0", 
143448 145298
            "6"
143449 145299
        ], 
143450 145300
        [
......
143460 145310
            "0", 
143461 145311
            "5", 
143462 145312
            "0", 
145313
            "0", 
143463 145314
            "28"
143464 145315
        ], 
143465 145316
        [
......
143475 145326
            "0", 
143476 145327
            "122", 
143477 145328
            "0", 
145329
            "0", 
143478 145330
            "609"
143479 145331
        ], 
143480 145332
        [
......
143490 145342
            "0", 
143491 145343
            "2", 
143492 145344
            "0", 
145345
            "0", 
143493 145346
            "9"
143494 145347
        ], 
143495 145348
        [
......
143505 145358
            "0", 
143506 145359
            "0", 
143507 145360
            "0", 
145361
            "0", 
143508 145362
            "12"
143509 145363
        ], 
143510 145364
        [
......
143520 145374
            "0", 
143521 145375
            "1", 
143522 145376
            "0", 
145377
            "0", 
143523 145378
            "17"
143524 145379
        ], 
143525 145380
        [
......
143535 145390
            "0", 
143536 145391
            "3", 
143537 145392
            "0", 
145393
            "0", 
143538 145394
            "34"
143539 145395
        ], 
143540 145396
        [
......
143550 145406
            "0", 
143551 145407
            "1", 
143552 145408
            "0", 
145409
            "0", 
143553 145410
            "5"
143554 145411
        ], 
143555 145412
        [
......
143565 145422
            "0", 
143566 145423
            "3", 
143567 145424
            "0", 
145425
            "0", 
143568 145426
            "14"
143569 145427
        ], 
143570 145428
        [
......
143580 145438
            "0", 
143581 145439
            "1", 
143582 145440
            "0", 
145441
            "0", 
143583 145442
            "19"
143584 145443
        ], 
143585 145444
        [
......
143595 145454
            "0", 
143596 145455
            "4", 
143597 145456
            "0", 
145457
            "0", 
143598 145458
            "7"
143599 145459
        ], 
143600 145460
        [
......
143610 145470
            "0", 
143611 145471
            "9", 
143612 145472
            "0", 
145473
            "0", 
143613 145474
            "153"
143614 145475
        ], 
143615 145476
        [
......
143625 145486
            "0", 
143626 145487
            "2", 
143627 145488
            "0", 
145489
            "0", 
143628 145490
            "2"
143629 145491
        ], 
143630 145492
        [
......
143640 145502
            "0", 
143641 145503
            "0", 
143642 145504
            "0", 
145505
            "0", 
143643 145506
            "0"
143644 145507
        ], 
143645 145508
        [
......
143655 145518
            "0", 
143656 145519
            "0", 
143657 145520
            "0", 
145521
            "0", 
143658 145522
            "0"
143659 145523
        ], 
143660 145524
        [
......
143670 145534
            "0", 
143671 145535
            "0", 
143672 145536
            "0", 
145537
            "0", 
143673 145538
            "1"
143674 145539
        ], 
143675 145540
        [
......
143685 145550
            "0", 
143686 145551
            "3", 
143687 145552
            "0", 
145553
            "0", 
143688 145554
            "3"
143689 145555
        ], 
143690 145556
        [
......
143700 145566
            "0", 
143701 145567
            "2", 
143702 145568
            "0", 
145569
            "0", 
143703 145570
            "6"
143704 145571
        ], 
143705 145572
        [
......
143715 145582
            "0", 
143716 145583
            "0", 
143717 145584
            "0", 
145585
            "0", 
143718 145586
            "16"
143719 145587
        ], 
143720 145588
        [
......
143730 145598
            "0", 
143731 145599
            "3", 
143732 145600
            "0", 
145601
            "0", 
143733 145602
            "12"
143734 145603
        ], 
143735 145604
        [
......
143745 145614
            "0", 
143746 145615
            "0", 
143747 145616
            "0", 
145617
            "0", 
143748 145618
            "0"
143749 145619
        ], 
143750 145620
        [
......
143760 145630
            "0", 
143761 145631
            "0", 
143762 145632
            "0", 
145633
            "0", 
143763 145634
            "0"
143764 145635
        ], 
143765 145636
        [
......
143775 145646
            "0", 
143776 145647
            "0", 
143777 145648
            "0", 
145649
            "0", 
143778 145650
            "0"
143779 145651
        ], 
143780 145652
        [
......
143790 145662
            "0", 
143791 145663
            "3", 
143792 145664
            "0", 
145665
            "0", 
143793 145666
            "5"
143794 145667
        ], 
143795 145668
        [
......
143805 145678
            "0", 
143806 145679
            "0", 
143807 145680
            "0", 
145681
            "0", 
143808 145682
            "0"
143809 145683
        ], 
143810 145684
        [
......
143820 145694
            "0", 
143821 145695
            "15", 
143822 145696
            "0", 
145697
            "0", 
143823 145698
            "196"
143824 145699
        ], 
143825 145700
        [
......
143835 145710
            "0", 
143836 145711
            "1", 
143837 145712
            "0", 
145713
            "0", 
143838 145714
            "7"
143839 145715
        ], 
143840 145716
        [
......
143850 145726
            "0", 
143851 145727
            "0", 
143852 145728
            "0", 
145729
            "0", 
143853 145730
            "0"
143854 145731
        ], 
143855 145732
        [
......
143865 145742
            "0", 
143866 145743
            "10", 
143867 145744
            "0", 
145745
            "0", 
143868 145746
            "143"
143869 145747
        ], 
143870 145748
        [
......
143880 145758
            "0", 
143881 145759
            "2", 
143882 145760
            "0", 
145761
            "0", 
143883 145762
            "31"
143884 145763
        ], 
143885 145764
        [
......
143895 145774
            "0", 
143896 145775
            "0", 
143897 145776
            "0", 
145777
            "0", 
143898 145778
            "12"
143899 145779
        ], 
143900 145780
        [
......
143910 145790
            "0", 
143911 145791
            "0", 
143912 145792
            "0", 
145793
            "0", 
143913 145794
            "0"
143914 145795
        ], 
143915 145796
        [
......
143925 145806
            "0", 
143926 145807
            "0", 
143927 145808
            "0", 
145809
            "0", 
143928 145810
            "1"
143929 145811
        ], 
143930 145812
        [
......
143940 145822
            "0", 
143941 145823
            "0", 
143942 145824
            "0", 
145825
            "0", 
143943 145826
            "0"
143944 145827
        ], 
143945 145828
        [
......
143955 145838
            "0", 
143956 145839
            "6", 
143957 145840
            "0", 
145841
            "0", 
143958 145842
            "84"
143959 145843
        ], 
143960 145844
        [
......
143970 145854
            "0", 
143971 145855
            "2", 
143972 145856
            "0", 
145857
            "0", 
143973 145858
            "7"
143974 145859
        ], 
143975 145860
        [
......
143985 145870
            "0", 
143986 145871
            "5", 
143987 145872
            "0", 
145873
            "0", 
143988 145874
            "59"
143989 145875
        ], 
143990 145876
        [
......
144000 145886
            "0", 
144001 145887
            "0", 
144002 145888
            "0", 
145889
            "0", 
144003 145890
            "0"
144004 145891
        ], 
144005 145892
        [
......
144015 145902
            "0", 
144016 145903
            "5", 
144017 145904
            "0", 
145905
            "0", 
144018 145906
            "64"
144019 145907
        ], 
144020 145908
        [
......
144030 145918
            "0", 
144031 145919
            "0", 
144032 145920
            "0", 
145921
            "0", 
144033 145922
            "0"
144034 145923
        ], 
144035 145924
        [
......
144045 145934
            "0", 
144046 145935
            "6", 
144047 145936
            "0", 
145937
            "0", 
144048 145938
            "49"
144049 145939
        ], 
144050 145940
        [
......
144060 145950
            "0", 
144061 145951
            "1", 
144062 145952
            "0", 
145953
            "0", 
144063 145954
            "14"
144064 145955
        ], 
144065 145956
        [
......
144075 145966
            "0", 
144076 145967
            "4", 
144077 145968
            "0", 
145969
            "0", 
144078 145970
            "31"
144079 145971
        ], 
144080 145972
        [
......
144090 145982
            "0", 
144091 145983
            "0", 
144092 145984
            "0", 
145985
            "0", 
144093 145986
            "1"
144094 145987
        ], 
144095 145988
        [
......
144105 145998
            "0", 
144106 145999
            "0", 
144107 146000
            "0", 
146001
            "0", 
144108 146002
            "40"
144109 146003
        ], 
144110 146004
        [
......
144120 146014
            "0", 
144121 146015
            "10", 
144122 146016
            "0", 
146017
            "0", 
144123 146018
            "62"
144124 146019
        ], 
144125 146020
        [
......
144135 146030
            "0", 
144136 146031
            "2", 
144137 146032
            "0", 
146033
            "0", 
144138 146034
            "64"
144139 146035
        ], 
146036
        [
146037
            "Aucun(e)", 
146038
            "0", 
146039
            "0", 
146040
            "0", 
146041
            "0", 
146042
            "0", 
146043
            "0", 
146044
            "0", 
146045
            "0", 
146046
            "0", 
146047
            "0", 
146048
            "0", 
146049
            "0", 
146050
            "0"
146051
        ], 
144140 146052
        [
144141 146053
            "Total", 
144142 146054
            "0", 
......
144150 146062
            "0", 
144151 146063
            "296", 
144152 146064
            "0", 
146065
            "0", 
144153 146066
            "2384"
144154 146067
        ], 
144155 146068
        [
......
144165 146078
            "Formulaire Elu", 
144166 146079
            "Formulaire Portail citoyen", 
144167 146080
            "Observation terrain", 
146081
            "Aucun(e)", 
144168 146082
            "Total"
144169 146083
        ], 
144170 146084
        [
......
144180 146094
            "0", 
144181 146095
            "0", 
144182 146096
            "0", 
146097
            "0", 
144183 146098
            "0"
144184 146099
        ], 
144185 146100
        [
......
144195 146110
            "0", 
144196 146111
            "0", 
144197 146112
            "0", 
146113
            "0", 
144198 146114
            "17"
144199 146115
        ], 
144200 146116
        [
......
144210 146126
            "0", 
144211 146127
            "0", 
144212 146128
            "0", 
146129
            "0", 
144213 146130
            "0"
144214 146131
        ], 
144215 146132
        [
......
144225 146142
            "0", 
144226 146143
            "0", 
144227 146144
            "0", 
146145
            "0", 
144228 146146
            "30"
144229 146147
        ], 
144230 146148
        [
......
144240 146158
            "0", 
144241 146159
            "2", 
144242 146160
            "0", 
146161
            "0", 
144243 146162
            "7"
144244 146163
        ], 
144245 146164
        [
......
144255 146174
            "0", 
144256 146175
            "0", 
144257 146176
            "0", 
146177
            "0", 
144258 146178
            "15"
144259 146179
        ], 
144260 146180
        [
......
144270 146190
            "0", 
144271 146191
            "12", 
144272 146192
            "0", 
146193
            "0", 
144273 146194
            "208"
144274 146195
        ], 
144275 146196
        [
......
144285 146206
            "0", 
144286 146207
            "10", 
144287 146208
            "0", 
146209
            "0", 
144288 146210
            "107"
144289 146211
        ], 
144290 146212
        [
......
144300 146222
            "0", 
144301 146223
            "0", 
144302 146224
            "0", 
146225
            "0", 
144303 146226
            "0"
144304 146227
        ], 
144305 146228
        [
......
144315 146238
            "0", 
144316 146239
            "2", 
144317 146240
            "0", 
146241
            "0", 
144318 146242
            "45"
144319 146243
        ], 
144320 146244
        [
......
144330 146254
            "0", 
144331 146255
            "1", 
144332 146256
            "0", 
146257
            "0", 
144333 146258
            "1"
144334 146259
        ], 
144335 146260
        [
......
144345 146270
            "0", 
144346 146271
            "0", 
144347 146272
            "0", 
146273
            "0", 
144348 146274
            "0"
144349 146275
        ], 
144350 146276
        [
......
144360 146286
            "0", 
144361 146287
            "23", 
144362 146288
            "0", 
146289
            "0", 
144363 146290
            "269"
144364 146291
        ], 
144365 146292
        [
......
144375 146302
            "0", 
144376 146303
            "18", 
144377 146304
            "0", 
146305
            "0", 
144378 146306
            "93"
144379 146307
        ], 
144380 146308
        [
......
144390 146318
            "0", 
144391 146319
            "29", 
144392 146320
            "0", 
146321
            "0", 
144393 146322
            "384"
144394 146323
        ], 
144395 146324
        [
......
144405 146334
            "0", 
144406 146335
            "0", 
144407 146336
            "0", 
146337
            "0", 
144408 146338
            "8"
144409 146339
        ], 
144410 146340
        [
......
144420 146350
            "0", 
144421 146351
            "4", 
144422 146352
            "0", 
146353
            "0", 
144423 146354
            "26"
144424 146355
        ], 
144425 146356
        [
......
144435 146366
            "2", 
144436 146367
            "193", 
144437 146368
            "0", 
146369
            "0", 
144438 146370
            "1273"
144439 146371
        ], 
144440 146372
        [
......
144450 146382
            "0", 
144451 146383
            "3", 
144452 146384
            "0", 
146385
            "0", 
144453 146386
            "18"
144454 146387
        ], 
144455 146388
        [
......
144465 146398
            "0", 
144466 146399
            "4", 
144467 146400
            "0", 
146401
            "0", 
144468 146402
            "19"
144469 146403
        ], 
144470 146404
        [
......
144480 146414
            "0", 
144481 146415
            "6", 
144482 146416
            "0", 
146417
            "0", 
144483 146418
            "18"
144484 146419
        ], 
144485 146420
        [
......
144495 146430
            "2", 
144496 146431
            "9", 
144497 146432
            "0", 
146433
            "0", 
144498 146434
            "96"
144499 146435
        ], 
144500 146436
        [
......
144510 146446
            "0", 
144511 146447
            "1", 
144512 146448
            "0", 
146449
            "0", 
144513 146450
            "4"
144514 146451
        ], 
144515 146452
        [
......
144525 146462
            "0", 
144526 146463
            "4", 
144527 146464
            "0", 
146465
            "0", 
144528 146466
            "13"
144529 146467
        ], 
144530 146468
        [
......
144540 146478
            "0", 
144541 146479
            "4", 
144542 146480
            "0", 
146481
            "0", 
144543 146482
            "44"
144544 146483
        ], 
144545 146484
        [
......
144555 146494
            "0", 
144556 146495
            "1", 
144557 146496
            "0", 
146497
            "0", 
144558 146498
            "4"
144559 146499
        ], 
144560 146500
        [
......
144570 146510
            "2", 
144571 146511
            "17", 
144572 146512
            "0", 
146513
            "0", 
144573 146514
            "357"
144574 146515
        ], 
144575 146516
        [
......
144585 146526
            "0", 
144586 146527
            "0", 
144587 146528
            "0", 
146529
            "0", 
144588 146530
            "0"
144589 146531
        ], 
144590 146532
        [
......
144600 146542
            "0", 
144601 146543
            "0", 
144602 146544
            "0", 
146545
            "0", 
144603 146546
            "0"
144604 146547
        ], 
144605 146548
        [
......
144615 146558
            "0", 
144616 146559
            "0", 
144617 146560
            "0", 
146561
            "0", 
144618 146562
            "0"
144619 146563
        ], 
144620 146564
        [
......
144630 146574
            "0", 
144631 146575
            "0", 
144632 146576
            "0", 
146577
            "0", 
144633 146578
            "0"
144634 146579
        ], 
144635 146580
        [
......
144645 146590
            "0", 
144646 146591
            "0", 
144647 146592
            "0", 
146593
            "0", 
144648 146594
            "2"
144649 146595
        ], 
144650 146596
        [
......
144660 146606
            "0", 
144661 146607
            "1", 
144662 146608
            "0", 
146609
            "0", 
144663 146610
            "8"
144664 146611
        ], 
144665 146612
        [
......
144675 146622
            "0", 
144676 146623
            "3", 
144677 146624
            "0", 
146625
            "0", 
144678 146626
            "18"
144679 146627
        ], 
144680 146628
        [
......
144690 146638
            "0", 
144691 146639
            "0", 
144692 146640
            "0", 
146641
            "0", 
144693 146642
            "4"
144694 146643
        ], 
144695 146644
        [
......
144705 146654
            "0", 
144706 146655
            "0", 
144707 146656
            "0", 
146657
            "0", 
144708 146658
            "0"
144709 146659
        ], 
144710 146660
        [
......
144720 146670
            "0", 
144721 146671
            "2", 
144722 146672
            "0", 
146673
            "0", 
144723 146674
            "4"
144724 146675
        ], 
144725 146676
        [
......
144735 146686
            "0", 
144736 146687
            "0", 
144737 146688
            "0", 
146689
            "0", 
144738 146690
            "1"
144739 146691
        ], 
144740 146692
        [
......
144750 146702
            "0", 
144751 146703
            "0", 
144752 146704
            "0", 
146705
            "0", 
144753 146706
            "0"
144754 146707
        ], 
144755 146708
        [
......
144765 146718
            "0", 
144766 146719
            "0", 
144767 146720
            "0", 
146721
            "0", 
144768 146722
            "0"
144769 146723
        ], 
144770 146724
        [
......
144780 146734
            "0", 
144781 146735
            "17", 
144782 146736
            "0", 
146737
            "0", 
144783 146738
            "297"
144784 146739
        ], 
144785 146740
        [
......
144795 146750
            "0", 
144796 146751
            "4", 
144797 146752
            "0", 
146753
            "0", 
144798 146754
            "7"
144799 146755
        ], 
144800 146756
        [
......
144810 146766
            "0", 
144811 146767
            "0", 
144812 146768
            "0", 
146769
            "0", 
144813 146770
            "0"
144814 146771
        ], 
144815 146772
        [
......
144825 146782
            "0", 
144826 146783
            "25", 
144827 146784
            "0", 
146785
            "0", 
144828 146786
            "348"
144829 146787
        ], 
144830 146788
        [
......
144840 146798
            "0", 
144841 146799
            "9", 
144842 146800
            "0", 
146801
            "0", 
144843 146802
            "40"
144844 146803
        ], 
144845 146804
        [
......
144855 146814
            "0", 
144856 146815
            "3", 
144857 146816
            "0", 
146817
            "0", 
144858 146818
            "19"
144859 146819
        ], 
144860 146820
        [
......
144870 146830
            "0", 
144871 146831
            "0", 
144872 146832
            "0", 
146833
            "0", 
144873 146834
            "0"
144874 146835
        ], 
144875 146836
        [
......
144885 146846
            "0", 
144886 146847
            "0", 
144887 146848
            "0", 
146849
            "0", 
144888 146850
            "0"
144889 146851
        ], 
144890 146852
        [
......
144900 146862
            "0", 
144901 146863
            "0", 
144902 146864
            "0", 
146865
            "0", 
144903 146866
            "0"
144904 146867
        ], 
144905 146868
        [
......
144915 146878
            "0", 
144916 146879
            "6", 
144917 146880
            "0", 
146881
            "0", 
144918 146882
            "127"
144919 146883
        ], 
144920 146884
        [
......
144930 146894
            "0", 
144931 146895
            "3", 
144932 146896
            "0", 
146897
            "0", 
144933 146898
            "6"
144934 146899
        ], 
144935 146900
        [
......
144945 146910
            "0", 
144946 146911
            "6", 
144947 146912
            "0", 
146913
            "0", 
144948 146914
            "64"
144949 146915
        ], 
144950 146916
        [
......
144960 146926
            "0", 
144961 146927
            "0", 
144962 146928
            "0", 
146929
            "0", 
144963 146930
            "0"
144964 146931
        ], 
144965 146932
        [
......
144975 146942
            "0", 
144976 146943
            "5", 
144977 146944
            "0", 
146945
            "0", 
144978 146946
            "87"
144979 146947
        ], 
144980 146948
        [
......
144990 146958
            "0", 
144991 146959
            "0", 
144992 146960
            "0", 
146961
            "0", 
144993 146962
            "0"
144994 146963
        ], 
144995 146964
        [
......
145005 146974
            "0", 
145006 146975
            "6", 
145007 146976
            "0", 
146977
            "0", 
145008 146978
            "55"
145009 146979
        ], 
145010 146980
        [
......
145020 146990
            "0", 
145021 146991
            "0", 
145022 146992
            "0", 
146993
            "0", 
145023 146994
            "0"
145024 146995
        ], 
145025 146996
        [
......
145035 147006
            "0", 
145036 147007
            "2", 
145037 147008
            "0", 
147009
            "0", 
145038 147010
            "50"
145039 147011
        ], 
145040 147012
        [
......
145050 147022
            "0", 
145051 147023
            "0", 
145052 147024
            "0", 
147025
            "0", 
145053 147026
            "1"
145054 147027
        ], 
145055 147028
        [
......
145065 147038
            "0", 
145066 147039
            "1", 
145067 147040
            "0", 
147041
            "0", 
145068 147042
            "8"
145069 147043
        ], 
145070 147044
        [
......
145080 147054
            "0", 
145081 147055
            "11", 
145082 147056
            "0", 
147057
            "0", 
145083 147058
            "81"
145084 147059
        ], 
145085 147060
        [
......
145095 147070
            "0", 
145096 147071
            "2", 
145097 147072
            "0", 
147073
            "0", 
145098 147074
            "30"
145099 147075
        ], 
147076
        [
147077
            "Aucun(e)", 
147078
            "0", 
147079
            "0", 
147080
            "0", 
147081
            "0", 
147082
            "0", 
147083
            "0", 
147084
            "0", 
147085
            "0", 
147086
            "0", 
147087
            "0", 
147088
            "0", 
147089
            "116", 
147090
            "116"
147091
        ], 
145100 147092
        [
145101 147093
            "Total", 
145102 147094
            "0", 
......
145110 147102
            "6", 
145111 147103
            "449", 
145112 147104
            "0", 
145113
            "4313"
147105
            "116", 
147106
            "4429"
145114 147107
        ], 
145115 147108
        [
145116 147109
            "", 
......
145125 147118
            "Formulaire Elu", 
145126 147119
            "Formulaire Portail citoyen", 
145127 147120
            "Observation terrain", 
147121
            "Aucun(e)", 
145128 147122
            "Total"
145129 147123
        ], 
145130 147124
        [
......
145140 147134
            "0", 
145141 147135
            "4", 
145142 147136
            "0", 
147137
            "0", 
145143 147138
            "9"
145144 147139
        ], 
145145 147140
        [
......
145155 147150
            "0", 
145156 147151
            "0", 
145157 147152
            "0", 
147153
            "0", 
145158 147154
            "12"
145159 147155
        ], 
145160 147156
        [
......
145170 147166
            "0", 
145171 147167
            "1", 
145172 147168
            "0", 
147169
            "0", 
145173 147170
            "1"
145174 147171
        ], 
145175 147172
        [
......
145185 147182
            "0", 
145186 147183
            "7", 
145187 147184
            "0", 
147185
            "0", 
145188 147186
            "35"
145189 147187
        ], 
145190 147188
        [
......
145200 147198
            "0", 
145201 147199
            "0", 
145202 147200
            "0", 
147201
            "0", 
145203 147202
            "17"
145204 147203
        ], 
145205 147204
        [
......
145215 147214
            "0", 
145216 147215
            "0", 
145217 147216
            "0", 
147217
            "0", 
145218 147218
            "3"
145219 147219
        ], 
145220 147220
        [
......
145230 147230
            "0", 
145231 147231
            "15", 
145232 147232
            "0", 
147233
            "0", 
145233 147234
            "136"
145234 147235
        ], 
145235 147236
        [
......
145245 147246
            "0", 
145246 147247
            "11", 
145247 147248
            "0", 
147249
            "0", 
145248 147250
            "55"
145249 147251
        ], 
145250 147252
        [
......
145260 147262
            "0", 
145261 147263
            "2", 
145262 147264
            "0", 
147265
            "0", 
145263 147266
            "2"
145264 147267
        ], 
145265 147268
        [
......
145275 147278
            "0", 
145276 147279
            "3", 
145277 147280
            "0", 
147281
            "0", 
145278 147282
            "20"
145279 147283
        ], 
145280 147284
        [
......
145290 147294
            "0", 
145291 147295
            "3", 
145292 147296
            "0", 
147297
            "0", 
145293 147298
            "3"
145294 147299
        ], 
145295 147300
        [
......
145305 147310
            "0", 
145306 147311
            "3", 
145307 147312
            "0", 
147313
            "0", 
145308 147314
            "3"
145309 147315
        ], 
145310 147316
        [
......
145320 147326
            "0", 
145321 147327
            "26", 
145322 147328
            "0", 
147329
            "0", 
145323 147330
            "186"
145324 147331
        ], 
145325 147332
        [
......
145335 147342
            "0", 
145336 147343
            "7", 
145337 147344
            "0", 
147345
            "0", 
145338 147346
            "57"
145339 147347
        ], 
145340 147348
        [
......
145350 147358
            "0", 
145351 147359
            "36", 
145352 147360
            "0", 
147361
            "0", 
145353 147362
            "252"
145354 147363
        ], 
145355 147364
        [
......
145365 147374
            "0", 
145366 147375
            "1", 
145367 147376
            "0", 
147377
            "0", 
145368 147378
            "13"
145369 147379
        ], 
145370 147380
        [
......
145380 147390
            "0", 
145381 147391
            "4", 
145382 147392
            "0", 
147393
            "0", 
145383 147394
            "21"
145384 147395
        ], 
145385 147396
        [
......
145395 147406
            "0", 
145396 147407
            "234", 
145397 147408
            "0", 
147409
            "0", 
145398 147410
            "774"
145399 147411
        ], 
145400 147412
        [
......
145410 147422
            "0", 
145411 147423
            "2", 
145412 147424
            "0", 
147425
            "0", 
145413 147426
            "6"
145414 147427
        ], 
145415 147428
        [
......
145425 147438
            "0", 
145426 147439
            "5", 
145427 147440
            "0", 
147441
            "0", 
145428 147442
            "8"
145429 147443
        ], 
145430 147444
        [
......
145440 147454
            "0", 
145441 147455
            "2", 
145442 147456
            "0", 
147457
            "0", 
145443 147458
            "18"
145444 147459
        ], 
145445 147460
        [
......
145455 147470
            "0", 
145456 147471
            "11", 
145457 147472
            "0", 
147473
            "0", 
145458 147474
            "102"
145459 147475
        ], 
145460 147476
        [
......
145470 147486
            "0", 
145471 147487
            "0", 
145472 147488
            "0", 
147489
            "0", 
145473 147490
            "2"
145474 147491
        ], 
145475 147492
        [
......
145485 147502
            "0", 
145486 147503
            "6", 
145487 147504
            "0", 
147505
            "0", 
145488 147506
            "19"
145489 147507
        ], 
145490 147508
        [
......
145500 147518
            "0", 
145501 147519
            "10", 
145502 147520
            "0", 
147521
            "0", 
145503 147522
            "95"
145504 147523
        ], 
145505 147524
        [
......
145515 147534
            "0", 
145516 147535
            "1", 
145517 147536
            "0", 
147537
            "0", 
145518 147538
            "5"
145519 147539
        ], 
145520 147540
        [
......
145530 147550
            "0", 
145531 147551
            "18", 
145532 147552
            "0", 
147553
            "0", 
145533 147554
            "199"
145534 147555
        ], 
145535 147556
        [
......
145545 147566
            "0", 
145546 147567
            "0", 
145547 147568
            "0", 
147569
            "0", 
145548 147570
            "1"
145549 147571
        ], 
145550 147572
        [
......
145560 147582
            "0", 
145561 147583
            "0", 
145562 147584
            "0", 
147585
            "0", 
145563 147586
            "1"
145564 147587
        ], 
145565 147588
        [
......
145575 147598
            "0", 
145576 147599
            "0", 
145577 147600
            "0", 
147601
            "0", 
145578 147602
            "0"
145579 147603
        ], 
145580 147604
        [
......
145590 147614
            "0", 
145591 147615
            "0", 
145592 147616
            "0", 
147617
            "0", 
145593 147618
            "0"
145594 147619
        ], 
145595 147620
        [
......
145605 147630
            "0", 
145606 147631
            "0", 
145607 147632
            "0", 
147633
            "0", 
145608 147634
            "0"
145609 147635
        ], 
145610 147636
        [
......
145620 147646
            "0", 
145621 147647
            "2", 
145622 147648
            "0", 
147649
            "0", 
145623 147650
            "3"
145624 147651
        ], 
145625 147652
        [
......
145635 147662
            "0", 
145636 147663
            "2", 
145637 147664
            "0", 
147665
            "0", 
145638 147666
            "10"
145639 147667
        ], 
145640 147668
        [
......
145650 147678
            "0", 
145651 147679
            "0", 
145652 147680
            "0", 
147681
            "0", 
145653 147682
            "3"
145654 147683
        ], 
145655 147684
        [
......
145665 147694
            "0", 
145666 147695
            "0", 
145667 147696
            "0", 
147697
            "0", 
145668 147698
            "0"
145669 147699
        ], 
145670 147700
        [
......
145680 147710
            "0", 
145681 147711
            "0", 
145682 147712
            "0", 
147713
            "0", 
145683 147714
            "1"
145684 147715
        ], 
145685 147716
        [
......
145695 147726
            "0", 
145696 147727
            "0", 
145697 147728
            "0", 
147729
            "0", 
145698 147730
            "1"
145699 147731
        ], 
145700 147732
        [
......
145710 147742
            "0", 
145711 147743
            "1", 
145712 147744
            "0", 
147745
            "0", 
145713 147746
            "1"
145714 147747
        ], 
145715 147748
        [
......
145725 147758
            "0", 
145726 147759
            "0", 
145727 147760
            "0", 
147761
            "0", 
145728 147762
            "0"
145729 147763
        ], 
145730 147764
        [
......
145740 147774
            "0", 
145741 147775
            "17", 
145742 147776
            "0", 
147777
            "0", 
145743 147778
            "89"
145744 147779
        ], 
145745 147780
        [
......
145755 147790
            "0", 
145756 147791
            "3", 
145757 147792
            "0", 
147793
            "0", 
145758 147794
            "4"
145759 147795
        ], 
145760 147796
        [
......
145770 147806
            "0", 
145771 147807
            "1", 
145772 147808
            "0", 
147809
            "0", 
145773 147810
            "1"
145774 147811
        ], 
145775 147812
        [
......
145785 147822
            "0", 
145786 147823
            "18", 
145787 147824
            "0", 
147825
            "0", 
145788 147826
            "124"
145789 147827
        ], 
145790 147828
        [
......
145800 147838
            "0", 
145801 147839
            "2", 
145802 147840
            "0", 
147841
            "0", 
145803 147842
            "24"
145804 147843
        ], 
145805 147844
        [
......
145815 147854
            "0", 
145816 147855
            "4", 
145817 147856
            "0", 
147857
            "0", 
145818 147858
            "22"
145819 147859
        ], 
145820 147860
        [
......
145830 147870
            "0", 
145831 147871
            "1", 
145832 147872
            "0", 
147873
            "0", 
145833 147874
            "1"
145834 147875
        ], 
145835 147876
        [
......
145845 147886
            "0", 
145846 147887
            "0", 
145847 147888
            "0", 
147889
            "0", 
145848 147890
            "0"
145849 147891
        ], 
145850 147892
        [
......
145860 147902
            "0", 
145861 147903
            "0", 
145862 147904
            "0", 
147905
            "0", 
145863 147906
            "0"
145864 147907
        ], 
145865 147908
        [
......
145875 147918
            "0", 
145876 147919
            "8", 
145877 147920
            "0", 
147921
            "0", 
145878 147922
            "76"
145879 147923
        ], 
145880 147924
        [
......
145890 147934
            "0", 
145891 147935
            "0", 
145892 147936
            "0", 
147937
            "0", 
145893 147938
            "1"
145894 147939
        ], 
145895 147940
        [
......
145905 147950
            "0", 
145906 147951
            "7", 
145907 147952
            "0", 
147953
            "0", 
145908 147954
            "28"
145909 147955
        ], 
145910 147956
        [
......
145920 147966
            "0", 
145921 147967
            "1", 
145922 147968
            "0", 
147969
            "0", 
145923 147970
            "1"
145924 147971
        ], 
145925 147972
        [
......
145935 147982
            "0", 
145936 147983
            "8", 
145937 147984
            "0", 
147985
            "0", 
145938 147986
            "59"
145939 147987
        ], 
145940 147988
        [
......
145950 147998
            "0", 
145951 147999
            "0", 
145952 148000
            "0", 
148001
            "0", 
145953 148002
            "0"
145954 148003
        ], 
145955 148004
        [
......
145965 148014
            "0", 
145966 148015
            "10", 
145967 148016
            "0", 
148017
            "0", 
145968 148018
            "78"
145969 148019
        ], 
145970 148020
        [
......
145980 148030
            "0", 
145981 148031
            "3", 
145982 148032
            "0", 
148033
            "0", 
145983 148034
            "10"
145984 148035
        ], 
145985 148036
        [
......
145995 148046
            "0", 
145996 148047
            "1", 
145997 148048
            "0", 
148049
            "0", 
145998 148050
            "21"
145999 148051
        ], 
146000 148052
        [
......
146010 148062
            "0", 
146011 148063
            "0", 
146012 148064
            "0", 
148065
            "0", 
146013 148066
            "0"
146014 148067
        ], 
146015 148068
        [
......
146025 148078
            "0", 
146026 148079
            "0", 
146027 148080
            "0", 
148081
            "0", 
146028 148082
            "11"
146029 148083
        ], 
146030 148084
        [
......
146040 148094
            "0", 
146041 148095
            "13", 
146042 148096
            "0", 
148097
            "0", 
146043 148098
            "66"
146044 148099
        ], 
146045 148100
        [
......
146055 148110
            "0", 
146056 148111
            "2", 
146057 148112
            "0", 
148113
            "0", 
146058 148114
            "22"
146059 148115
        ], 
148116
        [
148117
            "Aucun(e)", 
148118
            "0", 
148119
            "0", 
148120
            "0", 
148121
            "0", 
148122
            "0", 
148123
            "0", 
148124
            "0", 
148125
            "0", 
148126
            "0", 
148127
            "0", 
148128
            "0", 
148129
            "123", 
148130
            "123"
148131
        ], 
146060 148132
        [
146061 148133
            "Total", 
146062 148134
            "0", 
......
146070 148142
            "0", 
146071 148143
            "516", 
146072 148144
            "0", 
146073
            "2712"
148145
            "123", 
148146
            "2835"
146074 148147
        ], 
146075 148148
        [
146076 148149
            "", 
......
146085 148158
            "Formulaire Elu", 
146086 148159
            "Formulaire Portail citoyen", 
146087 148160
            "Observation terrain", 
148161
            "Aucun(e)", 
146088 148162
            "Total"
146089 148163
        ], 
146090 148164
        [
......
146100 148174
            "0", 
146101 148175
            "0", 
146102 148176
            "0", 
148177
            "0", 
146103 148178
            "0"
146104 148179
        ], 
146105 148180
        [
......
146115 148190
            "0", 
146116 148191
            "0", 
146117 148192
            "0", 
148193
            "0", 
146118 148194
            "0"
146119 148195
        ], 
146120 148196
        [
......
146130 148206
            "0", 
146131 148207
            "0", 
146132 148208
            "0", 
148209
            "0", 
146133 148210
            "0"
146134 148211
        ], 
146135 148212
        [
......
146145 148222
            "0", 
146146 148223
            "1", 
146147 148224
            "0", 
148225
            "0", 
146148 148226
            "3"
146149 148227
        ], 
146150 148228
        [
......
146160 148238
            "0", 
146161 148239
            "0", 
146162 148240
            "0", 
148241
            "0", 
146163 148242
            "0"
146164 148243
        ], 
146165 148244
        [
......
146175 148254
            "0", 
146176 148255
            "2", 
146177 148256
            "0", 
148257
            "0", 
146178 148258
            "5"
146179 148259
        ], 
146180 148260
        [
......
146190 148270
            "0", 
146191 148271
            "1", 
146192 148272
            "0", 
148273
            "0", 
146193 148274
            "10"
146194 148275
        ], 
146195 148276
        [
......
146205 148286
            "0", 
146206 148287
            "1", 
146207 148288
            "0", 
148289
            "0", 
146208 148290
            "3"
146209 148291
        ], 
146210 148292
        [
......
146220 148302
            "0", 
146221 148303
            "0", 
146222 148304
            "0", 
148305
            "0", 
146223 148306
            "0"
146224 148307
        ], 
146225 148308
        [
......
146235 148318
            "0", 
146236 148319
            "0", 
146237 148320
            "0", 
148321
            "0", 
146238 148322
            "3"
146239 148323
        ], 
146240 148324
        [
......
146250 148334
            "0", 
146251 148335
            "0", 
146252 148336
            "0", 
148337
            "0", 
146253 148338
            "0"
146254 148339
        ], 
146255 148340
        [
......
146265 148350
            "0", 
146266 148351
            "0", 
146267 148352
            "0", 
148353
            "0", 
146268 148354
            "0"
146269 148355
        ], 
146270 148356
        [
......
146280 148366
            "0", 
146281 148367
            "8", 
146282 148368
            "0", 
148369
            "0", 
146283 148370
            "37"
146284 148371
        ], 
146285 148372
        [
......
146295 148382
            "0", 
146296 148383
            "3", 
146297 148384
            "0", 
148385
            "0", 
146298 148386
            "16"
146299 148387
        ], 
146300 148388
        [
......
146310 148398
            "0", 
146311 148399
            "5", 
146312 148400
            "0", 
148401
            "0", 
146313 148402
            "27"
146314 148403
        ], 
146315 148404
        [
......
146325 148414
            "0", 
146326 148415
            "0", 
146327 148416
            "0", 
148417
            "0", 
146328 148418
            "2"
146329 148419
        ], 
146330 148420
        [
......
146340 148430
            "0", 
146341 148431
            "1", 
146342 148432
            "0", 
148433
            "0", 
146343 148434
            "6"
146344 148435
        ], 
146345 148436
        [
......
146355 148446
            "0", 
146356 148447
            "34", 
146357 148448
            "0", 
148449
            "0", 
146358 148450
            "113"
146359 148451
        ], 
146360 148452
        [
......
146370 148462
            "0", 
146371 148463
            "0", 
146372 148464
            "0", 
148465
            "0", 
146373 148466
            "1"
146374 148467
        ], 
146375 148468
        [
......
146385 148478
            "0", 
146386 148479
            "1", 
146387 148480
            "0", 
148481
            "0", 
146388 148482
            "1"
146389 148483
        ], 
146390 148484
        [
......
146400 148494
            "0", 
146401 148495
            "1", 
146402 148496
            "0", 
148497
            "0", 
146403 148498
            "3"
146404 148499
        ], 
146405 148500
        [
......
146415 148510
            "0", 
146416 148511
            "1", 
146417 148512
            "1", 
148513
            "0", 
146418 148514
            "10"
146419 148515
        ], 
146420 148516
        [
......
146430 148526
            "0", 
146431 148527
            "0", 
146432 148528
            "0", 
148529
            "0", 
146433 148530
            "2"
146434 148531
        ], 
146435 148532
        [
......
146445 148542
            "0", 
146446 148543
            "1", 
146447 148544
            "0", 
148545
            "0", 
146448 148546
            "4"
146449 148547
        ], 
146450 148548
        [
......
146460 148558
            "0", 
146461 148559
            "1", 
146462 148560
            "0", 
148561
            "0", 
146463 148562
            "8"
146464 148563
        ], 
146465 148564
        [
......
146475 148574
            "0", 
146476 148575
            "1", 
146477 148576
            "0", 
148577
            "0", 
146478 148578
            "2"
146479 148579
        ], 
146480 148580
        [
......
146490 148590
            "0", 
146491 148591
            "2", 
146492 148592
            "0", 
148593
            "0", 
146493 148594
            "39"
146494 148595
        ], 
146495 148596
        [
......
146505 148606
            "0", 
146506 148607
            "0", 
146507 148608
            "0", 
148609
            "0", 
146508 148610
            "0"
146509 148611
        ], 
146510 148612
        [
......
146520 148622
            "0", 
146521 148623
            "0", 
146522 148624
            "0", 
148625
            "0", 
146523 148626
            "0"
146524 148627
        ], 
146525 148628
        [
......
146535 148638
            "0", 
146536 148639
            "0", 
146537 148640
            "0", 
148641
            "0", 
146538 148642
            "0"
146539 148643
        ], 
146540 148644
        [
......
146550 148654
            "0", 
146551 148655
            "0", 
146552 148656
            "0", 
148657
            "0", 
146553 148658
            "0"
146554 148659
        ], 
146555 148660
        [
......
146565 148670
            "0", 
146566 148671
            "0", 
146567 148672
            "0", 
148673
            "0", 
146568 148674
            "0"
146569 148675
        ], 
146570 148676
        [
......
146580 148686
            "0", 
146581 148687
            "0", 
146582 148688
            "0", 
148689
            "0", 
146583 148690
            "1"
146584 148691
        ], 
146585 148692
        [
......
146595 148702
            "0", 
146596 148703
            "0", 
146597 148704
            "0", 
148705
            "0", 
146598 148706
            "1"
146599 148707
        ], 
146600 148708
        [
......
146610 148718
            "0", 
146611 148719
            "1", 
146612 148720
            "0", 
148721
            "0", 
146613 148722
            "2"
146614 148723
        ], 
146615 148724
        [
......
146625 148734
            "0", 
146626 148735
            "0", 
146627 148736
            "0", 
148737
            "0", 
146628 148738
            "0"
146629 148739
        ], 
146630 148740
        [
......
146640 148750
            "0", 
146641 148751
            "0", 
146642 148752
            "0", 
148753
            "0", 
146643 148754
            "0"
146644 148755
        ], 
146645 148756
        [
......
146655 148766
            "0", 
146656 148767
            "0", 
146657 148768
            "0", 
148769
            "0", 
146658 148770
            "0"
146659 148771
        ], 
146660 148772
        [
......
146670 148782
            "0", 
146671 148783
            "0", 
146672 148784
            "0", 
148785
            "0", 
146673 148786
            "0"
146674 148787
        ], 
146675 148788
        [
......
146685 148798
            "0", 
146686 148799
            "0", 
146687 148800
            "0", 
148801
            "0", 
146688 148802
            "0"
146689 148803
        ], 
146690 148804
        [
......
146700 148814
            "0", 
146701 148815
            "3", 
146702 148816
            "0", 
148817
            "0", 
146703 148818
            "14"
146704 148819
        ], 
146705 148820
        [
......
146715 148830
            "0", 
146716 148831
            "0", 
146717 148832
            "0", 
148833
            "0", 
146718 148834
            "0"
146719 148835
        ], 
146720 148836
        [
......
146730 148846
            "0", 
146731 148847
            "0", 
146732 148848
            "0", 
148849
            "0", 
146733 148850
            "0"
146734 148851
        ], 
146735 148852
        [
......
146745 148862
            "0", 
146746 148863
            "5", 
146747 148864
            "0", 
148865
            "0", 
146748 148866
            "25"
146749 148867
        ], 
146750 148868
        [
......
146760 148878
            "0", 
146761 148879
            "0", 
146762 148880
            "0", 
148881
            "0", 
146763 148882
            "3"
146764 148883
        ], 
146765 148884
        [
......
146775 148894
            "0", 
146776 148895
            "1", 
146777 148896
            "0", 
148897
            "0", 
146778 148898
            "1"
146779 148899
        ], 
146780 148900
        [
......
146790 148910
            "0", 
146791 148911
            "0", 
146792 148912
            "0", 
148913
            "0", 
146793 148914
            "0"
146794 148915
        ], 
146795 148916
        [
......
146805 148926
            "0", 
146806 148927
            "0", 
146807 148928
            "0", 
148929
            "0", 
146808 148930
            "0"
146809 148931
        ], 
146810 148932
        [
......
146820 148942
            "0", 
146821 148943
            "0", 
146822 148944
            "0", 
148945
            "0", 
146823 148946
            "0"
146824 148947
        ], 
146825 148948
        [
......
146835 148958
            "0", 
146836 148959
            "1", 
146837 148960
            "0", 
148961
            "0", 
146838 148962
            "8"
146839 148963
        ], 
146840 148964
        [
......
146850 148974
            "0", 
146851 148975
            "0", 
146852 148976
            "0", 
148977
            "0", 
146853 148978
            "2"
146854 148979
        ], 
146855 148980
        [
......
146865 148990
            "0", 
146866 148991
            "0", 
146867 148992
            "0", 
148993
            "0", 
146868 148994
            "7"
146869 148995
        ], 
146870 148996
        [
......
146880 149006
            "0", 
146881 149007
            "0", 
146882 149008
            "0", 
149009
            "0", 
146883 149010
            "0"
146884 149011
        ], 
146885 149012
        [
......
146895 149022
            "0", 
146896 149023
            "1", 
146897 149024
            "0", 
149025
            "0", 
146898 149026
            "8"
146899 149027
        ], 
146900 149028
        [
......
146910 149038
            "0", 
146911 149039
            "0", 
146912 149040
            "0", 
149041
            "0", 
146913 149042
            "0"
146914 149043
        ], 
146915 149044
        [
......
146925 149054
            "0", 
146926 149055
            "0", 
146927 149056
            "0", 
149057
            "0", 
146928 149058
            "7"
146929 149059
        ], 
146930 149060
        [
......
146940 149070
            "0", 
146941 149071
            "0", 
146942 149072
            "0", 
149073
            "0", 
146943 149074
            "0"
146944 149075
        ], 
146945 149076
        [
......
146955 149086
            "0", 
146956 149087
            "0", 
146957 149088
            "0", 
149089
            "0", 
146958 149090
            "1"
146959 149091
        ], 
146960 149092
        [
......
146970 149102
            "0", 
146971 149103
            "0", 
146972 149104
            "0", 
149105
            "0", 
146973 149106
            "0"
146974 149107
        ], 
146975 149108
        [
......
146985 149118
            "0", 
146986 149119
            "1", 
146987 149120
            "0", 
149121
            "0", 
146988 149122
            "5"
146989 149123
        ], 
146990 149124
        [
......
147000 149134
            "0", 
147001 149135
            "3", 
147002 149136
            "0", 
149137
            "0", 
147003 149138
            "22"
147004 149139
        ], 
147005 149140
        [
......
147015 149150
            "0", 
147016 149151
            "1", 
147017 149152
            "0", 
149153
            "0", 
147018 149154
            "3"
147019 149155
        ], 
149156
        [
149157
            "Aucun(e)", 
149158
            "0", 
149159
            "0", 
149160
            "0", 
149161
            "0", 
149162
            "0", 
149163
            "0", 
149164
            "0", 
149165
            "0", 
149166
            "0", 
149167
            "0", 
149168
            "0", 
149169
            "19", 
149170
            "19"
149171
        ], 
147020 149172
        [
147021 149173
            "Total", 
147022 149174
            "0", 
......
147030 149182
            "0", 
147031 149183
            "81", 
147032 149184
            "1", 
147033
            "405"
149185
            "19", 
149186
            "424"
147034 149187
        ]
147035 149188
    ], 
147036 149189
    "zz_old_Tous formulaires - Demandes par canal - ann\u00e9e en cours": [
......
147047 149200
            "Formulaire Elu", 
147048 149201
            "Formulaire Portail citoyen", 
147049 149202
            "Observation terrain", 
149203
            "Aucun(e)", 
147050 149204
            "Total"
147051 149205
        ], 
147052 149206
        [
......
147062 149216
            "0", 
147063 149217
            "97", 
147064 149218
            "0", 
149219
            "0", 
147065 149220
            "1037"
147066 149221
        ], 
147067 149222
        [
......
147077 149232
            "0", 
147078 149233
            "22", 
147079 149234
            "0", 
149235
            "0", 
147080 149236
            "745"
147081 149237
        ], 
147082 149238
        [
......
147092 149248
            "0", 
147093 149249
            "24", 
147094 149250
            "0", 
149251
            "0", 
147095 149252
            "1215"
147096 149253
        ], 
147097 149254
        [
......
147107 149264
            "0", 
147108 149265
            "23", 
147109 149266
            "0", 
147110
            "1438"
149267
            "217", 
149268
            "1655"
147111 149269
        ], 
147112 149270
        [
147113 149271
            "mai", 
......
147122 149280
            "0", 
147123 149281
            "29", 
147124 149282
            "0", 
147125
            "1814"
149283
            "425", 
149284
            "2239"
147126 149285
        ], 
147127 149286
        [
147128 149287
            "juin", 
......
147137 149296
            "0", 
147138 149297
            "45", 
147139 149298
            "0", 
147140
            "1480"
149299
            "475", 
149300
            "1955"
147141 149301
        ], 
147142 149302
        [
147143 149303
            "juillet", 
......
147152 149312
            "0", 
147153 149313
            "194", 
147154 149314
            "0", 
149315
            "0", 
147155 149316
            "2013"
147156 149317
        ], 
147157 149318
        [
......
147167 149328
            "0", 
147168 149329
            "234", 
147169 149330
            "0", 
149331
            "0", 
147170 149332
            "2036"
147171 149333
        ], 
147172 149334
        [
......
147182 149344
            "0", 
147183 149345
            "296", 
147184 149346
            "0", 
149347
            "0", 
147185 149348
            "2384"
147186 149349
        ], 
147187 149350
        [
......
147197 149360
            "6", 
147198 149361
            "449", 
147199 149362
            "0", 
147200
            "4313"
149363
            "116", 
149364
            "4429"
147201 149365
        ], 
147202 149366
        [
147203 149367
            "novembre", 
......
147212 149376
            "0", 
147213 149377
            "516", 
147214 149378
            "0", 
147215
            "2712"
149379
            "123", 
149380
            "2835"
147216 149381
        ], 
147217 149382
        [
147218 149383
            "d\u00e9cembre", 
......
147227 149392
            "0", 
147228 149393
            "81", 
147229 149394
            "1", 
147230
            "405"
149395
            "19", 
149396
            "424"
147231 149397
        ], 
147232 149398
        [
147233 149399
            "Total", 
......
147242 149408
            "6", 
147243 149409
            "2010", 
147244 149410
            "1", 
147245
            "21592"
149411
            "1375", 
149412
            "22967"
147246 149413
        ]
147247 149414
    ], 
147248 149415
    "zz_old_Tous formulaires - Demandes par heure - Ann\u00e9e en cours": [], 
......
148368 150535
            "353"
148369 150536
        ], 
148370 150537
        [
148371
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Acc\u00e8s d\u00e9ch\u00e8teries", 
148372
            "0", 
148373
            "0", 
148374
            "0", 
148375
            "0", 
148376
            "0", 
148377
            "0", 
148378
            "56", 
148379
            "73", 
148380
            "56", 
148381
            "102", 
148382
            "0", 
148383
            "0", 
148384
            "287"
150538
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Acc\u00e8s d\u00e9ch\u00e8teries", 
150539
            "0", 
150540
            "0", 
150541
            "0", 
150542
            "0", 
150543
            "0", 
150544
            "0", 
150545
            "56", 
150546
            "73", 
150547
            "56", 
150548
            "102", 
150549
            "0", 
150550
            "0", 
150551
            "287"
150552
        ], 
150553
        [
150554
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Autre demande d\u2019information", 
150555
            "24", 
150556
            "52", 
150557
            "59", 
150558
            "31", 
150559
            "40", 
150560
            "8", 
150561
            "12", 
150562
            "12", 
150563
            "3", 
150564
            "1", 
150565
            "0", 
150566
            "0", 
150567
            "242"
150568
        ], 
150569
        [
150570
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Horaires d\u00e9ch\u00e8teries", 
150571
            "104", 
150572
            "40", 
150573
            "67", 
150574
            "103", 
150575
            "240", 
150576
            "56", 
150577
            "97", 
150578
            "148", 
150579
            "502", 
150580
            "387", 
150581
            "0", 
150582
            "0", 
150583
            "1744"
150584
        ], 
150585
        [
150586
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : S\u00e9curit\u00e9 d\u00e9ch\u00e8teries", 
150587
            "5", 
150588
            "2", 
150589
            "0", 
150590
            "1", 
150591
            "4", 
150592
            "3", 
150593
            "0", 
150594
            "0", 
150595
            "0", 
150596
            "0", 
150597
            "0", 
150598
            "0", 
150599
            "15"
150600
        ], 
150601
        [
150602
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s", 
150603
            "0", 
150604
            "0", 
150605
            "0", 
150606
            "0", 
150607
            "0", 
150608
            "0", 
150609
            "148", 
150610
            "117", 
150611
            "98", 
150612
            "8", 
150613
            "0", 
150614
            "0", 
150615
            "371"
150616
        ], 
150617
        [
150618
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s en d\u00e9ch\u00e8teries", 
150619
            "70", 
150620
            "58", 
150621
            "86", 
150622
            "133", 
150623
            "124", 
150624
            "158", 
150625
            "0", 
150626
            "0", 
150627
            "0", 
150628
            "0", 
150629
            "0", 
150630
            "0", 
150631
            "629"
150632
        ], 
150633
        [
150634
            "Une animation, un atelier ou une visite - Qualification par le guichet : Un atelier compostage", 
150635
            "0", 
150636
            "0", 
150637
            "0", 
150638
            "0", 
150639
            "0", 
150640
            "0", 
150641
            "0", 
150642
            "0", 
150643
            "0", 
150644
            "20", 
150645
            "15", 
150646
            "3", 
150647
            "38"
150648
        ], 
150649
        [
150650
            "Une animation, un atelier ou une visite - Qualification par le guichet : Une animation sur le tri", 
150651
            "0", 
150652
            "0", 
150653
            "0", 
150654
            "0", 
150655
            "0", 
150656
            "0", 
150657
            "0", 
150658
            "0", 
150659
            "0", 
150660
            "7", 
150661
            "14", 
150662
            "2", 
150663
            "23"
150664
        ], 
150665
        [
150666
            "Une animation, un atelier ou une visite - Qualification par le guichet : Une visite du centre de tri", 
150667
            "0", 
150668
            "0", 
150669
            "0", 
150670
            "0", 
150671
            "0", 
150672
            "0", 
150673
            "0", 
150674
            "0", 
150675
            "0", 
150676
            "0", 
150677
            "2", 
150678
            "0", 
150679
            "2"
150680
        ], 
150681
        [
150682
            "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Autre dysfonctionnement", 
150683
            "0", 
150684
            "0", 
150685
            "0", 
150686
            "0", 
150687
            "0", 
150688
            "0", 
150689
            "0", 
150690
            "0", 
150691
            "0", 
150692
            "5", 
150693
            "9", 
150694
            "1", 
150695
            "15"
150696
        ], 
150697
        [
150698
            "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Fermeture d\u00e9ch\u00e8terie", 
150699
            "0", 
150700
            "0", 
150701
            "0", 
150702
            "0", 
150703
            "0", 
150704
            "0", 
150705
            "0", 
150706
            "0", 
150707
            "0", 
150708
            "6", 
150709
            "3", 
150710
            "0", 
150711
            "9"
150712
        ], 
150713
        [
150714
            "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Gardiennage", 
150715
            "0", 
150716
            "0", 
150717
            "0", 
150718
            "0", 
150719
            "0", 
150720
            "0", 
150721
            "0", 
150722
            "0", 
150723
            "0", 
150724
            "0", 
150725
            "1", 
150726
            "0", 
150727
            "1"
150728
        ], 
150729
        [
150730
            "Aucun(e)", 
150731
            "0", 
150732
            "0", 
150733
            "0", 
150734
            "318", 
150735
            "590", 
150736
            "746", 
150737
            "639", 
150738
            "610", 
150739
            "678", 
150740
            "733", 
150741
            "785", 
150742
            "151", 
150743
            "5250"
150744
        ], 
150745
        [
150746
            "Total", 
150747
            "1037", 
150748
            "745", 
150749
            "1215", 
150750
            "1655", 
150751
            "2239", 
150752
            "1955", 
150753
            "2013", 
150754
            "2036", 
150755
            "2384", 
150756
            "4429", 
150757
            "2835", 
150758
            "424", 
150759
            "22967"
150760
        ]
150761
    ], 
150762
    "zz_old_Tous formulaires - Demandes par secteur et par mois - ann\u00e9e en cours": [
150763
        [
150764
            "", 
150765
            "Grand-Sud", 
150766
            "inconnu", 
150767
            "Nord-Est", 
150768
            "Nord-Ouest", 
150769
            "Sud", 
150770
            "Aucun(e)", 
150771
            "Total"
150772
        ], 
150773
        [
150774
            "janvier", 
150775
            "198", 
150776
            "0", 
150777
            "326", 
150778
            "255", 
150779
            "258", 
150780
            "0", 
150781
            "1037"
150782
        ], 
150783
        [
150784
            "f\u00e9vrier", 
150785
            "122", 
150786
            "0", 
150787
            "225", 
150788
            "210", 
150789
            "188", 
150790
            "0", 
150791
            "745"
150792
        ], 
150793
        [
150794
            "mars", 
150795
            "269", 
150796
            "0", 
150797
            "322", 
150798
            "289", 
150799
            "335", 
150800
            "0", 
150801
            "1215"
150802
        ], 
150803
        [
150804
            "avril", 
150805
            "276", 
150806
            "0", 
150807
            "423", 
150808
            "540", 
150809
            "315", 
150810
            "101", 
150811
            "1655"
150812
        ], 
150813
        [
150814
            "mai", 
150815
            "391", 
150816
            "0", 
150817
            "638", 
150818
            "563", 
150819
            "482", 
150820
            "165", 
150821
            "2239"
150822
        ], 
150823
        [
150824
            "juin", 
150825
            "315", 
150826
            "0", 
150827
            "484", 
150828
            "507", 
150829
            "416", 
150830
            "233", 
150831
            "1955"
150832
        ], 
150833
        [
150834
            "juillet", 
150835
            "354", 
150836
            "0", 
150837
            "626", 
150838
            "610", 
150839
            "423", 
150840
            "0", 
150841
            "2013"
150842
        ], 
150843
        [
150844
            "ao\u00fbt", 
150845
            "307", 
150846
            "0", 
150847
            "647", 
150848
            "589", 
150849
            "493", 
150850
            "0", 
150851
            "2036"
150852
        ], 
150853
        [
150854
            "septembre", 
150855
            "435", 
150856
            "0", 
150857
            "712", 
150858
            "803", 
150859
            "434", 
150860
            "0", 
150861
            "2384"
150862
        ], 
150863
        [
150864
            "octobre", 
150865
            "564", 
150866
            "1", 
150867
            "1591", 
150868
            "1309", 
150869
            "848", 
150870
            "116", 
150871
            "4429"
150872
        ], 
150873
        [
150874
            "novembre", 
150875
            "516", 
150876
            "12", 
150877
            "932", 
150878
            "752", 
150879
            "498", 
150880
            "125", 
150881
            "2835"
150882
        ], 
150883
        [
150884
            "d\u00e9cembre", 
150885
            "66", 
150886
            "0", 
150887
            "131", 
150888
            "115", 
150889
            "90", 
150890
            "22", 
150891
            "424"
150892
        ], 
150893
        [
150894
            "Total", 
150895
            "3813", 
150896
            "13", 
150897
            "7057", 
150898
            "6542", 
150899
            "4780", 
150900
            "762", 
150901
            "22967"
150902
        ]
150903
    ], 
150904
    "zz_old_Tous formulaires - Demandes par semaine - 3 derniers mois": [
150905
        [
150906
            "semaine (date de la demande)", 
150907
            "nombre de demandes"
150908
        ], 
150909
        [
150910
            "2009S53", 
150911
            "0"
150912
        ], 
150913
        [
150914
            "2010S1", 
150915
            "0"
150916
        ], 
150917
        [
150918
            "2010S2", 
150919
            "0"
150920
        ], 
150921
        [
150922
            "2010S3", 
150923
            "0"
150924
        ], 
150925
        [
150926
            "2010S4", 
150927
            "0"
150928
        ], 
150929
        [
150930
            "2010S5", 
150931
            "0"
150932
        ], 
150933
        [
150934
            "2010S6", 
150935
            "0"
150936
        ], 
150937
        [
150938
            "2010S7", 
150939
            "0"
150940
        ], 
150941
        [
150942
            "2010S8", 
150943
            "0"
150944
        ], 
150945
        [
150946
            "2010S9", 
150947
            "0"
150948
        ], 
150949
        [
150950
            "2010S10", 
150951
            "0"
150952
        ], 
150953
        [
150954
            "2010S11", 
150955
            "0"
150956
        ], 
150957
        [
150958
            "2010S12", 
150959
            "0"
150960
        ], 
150961
        [
150962
            "2010S13", 
150963
            "0"
150964
        ], 
150965
        [
150966
            "2010S14", 
150967
            "0"
150968
        ], 
150969
        [
150970
            "2010S15", 
150971
            "0"
150972
        ], 
150973
        [
150974
            "2010S16", 
150975
            "0"
150976
        ], 
150977
        [
150978
            "2010S17", 
150979
            "0"
150980
        ], 
150981
        [
150982
            "2010S18", 
150983
            "0"
150984
        ], 
150985
        [
150986
            "2010S19", 
150987
            "0"
150988
        ], 
150989
        [
150990
            "2010S20", 
150991
            "0"
150992
        ], 
150993
        [
150994
            "2010S21", 
150995
            "0"
150996
        ], 
150997
        [
150998
            "2010S22", 
150999
            "0"
151000
        ], 
151001
        [
151002
            "2010S23", 
151003
            "0"
151004
        ], 
151005
        [
151006
            "2010S24", 
151007
            "0"
151008
        ], 
151009
        [
151010
            "2010S25", 
151011
            "0"
151012
        ], 
151013
        [
151014
            "2010S26", 
151015
            "0"
151016
        ], 
151017
        [
151018
            "2010S27", 
151019
            "0"
151020
        ], 
151021
        [
151022
            "2010S28", 
151023
            "0"
151024
        ], 
151025
        [
151026
            "2010S29", 
151027
            "0"
151028
        ], 
151029
        [
151030
            "2010S30", 
151031
            "0"
151032
        ], 
151033
        [
151034
            "2010S31", 
151035
            "0"
151036
        ], 
151037
        [
151038
            "2010S32", 
151039
            "0"
151040
        ], 
151041
        [
151042
            "2010S33", 
151043
            "0"
151044
        ], 
151045
        [
151046
            "2010S34", 
151047
            "0"
151048
        ], 
151049
        [
151050
            "2010S35", 
151051
            "0"
151052
        ], 
151053
        [
151054
            "2010S36", 
151055
            "0"
151056
        ], 
151057
        [
151058
            "2010S37", 
151059
            "0"
151060
        ], 
151061
        [
151062
            "2010S38", 
151063
            "0"
151064
        ], 
151065
        [
151066
            "2010S39", 
151067
            "0"
151068
        ], 
151069
        [
151070
            "2010S40", 
151071
            "0"
151072
        ], 
151073
        [
151074
            "2010S41", 
151075
            "0"
151076
        ], 
151077
        [
151078
            "2010S42", 
151079
            "0"
151080
        ], 
151081
        [
151082
            "2010S43", 
151083
            "0"
151084
        ], 
151085
        [
151086
            "2010S44", 
151087
            "0"
151088
        ], 
151089
        [
151090
            "2010S45", 
151091
            "0"
151092
        ], 
151093
        [
151094
            "2010S46", 
151095
            "0"
151096
        ], 
151097
        [
151098
            "2010S47", 
151099
            "0"
151100
        ], 
151101
        [
151102
            "2010S48", 
151103
            "0"
151104
        ], 
151105
        [
151106
            "2010S49", 
151107
            "0"
151108
        ], 
151109
        [
151110
            "2010S50", 
151111
            "0"
151112
        ], 
151113
        [
151114
            "2010S51", 
151115
            "0"
151116
        ], 
151117
        [
151118
            "2010S52", 
151119
            "0"
151120
        ], 
151121
        [
151122
            "2011S1", 
151123
            "0"
151124
        ], 
151125
        [
151126
            "2011S2", 
151127
            "0"
151128
        ], 
151129
        [
151130
            "2011S3", 
151131
            "0"
151132
        ], 
151133
        [
151134
            "2011S4", 
151135
            "0"
151136
        ], 
151137
        [
151138
            "2011S5", 
151139
            "0"
151140
        ], 
151141
        [
151142
            "2011S6", 
151143
            "0"
151144
        ], 
151145
        [
151146
            "2011S7", 
151147
            "0"
151148
        ], 
151149
        [
151150
            "2011S8", 
151151
            "0"
151152
        ], 
151153
        [
151154
            "2011S9", 
151155
            "0"
151156
        ], 
151157
        [
151158
            "2011S10", 
151159
            "0"
151160
        ], 
151161
        [
151162
            "2011S11", 
151163
            "0"
151164
        ], 
151165
        [
151166
            "2011S12", 
151167
            "0"
151168
        ], 
151169
        [
151170
            "2011S13", 
151171
            "0"
151172
        ], 
151173
        [
151174
            "2011S14", 
151175
            "0"
151176
        ], 
151177
        [
151178
            "2011S15", 
151179
            "0"
151180
        ], 
151181
        [
151182
            "2011S16", 
151183
            "0"
151184
        ], 
151185
        [
151186
            "2011S17", 
151187
            "0"
151188
        ], 
151189
        [
151190
            "2011S18", 
151191
            "0"
151192
        ], 
151193
        [
151194
            "2011S19", 
151195
            "0"
151196
        ], 
151197
        [
151198
            "2011S20", 
151199
            "0"
151200
        ], 
151201
        [
151202
            "2011S21", 
151203
            "0"
151204
        ], 
151205
        [
151206
            "2011S22", 
151207
            "0"
151208
        ], 
151209
        [
151210
            "2011S23", 
151211
            "0"
151212
        ], 
151213
        [
151214
            "2011S24", 
151215
            "0"
151216
        ], 
151217
        [
151218
            "2011S25", 
151219
            "0"
151220
        ], 
151221
        [
151222
            "2011S26", 
151223
            "0"
151224
        ], 
151225
        [
151226
            "2011S27", 
151227
            "0"
151228
        ], 
151229
        [
151230
            "2011S28", 
151231
            "0"
151232
        ], 
151233
        [
151234
            "2011S29", 
151235
            "0"
151236
        ], 
151237
        [
151238
            "2011S30", 
151239
            "0"
151240
        ], 
151241
        [
151242
            "2011S31", 
151243
            "0"
151244
        ], 
151245
        [
151246
            "2011S32", 
151247
            "0"
151248
        ], 
151249
        [
151250
            "2011S33", 
151251
            "0"
151252
        ], 
151253
        [
151254
            "2011S34", 
151255
            "0"
151256
        ], 
151257
        [
151258
            "2011S35", 
151259
            "0"
151260
        ], 
151261
        [
151262
            "2011S36", 
151263
            "0"
151264
        ], 
151265
        [
151266
            "2011S37", 
151267
            "0"
151268
        ], 
151269
        [
151270
            "2011S38", 
151271
            "0"
151272
        ], 
151273
        [
151274
            "2011S39", 
151275
            "0"
151276
        ], 
151277
        [
151278
            "2011S40", 
151279
            "0"
151280
        ], 
151281
        [
151282
            "2011S41", 
151283
            "0"
151284
        ], 
151285
        [
151286
            "2011S42", 
151287
            "0"
151288
        ], 
151289
        [
151290
            "2011S43", 
151291
            "0"
151292
        ], 
151293
        [
151294
            "2011S44", 
151295
            "0"
151296
        ], 
151297
        [
151298
            "2011S45", 
151299
            "0"
151300
        ], 
151301
        [
151302
            "2011S46", 
151303
            "0"
151304
        ], 
151305
        [
151306
            "2011S47", 
151307
            "0"
151308
        ], 
151309
        [
151310
            "2011S48", 
151311
            "0"
151312
        ], 
151313
        [
151314
            "2011S49", 
151315
            "0"
151316
        ], 
151317
        [
151318
            "2011S50", 
151319
            "0"
151320
        ], 
151321
        [
151322
            "2011S51", 
151323
            "0"
151324
        ], 
151325
        [
151326
            "2011S52", 
151327
            "0"
151328
        ], 
151329
        [
151330
            "2012S1", 
151331
            "0"
151332
        ], 
151333
        [
151334
            "2012S2", 
151335
            "0"
151336
        ], 
151337
        [
151338
            "2012S3", 
151339
            "0"
151340
        ], 
151341
        [
151342
            "2012S4", 
151343
            "0"
151344
        ], 
151345
        [
151346
            "2012S5", 
151347
            "0"
151348
        ], 
151349
        [
151350
            "2012S6", 
151351
            "0"
151352
        ], 
151353
        [
151354
            "2012S7", 
151355
            "0"
151356
        ], 
151357
        [
151358
            "2012S8", 
151359
            "0"
151360
        ], 
151361
        [
151362
            "2012S9", 
151363
            "0"
151364
        ], 
151365
        [
151366
            "2012S10", 
151367
            "0"
151368
        ], 
151369
        [
151370
            "2012S11", 
151371
            "0"
151372
        ], 
151373
        [
151374
            "2012S12", 
151375
            "0"
151376
        ], 
151377
        [
151378
            "2012S13", 
151379
            "0"
151380
        ], 
151381
        [
151382
            "2012S14", 
151383
            "0"
151384
        ], 
151385
        [
151386
            "2012S15", 
151387
            "0"
151388
        ], 
151389
        [
151390
            "2012S16", 
151391
            "0"
151392
        ], 
151393
        [
151394
            "2012S17", 
151395
            "0"
151396
        ], 
151397
        [
151398
            "2012S18", 
151399
            "0"
151400
        ], 
151401
        [
151402
            "2012S19", 
151403
            "0"
151404
        ], 
151405
        [
151406
            "2012S20", 
151407
            "0"
151408
        ], 
151409
        [
151410
            "2012S21", 
151411
            "0"
151412
        ], 
151413
        [
151414
            "2012S22", 
151415
            "0"
151416
        ], 
151417
        [
151418
            "2012S23", 
151419
            "0"
151420
        ], 
151421
        [
151422
            "2012S24", 
151423
            "0"
151424
        ], 
151425
        [
151426
            "2012S25", 
151427
            "0"
151428
        ], 
151429
        [
151430
            "2012S26", 
151431
            "0"
151432
        ], 
151433
        [
151434
            "2012S27", 
151435
            "0"
151436
        ], 
151437
        [
151438
            "2012S28", 
151439
            "0"
151440
        ], 
151441
        [
151442
            "2012S29", 
151443
            "0"
151444
        ], 
151445
        [
151446
            "2012S30", 
151447
            "0"
151448
        ], 
151449
        [
151450
            "2012S31", 
151451
            "0"
151452
        ], 
151453
        [
151454
            "2012S32", 
151455
            "0"
151456
        ], 
151457
        [
151458
            "2012S33", 
151459
            "0"
151460
        ], 
151461
        [
151462
            "2012S34", 
151463
            "0"
151464
        ], 
151465
        [
151466
            "2012S35", 
151467
            "0"
151468
        ], 
151469
        [
151470
            "2012S36", 
151471
            "0"
151472
        ], 
151473
        [
151474
            "2012S37", 
151475
            "0"
151476
        ], 
151477
        [
151478
            "2012S38", 
151479
            "0"
151480
        ], 
151481
        [
151482
            "2012S39", 
151483
            "0"
151484
        ], 
151485
        [
151486
            "2012S40", 
151487
            "0"
151488
        ], 
151489
        [
151490
            "2012S41", 
151491
            "0"
151492
        ], 
151493
        [
151494
            "2012S42", 
151495
            "0"
151496
        ], 
151497
        [
151498
            "2012S43", 
151499
            "0"
151500
        ], 
151501
        [
151502
            "2012S44", 
151503
            "0"
151504
        ], 
151505
        [
151506
            "2012S45", 
151507
            "0"
151508
        ], 
151509
        [
151510
            "2012S46", 
151511
            "0"
151512
        ], 
151513
        [
151514
            "2012S47", 
151515
            "0"
151516
        ], 
151517
        [
151518
            "2012S48", 
151519
            "0"
151520
        ], 
151521
        [
151522
            "2012S49", 
151523
            "0"
151524
        ], 
151525
        [
151526
            "2012S50", 
151527
            "0"
151528
        ], 
151529
        [
151530
            "2012S51", 
151531
            "0"
151532
        ], 
151533
        [
151534
            "2012S52", 
151535
            "0"
151536
        ], 
151537
        [
151538
            "2013S1", 
151539
            "0"
151540
        ], 
151541
        [
151542
            "2013S2", 
151543
            "0"
151544
        ], 
151545
        [
151546
            "2013S3", 
151547
            "0"
151548
        ], 
151549
        [
151550
            "2013S4", 
151551
            "0"
151552
        ], 
151553
        [
151554
            "2013S5", 
151555
            "0"
151556
        ], 
151557
        [
151558
            "2013S6", 
151559
            "0"
151560
        ], 
151561
        [
151562
            "2013S7", 
151563
            "0"
151564
        ], 
151565
        [
151566
            "2013S8", 
151567
            "0"
151568
        ], 
151569
        [
151570
            "2013S9", 
151571
            "0"
151572
        ], 
151573
        [
151574
            "2013S10", 
151575
            "0"
151576
        ], 
151577
        [
151578
            "2013S11", 
151579
            "0"
151580
        ], 
151581
        [
151582
            "2013S12", 
151583
            "0"
151584
        ], 
151585
        [
151586
            "2013S13", 
151587
            "0"
151588
        ], 
151589
        [
151590
            "2013S14", 
151591
            "0"
151592
        ], 
151593
        [
151594
            "2013S15", 
151595
            "0"
151596
        ], 
151597
        [
151598
            "2013S16", 
151599
            "0"
151600
        ], 
151601
        [
151602
            "2013S17", 
151603
            "0"
151604
        ], 
151605
        [
151606
            "2013S18", 
151607
            "0"
151608
        ], 
151609
        [
151610
            "2013S19", 
151611
            "0"
151612
        ], 
151613
        [
151614
            "2013S20", 
151615
            "0"
151616
        ], 
151617
        [
151618
            "2013S21", 
151619
            "0"
151620
        ], 
151621
        [
151622
            "2013S22", 
151623
            "0"
151624
        ], 
151625
        [
151626
            "2013S23", 
151627
            "0"
151628
        ], 
151629
        [
151630
            "2013S24", 
151631
            "0"
151632
        ], 
151633
        [
151634
            "2013S25", 
151635
            "0"
151636
        ], 
151637
        [
151638
            "2013S26", 
151639
            "0"
151640
        ], 
151641
        [
151642
            "2013S27", 
151643
            "0"
151644
        ], 
151645
        [
151646
            "2013S28", 
151647
            "0"
151648
        ], 
151649
        [
151650
            "2013S29", 
151651
            "0"
151652
        ], 
151653
        [
151654
            "2013S30", 
151655
            "0"
151656
        ], 
151657
        [
151658
            "2013S31", 
151659
            "0"
151660
        ], 
151661
        [
151662
            "2013S32", 
151663
            "0"
151664
        ], 
151665
        [
151666
            "2013S33", 
151667
            "0"
151668
        ], 
151669
        [
151670
            "2013S34", 
151671
            "0"
151672
        ], 
151673
        [
151674
            "2013S35", 
151675
            "0"
151676
        ], 
151677
        [
151678
            "2013S36", 
151679
            "0"
151680
        ], 
151681
        [
151682
            "2013S37", 
151683
            "0"
151684
        ], 
151685
        [
151686
            "2013S38", 
151687
            "0"
151688
        ], 
151689
        [
151690
            "2013S39", 
151691
            "0"
151692
        ], 
151693
        [
151694
            "2013S40", 
151695
            "0"
151696
        ], 
151697
        [
151698
            "2013S41", 
151699
            "0"
151700
        ], 
151701
        [
151702
            "2013S42", 
151703
            "0"
151704
        ], 
151705
        [
151706
            "2013S43", 
151707
            "0"
151708
        ], 
151709
        [
151710
            "2013S44", 
151711
            "0"
151712
        ], 
151713
        [
151714
            "2013S45", 
151715
            "0"
151716
        ], 
151717
        [
151718
            "2013S46", 
151719
            "0"
151720
        ], 
151721
        [
151722
            "2013S47", 
151723
            "0"
151724
        ], 
151725
        [
151726
            "2013S48", 
151727
            "0"
151728
        ], 
151729
        [
151730
            "2013S49", 
151731
            "0"
151732
        ], 
151733
        [
151734
            "2013S50", 
151735
            "0"
151736
        ], 
151737
        [
151738
            "2013S51", 
151739
            "0"
151740
        ], 
151741
        [
151742
            "2013S52", 
151743
            "0"
151744
        ], 
151745
        [
151746
            "2014S1", 
151747
            "0"
151748
        ], 
151749
        [
151750
            "2014S2", 
151751
            "0"
151752
        ], 
151753
        [
151754
            "2014S3", 
151755
            "0"
151756
        ], 
151757
        [
151758
            "2014S4", 
151759
            "0"
151760
        ], 
151761
        [
151762
            "2014S5", 
151763
            "0"
151764
        ], 
151765
        [
151766
            "2014S6", 
151767
            "0"
151768
        ], 
151769
        [
151770
            "2014S7", 
151771
            "0"
151772
        ], 
151773
        [
151774
            "2014S8", 
151775
            "0"
151776
        ], 
151777
        [
151778
            "2014S9", 
151779
            "0"
151780
        ], 
151781
        [
151782
            "2014S10", 
151783
            "0"
151784
        ], 
151785
        [
151786
            "2014S11", 
151787
            "0"
151788
        ], 
151789
        [
151790
            "2014S12", 
151791
            "0"
151792
        ], 
151793
        [
151794
            "2014S13", 
151795
            "0"
151796
        ], 
151797
        [
151798
            "2014S14", 
151799
            "0"
151800
        ], 
151801
        [
151802
            "2014S15", 
151803
            "0"
151804
        ], 
151805
        [
151806
            "2014S16", 
151807
            "0"
151808
        ], 
151809
        [
151810
            "2014S17", 
151811
            "0"
151812
        ], 
151813
        [
151814
            "2014S18", 
151815
            "0"
151816
        ], 
151817
        [
151818
            "2014S19", 
151819
            "0"
151820
        ], 
151821
        [
151822
            "2014S20", 
151823
            "0"
151824
        ], 
151825
        [
151826
            "2014S21", 
151827
            "0"
151828
        ], 
151829
        [
151830
            "2014S22", 
151831
            "0"
151832
        ], 
151833
        [
151834
            "2014S23", 
151835
            "0"
151836
        ], 
151837
        [
151838
            "2014S24", 
151839
            "0"
151840
        ], 
151841
        [
151842
            "2014S25", 
151843
            "0"
151844
        ], 
151845
        [
151846
            "2014S26", 
151847
            "0"
151848
        ], 
151849
        [
151850
            "2014S27", 
151851
            "0"
151852
        ], 
151853
        [
151854
            "2014S28", 
151855
            "0"
151856
        ], 
151857
        [
151858
            "2014S29", 
151859
            "0"
151860
        ], 
151861
        [
151862
            "2014S30", 
151863
            "0"
151864
        ], 
151865
        [
151866
            "2014S31", 
151867
            "0"
151868
        ], 
151869
        [
151870
            "2014S32", 
151871
            "0"
151872
        ], 
151873
        [
151874
            "2014S33", 
151875
            "0"
151876
        ], 
151877
        [
151878
            "2014S34", 
151879
            "0"
151880
        ], 
151881
        [
151882
            "2014S35", 
151883
            "0"
151884
        ], 
151885
        [
151886
            "2014S36", 
151887
            "0"
151888
        ], 
151889
        [
151890
            "2014S37", 
151891
            "0"
151892
        ], 
151893
        [
151894
            "2014S38", 
151895
            "0"
151896
        ], 
151897
        [
151898
            "2014S39", 
151899
            "0"
151900
        ], 
151901
        [
151902
            "2014S40", 
151903
            "0"
151904
        ], 
151905
        [
151906
            "2014S41", 
151907
            "0"
151908
        ], 
151909
        [
151910
            "2014S42", 
151911
            "0"
151912
        ], 
151913
        [
151914
            "2014S43", 
151915
            "0"
151916
        ], 
151917
        [
151918
            "2014S44", 
151919
            "0"
151920
        ], 
151921
        [
151922
            "2014S45", 
151923
            "0"
151924
        ], 
151925
        [
151926
            "2014S46", 
151927
            "0"
151928
        ], 
151929
        [
151930
            "2014S47", 
151931
            "0"
151932
        ], 
151933
        [
151934
            "2014S48", 
151935
            "0"
151936
        ], 
151937
        [
151938
            "2014S49", 
151939
            "0"
151940
        ], 
151941
        [
151942
            "2014S50", 
151943
            "0"
151944
        ], 
151945
        [
151946
            "2014S51", 
151947
            "0"
151948
        ], 
151949
        [
151950
            "2014S52", 
151951
            "0"
151952
        ], 
151953
        [
151954
            "2015S1", 
151955
            "0"
151956
        ], 
151957
        [
151958
            "2015S2", 
151959
            "0"
151960
        ], 
151961
        [
151962
            "2015S3", 
151963
            "0"
151964
        ], 
151965
        [
151966
            "2015S4", 
151967
            "0"
151968
        ], 
151969
        [
151970
            "2015S5", 
151971
            "0"
151972
        ], 
151973
        [
151974
            "2015S6", 
151975
            "0"
151976
        ], 
151977
        [
151978
            "2015S7", 
151979
            "0"
151980
        ], 
151981
        [
151982
            "2015S8", 
151983
            "0"
151984
        ], 
151985
        [
151986
            "2015S9", 
151987
            "0"
151988
        ], 
151989
        [
151990
            "2015S10", 
151991
            "0"
151992
        ], 
151993
        [
151994
            "2015S11", 
151995
            "0"
151996
        ], 
151997
        [
151998
            "2015S12", 
151999
            "0"
152000
        ], 
152001
        [
152002
            "2015S13", 
152003
            "0"
152004
        ], 
152005
        [
152006
            "2015S14", 
152007
            "0"
152008
        ], 
152009
        [
152010
            "2015S15", 
152011
            "0"
152012
        ], 
152013
        [
152014
            "2015S16", 
152015
            "0"
152016
        ], 
152017
        [
152018
            "2015S17", 
152019
            "0"
152020
        ], 
152021
        [
152022
            "2015S18", 
152023
            "0"
152024
        ], 
152025
        [
152026
            "2015S19", 
152027
            "0"
152028
        ], 
152029
        [
152030
            "2015S20", 
152031
            "0"
152032
        ], 
152033
        [
152034
            "2015S21", 
152035
            "0"
152036
        ], 
152037
        [
152038
            "2015S22", 
152039
            "0"
152040
        ], 
152041
        [
152042
            "2015S23", 
152043
            "0"
152044
        ], 
152045
        [
152046
            "2015S24", 
152047
            "0"
152048
        ], 
152049
        [
152050
            "2015S25", 
152051
            "0"
152052
        ], 
152053
        [
152054
            "2015S26", 
152055
            "0"
152056
        ], 
152057
        [
152058
            "2015S27", 
152059
            "0"
152060
        ], 
152061
        [
152062
            "2015S28", 
152063
            "0"
152064
        ], 
152065
        [
152066
            "2015S29", 
152067
            "0"
152068
        ], 
152069
        [
152070
            "2015S30", 
152071
            "0"
152072
        ], 
152073
        [
152074
            "2015S31", 
152075
            "0"
152076
        ], 
152077
        [
152078
            "2015S32", 
152079
            "0"
152080
        ], 
152081
        [
152082
            "2015S33", 
152083
            "0"
152084
        ], 
152085
        [
152086
            "2015S34", 
152087
            "0"
152088
        ], 
152089
        [
152090
            "2015S35", 
152091
            "0"
152092
        ], 
152093
        [
152094
            "2015S36", 
152095
            "0"
152096
        ], 
152097
        [
152098
            "2015S37", 
152099
            "0"
152100
        ], 
152101
        [
152102
            "2015S38", 
152103
            "0"
152104
        ], 
152105
        [
152106
            "2015S39", 
152107
            "0"
152108
        ], 
152109
        [
152110
            "2015S40", 
152111
            "0"
152112
        ], 
152113
        [
152114
            "2015S41", 
152115
            "0"
152116
        ], 
152117
        [
152118
            "2015S42", 
152119
            "0"
152120
        ], 
152121
        [
152122
            "2015S43", 
152123
            "0"
152124
        ], 
152125
        [
152126
            "2015S44", 
152127
            "0"
152128
        ], 
152129
        [
152130
            "2015S45", 
152131
            "0"
152132
        ], 
152133
        [
152134
            "2015S46", 
152135
            "0"
152136
        ], 
152137
        [
152138
            "2015S47", 
152139
            "0"
152140
        ], 
152141
        [
152142
            "2015S48", 
152143
            "0"
152144
        ], 
152145
        [
152146
            "2015S49", 
152147
            "0"
152148
        ], 
152149
        [
152150
            "2015S50", 
152151
            "0"
152152
        ], 
152153
        [
152154
            "2015S51", 
152155
            "0"
152156
        ], 
152157
        [
152158
            "2015S52", 
152159
            "0"
152160
        ], 
152161
        [
152162
            "2015S53", 
152163
            "0"
152164
        ], 
152165
        [
152166
            "2016S1", 
152167
            "0"
152168
        ], 
152169
        [
152170
            "2016S2", 
152171
            "0"
152172
        ], 
152173
        [
152174
            "2016S3", 
152175
            "0"
152176
        ], 
152177
        [
152178
            "2016S4", 
152179
            "0"
152180
        ], 
152181
        [
152182
            "2016S5", 
152183
            "0"
152184
        ], 
152185
        [
152186
            "2016S6", 
152187
            "0"
152188
        ], 
152189
        [
152190
            "2016S7", 
152191
            "0"
152192
        ], 
152193
        [
152194
            "2016S8", 
152195
            "0"
152196
        ], 
152197
        [
152198
            "2016S9", 
152199
            "0"
152200
        ], 
152201
        [
152202
            "2016S10", 
152203
            "0"
152204
        ], 
152205
        [
152206
            "2016S11", 
152207
            "0"
152208
        ], 
152209
        [
152210
            "2016S12", 
152211
            "0"
152212
        ], 
152213
        [
152214
            "2016S13", 
152215
            "0"
152216
        ], 
152217
        [
152218
            "2016S14", 
152219
            "0"
152220
        ], 
152221
        [
152222
            "2016S15", 
152223
            "0"
152224
        ], 
152225
        [
152226
            "2016S16", 
152227
            "0"
152228
        ], 
152229
        [
152230
            "2016S17", 
152231
            "0"
152232
        ], 
152233
        [
152234
            "2016S18", 
152235
            "0"
152236
        ], 
152237
        [
152238
            "2016S19", 
152239
            "0"
152240
        ], 
152241
        [
152242
            "2016S20", 
152243
            "0"
152244
        ], 
152245
        [
152246
            "2016S21", 
152247
            "0"
152248
        ], 
152249
        [
152250
            "2016S22", 
152251
            "0"
152252
        ], 
152253
        [
152254
            "2016S23", 
152255
            "0"
152256
        ], 
152257
        [
152258
            "2016S24", 
152259
            "0"
152260
        ], 
152261
        [
152262
            "2016S25", 
152263
            "0"
152264
        ], 
152265
        [
152266
            "2016S26", 
152267
            "0"
152268
        ], 
152269
        [
152270
            "2016S27", 
152271
            "0"
152272
        ], 
152273
        [
152274
            "2016S28", 
152275
            "0"
152276
        ], 
152277
        [
152278
            "2016S29", 
152279
            "0"
152280
        ], 
152281
        [
152282
            "2016S30", 
152283
            "0"
152284
        ], 
152285
        [
152286
            "2016S31", 
152287
            "0"
152288
        ], 
152289
        [
152290
            "2016S32", 
152291
            "0"
152292
        ], 
152293
        [
152294
            "2016S33", 
152295
            "0"
152296
        ], 
152297
        [
152298
            "2016S34", 
152299
            "0"
152300
        ], 
152301
        [
152302
            "2016S35", 
152303
            "0"
152304
        ], 
152305
        [
152306
            "2016S36", 
152307
            "0"
152308
        ], 
152309
        [
152310
            "2016S37", 
152311
            "0"
152312
        ], 
152313
        [
152314
            "2016S38", 
152315
            "0"
152316
        ], 
152317
        [
152318
            "2016S39", 
152319
            "0"
152320
        ], 
152321
        [
152322
            "2016S40", 
152323
            "0"
152324
        ], 
152325
        [
152326
            "2016S41", 
152327
            "0"
152328
        ], 
152329
        [
152330
            "2016S42", 
152331
            "0"
152332
        ], 
152333
        [
152334
            "2016S43", 
152335
            "0"
152336
        ], 
152337
        [
152338
            "2016S44", 
152339
            "0"
152340
        ], 
152341
        [
152342
            "2016S45", 
152343
            "0"
152344
        ], 
152345
        [
152346
            "2016S46", 
152347
            "0"
152348
        ], 
152349
        [
152350
            "2016S47", 
152351
            "0"
152352
        ], 
152353
        [
152354
            "2016S48", 
152355
            "0"
152356
        ], 
152357
        [
152358
            "2016S49", 
152359
            "0"
152360
        ], 
152361
        [
152362
            "2016S50", 
152363
            "0"
152364
        ], 
152365
        [
152366
            "2016S51", 
152367
            "0"
152368
        ], 
152369
        [
152370
            "2016S52", 
152371
            "0"
152372
        ], 
152373
        [
152374
            "2017S1", 
152375
            "0"
152376
        ], 
152377
        [
152378
            "2017S2", 
152379
            "0"
152380
        ], 
152381
        [
152382
            "2017S3", 
152383
            "0"
152384
        ], 
152385
        [
152386
            "2017S4", 
152387
            "0"
152388
        ], 
152389
        [
152390
            "2017S5", 
152391
            "0"
152392
        ], 
152393
        [
152394
            "2017S6", 
152395
            "0"
152396
        ], 
152397
        [
152398
            "2017S7", 
152399
            "0"
152400
        ], 
152401
        [
152402
            "2017S8", 
152403
            "0"
152404
        ], 
152405
        [
152406
            "2017S9", 
152407
            "0"
152408
        ], 
152409
        [
152410
            "2017S10", 
152411
            "0"
152412
        ], 
152413
        [
152414
            "2017S11", 
152415
            "0"
152416
        ], 
152417
        [
152418
            "2017S12", 
152419
            "0"
152420
        ], 
152421
        [
152422
            "2017S13", 
152423
            "0"
152424
        ], 
152425
        [
152426
            "2017S14", 
152427
            "0"
152428
        ], 
152429
        [
152430
            "2017S15", 
152431
            "0"
152432
        ], 
152433
        [
152434
            "2017S16", 
152435
            "0"
152436
        ], 
152437
        [
152438
            "2017S17", 
152439
            "0"
152440
        ], 
152441
        [
152442
            "2017S18", 
152443
            "0"
152444
        ], 
152445
        [
152446
            "2017S19", 
152447
            "0"
152448
        ], 
152449
        [
152450
            "2017S20", 
152451
            "0"
152452
        ], 
152453
        [
152454
            "2017S21", 
152455
            "0"
152456
        ], 
152457
        [
152458
            "2017S22", 
152459
            "0"
152460
        ], 
152461
        [
152462
            "2017S23", 
152463
            "0"
152464
        ], 
152465
        [
152466
            "2017S24", 
152467
            "0"
152468
        ], 
152469
        [
152470
            "2017S25", 
152471
            "0"
152472
        ], 
152473
        [
152474
            "2017S26", 
152475
            "0"
152476
        ], 
152477
        [
152478
            "2017S27", 
152479
            "0"
152480
        ], 
152481
        [
152482
            "2017S28", 
152483
            "0"
152484
        ], 
152485
        [
152486
            "2017S29", 
152487
            "0"
152488
        ], 
152489
        [
152490
            "2017S30", 
152491
            "0"
152492
        ], 
152493
        [
152494
            "2017S31", 
152495
            "0"
152496
        ], 
152497
        [
152498
            "2017S32", 
152499
            "0"
152500
        ], 
152501
        [
152502
            "2017S33", 
152503
            "0"
152504
        ], 
152505
        [
152506
            "2017S34", 
152507
            "0"
152508
        ], 
152509
        [
152510
            "2017S35", 
152511
            "0"
152512
        ], 
152513
        [
152514
            "2017S36", 
152515
            "0"
152516
        ], 
152517
        [
152518
            "2017S37", 
152519
            "0"
152520
        ], 
152521
        [
152522
            "2017S38", 
152523
            "0"
152524
        ], 
152525
        [
152526
            "2017S39", 
152527
            "0"
152528
        ], 
152529
        [
152530
            "2017S40", 
152531
            "0"
152532
        ], 
152533
        [
152534
            "2017S41", 
152535
            "0"
152536
        ], 
152537
        [
152538
            "2017S42", 
152539
            "0"
152540
        ], 
152541
        [
152542
            "2017S43", 
152543
            "0"
152544
        ], 
152545
        [
152546
            "2017S44", 
152547
            "0"
152548
        ], 
152549
        [
152550
            "2017S45", 
152551
            "0"
152552
        ], 
152553
        [
152554
            "2017S46", 
152555
            "0"
152556
        ], 
152557
        [
152558
            "2017S47", 
152559
            "0"
152560
        ], 
152561
        [
152562
            "2017S48", 
152563
            "0"
152564
        ], 
152565
        [
152566
            "2017S49", 
152567
            "0"
152568
        ], 
152569
        [
152570
            "2017S50", 
152571
            "0"
152572
        ], 
152573
        [
152574
            "2017S51", 
152575
            "0"
152576
        ], 
152577
        [
152578
            "2017S52", 
152579
            "0"
152580
        ], 
152581
        [
152582
            "2018S1", 
152583
            "0"
152584
        ], 
152585
        [
152586
            "2018S2", 
152587
            "0"
152588
        ], 
152589
        [
152590
            "2018S3", 
152591
            "0"
152592
        ], 
152593
        [
152594
            "2018S4", 
152595
            "0"
152596
        ], 
152597
        [
152598
            "2018S5", 
152599
            "0"
152600
        ], 
152601
        [
152602
            "2018S6", 
152603
            "0"
152604
        ], 
152605
        [
152606
            "2018S7", 
152607
            "0"
152608
        ], 
152609
        [
152610
            "2018S8", 
152611
            "0"
148385 152612
        ], 
148386 152613
        [
148387
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Autre demande d\u2019information", 
148388
            "24", 
148389
            "52", 
148390
            "59", 
148391
            "31", 
148392
            "40", 
148393
            "8", 
148394
            "12", 
148395
            "12", 
148396
            "3", 
148397
            "1", 
148398
            "0", 
148399
            "0", 
148400
            "242"
152614
            "2018S9", 
152615
            "0"
148401 152616
        ], 
148402 152617
        [
148403
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Horaires d\u00e9ch\u00e8teries", 
148404
            "104", 
148405
            "40", 
148406
            "67", 
148407
            "103", 
148408
            "240", 
148409
            "56", 
148410
            "97", 
148411
            "148", 
148412
            "502", 
148413
            "387", 
148414
            "0", 
148415
            "0", 
148416
            "1744"
152618
            "2018S10", 
152619
            "0"
148417 152620
        ], 
148418 152621
        [
148419
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : S\u00e9curit\u00e9 d\u00e9ch\u00e8teries", 
148420
            "5", 
148421
            "2", 
148422
            "0", 
148423
            "1", 
148424
            "4", 
148425
            "3", 
148426
            "0", 
148427
            "0", 
148428
            "0", 
148429
            "0", 
148430
            "0", 
148431
            "0", 
148432
            "15"
152622
            "2018S11", 
152623
            "0"
148433 152624
        ], 
148434 152625
        [
148435
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s", 
148436
            "0", 
148437
            "0", 
148438
            "0", 
148439
            "0", 
148440
            "0", 
148441
            "0", 
148442
            "148", 
148443
            "117", 
148444
            "98", 
148445
            "8", 
148446
            "0", 
148447
            "0", 
148448
            "371"
152626
            "2018S12", 
152627
            "0"
148449 152628
        ], 
148450 152629
        [
148451
            "Sur les d\u00e9ch\u00e8teries - Qualification par le guichet : Types de d\u00e9chets accept\u00e9s en d\u00e9ch\u00e8teries", 
148452
            "70", 
148453
            "58", 
148454
            "86", 
148455
            "133", 
148456
            "124", 
148457
            "158", 
148458
            "0", 
148459
            "0", 
148460
            "0", 
148461
            "0", 
148462
            "0", 
148463
            "0", 
148464
            "629"
152630
            "2018S13", 
152631
            "0"
148465 152632
        ], 
148466 152633
        [
148467
            "Une animation, un atelier ou une visite - Qualification par le guichet : Un atelier compostage", 
148468
            "0", 
148469
            "0", 
148470
            "0", 
148471
            "0", 
148472
            "0", 
148473
            "0", 
148474
            "0", 
148475
            "0", 
148476
            "0", 
148477
            "20", 
148478
            "15", 
148479
            "3", 
148480
            "38"
152634
            "2018S14", 
152635
            "0"
148481 152636
        ], 
148482 152637
        [
148483
            "Une animation, un atelier ou une visite - Qualification par le guichet : Une animation sur le tri", 
148484
            "0", 
148485
            "0", 
148486
            "0", 
148487
            "0", 
148488
            "0", 
148489
            "0", 
148490
            "0", 
148491
            "0", 
148492
            "0", 
148493
            "7", 
148494
            "14", 
148495
            "2", 
148496
            "23"
152638
            "2018S15", 
152639
            "0"
148497 152640
        ], 
148498 152641
        [
148499
            "Une animation, un atelier ou une visite - Qualification par le guichet : Une visite du centre de tri", 
148500
            "0", 
148501
            "0", 
148502
            "0", 
148503
            "0", 
148504
            "0", 
148505
            "0", 
148506
            "0", 
148507
            "0", 
148508
            "0", 
148509
            "0", 
148510
            "2", 
148511
            "0", 
148512
            "2"
152642
            "2018S16", 
152643
            "0"
148513 152644
        ], 
148514 152645
        [
148515
            "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Autre dysfonctionnement", 
148516
            "0", 
148517
            "0", 
148518
            "0", 
148519
            "0", 
148520
            "0", 
148521
            "0", 
148522
            "0", 
148523
            "0", 
148524
            "0", 
148525
            "5", 
148526
            "9", 
148527
            "1", 
148528
            "15"
152646
            "2018S17", 
152647
            "0"
148529 152648
        ], 
148530 152649
        [
148531
            "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Fermeture d\u00e9ch\u00e8terie", 
148532
            "0", 
148533
            "0", 
148534
            "0", 
148535
            "0", 
148536
            "0", 
148537
            "0", 
148538
            "0", 
148539
            "0", 
148540
            "0", 
148541
            "6", 
148542
            "3", 
148543
            "0", 
148544
            "9"
152650
            "2018S18", 
152651
            "0"
148545 152652
        ], 
148546 152653
        [
148547
            "Une d\u00e9ch\u00e8terie - Qualification par le guichet : Gardiennage", 
148548
            "0", 
148549
            "0", 
148550
            "0", 
148551
            "0", 
148552
            "0", 
148553
            "0", 
148554
            "0", 
148555
            "0", 
148556
            "0", 
148557
            "0", 
148558
            "1", 
148559
            "0", 
148560
            "1"
152654
            "2018S19", 
152655
            "0"
148561 152656
        ], 
148562 152657
        [
148563
            "Total", 
148564
            "1037", 
148565
            "745", 
148566
            "1215", 
148567
            "1337", 
148568
            "1649", 
148569
            "1209", 
148570
            "1374", 
148571
            "1426", 
148572
            "1706", 
148573
            "3696", 
148574
            "2050", 
148575
            "273", 
148576
            "17717"
148577
        ]
148578
    ], 
148579
    "zz_old_Tous formulaires - Demandes par secteur et par mois - ann\u00e9e en cours": [
148580
        [
148581
            "", 
148582
            "Grand-Sud", 
148583
            "inconnu", 
148584
            "Nord-Est", 
148585
            "Nord-Ouest", 
148586
            "Sud", 
148587
            "Total"
152658
            "2018S20", 
152659
            "0"
148588 152660
        ], 
148589 152661
        [
148590
            "janvier", 
148591
            "198", 
148592
            "0", 
148593
            "326", 
148594
            "255", 
148595
            "258", 
148596
            "1037"
152662
            "2018S21", 
152663
            "0"
148597 152664
        ], 
148598 152665
        [
148599
            "f\u00e9vrier", 
148600
            "122", 
148601
            "0", 
148602
            "225", 
148603
            "210", 
148604
            "188", 
148605
            "745"
152666
            "2018S22", 
152667
            "0"
148606 152668
        ], 
148607 152669
        [
148608
            "mars", 
148609
            "269", 
148610
            "0", 
148611
            "322", 
148612
            "289", 
148613
            "335", 
148614
            "1215"
152670
            "2018S23", 
152671
            "0"
148615 152672
        ], 
148616 152673
        [
148617
            "avril", 
148618
            "276", 
148619
            "0", 
148620
            "423", 
148621
            "540", 
148622
            "315", 
148623
            "1554"
152674
            "2018S24", 
152675
            "0"
148624 152676
        ], 
148625 152677
        [
148626
            "mai", 
148627
            "391", 
148628
            "0", 
148629
            "638", 
148630
            "563", 
148631
            "482", 
148632
            "2074"
152678
            "2018S25", 
152679
            "0"
148633 152680
        ], 
148634 152681
        [
148635
            "juin", 
148636
            "315", 
148637
            "0", 
148638
            "484", 
148639
            "507", 
148640
            "416", 
148641
            "1722"
152682
            "2018S26", 
152683
            "0"
148642 152684
        ], 
148643 152685
        [
148644
            "juillet", 
148645
            "354", 
148646
            "0", 
148647
            "626", 
148648
            "610", 
148649
            "423", 
148650
            "2013"
152686
            "2018S27", 
152687
            "0"
148651 152688
        ], 
148652 152689
        [
148653
            "ao\u00fbt", 
148654
            "307", 
148655
            "0", 
148656
            "647", 
148657
            "589", 
148658
            "493", 
148659
            "2036"
152690
            "2018S28", 
152691
            "0"
148660 152692
        ], 
148661 152693
        [
148662
            "septembre", 
148663
            "435", 
148664
            "0", 
148665
            "712", 
148666
            "803", 
148667
            "434", 
148668
            "2384"
152694
            "2018S29", 
152695
            "0"
148669 152696
        ], 
148670 152697
        [
148671
            "octobre", 
148672
            "564", 
148673
            "1", 
148674
            "1591", 
148675
            "1309", 
148676
            "848", 
148677
            "4313"
152698
            "2018S30", 
152699
            "0"
148678 152700
        ], 
148679 152701
        [
148680
            "novembre", 
148681
            "516", 
148682
            "12", 
148683
            "932", 
148684
            "752", 
148685
            "498", 
148686
            "2710"
152702
            "2018S31", 
152703
            "0"
148687 152704
        ], 
148688 152705
        [
148689
            "d\u00e9cembre", 
148690
            "66", 
148691
            "0", 
148692
            "131", 
148693
            "115", 
148694
            "90", 
148695
            "402"
152706
            "2018S32", 
152707
            "0"
148696 152708
        ], 
148697 152709
        [
148698
            "Total", 
148699
            "3813", 
148700
            "13", 
148701
            "7057", 
148702
            "6542", 
148703
            "4780", 
148704
            "22205"
148705
        ]
148706
    ], 
148707
    "zz_old_Tous formulaires - Demandes par semaine - 3 derniers mois": [
152710
            "2018S33", 
152711
            "0"
152712
        ], 
148708 152713
        [
148709
            "semaine (date de la demande)", 
148710
            "nombre de demandes"
152714
            "2018S34", 
152715
            "0"
148711 152716
        ], 
148712 152717
        [
148713 152718
            "2018S35", 
......
148768 152773
        [
148769 152774
            "2018S49", 
148770 152775
            "409"
152776
        ], 
152777
        [
152778
            "2018S50", 
152779
            "0"
152780
        ], 
152781
        [
152782
            "2018S51", 
152783
            "0"
152784
        ], 
152785
        [
152786
            "2018S52", 
152787
            "0"
152788
        ], 
152789
        [
152790
            "2019S1", 
152791
            "0"
152792
        ], 
152793
        [
152794
            "2019S2", 
152795
            "0"
152796
        ], 
152797
        [
152798
            "2019S3", 
152799
            "0"
152800
        ], 
152801
        [
152802
            "2019S4", 
152803
            "0"
152804
        ], 
152805
        [
152806
            "2019S5", 
152807
            "0"
152808
        ], 
152809
        [
152810
            "2019S6", 
152811
            "0"
152812
        ], 
152813
        [
152814
            "2019S7", 
152815
            "0"
152816
        ], 
152817
        [
152818
            "2019S8", 
152819
            "0"
152820
        ], 
152821
        [
152822
            "2019S9", 
152823
            "0"
152824
        ], 
152825
        [
152826
            "2019S10", 
152827
            "0"
152828
        ], 
152829
        [
152830
            "2019S11", 
152831
            "0"
152832
        ], 
152833
        [
152834
            "2019S12", 
152835
            "0"
152836
        ], 
152837
        [
152838
            "2019S13", 
152839
            "0"
152840
        ], 
152841
        [
152842
            "2019S14", 
152843
            "0"
152844
        ], 
152845
        [
152846
            "2019S15", 
152847
            "0"
152848
        ], 
152849
        [
152850
            "2019S16", 
152851
            "0"
152852
        ], 
152853
        [
152854
            "2019S17", 
152855
            "0"
152856
        ], 
152857
        [
152858
            "2019S18", 
152859
            "0"
152860
        ], 
152861
        [
152862
            "2019S19", 
152863
            "0"
152864
        ], 
152865
        [
152866
            "2019S20", 
152867
            "0"
152868
        ], 
152869
        [
152870
            "2019S21", 
152871
            "0"
152872
        ], 
152873
        [
152874
            "2019S22", 
152875
            "0"
152876
        ], 
152877
        [
152878
            "2019S23", 
152879
            "0"
152880
        ], 
152881
        [
152882
            "2019S24", 
152883
            "0"
152884
        ], 
152885
        [
152886
            "2019S25", 
152887
            "0"
152888
        ], 
152889
        [
152890
            "2019S26", 
152891
            "0"
152892
        ], 
152893
        [
152894
            "2019S27", 
152895
            "0"
152896
        ], 
152897
        [
152898
            "2019S28", 
152899
            "0"
152900
        ], 
152901
        [
152902
            "2019S29", 
152903
            "0"
152904
        ], 
152905
        [
152906
            "2019S30", 
152907
            "0"
152908
        ], 
152909
        [
152910
            "2019S31", 
152911
            "0"
152912
        ], 
152913
        [
152914
            "2019S32", 
152915
            "0"
152916
        ], 
152917
        [
152918
            "2019S33", 
152919
            "0"
152920
        ], 
152921
        [
152922
            "2019S34", 
152923
            "0"
152924
        ], 
152925
        [
152926
            "2019S35", 
152927
            "0"
152928
        ], 
152929
        [
152930
            "2019S36", 
152931
            "0"
152932
        ], 
152933
        [
152934
            "2019S37", 
152935
            "0"
152936
        ], 
152937
        [
152938
            "2019S38", 
152939
            "0"
152940
        ], 
152941
        [
152942
            "2019S39", 
152943
            "0"
152944
        ], 
152945
        [
152946
            "2019S40", 
152947
            "0"
152948
        ], 
152949
        [
152950
            "2019S41", 
152951
            "0"
152952
        ], 
152953
        [
152954
            "2019S42", 
152955
            "0"
152956
        ], 
152957
        [
152958
            "2019S43", 
152959
            "0"
152960
        ], 
152961
        [
152962
            "2019S44", 
152963
            "0"
152964
        ], 
152965
        [
152966
            "2019S45", 
152967
            "0"
152968
        ], 
152969
        [
152970
            "2019S46", 
152971
            "0"
152972
        ], 
152973
        [
152974
            "2019S47", 
152975
            "0"
152976
        ], 
152977
        [
152978
            "2019S48", 
152979
            "0"
152980
        ], 
152981
        [
152982
            "2019S49", 
152983
            "0"
152984
        ], 
152985
        [
152986
            "2019S50", 
152987
            "0"
152988
        ], 
152989
        [
152990
            "2019S51", 
152991
            "0"
152992
        ], 
152993
        [
152994
            "2019S52", 
152995
            "0"
152996
        ], 
152997
        [
152998
            "2020S1", 
152999
            "0"
148771 153000
        ]
148772 153001
    ], 
148773 153002
    "zz_old_Tous formulaires - Demandes par statut simplifi\u00e9 et par mois - ann\u00e9e en cours": [
......
151520 155749
            "Par courrier", 
151521 155750
            "Par mail", 
151522 155751
            "Par t\u00e9l\u00e9phone", 
155752
            "Aucun(e)", 
151523 155753
            "Total"
151524 155754
        ], 
151525 155755
        [
......
151529 155759
            "0", 
151530 155760
            "0", 
151531 155761
            "0", 
151532
            "0"
155762
            "1037", 
155763
            "1037"
151533 155764
        ], 
151534 155765
        [
151535 155766
            "f\u00e9vrier", 
......
151538 155769
            "0", 
151539 155770
            "0", 
151540 155771
            "0", 
151541
            "0"
155772
            "745", 
155773
            "745"
151542 155774
        ], 
151543 155775
        [
151544 155776
            "mars", 
......
151547 155779
            "0", 
151548 155780
            "0", 
151549 155781
            "0", 
151550
            "0"
155782
            "1215", 
155783
            "1215"
151551 155784
        ], 
151552 155785
        [
151553 155786
            "avril", 
......
151556 155789
            "1", 
151557 155790
            "42", 
151558 155791
            "4", 
151559
            "52"
155792
            "1603", 
155793
            "1655"
151560 155794
        ], 
151561 155795
        [
151562 155796
            "mai", 
......
151565 155799
            "1", 
151566 155800
            "114", 
151567 155801
            "37", 
151568
            "161"
155802
            "2078", 
155803
            "2239"
151569 155804
        ], 
151570 155805
        [
151571 155806
            "juin", 
......
151574 155809
            "2", 
151575 155810
            "169", 
151576 155811
            "67", 
151577
            "282"
155812
            "1673", 
155813
            "1955"
151578 155814
        ], 
151579 155815
        [
151580 155816
            "juillet", 
......
151583 155819
            "48", 
151584 155820
            "317", 
151585 155821
            "167", 
151586
            "734"
155822
            "1279", 
155823
            "2013"
151587 155824
        ], 
151588 155825
        [
151589 155826
            "ao\u00fbt", 
......
151592 155829
            "26", 
151593 155830
            "340", 
151594 155831
            "229", 
151595
            "740"
155832
            "1296", 
155833
            "2036"
151596 155834
        ], 
151597 155835
        [
151598 155836
            "septembre", 
......
151601 155839
            "14", 
151602 155840
            "465", 
151603 155841
            "103", 
151604
            "687"
155842
            "1697", 
155843
            "2384"
151605 155844
        ], 
151606 155845
        [
151607 155846
            "octobre", 
......
151610 155849
            "26", 
151611 155850
            "939", 
151612 155851
            "896", 
151613
            "3558"
155852
            "871", 
155853
            "4429"
151614 155854
        ], 
151615 155855
        [
151616 155856
            "novembre", 
......
151619 155859
            "63", 
151620 155860
            "881", 
151621 155861
            "655", 
151622
            "2712"
155862
            "123", 
155863
            "2835"
151623 155864
        ], 
151624 155865
        [
151625 155866
            "d\u00e9cembre", 
......
151628 155869
            "1", 
151629 155870
            "124", 
151630 155871
            "91", 
151631
            "405"
155872
            "19", 
155873
            "424"
151632 155874
        ], 
151633 155875
        [
151634 155876
            "Total", 
......
151637 155879
            "182", 
151638 155880
            "3391", 
151639 155881
            "2249", 
151640
            "9331"
155882
            "13636", 
155883
            "22967"
151641 155884
        ]
151642 155885
    ], 
151643 155886
    "zz_old_Tous formulaires - D\u00e9lai de traitement moyen par mois - ann\u00e9e en cours": [
......
155135 159378
            "0", 
155136 159379
            "0"
155137 159380
        ], 
159381
        [
159382
            "Aucun(e)", 
159383
            "0", 
159384
            "0", 
159385
            "0", 
159386
            "0", 
159387
            "0", 
159388
            "0", 
159389
            "0", 
159390
            "0", 
159391
            "0", 
159392
            "0", 
159393
            "0", 
159394
            "3", 
159395
            "3"
159396
        ], 
155138 159397
        [
155139 159398
            "Total", 
155140 159399
            "0", 
......
155148 159407
            "0", 
155149 159408
            "0", 
155150 159409
            "0", 
155151
            "203", 
155152
            "203"
159410
            "206", 
159411
            "206"
155153 159412
        ]
155154 159413
    ], 
155155 159414
    "zz_old_Tous formulaires - Nb demandes par an et par commune - ann\u00e9e en cours": [
......
156161 160420
            "3", 
156162 160421
            "314"
156163 160422
        ], 
160423
        [
160424
            "Aucun(e)", 
160425
            "0", 
160426
            "0", 
160427
            "0", 
160428
            "0", 
160429
            "0", 
160430
            "0", 
160431
            "0", 
160432
            "0", 
160433
            "0", 
160434
            "116", 
160435
            "123", 
160436
            "19", 
160437
            "258"
160438
        ], 
156164 160439
        [
156165 160440
            "Total", 
156166 160441
            "1037", 
......
156172 160447
            "2013", 
156173 160448
            "2036", 
156174 160449
            "2384", 
156175
            "4313", 
156176
            "2712", 
156177
            "405", 
156178
            "22709"
160450
            "4429", 
160451
            "2835", 
160452
            "424", 
160453
            "22967"
156179 160454
        ]
156180 160455
    ], 
156181 160456
    "zz_old_Tous formulaires - Tableau mensuel - D\u00e9lai moyen traitement par origine": [
......
156359 160634
            "0", 
156360 160635
            "0"
156361 160636
        ], 
160637
        [
160638
            "Aucun(e)", 
160639
            "0", 
160640
            "0", 
160641
            "0", 
160642
            "0", 
160643
            "0", 
160644
            "0", 
160645
            "0", 
160646
            "0", 
160647
            "0", 
160648
            "0", 
160649
            "0", 
160650
            "0"
160651
        ], 
160652
        [
160653
            "", 
160654
            "janvier", 
160655
            "f\u00e9vrier", 
160656
            "mars", 
160657
            "avril", 
160658
            "mai", 
160659
            "juin", 
160660
            "juillet", 
160661
            "ao\u00fbt", 
160662
            "septembre", 
160663
            "octobre", 
160664
            "novembre", 
160665
            "d\u00e9cembre"
160666
        ], 
160667
        [
160668
            "---", 
160669
            "0", 
160670
            "0", 
160671
            "0", 
160672
            "0", 
160673
            "0", 
160674
            "0", 
160675
            "0", 
160676
            "0", 
160677
            "0", 
160678
            "0", 
160679
            "0", 
160680
            "0"
160681
        ], 
160682
        [
160683
            "Accueil physique", 
160684
            "0", 
160685
            "0", 
160686
            "0", 
160687
            "0", 
160688
            "0", 
160689
            "0", 
160690
            "0", 
160691
            "0", 
160692
            "0", 
160693
            "0", 
160694
            "0", 
160695
            "0"
160696
        ], 
160697
        [
160698
            "Agent terrain", 
160699
            "0", 
160700
            "0", 
160701
            "0", 
160702
            "0", 
160703
            "0", 
160704
            "0", 
160705
            "0", 
160706
            "0", 
160707
            "0", 
160708
            "0", 
160709
            "0", 
160710
            "0"
160711
        ], 
160712
        [
160713
            "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", 
160714
            "0", 
160715
            "0", 
160716
            "0", 
160717
            "0", 
160718
            "0", 
160719
            "0", 
160720
            "0", 
160721
            "0", 
160722
            "0", 
160723
            "0", 
160724
            "0", 
160725
            "0"
160726
        ], 
160727
        [
160728
            "Appel t\u00e9l\u00e9phonique", 
160729
            "0", 
160730
            "0", 
160731
            "0", 
160732
            "0", 
160733
            "0", 
160734
            "0", 
160735
            "0", 
160736
            "0", 
160737
            "0", 
160738
            "0", 
160739
            "0", 
160740
            "0"
160741
        ], 
160742
        [
160743
            "Contact direct", 
160744
            "0", 
160745
            "0", 
160746
            "0", 
160747
            "0", 
160748
            "0", 
160749
            "0", 
160750
            "0", 
160751
            "0", 
160752
            "0", 
160753
            "0", 
160754
            "0", 
160755
            "0"
160756
        ], 
160757
        [
160758
            "Courrier", 
160759
            "0", 
160760
            "0", 
160761
            "0", 
160762
            "0", 
160763
            "0", 
160764
            "0", 
160765
            "0", 
160766
            "0", 
160767
            "0", 
160768
            "0", 
160769
            "0", 
160770
            "0"
160771
        ], 
160772
        [
160773
            "Formulaire", 
160774
            "0", 
160775
            "0", 
160776
            "0", 
160777
            "0", 
160778
            "0", 
160779
            "0", 
160780
            "0", 
160781
            "0", 
160782
            "0", 
160783
            "0", 
160784
            "0", 
160785
            "0"
160786
        ], 
160787
        [
160788
            "Formulaire Elu", 
160789
            "0", 
160790
            "0", 
160791
            "0", 
160792
            "0", 
160793
            "0", 
160794
            "0", 
160795
            "0", 
160796
            "0", 
160797
            "0", 
160798
            "0", 
160799
            "0", 
160800
            "0"
160801
        ], 
160802
        [
160803
            "Formulaire Portail citoyen", 
160804
            "0", 
160805
            "0", 
160806
            "0", 
160807
            "0", 
160808
            "0", 
160809
            "0", 
160810
            "0", 
160811
            "0", 
160812
            "0", 
160813
            "0", 
160814
            "0", 
160815
            "0"
160816
        ], 
160817
        [
160818
            "Observation terrain", 
160819
            "0", 
160820
            "0", 
160821
            "0", 
160822
            "0", 
160823
            "0", 
160824
            "0", 
160825
            "0", 
160826
            "0", 
160827
            "0", 
160828
            "0", 
160829
            "0", 
160830
            "0"
160831
        ], 
160832
        [
160833
            "Aucun(e)", 
160834
            "0", 
160835
            "0", 
160836
            "0", 
160837
            "0", 
160838
            "0", 
160839
            "0", 
160840
            "0", 
160841
            "0", 
160842
            "0", 
160843
            "0", 
160844
            "0", 
160845
            "0"
160846
        ], 
160847
        [
160848
            "", 
160849
            "janvier", 
160850
            "f\u00e9vrier", 
160851
            "mars", 
160852
            "avril", 
160853
            "mai", 
160854
            "juin", 
160855
            "juillet", 
160856
            "ao\u00fbt", 
160857
            "septembre", 
160858
            "octobre", 
160859
            "novembre", 
160860
            "d\u00e9cembre"
160861
        ], 
160862
        [
160863
            "---", 
160864
            "0", 
160865
            "0", 
160866
            "0", 
160867
            "0", 
160868
            "0", 
160869
            "0", 
160870
            "0", 
160871
            "0", 
160872
            "0", 
160873
            "0", 
160874
            "0", 
160875
            "0"
160876
        ], 
160877
        [
160878
            "Accueil physique", 
160879
            "0", 
160880
            "0", 
160881
            "0", 
160882
            "0", 
160883
            "0", 
160884
            "0", 
160885
            "0", 
160886
            "0", 
160887
            "0", 
160888
            "0", 
160889
            "0", 
160890
            "0"
160891
        ], 
160892
        [
160893
            "Agent terrain", 
160894
            "0", 
160895
            "0", 
160896
            "0", 
160897
            "0", 
160898
            "0", 
160899
            "0", 
160900
            "0", 
160901
            "0", 
160902
            "0", 
160903
            "0", 
160904
            "0", 
160905
            "0"
160906
        ], 
160907
        [
160908
            "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", 
160909
            "0", 
160910
            "0", 
160911
            "0", 
160912
            "0", 
160913
            "0", 
160914
            "0", 
160915
            "0", 
160916
            "0", 
160917
            "0", 
160918
            "0", 
160919
            "0", 
160920
            "0"
160921
        ], 
160922
        [
160923
            "Appel t\u00e9l\u00e9phonique", 
160924
            "0", 
160925
            "0", 
160926
            "0", 
160927
            "0", 
160928
            "0", 
160929
            "0", 
160930
            "0", 
160931
            "0", 
160932
            "0", 
160933
            "0", 
160934
            "0", 
160935
            "0"
160936
        ], 
160937
        [
160938
            "Contact direct", 
160939
            "0", 
160940
            "0", 
160941
            "0", 
160942
            "0", 
160943
            "0", 
160944
            "0", 
160945
            "0", 
160946
            "0", 
160947
            "0", 
160948
            "0", 
160949
            "0", 
160950
            "0"
160951
        ], 
160952
        [
160953
            "Courrier", 
160954
            "0", 
160955
            "0", 
160956
            "0", 
160957
            "0", 
160958
            "0", 
160959
            "0", 
160960
            "0", 
160961
            "0", 
160962
            "0", 
160963
            "0", 
160964
            "0", 
160965
            "0"
160966
        ], 
160967
        [
160968
            "Formulaire", 
160969
            "0", 
160970
            "0", 
160971
            "0", 
160972
            "0", 
160973
            "0", 
160974
            "0", 
160975
            "0", 
160976
            "0", 
160977
            "0", 
160978
            "0", 
160979
            "0", 
160980
            "0"
160981
        ], 
160982
        [
160983
            "Formulaire Elu", 
160984
            "0", 
160985
            "0", 
160986
            "0", 
160987
            "0", 
160988
            "0", 
160989
            "0", 
160990
            "0", 
160991
            "0", 
160992
            "0", 
160993
            "0", 
160994
            "0", 
160995
            "0"
160996
        ], 
160997
        [
160998
            "Formulaire Portail citoyen", 
160999
            "0", 
161000
            "0", 
161001
            "0", 
161002
            "0", 
161003
            "0", 
161004
            "0", 
161005
            "0", 
161006
            "0", 
161007
            "0", 
161008
            "0", 
161009
            "0", 
161010
            "0"
161011
        ], 
161012
        [
161013
            "Observation terrain", 
161014
            "0", 
161015
            "0", 
161016
            "0", 
161017
            "0", 
161018
            "0", 
161019
            "0", 
161020
            "0", 
161021
            "0", 
161022
            "0", 
161023
            "0", 
161024
            "0", 
161025
            "0"
161026
        ], 
161027
        [
161028
            "Aucun(e)", 
161029
            "0", 
161030
            "0", 
161031
            "0", 
161032
            "0", 
161033
            "0", 
161034
            "0", 
161035
            "0", 
161036
            "0", 
161037
            "0", 
161038
            "0", 
161039
            "0", 
161040
            "0"
161041
        ], 
156362 161042
        [
156363 161043
            "", 
156364 161044
            "janvier", 
......
156539 161219
            "0", 
156540 161220
            "0"
156541 161221
        ], 
161222
        [
161223
            "Aucun(e)", 
161224
            "0", 
161225
            "0", 
161226
            "0", 
161227
            "0", 
161228
            "0", 
161229
            "0", 
161230
            "0", 
161231
            "0", 
161232
            "0", 
161233
            "0", 
161234
            "0", 
161235
            "0"
161236
        ], 
156542 161237
        [
156543 161238
            "", 
156544 161239
            "janvier", 
......
156719 161414
            "0", 
156720 161415
            "0"
156721 161416
        ], 
161417
        [
161418
            "Aucun(e)", 
161419
            "0", 
161420
            "0", 
161421
            "0", 
161422
            "0", 
161423
            "0", 
161424
            "0", 
161425
            "0", 
161426
            "0", 
161427
            "0", 
161428
            "0", 
161429
            "0", 
161430
            "0"
161431
        ], 
156722 161432
        [
156723 161433
            "", 
156724 161434
            "janvier", 
......
156865 161575
            "0", 
156866 161576
            "0", 
156867 161577
            "0", 
156868
            "0", 
161578
            "6 heure(s)", 
156869 161579
            "0", 
156870 161580
            "0"
156871 161581
        ], 
......
156899 161609
            "0", 
156900 161610
            "0"
156901 161611
        ], 
161612
        [
161613
            "Aucun(e)", 
161614
            "0", 
161615
            "0", 
161616
            "0", 
161617
            "0", 
161618
            "0", 
161619
            "0", 
161620
            "0", 
161621
            "0", 
161622
            "0", 
161623
            "0", 
161624
            "0", 
161625
            "0"
161626
        ], 
156902 161627
        [
156903 161628
            "", 
156904 161629
            "janvier", 
......
157079 161804
            "0", 
157080 161805
            "0"
157081 161806
        ], 
161807
        [
161808
            "Aucun(e)", 
161809
            "0", 
161810
            "0", 
161811
            "0", 
161812
            "0", 
161813
            "0", 
161814
            "0", 
161815
            "0", 
161816
            "0", 
161817
            "0", 
161818
            "0", 
161819
            "0", 
161820
            "0"
161821
        ], 
157082 161822
        [
157083 161823
            "", 
157084 161824
            "janvier", 
......
157225 161965
            "0", 
157226 161966
            "0", 
157227 161967
            "0", 
157228
            "6 heure(s)", 
161968
            "0", 
157229 161969
            "0", 
157230 161970
            "0"
157231 161971
        ], 
......
157259 161999
            "0", 
157260 162000
            "0"
157261 162001
        ], 
162002
        [
162003
            "Aucun(e)", 
162004
            "0", 
162005
            "0", 
162006
            "0", 
162007
            "0", 
162008
            "0", 
162009
            "0", 
162010
            "0", 
162011
            "0", 
162012
            "0", 
162013
            "0", 
162014
            "0", 
162015
            "0"
162016
        ], 
157262 162017
        [
157263 162018
            "", 
157264 162019
            "janvier", 
......
157341 162096
            "0", 
157342 162097
            "0", 
157343 162098
            "0", 
162099
            "moins d'1 heure", 
162100
            "moins d'1 heure", 
162101
            "9 heure(s)", 
162102
            "20 heure(s)", 
162103
            "moins d'1 heure", 
162104
            "10 heure(s)", 
162105
            "2 heure(s)"
162106
        ], 
162107
        [
162108
            "Contact direct", 
162109
            "0", 
162110
            "0", 
162111
            "0", 
162112
            "0", 
162113
            "0", 
157344 162114
            "0", 
157345 162115
            "0", 
157346 162116
            "0", 
......
157350 162120
            "0"
157351 162121
        ], 
157352 162122
        [
157353
            "Contact direct", 
162123
            "Courrier", 
162124
            "0", 
162125
            "0", 
162126
            "0", 
162127
            "0", 
162128
            "0", 
162129
            "0", 
162130
            "moins d'1 heure", 
162131
            "moins d'1 heure", 
162132
            "3 heure(s)", 
162133
            "12 heure(s)", 
162134
            "11 heure(s)", 
162135
            "1 jour(s) 3 heure(s)"
162136
        ], 
162137
        [
162138
            "Formulaire", 
162139
            "0", 
162140
            "0", 
162141
            "0", 
162142
            "0", 
162143
            "0", 
162144
            "2 heure(s)", 
162145
            "1 heure(s)", 
162146
            "6 heure(s)", 
162147
            "1 heure(s)", 
162148
            "15 heure(s)", 
162149
            "6 heure(s)", 
162150
            "moins d'1 heure"
162151
        ], 
162152
        [
162153
            "Formulaire Elu", 
157354 162154
            "0", 
157355 162155
            "0", 
157356 162156
            "0", 
......
157365 162165
            "0"
157366 162166
        ], 
157367 162167
        [
157368
            "Courrier", 
162168
            "Formulaire Portail citoyen", 
162169
            "0", 
162170
            "0", 
162171
            "0", 
162172
            "0", 
162173
            "0", 
162174
            "0", 
162175
            "moins d'1 heure", 
162176
            "moins d'1 heure", 
162177
            "moins d'1 heure", 
162178
            "9 heure(s)", 
162179
            "13 heure(s)", 
162180
            "9 heure(s)"
162181
        ], 
162182
        [
162183
            "Observation terrain", 
157369 162184
            "0", 
157370 162185
            "0", 
157371 162186
            "0", 
......
157380 162195
            "0"
157381 162196
        ], 
157382 162197
        [
157383
            "Formulaire", 
162198
            "Aucun(e)", 
162199
            "0", 
162200
            "0", 
162201
            "0", 
162202
            "0", 
162203
            "0", 
162204
            "0", 
162205
            "0", 
162206
            "0", 
162207
            "0", 
162208
            "0", 
162209
            "0", 
162210
            "0"
162211
        ], 
162212
        [
162213
            "", 
162214
            "janvier", 
162215
            "f\u00e9vrier", 
162216
            "mars", 
162217
            "avril", 
162218
            "mai", 
162219
            "juin", 
162220
            "juillet", 
162221
            "ao\u00fbt", 
162222
            "septembre", 
162223
            "octobre", 
162224
            "novembre", 
162225
            "d\u00e9cembre"
162226
        ], 
162227
        [
162228
            "---", 
162229
            "45 jour(s) 19 heure(s)", 
162230
            "0", 
162231
            "0", 
162232
            "0", 
162233
            "0", 
162234
            "0", 
162235
            "0", 
162236
            "0", 
162237
            "0", 
162238
            "0", 
162239
            "0", 
162240
            "0"
162241
        ], 
162242
        [
162243
            "Accueil physique", 
162244
            "0", 
162245
            "0", 
162246
            "0", 
162247
            "1 heure(s)", 
162248
            "0", 
162249
            "0", 
162250
            "0", 
162251
            "0", 
162252
            "0", 
162253
            "0", 
162254
            "0", 
162255
            "0"
162256
        ], 
162257
        [
162258
            "Agent terrain", 
157384 162259
            "0", 
157385 162260
            "0", 
157386 162261
            "0", 
......
157394 162269
            "0", 
157395 162270
            "0"
157396 162271
        ], 
162272
        [
162273
            "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", 
162274
            "0", 
162275
            "0", 
162276
            "0", 
162277
            "0", 
162278
            "0", 
162279
            "0", 
162280
            "0", 
162281
            "0", 
162282
            "0", 
162283
            "0", 
162284
            "0", 
162285
            "0"
162286
        ], 
162287
        [
162288
            "Appel t\u00e9l\u00e9phonique", 
162289
            "7 heure(s)", 
162290
            "7 heure(s)", 
162291
            "17 heure(s)", 
162292
            "11 heure(s)", 
162293
            "12 heure(s)", 
162294
            "4 heure(s)", 
162295
            "6 heure(s)", 
162296
            "6 heure(s)", 
162297
            "5 heure(s)", 
162298
            "10 heure(s)", 
162299
            "7 heure(s)", 
162300
            "1 heure(s)"
162301
        ], 
162302
        [
162303
            "Contact direct", 
162304
            "0", 
162305
            "0", 
162306
            "0", 
162307
            "0", 
162308
            "0", 
162309
            "0", 
162310
            "0", 
162311
            "0", 
162312
            "0", 
162313
            "0", 
162314
            "0", 
162315
            "0"
162316
        ], 
162317
        [
162318
            "Courrier", 
162319
            "4 jour(s) 23 heure(s)", 
162320
            "8 jour(s) 10 heure(s)", 
162321
            "33 jour(s) 4 heure(s)", 
162322
            "5 jour(s) 11 heure(s)", 
162323
            "53 jour(s) 19 heure(s)", 
162324
            "27 jour(s) 1 heure(s)", 
162325
            "13 jour(s) 11 heure(s)", 
162326
            "11 jour(s)", 
162327
            "0", 
162328
            "0", 
162329
            "3 jour(s) 1 heure(s)", 
162330
            "0"
162331
        ], 
162332
        [
162333
            "Formulaire", 
162334
            "1 jour(s) 12 heure(s)", 
162335
            "1 jour(s) 17 heure(s)", 
162336
            "5 jour(s) 10 heure(s)", 
162337
            "4 jour(s) 6 heure(s)", 
162338
            "3 jour(s) 16 heure(s)", 
162339
            "1 jour(s) 5 heure(s)", 
162340
            "1 jour(s) 22 heure(s)", 
162341
            "2 jour(s) 23 heure(s)", 
162342
            "2 jour(s) 11 heure(s)", 
162343
            "3 jour(s) 6 heure(s)", 
162344
            "2 jour(s) 8 heure(s)", 
162345
            "12 heure(s)"
162346
        ], 
157397 162347
        [
157398 162348
            "Formulaire Elu", 
157399 162349
            "0", 
......
157411 162361
        ], 
157412 162362
        [
157413 162363
            "Formulaire Portail citoyen", 
162364
            "1 jour(s) 3 heure(s)", 
162365
            "0", 
162366
            "0", 
162367
            "0", 
162368
            "0", 
162369
            "0", 
162370
            "moins d'1 heure", 
162371
            "moins d'1 heure", 
162372
            "14 heure(s)", 
162373
            "2 jour(s) 4 heure(s)", 
162374
            "4 jour(s) 6 heure(s)", 
162375
            "15 heure(s)"
162376
        ], 
162377
        [
162378
            "Observation terrain", 
157414 162379
            "0", 
157415 162380
            "0", 
157416 162381
            "0", 
......
157425 162390
            "0"
157426 162391
        ], 
157427 162392
        [
157428
            "Observation terrain", 
162393
            "Aucun(e)", 
157429 162394
            "0", 
157430 162395
            "0", 
157431 162396
            "0", 
......
157619 162584
            "0", 
157620 162585
            "0"
157621 162586
        ], 
162587
        [
162588
            "Aucun(e)", 
162589
            "0", 
162590
            "0", 
162591
            "0", 
162592
            "0", 
162593
            "0", 
162594
            "0", 
162595
            "0", 
162596
            "0", 
162597
            "0", 
162598
            "0", 
162599
            "0", 
162600
            "0"
162601
        ], 
157622 162602
        [
157623 162603
            "", 
157624 162604
            "janvier", 
......
157701 162681
            "0", 
157702 162682
            "0", 
157703 162683
            "0", 
157704
            "moins d'1 heure", 
157705
            "moins d'1 heure", 
157706
            "9 heure(s)", 
157707
            "20 heure(s)", 
157708
            "moins d'1 heure", 
157709
            "10 heure(s)", 
157710
            "2 heure(s)"
157711
        ], 
157712
        [
157713
            "Contact direct", 
157714
            "0", 
157715
            "0", 
157716
            "0", 
157717
            "0", 
157718
            "0", 
157719 162684
            "0", 
157720 162685
            "0", 
157721 162686
            "0", 
......
157725 162690
            "0"
157726 162691
        ], 
157727 162692
        [
157728
            "Courrier", 
157729
            "0", 
157730
            "0", 
157731
            "0", 
157732
            "0", 
157733
            "0", 
157734
            "0", 
157735
            "moins d'1 heure", 
157736
            "moins d'1 heure", 
157737
            "3 heure(s)", 
157738
            "12 heure(s)", 
157739
            "11 heure(s)", 
157740
            "1 jour(s) 3 heure(s)"
157741
        ], 
157742
        [
157743
            "Formulaire", 
157744
            "0", 
157745
            "0", 
157746
            "0", 
157747
            "0", 
157748
            "0", 
157749
            "2 heure(s)", 
157750
            "1 heure(s)", 
157751
            "6 heure(s)", 
157752
            "1 heure(s)", 
157753
            "15 heure(s)", 
157754
            "6 heure(s)", 
157755
            "moins d'1 heure"
157756
        ], 
157757
        [
157758
            "Formulaire Elu", 
157759
            "0", 
157760
            "0", 
157761
            "0", 
157762
            "0", 
157763
            "0", 
157764
            "0", 
157765
            "0", 
157766
            "0", 
157767
            "0", 
157768
            "0", 
157769
            "0", 
157770
            "0"
157771
        ], 
157772
        [
157773
            "Formulaire Portail citoyen", 
157774
            "0", 
157775
            "0", 
157776
            "0", 
157777
            "0", 
157778
            "0", 
157779
            "0", 
157780
            "moins d'1 heure", 
157781
            "moins d'1 heure", 
157782
            "moins d'1 heure", 
157783
            "9 heure(s)", 
157784
            "13 heure(s)", 
157785
            "9 heure(s)"
157786
        ], 
157787
        [
157788
            "Observation terrain", 
162693
            "Contact direct", 
157789 162694
            "0", 
157790 162695
            "0", 
157791 162696
            "0", 
......
157800 162705
            "0"
157801 162706
        ], 
157802 162707
        [
157803
            "", 
157804
            "janvier", 
157805
            "f\u00e9vrier", 
157806
            "mars", 
157807
            "avril", 
157808
            "mai", 
157809
            "juin", 
157810
            "juillet", 
157811
            "ao\u00fbt", 
157812
            "septembre", 
157813
            "octobre", 
157814
            "novembre", 
157815
            "d\u00e9cembre"
157816
        ], 
157817
        [
157818
            "---", 
157819
            "45 jour(s) 19 heure(s)", 
157820
            "0", 
157821
            "0", 
157822
            "0", 
157823
            "0", 
157824
            "0", 
157825
            "0", 
157826
            "0", 
157827
            "0", 
157828
            "0", 
162708
            "Courrier", 
157829 162709
            "0", 
157830
            "0"
157831
        ], 
157832
        [
157833
            "Accueil physique", 
157834 162710
            "0", 
157835 162711
            "0", 
157836 162712
            "0", 
157837
            "1 heure(s)", 
157838 162713
            "0", 
157839 162714
            "0", 
157840 162715
            "0", 
......
157845 162720
            "0"
157846 162721
        ], 
157847 162722
        [
157848
            "Agent terrain", 
162723
            "Formulaire", 
157849 162724
            "0", 
157850 162725
            "0", 
157851 162726
            "0", 
......
157860 162735
            "0"
157861 162736
        ], 
157862 162737
        [
157863
            "\"Agent terrain\" if form_option_type_de_formulaire == \"agent\" else form_var_origine", 
162738
            "Formulaire Elu", 
157864 162739
            "0", 
157865 162740
            "0", 
157866 162741
            "0", 
......
157875 162750
            "0"
157876 162751
        ], 
157877 162752
        [
157878
            "Appel t\u00e9l\u00e9phonique", 
157879
            "7 heure(s)", 
157880
            "7 heure(s)", 
157881
            "17 heure(s)", 
157882
            "11 heure(s)", 
157883
            "12 heure(s)", 
157884
            "4 heure(s)", 
157885
            "6 heure(s)", 
157886
            "6 heure(s)", 
157887
            "5 heure(s)", 
157888
            "10 heure(s)", 
157889
            "7 heure(s)", 
157890
            "1 heure(s)"
157891
        ], 
157892
        [
157893
            "Contact direct", 
162753
            "Formulaire Portail citoyen", 
157894 162754
            "0", 
157895 162755
            "0", 
157896 162756
            "0", 
......
157905 162765
            "0"
157906 162766
        ], 
157907 162767
        [
157908
            "Courrier", 
157909
            "4 jour(s) 23 heure(s)", 
157910
            "8 jour(s) 10 heure(s)", 
157911
            "33 jour(s) 4 heure(s)", 
157912
            "5 jour(s) 11 heure(s)", 
157913
            "53 jour(s) 19 heure(s)", 
157914
            "27 jour(s) 1 heure(s)", 
157915
            "13 jour(s) 11 heure(s)", 
157916
            "11 jour(s)", 
157917
            "0", 
157918
            "0", 
157919
            "3 jour(s) 1 heure(s)", 
157920
            "0"
157921
        ], 
157922
        [
157923
            "Formulaire", 
157924
            "1 jour(s) 12 heure(s)", 
157925
            "1 jour(s) 17 heure(s)", 
157926
            "5 jour(s) 10 heure(s)", 
157927
            "4 jour(s) 6 heure(s)", 
157928
            "3 jour(s) 16 heure(s)", 
157929
            "1 jour(s) 5 heure(s)", 
157930
            "1 jour(s) 22 heure(s)", 
157931
            "2 jour(s) 23 heure(s)", 
157932
            "2 jour(s) 11 heure(s)", 
157933
            "3 jour(s) 6 heure(s)", 
157934
            "2 jour(s) 8 heure(s)", 
157935
            "12 heure(s)"
157936
        ], 
157937
        [
157938
            "Formulaire Elu", 
162768
            "Observation terrain", 
157939 162769
            "0", 
157940 162770
            "0", 
157941 162771
            "0", 
......
157950 162780
            "0"
157951 162781
        ], 
157952 162782
        [
157953
            "Formulaire Portail citoyen", 
157954
            "1 jour(s) 3 heure(s)", 
157955
            "0", 
157956
            "0", 
157957
            "0", 
157958
            "0", 
157959
            "0", 
157960
            "moins d'1 heure", 
157961
            "moins d'1 heure", 
157962
            "14 heure(s)", 
157963
            "2 jour(s) 4 heure(s)", 
157964
            "4 jour(s) 6 heure(s)", 
157965
            "15 heure(s)"
157966
        ], 
157967
        [
157968
            "Observation terrain", 
162783
            "Aucun(e)", 
157969 162784
            "0", 
157970 162785
            "0", 
157971 162786
            "0", 
......
158159 162974
            "0", 
158160 162975
            "0"
158161 162976
        ], 
162977
        [
162978
            "Aucun(e)", 
162979
            "0", 
162980
            "0", 
162981
            "0", 
162982
            "0", 
162983
            "0", 
162984
            "0", 
162985
            "0", 
162986
            "0", 
162987
            "0", 
162988
            "0", 
162989
            "0", 
162990
            "0"
162991
        ], 
158162 162992
        [
158163 162993
            "", 
158164 162994
            "janvier", 
......
158339 163169
            "0", 
158340 163170
            "0"
158341 163171
        ], 
163172
        [
163173
            "Aucun(e)", 
163174
            "0", 
163175
            "0", 
163176
            "0", 
163177
            "0", 
163178
            "0", 
163179
            "0", 
163180
            "0", 
163181
            "0", 
163182
            "0", 
163183
            "moins d'1 heure", 
163184
            "moins d'1 heure", 
163185
            "moins d'1 heure"
163186
        ], 
158342 163187
        [
158343 163188
            "", 
158344 163189
            "janvier", 
......
158519 163364
            "0", 
158520 163365
            "0"
158521 163366
        ], 
163367
        [
163368
            "Aucun(e)", 
163369
            "0", 
163370
            "0", 
163371
            "0", 
163372
            "0", 
163373
            "0", 
163374
            "0", 
163375
            "0", 
163376
            "0", 
163377
            "0", 
163378
            "8 jour(s) 12 heure(s)", 
163379
            "8 jour(s) 18 heure(s)", 
163380
            "0"
163381
        ], 
158522 163382
        [
158523 163383
            "", 
158524 163384
            "janvier", 
......
158699 163559
            "0", 
158700 163560
            "0"
158701 163561
        ], 
163562
        [
163563
            "Aucun(e)", 
163564
            "0", 
163565
            "0", 
163566
            "0", 
163567
            "0", 
163568
            "0", 
163569
            "0", 
163570
            "0", 
163571
            "0", 
163572
            "0", 
163573
            "moins d'1 heure", 
163574
            "moins d'1 heure", 
163575
            "0"
163576
        ], 
158702 163577
        [
158703 163578
            "", 
158704 163579
            "janvier", 
......
158879 163754
            "0", 
158880 163755
            "0"
158881 163756
        ], 
163757
        [
163758
            "Aucun(e)", 
163759
            "0", 
163760
            "0", 
163761
            "0", 
163762
            "0", 
163763
            "0", 
163764
            "0", 
163765
            "0", 
163766
            "0", 
163767
            "0", 
163768
            "0", 
163769
            "moins d'1 heure", 
163770
            "0"
163771
        ], 
158882 163772
        [
158883 163773
            "", 
158884 163774
            "janvier", 
......
159059 163949
            "0", 
... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.